This is simple world simulation model and engine.
INSTALL
- Clone as it is.
- Import engine
from world_simulation import *
- Generate World with x, y coords by
WorldEngine(5, 5)
- Configure Engine
- Load models by
EngineConfig.WorldConfig.load_model(model)
- Start simulation by calling
WorldEngineObject.run_loop()
Also There is a simple example in app.py file. You can customize and create your own models by examples in engine. Guide soon.