#ifndef SYSTEMS_LUA_HPP_ #define SYSTEMS_LUA_HPP_ #include #include #include #include using LuaVariable = std::tuple; class LuaScript { private: lua_State* state; std::string script; void setGlobal(const LuaVariable&); static void replace(std::string& s, const std::string& rid, const std::string& put) { for (unsigned int i = 0; i < s.size(); i++) { if (s.substr(i, rid.size()) == rid) { s.replace(i, rid.size(), put); i += put.size() - 1; } } } public: LuaScript(const std::string& sc = "") : script(sc) { state = luaL_newstate(); luaL_openlibs(state); replace(script, "<", "<"); replace(script, ">", ">"); luaL_loadstring(state, script.c_str()); lua_pcall(state, 0, 0, 0); } void operator()(std::vector vars); void operator()(void); }; class LuaSystem { private: class LuaInterpreter { private: lua_State* state; public: LuaInterpreter(void) { state = luaL_newstate(); luaL_openlibs(state); } void registerFunc(const std::string& name, lua_CFunction func) { lua_pushcclosure(state, func, 0); lua_setglobal(state, name.c_str()); } void loadFile(const std::string& name) { luaL_dofile(state, name.c_str()); lua_pcall(state, 0, 0, 0); // 'prime' the file } void runFunc(const std::string& name) { lua_getglobal(state, name.c_str()); lua_pcall(state, 0, 0, 0); } }; public: inline static LuaScript makeScript(const std::string& s) { return LuaScript(s); } }; #endif // SYSTEMS_LUA_HPP_