-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathLuaLib_Table.cpp
84 lines (76 loc) · 2.83 KB
/
LuaLib_Table.cpp
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
#include "pch.h"
#include "LuaLibs.h"
extern int index_LuaValue2Int(const LuaValue& v, int len);
static void table_concat(const vector<LuaValue>& args, vector<LuaValue>& rets) {
string r;
auto table = args[0].getTable();
string sep;
if (args.size() >= 2) sep = args[1].getString()->buf();
int i = 0, j = table->size() - 1;
if (args.size() >= 3) i = index_LuaValue2Int(args[2], table->size());
if (args.size() >= 4) j = index_LuaValue2Int(args[3], table->size());
if (i <= j) {
LuaValue v(table->get(LuaValue(NumberType(i + 1))));
ASSERT(v.isTypeOf(LVT_String) || v.isTypeOf(LVT_Number));
r += v.toString();
++i;
}
for (; i <= j; ++i) {
LuaValue v(table->get(LuaValue(NumberType(i + 1))));
ASSERT(v.isTypeOf(LVT_String) || v.isTypeOf(LVT_Number));
r += sep;
r += v.toString();
}
rets.push_back(LuaValue(r.c_str()));
}
static void table_insert(const vector<LuaValue>& args, vector<LuaValue>& rets) {
auto table = args[0].getTable();
if (args.size() <= 1) ASSERT(0);
else if (args.size() == 2) {
table->arrayInsert(table->size(), args[1]);
} else if (args.size() >= 3) {
table->arrayInsert(index_LuaValue2Int(args[1], table->size()), args[2]);
} else ;
}
static void table_maxn(const vector<LuaValue>& args, vector<LuaValue>& rets) {
rets.push_back(LuaValue(NumberType(args[0].getTable()->size())));
}
static void table_remove(const vector<LuaValue>& args, vector<LuaValue>& rets) {
auto table = args[0].getTable();
int index = table->size() - 1;
if (args.size() >= 2) index = index_LuaValue2Int(args[1], table->size());
rets.push_back(table->arrayRemove(index));
}
static void table_sort(const vector<LuaValue>& args, vector<LuaValue>& rets) {
auto table = args[0].getTable();
if (args.empty()) ASSERT(0);
else if (args.size() == 1) {
table->sort();
} else if (args.size() >= 2) {
table->sort(args[1]);
} else ;
}
static void table_foreach(const vector<LuaValue>& args, vector<LuaValue>& rets) {
auto table = args[0].getTable();
auto func = args[1];
vector<LuaValue> _args, _rets;
LuaValue k;
for (;;) {
LuaValue v(table->getNext(k));
if (k.isTypeOf(LVT_Nil)) break;
_args.push_back(k); _args.push_back(v);
callFunc(func, _args, _rets);
_args.clear(); _rets.clear();
}
}
extern void openLib_table() {
auto table = LuaTable::create();
LuaVM::instance()->getGlobalTable()->set(LuaValue("table"), LuaValue(table));
#define ENTRY(name) {#name, &table_##name}
CFuncEntry entries[] = {
ENTRY(concat), ENTRY(insert), ENTRY(maxn),
ENTRY(remove), ENTRY(sort), ENTRY(foreach),
};
#undef ENTRY
for (auto &entry : entries) table->set(LuaValue(entry.name), LuaValue(CFunction::create(entry.func)));
}