From 4eeacc60cab3d6cb070bcd19a5259b7a95832a1d Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sat, 31 Aug 2019 00:40:21 -0400 Subject: 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 --- src/engine.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/engine.cpp') 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(); @@ -44,8 +47,16 @@ void Engine::logicLoop(void) while (shouldRun()) { systems.update(dt); + + // All entities with an idle function should be run here + entities.each([](entityx::Entity, Scripted &f){ + f.exec(); + }); std::this_thread::sleep_for(100ms); } + + // Remove all Lua references from entities + entities.each([](entityx::Entity, Scripted &f){ f.cleanup(); }); } void Engine::renderLoop(void) -- cgit v1.2.3