Skip to main content

An implementation of the Entity-Component-System pattern.

Project description

pyecs

An implementation of the Entity-Component-System pattern.

PyPI PyPI - Status PyPI - Python Version PyPI - License

Build Status codecov Code style: black Checked with mypy

Install

This project is available on PyPI so you can simply install it via

pip install pyecs

Example

from dataclasses import dataclass
from typing import Tuple

from pyecs import ECSController

# 1. build your components
@dataclass
class Transform:
    position: Tuple[float, float] = (0.0, 0.0)


@dataclass
class Rigidbody:
    velocity: Tuple[float, float] = (0.0, 0.0)
    acceleration: Tuple[float, float] = (0.0, 0.0)


# 2. define a system
def physics(controller: ECSController):
    for entity in controller.get_entities_with(Transform, Rigidbody):
        transform, rigidbody = entity.get_components(Transform, Rigidbody)
        rigidbody.velocity = (
            rigidbody.velocity[0] + rigidbody.acceleration[0],
            rigidbody.velocity[1] + rigidbody.acceleration[1],
        )
        transform.position = (
            transform.position[0] + rigidbody.velocity[0],
            transform.position[1] + rigidbody.velocity[1],
        )
        print(f"{transform=}\t{rigidbody=}")


if __name__ == "__main__":
    # 3. setup controller
    controller = ECSController()
    controller.add_system(physics)

    # 4. add some entities
    controller.add_entity(Transform(), Rigidbody(acceleration=(1.0, 0.0)))
    controller.add_entity(Transform(), Rigidbody(acceleration=(0.0, 1.0)))
    controller.add_entity(Transform(), Rigidbody(acceleration=(1.0, 1.0)))

    # 5. run everything
    while True:
        controller.tick()

Dev Setup

Simply install pipenv and run the following line:

pipenv install --dev

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyecs-0.4.tar.gz (6.2 kB view hashes)

Uploaded Source

Built Distribution

pyecs-0.4-py2.py3-none-any.whl (5.2 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page