Skip to main content

Annotation-based asynchronous ECS library

Project description

ECS library

This is a library for python containing an interpretation of ECS design pattern.

Features

  1. You can add components during the game and entity will be automatically registered to a system if needed
  2. You can write somewhat asynchronous systems (using yield to skip a frame)

Interpretation

  1. Entity is a javascript-style object (entity.name == entity['name'])
  2. Component is entity's attribute
  3. System is an entity describing an interaction between N entities
  4. 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


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

Uploaded Source

Built Distribution

ecs_girvel-2.0.1-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file ecs-girvel-2.0.1.tar.gz.

File metadata

  • Download URL: ecs-girvel-2.0.1.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for ecs-girvel-2.0.1.tar.gz
Algorithm Hash digest
SHA256 ea45274c54f9b4021085a762cc40fea28fbe208941e941c84f835f31698a7f67
MD5 9c8c0ed4493192d50acf031c6904c935
BLAKE2b-256 f2ebe51ef590e558d46b1720585d1151ebd68d36e177a86bb477cac56fc42c99

See more details on using hashes here.

File details

Details for the file ecs_girvel-2.0.1-py3-none-any.whl.

File metadata

  • Download URL: ecs_girvel-2.0.1-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

Hashes for ecs_girvel-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c66869c470e9c2d904aa4eae85993b263fe4250f43f5f9b9c0fc90f23d2fc694
MD5 60d30ebc534e51d86a506cf09af0deca
BLAKE2b-256 9ab26cdb77cbc3a9c948156e09def04ac9dabce3f1bc2fae60f15e05443d3aa1

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