1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#include <systems/lua.hpp>
void LuaScript::setGlobal(const LuaVariable& nv) const
{
lua_pushnumber(state, std::get<float&>(nv));
lua_setglobal(state, std::get<std::string>(nv).c_str());
}
void LuaScript::getReturns(std::vector<double>& rets) const
{
int count = lua_gettop(state);
for (int i = 1; i <= count; i++)
rets.emplace_back(lua_tonumber(state, i));
lua_pop(state, count);
}
void LuaScript::operator()(const std::string& func, std::vector<LuaVariable> vars) const
{
for (auto& v : vars)
setGlobal(v);
(*this)(func);
for (auto& v : vars) {
lua_getglobal(state, std::get<std::string>(v).c_str());
std::get<float&>(v) = lua_tonumber(state, -1);
}
}
void LuaScript::operator()(const std::string& func, std::vector<double>& rets,
std::vector<LuaVariable> vars) const
{
for (auto& v : vars)
setGlobal(v);
(*this)(func);
getReturns(rets);
for (auto& v : vars) {
lua_getglobal(state, std::get<std::string>(v).c_str());
std::get<float&>(v) = lua_tonumber(state, -1);
}
}
void LuaScript::operator()(std::vector<LuaVariable> vars) const
{
for (auto& v : vars)
setGlobal(v);
(*this)();
for (auto& v : vars) {
lua_getglobal(state, std::get<std::string>(v).c_str());
std::get<float&>(v) = lua_tonumber(state, -1);
}
}
void LuaScript::operator()(std::vector<double>& rets, std::vector<LuaVariable> vars) const
{
for (auto& v : vars)
setGlobal(v);
(*this)();
getReturns(rets);
for (auto& v : vars) {
lua_getglobal(state, std::get<std::string>(v).c_str());
std::get<float&>(v) = lua_tonumber(state, -1);
}
}
void LuaScript::operator()(const std::string& s) const
{
lua_getglobal(state, s.c_str());
lua_pcall(state, 0, LUA_MULTRET, 0);
}
|