forked from ManWithBear/pobfrontend
-
Notifications
You must be signed in to change notification settings - Fork 4
/
subscript.hpp
99 lines (91 loc) · 3.02 KB
/
subscript.hpp
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#ifndef SUBSCRIPT_HPP
#define SUBSCRIPT_HPP
#include <QThread>
#include <iostream>
extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
#include "luajit.h"
}
static int dummy_ConPrintf(lua_State* L)
{
return 0;
}
class SubScript : public QThread {
Q_OBJECT
public:
SubScript(lua_State *L_main) {
L = luaL_newstate();
// FIXME check for failure?
lua_pushlightuserdata(L, this);
lua_rawseti(L, LUA_REGISTRYINDEX, 0);
luaL_openlibs(L);
lua_pushcfunction(L, dummy_ConPrintf);
lua_setglobal(L, "ConPrintf");
int err = luaL_loadstring(L, lua_tostring(L_main, 1));
if (err) {
std::cout << "Error in subscript: " << err << std::endl;
std::cout << lua_tostring(L, -1) << std::endl;
}
for (int stackpos = 4;stackpos <= lua_gettop(L_main);stackpos++) {
switch (lua_type(L_main, stackpos)) {
case LUA_TNIL:
lua_pushnil(L);
break;
case LUA_TBOOLEAN:
lua_pushboolean(L, lua_toboolean(L_main, stackpos));
break;
case LUA_TNUMBER:
lua_pushnumber(L, lua_tonumber(L_main, stackpos));
break;
case LUA_TSTRING:
lua_pushstring(L, lua_tostring(L_main, stackpos));
break;
}
}
lua_pushnumber(L, lua_gettop(L_main) - 3);
}
void run() override {
int numarg = (int)lua_tointeger(L, -1);
lua_pop(L, 1);
if (lua_pcall(L, numarg, LUA_MULTRET, 0)) {
std::cout << "Error in thread call: " << lua_tostring(L, -1) << std::endl;
}
};
void onSubFinished(lua_State *L_main, int id) {
lua_getfield(L_main, LUA_REGISTRYINDEX, "uicallbacks");
lua_getfield(L_main, -1, "MainObject");
lua_remove(L_main, -2);
lua_getfield(L_main, -1, "OnSubFinished");
lua_insert(L_main, -2);
lua_pushinteger(L_main, id);
int n = lua_gettop(L);
for (int i = 1; i <= n; i++) {
switch (lua_type(L, i)) {
case LUA_TNIL:
lua_pushnil(L_main);
break;
case LUA_TBOOLEAN:
lua_pushboolean(L_main, lua_toboolean(L, i));
break;
case LUA_TNUMBER:
lua_pushnumber(L_main, lua_tonumber(L, i));
break;
case LUA_TSTRING:
lua_pushstring(L_main, lua_tostring(L, i));
break;
default:
std::cout << "Subscript return " << (i - 1) << ": only nil, boolean, number and string can be returned from sub script" << std::endl;
return;
}
}
int result = lua_pcall(L_main, lua_gettop(L) + 2, 0, 0);
if (result) {
std::cout << "Error calling OnSubFinished: " << result << std::endl;
std::cout << lua_tostring(L_main, -1) << std::endl;
}
}
lua_State *L;
};
#endif