diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-31 00:40:21 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-31 00:40:21 -0400 |
commit | 4eeacc60cab3d6cb070bcd19a5259b7a95832a1d (patch) | |
tree | 7e26aea1b95dec5bb5bfaf4749cba0b71dd06cf9 /src/engine.cpp | |
parent | 3a5718d4ab0d9f726686c601579a4c586a65e269 (diff) |
Lua spawned entities have "Idle" function
Every entity spawned from Lua is given the "Scripted" component,
this component holds onto the Entities master table and it's idle
function
Diffstat (limited to 'src/engine.cpp')
-rw-r--r-- | src/engine.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/engine.cpp b/src/engine.cpp index 4803c64..317e116 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -25,6 +25,9 @@ #include "window.hpp" #include "script.hpp" +#include "components/Script.hpp" +#include "components/Position.hpp" + int Engine::init(void) { systems.add<GameRunSystem>(); @@ -44,8 +47,16 @@ void Engine::logicLoop(void) while (shouldRun()) { systems.update<InputSystem>(dt); + + // All entities with an idle function should be run here + entities.each<Scripted>([](entityx::Entity, Scripted &f){ + f.exec(); + }); std::this_thread::sleep_for(100ms); } + + // Remove all Lua references from entities + entities.each<Scripted>([](entityx::Entity, Scripted &f){ f.cleanup(); }); } void Engine::renderLoop(void) |