Annotation-based asynchronous ECS library
Project description
ECS library
This is a library for python containing an interpretation of ECS design pattern.
Features
- You can add components during the game and entity will be automatically registered to a system if needed
- You can write somewhat asynchronous systems (using yield to skip a frame)
Interpretation
- Entity is a javascript-style object (
entity.name == entity['name']
) - Component is entity's attribute
- System is an entity describing an interaction between N entities
- Metasystem is a system that launches other systems
Usage
You can also see girvel/metaworld, ecs is written for it.
from ecs import Metasystem, create_system
import time
# 1. You create a metasystem
ms = Metasystem()
dt = 0.04
# 2. You create systems and add them to metasystem
@ms.add
@create_system
def gravity(
object: 'vy', # object is any entity with 'vy' component
constants: 'g', # constants is any entity with 'g' component
):
object.vy += constants.g * dt
@ms.add
@create_system
def inertion(object: 'x, y, vx, vy'):
object.x += object.vx * dt
object.y += object.vy * dt
@ms.add
@create_system
def output(object: 'name, x, y'):
yield from range(int(1 / dt) - 1) # skips 24 out of 25 frames
print(f'{object.name}: {object.x:.2f}, {object.y:.2f}')
# 3. You create objects
ms.create(name='falling_guy1', x=0, y=0, vx=0, vy=0)
ms.create(name='falling_guy2', x=100, y=0, vx=0, vy=0)
ms.create(g=10)
# 4. Game loop
while True:
ms.update()
time.sleep(dt)
Installation
I recommend you build from sources, version in pypi is old.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ecs-girvel-2.0.0.tar.gz
(7.8 kB
view details)
Built Distribution
File details
Details for the file ecs-girvel-2.0.0.tar.gz
.
File metadata
- Download URL: ecs-girvel-2.0.0.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55b2b9eb2f5a1e9cbc26b7861b57343059999c2abeed570934722971967f3a17 |
|
MD5 | 5b6284ce55ad5c4d74696cd3c344e3cf |
|
BLAKE2b-256 | 71714d716ef7d35a8fab5f494b6c8d8db37000093394258fdb090622c50e4c79 |
File details
Details for the file ecs_girvel-2.0.0-py3-none-any.whl
.
File metadata
- Download URL: ecs_girvel-2.0.0-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6cdd09126b17c28b7ab82001100265e50282cfdf0e6fa71744e2b988be48c4ee |
|
MD5 | 4c1626921064fd4fbfa33d6eea6cb558 |
|
BLAKE2b-256 | c866d89492b19be40772d1583cf24604e4713162c05a193a9b8246e9429d5081 |