diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-17 13:55:22 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-17 13:55:22 -0400 |
commit | ceda39e4bd2e3a7794f0cb4f96df1de6ebee47d2 (patch) | |
tree | ba5451b6dcade324114d145d526e7c5b5465689a /src/script.cpp | |
parent | dbb26902ed54ce308fdcec4697616e152f2894fd (diff) | |
parent | 0236eb7f6391c9d925dcaaddb8cb01ecfb7d5e55 (diff) |
update with master; using VBOs for fonts
Diffstat (limited to 'src/script.cpp')
-rw-r--r-- | src/script.cpp | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/script.cpp b/src/script.cpp index 61aa136..ec8f5c7 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -87,6 +87,12 @@ 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, @@ -121,8 +127,18 @@ void ScriptSystem::scriptExport(void) sol::constructors<Physics(void), Physics()>(), "standing", &Physics::standing); + lua.new_usertype<World>("World", + sol::constructors<World(sol::object), World(void)>(), + "Generate", &World::generate, + "Seed", sol::property(&World::setSeed, &World::getSeed), + "setData", &World::setData, + "registerMaterial", &World::registerMaterial, + "setSize", &World::setSize, + "getSize", &World::getSize); + game = lua["game"].get_or_create<sol::table>(); - game.set_function("spawn", [this](sol::table t) { return spawn(t); }); + game.set_function("spawn", entitySpawn); + game.set_function("worldRegister", worldRegister); } sol::table ScriptSystem::spawn(sol::object param) |