@@ -26,6 +26,19 @@ extern "C" {
26
26
#include " common/c_converter.h"
27
27
#include " constants.h"
28
28
29
+
30
+ #define CHECK_TYPE (index, name, type ) do { \
31
+ int t = lua_type (L, (index )); \
32
+ if (t != (type)) { \
33
+ throw LuaError (std::string (" Invalid " ) + (name) + \
34
+ " (expected " + lua_typename (L, (type)) + \
35
+ " got " + lua_typename (L, t) + " )." ); \
36
+ } \
37
+ } while (0 )
38
+ #define CHECK_POS_COORD (name ) CHECK_TYPE(-1 , " position coordinate '" name " '" , LUA_TNUMBER)
39
+ #define CHECK_POS_TAB (index ) CHECK_TYPE(index, " position" , LUA_TTABLE)
40
+
41
+
29
42
void push_v3f (lua_State *L, v3f p)
30
43
{
31
44
lua_newtable (L);
@@ -49,7 +62,7 @@ void push_v2f(lua_State *L, v2f p)
49
62
v2s16 read_v2s16 (lua_State *L, int index)
50
63
{
51
64
v2s16 p;
52
- luaL_checktype (L, index , LUA_TTABLE );
65
+ CHECK_POS_TAB ( index );
53
66
lua_getfield (L, index , " x" );
54
67
p.X = lua_tonumber (L, -1 );
55
68
lua_pop (L, 1 );
@@ -62,20 +75,22 @@ v2s16 read_v2s16(lua_State *L, int index)
62
75
v2s16 check_v2s16 (lua_State *L, int index)
63
76
{
64
77
v2s16 p;
65
- luaL_checktype (L, index , LUA_TTABLE );
78
+ CHECK_POS_TAB ( index );
66
79
lua_getfield (L, index , " x" );
67
- p.X = luaL_checknumber (L, -1 );
80
+ CHECK_POS_COORD (" x" );
81
+ p.X = lua_tonumber (L, -1 );
68
82
lua_pop (L, 1 );
69
83
lua_getfield (L, index , " y" );
70
- p.Y = luaL_checknumber (L, -1 );
84
+ CHECK_POS_COORD (" y" );
85
+ p.Y = lua_tonumber (L, -1 );
71
86
lua_pop (L, 1 );
72
87
return p;
73
88
}
74
89
75
90
v2s32 read_v2s32 (lua_State *L, int index)
76
91
{
77
92
v2s32 p;
78
- luaL_checktype (L, index , LUA_TTABLE );
93
+ CHECK_POS_TAB ( index );
79
94
lua_getfield (L, index , " x" );
80
95
p.X = lua_tonumber (L, -1 );
81
96
lua_pop (L, 1 );
@@ -88,7 +103,8 @@ v2s32 read_v2s32(lua_State *L, int index)
88
103
v2f read_v2f (lua_State *L, int index)
89
104
{
90
105
v2f p;
91
- luaL_checktype (L, index , LUA_TTABLE);
106
+ CHECK_POS_TAB (index );
107
+ lua_getfield (L, index , " x" );
92
108
lua_getfield (L, index , " x" );
93
109
p.X = lua_tonumber (L, -1 );
94
110
lua_pop (L, 1 );
@@ -101,20 +117,22 @@ v2f read_v2f(lua_State *L, int index)
101
117
v2f check_v2f (lua_State *L, int index)
102
118
{
103
119
v2f p;
104
- luaL_checktype (L, index , LUA_TTABLE );
120
+ CHECK_POS_TAB ( index );
105
121
lua_getfield (L, index , " x" );
106
- p.X = luaL_checknumber (L, -1 );
122
+ CHECK_POS_COORD (" x" );
123
+ p.X = lua_tonumber (L, -1 );
107
124
lua_pop (L, 1 );
108
125
lua_getfield (L, index , " y" );
109
- p.Y = luaL_checknumber (L, -1 );
126
+ CHECK_POS_COORD (" y" );
127
+ p.Y = lua_tonumber (L, -1 );
110
128
lua_pop (L, 1 );
111
129
return p;
112
130
}
113
131
114
132
v3f read_v3f (lua_State *L, int index)
115
133
{
116
134
v3f pos;
117
- luaL_checktype (L, index , LUA_TTABLE );
135
+ CHECK_POS_TAB ( index );
118
136
lua_getfield (L, index , " x" );
119
137
pos.X = lua_tonumber (L, -1 );
120
138
lua_pop (L, 1 );
@@ -130,15 +148,18 @@ v3f read_v3f(lua_State *L, int index)
130
148
v3f check_v3f (lua_State *L, int index)
131
149
{
132
150
v3f pos;
133
- luaL_checktype (L, index , LUA_TTABLE );
151
+ CHECK_POS_TAB ( index );
134
152
lua_getfield (L, index , " x" );
135
- pos.X = luaL_checknumber (L, -1 );
153
+ CHECK_POS_COORD (" x" );
154
+ pos.X = lua_tonumber (L, -1 );
136
155
lua_pop (L, 1 );
137
156
lua_getfield (L, index , " y" );
138
- pos.Y = luaL_checknumber (L, -1 );
157
+ CHECK_POS_COORD (" y" );
158
+ pos.Z = lua_tonumber (L, -1 );
139
159
lua_pop (L, 1 );
140
160
lua_getfield (L, index , " z" );
141
- pos.Z = luaL_checknumber (L, -1 );
161
+ CHECK_POS_COORD (" z" );
162
+ pos.Z = lua_tonumber (L, -1 );
142
163
lua_pop (L, 1 );
143
164
return pos;
144
165
}
@@ -182,7 +203,7 @@ v3s16 check_v3s16(lua_State *L, int index)
182
203
video::SColor readARGB8 (lua_State *L, int index)
183
204
{
184
205
video::SColor color (0 );
185
- luaL_checktype (L, index , LUA_TTABLE);
206
+ CHECK_TYPE ( index , " ARGB color " , LUA_TTABLE);
186
207
lua_getfield (L, index , " a" );
187
208
if (lua_isnumber (L, -1 ))
188
209
color.setAlpha (lua_tonumber (L, -1 ));
@@ -378,9 +399,11 @@ std::string checkstringfield(lua_State *L, int table,
378
399
const char *fieldname)
379
400
{
380
401
lua_getfield (L, table, fieldname);
381
- std::string s = luaL_checkstring (L, -1 );
402
+ CHECK_TYPE (-1 , std::string (" field \" " ) + fieldname + ' "' , LUA_TSTRING);
403
+ size_t len;
404
+ const char *s = lua_tolstring (L, -1 , &len);
382
405
lua_pop (L, 1 );
383
- return s ;
406
+ return std::string (s, len) ;
384
407
}
385
408
386
409
std::string getstringfield_default (lua_State *L, int table,
0 commit comments