aboutsummaryrefslogtreecommitdiffstats
path: root/src/script.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2019-10-01 20:50:41 -0400
committerClyne Sullivan <clyne@bitgloo.com>2019-10-01 20:50:41 -0400
commit9b81db1fe44bf13d215cf2700495f2a8710a8ade (patch)
tree17a406810f13cf271fe34c41006454cb81b55c1d /src/script.cpp
parentaf39f2e08b0503db723ae707a5c7278d8c85f812 (diff)
parentad5a63db312d0029109e6ca0051feaa516419ad2 (diff)
Merge branch 'master' of https://github.com/tcsullivan/gamedev2 into audio
Diffstat (limited to 'src/script.cpp')
-rw-r--r--src/script.cpp11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/script.cpp b/src/script.cpp
index 20011b4..9fae1c9 100644
--- a/src/script.cpp
+++ b/src/script.cpp
@@ -88,12 +88,6 @@ void ScriptSystem::doFile(void)
void ScriptSystem::scriptExport(void)
{
- std::function<sol::table(sol::table)> entitySpawn =
- [this](sol::table t){ return spawn(t);};
-
- std::function<World* (sol::object)> worldRegister =
- [this](sol::object t){ return worldSystem.addWorld(t); };
-
lua.new_usertype<Position>("Position",
sol::constructors<Position(double x, double y), Position()>(),
"x", &Position::x,
@@ -142,8 +136,9 @@ void ScriptSystem::scriptExport(void)
"getSize", &World::getSize);
game = lua["game"].get_or_create<sol::table>();
- game.set_function("spawn", entitySpawn);
- game.set_function("worldRegister", worldRegister);
+ game.set_function("spawn", bindInstance(&ScriptSystem::spawn, this));
+ game.set_function("worldRegister", bindInstance(&WorldSystem::addWorld,
+ &worldSystem));
}
sol::table ScriptSystem::spawn(sol::object param)