april
Simulating worlds in a computer
The April project defines a set of C++ objects (World, Actor, Sensor, Reflex, Brain, Actuator, Event) that help simulate various environments.
The world has an amount of energy that the user may use to create Actors and components while Actors may also create other Actors from their own energy.
The code is structured in several layers:
- april-core simply defines the library and the objects
- april-gui builds on the concepts in april-core, giving a visual interpretation to the concepts...