diff options
author | tcsullivan <tullivan99@gmail.com> | 2019-09-01 12:56:49 -0400 |
---|---|---|
committer | tcsullivan <tullivan99@gmail.com> | 2019-09-01 12:56:49 -0400 |
commit | e7fee98e0ee15665b40b383baf925356bb81f20d (patch) | |
tree | 1542a5d0af9fb33d4477d62f07f2c9b8c037d49c /src/script.cpp | |
parent | 86e07cc6860b01c1569645e858ea8e9235d5194e (diff) |
added player system; player moves left and right
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; |