From fe7073293163f4b1417a1970164306d2faf97686 Mon Sep 17 00:00:00 2001 From: Alec Thomas Date: Mon, 22 Oct 2012 16:02:08 -0400 Subject: Allow System's to be added pre-created to the SystemManager. --- README.md | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index db4f140..cd5fff6 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,8 @@ As an example, a physics system might need *position* and *mass* data, while a c ## Tutorial + + ### Entities Entities are simply 64-bit numeric identifiers with which components are associated. Entity IDs are allocated by the `EntityManager`. Components are then associated with the entity, and can be queried or retrieved directly. @@ -168,6 +170,34 @@ events.subscribe(debug_collisions); ### World (tying it all together) +Managing systems, components and entities can be streamlined by subclassing `World`. It is not necessary, but it provides callbacks for configuring systems, initializing entities and the world, and so on. + +To use it, subclass `World` and implement `configure()`, `initialize()` and `update()`: + +``` +class GameWorld : public World { + protected: + void configure() { + system_manager.add(); + system_manager.add(); + } + + void initialize() { + // Create some entities in random locations heading in random directions + for (int i = 0; i < 100; ++i) { + Entity entity = entity_manager.create(); + entity_manager.assign(entity, rand() % 100, rand() % 100); + entity_manager.assign(entity, (rand() % 10) - 5, (rand() % 10) - 5); + } + } + + void update(double dt) { + system_manager.update(dt); + system_manager.update(dt); + } +}; +``` + ## Installation EntityX has the following build and runtime requirements: @@ -184,4 +214,4 @@ Once these dependencies are installed you should be able to build and install En mkdir build && cd build && cmake .. && make && make test && make install ``` -EntityX has currently only been tested on Mac OSX (Lion and Mountain Lion). Reports and patches for builds on other platforms are welcome. \ No newline at end of file +EntityX has currently only been tested on Mac OSX (Lion and Mountain Lion). Reports and patches for builds on other platforms are welcome. -- cgit v1.2.3