diff options
author | Andy <drumsetmonkey@gmail.com> | 2019-08-29 13:07:45 -0400 |
---|---|---|
committer | Andy <drumsetmonkey@gmail.com> | 2019-08-29 13:07:45 -0400 |
commit | 4ac4b280abf2ffa28caa5a532353115a3033444f (patch) | |
tree | 2a13d658bb454360b2faf401244bb0321d3460d4 /src/script.hpp | |
parent | e9758416b18b27a65337c28d9641afc0ee89b34b (diff) | |
parent | 7a46fa2dd3dad3f038bf8e7339bc67abca428ae6 (diff) |
Started creating scripting library/namespace and added sol2 for interfacing
Diffstat (limited to 'src/script.hpp')
-rw-r--r-- | src/script.hpp | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/src/script.hpp b/src/script.hpp index 1dc2df2..e9373c0 100644 --- a/src/script.hpp +++ b/src/script.hpp @@ -22,6 +22,7 @@ #include <entityx/entityx.h> #include <lua.hpp> #include <LuaBridge/LuaBridge.h> +#include <script/script.hpp> /**************** * COMPONENTS * @@ -31,10 +32,11 @@ namespace lb = luabridge; struct EntitySpawnEvent { - EntitySpawnEvent (const lb::LuaRef ref) - : ref(ref){} + EntitySpawnEvent (lb::LuaRef ref) + : ref(ref), ret(nullptr){} lb::LuaRef ref; + lb::LuaRef ret; }; /** @@ -71,6 +73,11 @@ class ScriptSystem : public entityx::System<ScriptSystem> int init(void) { luaL_openlibs(state.get()); + scriptExport(); + //doFile(); + + Script::CreateNewState(); + return 0; } @@ -82,7 +89,6 @@ class ScriptSystem : public entityx::System<ScriptSystem> events.subscribe<EntitySpawnEvent>(*this); init(); - scriptExport(); } void update([[maybe_unused]] entityx::EntityManager& entites, @@ -98,8 +104,9 @@ class ScriptSystem : public entityx::System<ScriptSystem> std::cout << "Lua error: " << lua_tostring(state.get(), -1) << std::endl; } - manager.each<Position>([&](entityx::Entity, Position& p){std::cout << p.x << "," << p.y << std::endl;}); - + manager.each<Position>( + [&](entityx::Entity, Position& p) + {std::cout << p.x << "," << p.y << std::endl;}); } lb::LuaRef spawn(lb::LuaRef ref) @@ -138,6 +145,10 @@ class ScriptSystem : public entityx::System<ScriptSystem> .endClass() .endNamespace(); + lb::getGlobalNamespace(state.get()) + .beginNamespace("game") + .endNamespace(); + // Functions export //lb::getGlobalNamespace(state.get()) // .beginNamespace("game") @@ -145,9 +156,10 @@ class ScriptSystem : public entityx::System<ScriptSystem> // .endNamespace(); } - void receive (const EntitySpawnEvent &spawn) + void receive (const EntitySpawnEvent &toSpawn) { - lb::push(state.get(), this->spawn(spawn.ref)); + //toSpawn.ret = spawn(toSpawn.ref); + (void)toSpawn; } }; |