diff options
Diffstat (limited to 'src/script.cpp')
-rw-r--r-- | src/script.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/script.cpp b/src/script.cpp index 260df13..ffefb1d 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -32,7 +32,7 @@ void ScriptSystem::configure([[maybe_unused]]entityx::EntityManager& entities, events.subscribe<EntitySpawnEvent>(*this); - init(); + //init(); } void ScriptSystem::update([[maybe_unused]] entityx::EntityManager& entites, @@ -75,6 +75,7 @@ void ScriptSystem::doFile(void) * SCRIPT PARSING * ********************/ #include <components/Position.hpp> +#include <components/Player.hpp> #include <components/Name.hpp> #include <components/Render.hpp> #include <components/Script.hpp> @@ -105,6 +106,9 @@ void ScriptSystem::scriptExport() "x", &Velocity::x, "y", &Velocity::y); + lua.new_usertype<Player>("Player", + sol::constructors<Player(void), Player()>()); + auto gamespace = lua["game"].get_or_create<sol::table>(); gamespace.set_function("spawn", func); } @@ -155,6 +159,10 @@ sol::table ScriptSystem::spawn(sol::object param) e.assign<Velocity>(Velocity().FromLua(tab["Velocity"])).get(); } + if (tab["Player"] != nullptr) { + (*toRet)["Player"] = e.assign<Player>().get(); + } + } else { // TODO better logging std::cerr << "Parameter to spawn() must be a table!" << std::endl; |