Skip to main content

A simple implementation of the Entity-Component pattern.

Project description

pyecs

A simple implementation of the Entity-Component pattern.

PyPI - Version PyPI - Status PyPI - Python Version PyPI - License

Build Status codecov codebeat badge 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 Store

# 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)


if __name__ == "__main__":
    # 2. intialize entity-component store
    store = Store()

    # 3. add some entities
    scene = store.add_entity()
    scene.add_child(Transform(), Rigidbody(acceleration=(1.0, 0.0)))
    scene.add_child(Transform(), Rigidbody(acceleration=(0.0, 1.0)))
    scene.add_child(Transform(), Rigidbody(acceleration=(1.0, 1.0)))

    # 4. run everything
    while True:
        for entity in store.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=}")

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.19.tar.gz (6.3 kB view details)

Uploaded Source

Built Distribution

pyecs-0.19-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

Details for the file pyecs-0.19.tar.gz.

File metadata

  • Download URL: pyecs-0.19.tar.gz
  • Upload date:
  • Size: 6.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.5 CPython/3.9.4 Linux/5.4.0-1043-azure

File hashes

Hashes for pyecs-0.19.tar.gz
Algorithm Hash digest
SHA256 3215b0de264d37d9ea82878c2bbae4e9d3d7a5802cfe211d262d211b45a71dc5
MD5 a92644eb27a07fe999726b5a54788daa
BLAKE2b-256 0aefbbf6c6dc36b1423b20ef61be0d27cb62a655555db5c9616e0c8a0e7ba9bf

See more details on using hashes here.

File details

Details for the file pyecs-0.19-py3-none-any.whl.

File metadata

  • Download URL: pyecs-0.19-py3-none-any.whl
  • Upload date:
  • Size: 6.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.5 CPython/3.9.4 Linux/5.4.0-1043-azure

File hashes

Hashes for pyecs-0.19-py3-none-any.whl
Algorithm Hash digest
SHA256 2fb28b53903e2fd738ab9eef57a83e18f1bacbf09945441dcfdd252378016a74
MD5 f8ab3acc4afaf5cf6bebce40395b883b
BLAKE2b-256 60a044d0e421afcf369ae7c451dccc0b586ea8dbadfdb203a4343132300408dd

See more details on using hashes here.

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