aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-09-28 17:28:59 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-09-28 17:28:59 -0400
commitbabd5e5596cefc7b2e15825976e084591f275d6f (patch)
tree9f7eeb7fd0c375e95c44f4257849f40676965a80 /include
parent3ffd09ad483a77053ebc566c3ab464a1c85e7a44 (diff)
lua - references
Diffstat (limited to 'include')
-rw-r--r--include/systems/lua.hpp17
1 files changed, 7 insertions, 10 deletions
diff --git a/include/systems/lua.hpp b/include/systems/lua.hpp
index 0d8528b..03c3a38 100644
--- a/include/systems/lua.hpp
+++ b/include/systems/lua.hpp
@@ -3,14 +3,18 @@
#include <string>
#include <lua.hpp>
+#include <tuple>
+#include <vector>
-#include <vector2.hpp>
+using LuaVariable = std::tuple<std::string, float&>;
class LuaScript {
private:
lua_State* state;
std::string script;
+ void setGlobal(const LuaVariable&);
+
public:
LuaScript(const std::string& sc = "")
: script(sc) {
@@ -20,15 +24,8 @@ public:
lua_pcall(state, 0, 0, 0);
}
- inline auto operator()(void) {
- lua_getglobal(state, "update");
- lua_pcall(state, 0, LUA_MULTRET, 0);
- if (lua_gettop(state) != 2)
- return vec2();
- vec2 ret (lua_tonumber(state, 1), lua_tonumber(state, 2));
- lua_pop(state, 2);
- return ret;
- }
+ void operator()(std::vector<LuaVariable> vars);
+ void operator()(void);
};
class LuaSystem {