diff options
author | Alec Thomas <alec@swapoff.org> | 2014-10-10 15:58:53 +1100 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2014-10-10 15:58:53 +1100 |
commit | 8d90bac7ce17c6833ce3ee7a7dc52b521cb1973d (patch) | |
tree | 9a95f964d66037b30888396fe329ddc87264ea57 /examples/example.cc | |
parent | 1e65256445d2088145d4f5fa1b418c6529abfb3c (diff) |
Big performance improvement in iteration.
No longer perform a vtable lookup and function call to unpack
components. Unpacking is now completely templatised and expanded at
compile time.
Diffstat (limited to 'examples/example.cc')
-rw-r--r-- | examples/example.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/example.cc b/examples/example.cc index 03d2767..cf00a8b 100644 --- a/examples/example.cc +++ b/examples/example.cc @@ -142,6 +142,8 @@ private: // CollisionEvent. This is used by ExplosionSystem to create explosion // particles, but it could be used by a SoundSystem to play an explosion // sound, etc.. +// +// Uses a fairly rudimentary 2D partition system, but performs reasonably well. class CollisionSystem : public ex::System<CollisionSystem> { static const int PARTITIONS = 200; @@ -292,7 +294,7 @@ public: target.draw(*renderable->shape.get()); } last_update += dt; - if (last_update >= 1.0) { + if (last_update >= 0.5) { std::ostringstream out; out << es.size() << " entities (" << static_cast<int>(1.0 / dt) << " fps)"; text.setString(out.str()); |