tigen — Tiny Game Engine: a lightweight ECS-based simulation engine
Project description
tigen — Tiny Game Engine
A lightweight ECS (Entity Component System) based simulation engine.
Features
- ECS Core — Entity-Component-System architecture with generational IDs and efficient queries
- AI Module — Brain/context/memory abstractions for agent behavior
- Common Utilities — Math helpers, logging, data structures (generational containers, running stats)
- Configurable — Runtime configuration for simulation parameters
Installation
pip install tigen
Quick Start
from tigen.ecs.core import ECS
from tigen.ecs.component import Component
from tigen.ecs.system import System
# Define components
class Position(Component):
def __init__(self, x: float, y: float):
self.x = x
self.y = y
# Create ECS and entities
ecs = ECS()
ecs.create_entity("player", [Position(0, 0)])
License
MIT — see root LICENSE file.
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
tigen-0.5.1.tar.gz
(32.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
tigen-0.5.1-py3-none-any.whl
(32.3 kB
view details)
File details
Details for the file tigen-0.5.1.tar.gz.
File metadata
- Download URL: tigen-0.5.1.tar.gz
- Upload date:
- Size: 32.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81bbd43dcfe23e31ef0ad51922cc98a2d29d20e9f97b0070ba33b7fb46f396a7
|
|
| MD5 |
d66c3f023566f0eb495118c8457ec4b4
|
|
| BLAKE2b-256 |
59d4a1dda0eae5e6eb7a19c7d8955620cdc03bb9fbe0fc28b867b772183ec3f8
|
File details
Details for the file tigen-0.5.1-py3-none-any.whl.
File metadata
- Download URL: tigen-0.5.1-py3-none-any.whl
- Upload date:
- Size: 32.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81eeb6bb84319ffbe7e3b4e0b71d22c651955dfdf9668ddbed7dc7826a9d210d
|
|
| MD5 |
3af8fd0906cdd2283b1da918dc643976
|
|
| BLAKE2b-256 |
97b31c23e6882f781565e68565bbb32358470370fa17c4bfa86c9a10d39a2323
|