From 25a7edb26f8d4965172b85b5eef12d3ec3e7ee3d Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 29 Sep 2017 08:27:48 -0400 Subject: birb --- include/systems/lua.hpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'include/systems/lua.hpp') 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); } -- cgit v1.2.3