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.
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.5.tar.gz
(944.0 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.5-py3-none-any.whl
(33.2 kB
view details)
File details
Details for the file tigen-0.5.5.tar.gz.
File metadata
- Download URL: tigen-0.5.5.tar.gz
- Upload date:
- Size: 944.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.8.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5a44407b7dd450214a45346e790ea91c4670a121f2efe735a2b86c1b3584c36
|
|
| MD5 |
e07c850109abfe51af120c765b197b24
|
|
| BLAKE2b-256 |
4c7eaefa976c47215118b09b1980fcf79e184cd0911f046e4206524bf3b33dcc
|
File details
Details for the file tigen-0.5.5-py3-none-any.whl.
File metadata
- Download URL: tigen-0.5.5-py3-none-any.whl
- Upload date:
- Size: 33.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.8.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69e51d00415c741263a9d2d5474bd5bda4835b3a6e99a7e294855eaf554188b3
|
|
| MD5 |
022b64bc07abd419a4b2ea0480dfbf55
|
|
| BLAKE2b-256 |
2273a3cf06bea0fe05539ab6da6deedbccbed63d4004a52ed5d7a3145f6b773e
|