aboutsummaryrefslogtreecommitdiffstats
path: root/include/systems/lua.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-09-29 08:27:48 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-09-29 08:27:48 -0400
commit25a7edb26f8d4965172b85b5eef12d3ec3e7ee3d (patch)
tree4e9484deba4a177094f3636e8cd3c9e0b044a508 /include/systems/lua.hpp
parentbabd5e5596cefc7b2e15825976e084591f275d6f (diff)
birb
Diffstat (limited to 'include/systems/lua.hpp')
-rw-r--r--include/systems/lua.hpp11
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, "&lt;", "<");
+ replace(script, "&gt;", ">");
luaL_loadstring(state, script.c_str());
lua_pcall(state, 0, 0, 0);
}