diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-09-29 08:27:48 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-09-29 08:27:48 -0400 |
commit | 25a7edb26f8d4965172b85b5eef12d3ec3e7ee3d (patch) | |
tree | 4e9484deba4a177094f3636e8cd3c9e0b044a508 /include/systems | |
parent | babd5e5596cefc7b2e15825976e084591f275d6f (diff) |
birb
Diffstat (limited to 'include/systems')
-rw-r--r-- | include/systems/lua.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/systems/lua.hpp b/include/systems/lua.hpp index 03c3a38..8c4698a 100644 --- a/include/systems/lua.hpp +++ b/include/systems/lua.hpp @@ -15,11 +15,22 @@ private: 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); } |