Metadata-Version: 2.1
Name: xecs-pygame
Version: 1.3.0
Maintainer-email: Lukas Turcani <lukasturcani93@gmail.com>
Project-URL: github, https://github.com/lukasturcani/xecs-pygame
Requires-Python: >=3.11
Description-Content-Type: text/x-rst
Requires-Dist: xecs
Requires-Dist: pygame
Requires-Dist: numpy
Provides-Extra: dev
Requires-Dist: black; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Requires-Dist: mypy; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"

xecs-pygame
===========

A plugin for xecs_, allowing you to render your entities with pygame_.

Usage
-----

First, add the plugin to your xecs_ app.

.. code-block:: python

  import xecs as xx
  from xecs_pygame import PyGamePlugin

  def main() -> None:
      app = xx.RealTimeApp()
      app.add_plugin(PyGamePlugin())


Now, when you spawn entities, you can give them a
``Circle``, ``Polygon``, ``Rectangle`` component. If you do that,
your entities will be rendered on the screen:


.. code-block:: python

  import xecs as xx
  from xecs_pygame import Circle, PyGamePlugin

  def spawn_three_circles(commands: xx.Commands, world: xx.World) -> None:
      transformi, _ = commands.spawn((xx.Transform2, Circle), 3)
      transform = world.get_view(xx.Transform2, transformi)
      transform.translation.x.fill([0, 15, 30])

  def main() -> None:
      app = xx.RealTimeApp()
      app.add_plugin(PyGamePlugin())
      app.add_startup_system(spawn_three_circles)
      app.add_pool(Circle.create_pool(3))
      app.add_pool(xx.Transform2.create_pool(3))
      app.run()

  if __name__ == "__main__":
      main()


Further examples
----------------

* `draw shapes`_
* `moving circles`_
* `boids`_
* `mouse presses`_
* `mouse position`_
* `text`_

.. _xecs: https://github.com/lukasturcani/xecs
.. _pygame: https://github.com/pygame/pygame
.. _`draw shapes`: https://github.com/lukasturcani/xecs-pygame/blob/master/examples/draw_shapes.py
.. _`moving circles`: https://xecs.readthedocs.io/en/latest/moving_circles.html
.. _boids: https://xecs.readthedocs.io/en/latest/boids.html
.. _`mouse presses`: https://xecs.readthedocs.io/en/latest/mouse_presses.html
.. _`mouse position`: https://xecs.readthedocs.io/en/latest/mouse_position.html
.. _`text`: https://xecs.readthedocs.io/en/latest/text.html


Installation
------------

.. code-block:: bash

  pip install xecs-pygame
