aboutsummaryrefslogtreecommitdiffstats
path: root/src/script.cpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-10 23:55:54 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-10 23:55:54 -0400
commit2b095e30f7786526da9339ccada3aae7f2ab5df4 (patch)
tree2f1b89406e387308f7d59818963a14e0ed8c6858 /src/script.cpp
parent2349bd2ffdd7b312c4b13e5794f12d2b7613f3b4 (diff)
Started world system
Diffstat (limited to 'src/script.cpp')
-rw-r--r--src/script.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/script.cpp b/src/script.cpp
index a6f0968..e3aca3e 100644
--- a/src/script.cpp
+++ b/src/script.cpp
@@ -87,9 +87,12 @@ void ScriptSystem::doFile(void)
void ScriptSystem::scriptExport(void)
{
- std::function<sol::table(sol::table)> func =
+ std::function<sol::table(sol::table)> entitySpawn =
[this](sol::table t){ return spawn(t);};
+ std::function<unsigned int(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,
@@ -125,7 +128,8 @@ void ScriptSystem::scriptExport(void)
"standing", &Physics::standing);
auto gamespace = lua["game"].get_or_create<sol::table>();
- gamespace.set_function("spawn", func);
+ gamespace.set_function("spawn", entitySpawn);
+ gamespace.set_function("worldRegister", worldRegister);
}
sol::table ScriptSystem::spawn(sol::object param)