diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-03 20:03:41 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-03 20:03:41 -0400 |
commit | cff6ba0a316f6f23852f7451adaade8454b6592f (patch) | |
tree | 35e121a87b618be49dda8e77fffd3272dc4a3758 /src/script.cpp | |
parent | ec1d57aeadbd0f34616eeec8f1a922ca61b90085 (diff) |
lua handling movement events? idea
Diffstat (limited to 'src/script.cpp')
-rw-r--r-- | src/script.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/script.cpp b/src/script.cpp index 351aae4..d8f23ec 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -78,6 +78,7 @@ void ScriptSystem::doFile(void) /******************** * SCRIPT PARSING * ********************/ +#include <components/EventListener.hpp> #include <components/Position.hpp> #include <components/Player.hpp> #include <components/Name.hpp> @@ -182,6 +183,12 @@ sol::table ScriptSystem::spawn(sol::object param) e.assign<Light>(Light().FromLua(tab["Light"])).get(); } + // Probably should be last + if (tab["EventListeners"] != nullptr) { + sol::table listeners = tab["EventListeners"]; + e.assign<EventListener>(listeners); + } + } else { // TODO better logging std::cerr << "Parameter to spawn() must be a table!" << std::endl; |