1 | // Copyright (C) 2012-2015 ChaosForge Ltd
|
---|
2 | // http://chaosforge.org/
|
---|
3 | //
|
---|
4 | // This file is part of Nova libraries.
|
---|
5 | // For conditions of distribution and use, see copying.txt file in root folder.
|
---|
6 |
|
---|
7 | #include "nv/lua/lua_state.hh"
|
---|
8 |
|
---|
9 | #include "nv/lua/lua_raw.hh"
|
---|
10 | #include "nv/lua/lua_nova.hh"
|
---|
11 | #include "nv/core/logging.hh"
|
---|
12 | #include "nv/stl/string.hh"
|
---|
13 |
|
---|
14 | using namespace nv;
|
---|
15 |
|
---|
16 | // stack_guard
|
---|
17 |
|
---|
18 | #define NV_LUA_ABORT( func, ... ) \
|
---|
19 | NV_LOG_CRITICAL( "lua::" func " : ", __VA_ARGS__ ) \
|
---|
20 | NV_ABORT( "lua::" func " : critical error!" )
|
---|
21 |
|
---|
22 |
|
---|
23 | lua::stack_guard::stack_guard( lua::state* aL )
|
---|
24 | : L(aL), m_level( lua_gettop(aL->m_state) )
|
---|
25 | {
|
---|
26 |
|
---|
27 | }
|
---|
28 |
|
---|
29 | lua::stack_guard::stack_guard( lua::state& aL )
|
---|
30 | : L(&aL), m_level( lua_gettop(aL.m_state) )
|
---|
31 | {
|
---|
32 |
|
---|
33 | }
|
---|
34 |
|
---|
35 | lua::stack_guard::~stack_guard()
|
---|
36 | {
|
---|
37 | lua_settop( L->m_state, m_level );
|
---|
38 | }
|
---|
39 |
|
---|
40 | // stack_assert
|
---|
41 | nv::lua::stack_assert::stack_assert( lua::state* aL, int expected )
|
---|
42 | : L(aL->get_raw()), m_expected( lua_gettop(aL->get_raw() ) + expected )
|
---|
43 | {
|
---|
44 |
|
---|
45 | }
|
---|
46 |
|
---|
47 | nv::lua::stack_assert::stack_assert( lua::state& aL, int expected )
|
---|
48 | : L(aL.get_raw()), m_expected( lua_gettop(aL.get_raw() ) + expected )
|
---|
49 | {
|
---|
50 |
|
---|
51 | }
|
---|
52 |
|
---|
53 | nv::lua::stack_assert::stack_assert( lua_State* aL, int expected )
|
---|
54 | : L(aL), m_expected( lua_gettop(aL) + expected )
|
---|
55 | {
|
---|
56 |
|
---|
57 | }
|
---|
58 |
|
---|
59 | lua::stack_assert::~stack_assert()
|
---|
60 | {
|
---|
61 | NV_ASSERT( lua_gettop(L) == m_expected, "Lua stack corruption detected!" );
|
---|
62 | }
|
---|
63 |
|
---|
64 |
|
---|
65 | // state_wrapper
|
---|
66 |
|
---|
67 | void nv::lua::state_wrapper::push_global_table()
|
---|
68 | {
|
---|
69 | nlua_pushglobaltable( m_state );
|
---|
70 | }
|
---|
71 |
|
---|
72 | void nv::lua::state_wrapper::pop_global_table()
|
---|
73 | {
|
---|
74 | lua_replace( m_state, -2 );
|
---|
75 | }
|
---|
76 |
|
---|
77 | void lua::state_wrapper::call_get()
|
---|
78 | {
|
---|
79 | lua_gettable( m_state, -2 );
|
---|
80 | }
|
---|
81 |
|
---|
82 | void lua::state_wrapper::call_get_raw()
|
---|
83 | {
|
---|
84 | lua_rawget( m_state, -2 );
|
---|
85 | }
|
---|
86 |
|
---|
87 | void lua::state_wrapper::register_native_function( lfunction f, string_view name )
|
---|
88 | {
|
---|
89 | if ( m_global ) push_global_table();
|
---|
90 | lua_pushcfunction( m_state, f );
|
---|
91 | lua_setfield( m_state, -2, name.data() );
|
---|
92 | if ( m_global ) pop_global_table();
|
---|
93 | }
|
---|
94 |
|
---|
95 | lua::state_wrapper::~state_wrapper()
|
---|
96 | {
|
---|
97 | if (m_owner)
|
---|
98 | {
|
---|
99 | lua_close( m_state );
|
---|
100 | }
|
---|
101 | }
|
---|
102 |
|
---|
103 | bool nv::lua::state_wrapper::is_defined( const path& p, bool global )
|
---|
104 | {
|
---|
105 | if ( !p.resolve( m_state, global ) )
|
---|
106 | {
|
---|
107 | return false;
|
---|
108 | }
|
---|
109 | bool result = !lua_isnil( m_state, -1 );
|
---|
110 | lua_pop( m_state, 1 );
|
---|
111 | return result;
|
---|
112 | }
|
---|
113 |
|
---|
114 | bool nv::lua::state_wrapper::push_function( const path& p, bool global )
|
---|
115 | {
|
---|
116 | if ( !p.resolve( m_state, global ) )
|
---|
117 | {
|
---|
118 | NV_LOG_ERROR( "Lua error : not a valid path - ", p.to_string() );
|
---|
119 | return false;
|
---|
120 | }
|
---|
121 |
|
---|
122 | if ( !lua_isfunction( m_state, -1 ) )
|
---|
123 | {
|
---|
124 | lua_pop( m_state, 1 );
|
---|
125 | NV_LOG_ERROR( "Lua error : not a valid function - ", p.to_string() );
|
---|
126 | return false;
|
---|
127 | }
|
---|
128 | return true;
|
---|
129 | }
|
---|
130 |
|
---|
131 | int nv::lua::state_wrapper::call_function( int nargs, int nresults )
|
---|
132 | {
|
---|
133 | int status = lua_pcall( m_state, nargs, nresults, 0 );
|
---|
134 | if ( status != 0 )
|
---|
135 | {
|
---|
136 | NV_LOG_ERROR( "Lua error : ", nlua_tostringview( m_state, -1 ) );
|
---|
137 | lua_pop( m_state, 1 );
|
---|
138 | }
|
---|
139 | return status;
|
---|
140 | }
|
---|
141 |
|
---|
142 | // table_guard
|
---|
143 |
|
---|
144 | lua::table_guard::table_guard( lua::state* lstate, const path& p, bool global )
|
---|
145 | : state_wrapper( lstate->get_raw(), false ), m_level(0)
|
---|
146 | {
|
---|
147 | m_global = false;
|
---|
148 | m_level = lua_gettop( m_state );
|
---|
149 | if ( !p.resolve( m_state, global ) || lua_type(m_state, -1) != LUA_TTABLE )
|
---|
150 | {
|
---|
151 | NV_LOG_ERROR( "Could not resolve table!" );
|
---|
152 | // TODO : error handling
|
---|
153 | }
|
---|
154 | }
|
---|
155 |
|
---|
156 | lua::table_guard::table_guard( const table_guard& parent, const path& p )
|
---|
157 | : state_wrapper( parent.m_state, false ), m_level(0)
|
---|
158 | {
|
---|
159 | m_global = false;
|
---|
160 | m_level = lua_gettop( m_state );
|
---|
161 | if ( !p.resolve( m_state, false ) || lua_type(m_state, -1) != LUA_TTABLE )
|
---|
162 | {
|
---|
163 | NV_LOG_ERROR( "Could not resolve table!" );
|
---|
164 | // TODO : error handling
|
---|
165 | }
|
---|
166 | }
|
---|
167 |
|
---|
168 | lua::table_guard::~table_guard()
|
---|
169 | {
|
---|
170 | lua_settop( m_state, m_level );
|
---|
171 | }
|
---|
172 |
|
---|
173 | nv::size_t lua::table_guard::get_size()
|
---|
174 | {
|
---|
175 | return nlua_rawlen( m_state, -1 );
|
---|
176 | }
|
---|
177 |
|
---|
178 | bool lua::table_guard::has_field( string_view element )
|
---|
179 | {
|
---|
180 | lua_getfield( m_state, -1, element.data() );
|
---|
181 | bool result = !( lua_isnil( m_state, -1 ) );
|
---|
182 | lua_pop( m_state, 1 );
|
---|
183 | return result;
|
---|
184 | }
|
---|
185 |
|
---|
186 | shash64 nv::lua::table_guard::get_string_hash_64( string_view element, uint64 defval /*= 0 */ )
|
---|
187 | {
|
---|
188 | lua_getfield( m_state, -1, element.data() );
|
---|
189 | size_t l = 0;
|
---|
190 | const char* str = nullptr;
|
---|
191 | uint64 result = defval;
|
---|
192 | if ( lua_type( m_state, -1 ) == LUA_TSTRING )
|
---|
193 | {
|
---|
194 | str = lua_tolstring( m_state, -1, &l );
|
---|
195 | result = hash_string< uint64 >( str, l );
|
---|
196 | //NV_LOG_DEBUG( str );
|
---|
197 | }
|
---|
198 | lua_pop( m_state, 1 );
|
---|
199 | return shash64( result );
|
---|
200 | }
|
---|
201 |
|
---|
202 | shash64 nv::lua::table_guard::get_string( string_view element, string_table& table, uint64 defval /*= 0 */ )
|
---|
203 | {
|
---|
204 | lua_getfield( m_state, -1, element.data() );
|
---|
205 | size_t l = 0;
|
---|
206 | const char* str = nullptr;
|
---|
207 | shash64 result = shash64( defval );
|
---|
208 | if ( lua_type( m_state, -1 ) == LUA_TSTRING )
|
---|
209 | {
|
---|
210 | str = lua_tolstring( m_state, -1, &l );
|
---|
211 | result = table.insert( string_view( str, l ) );
|
---|
212 | }
|
---|
213 | lua_pop( m_state, 1 );
|
---|
214 | return result;
|
---|
215 | }
|
---|
216 |
|
---|
217 | nv::shash64 nv::lua::table_guard::get_string( string_view element, string_table* table, uint64 defval /*= 0 */ )
|
---|
218 | {
|
---|
219 | lua_getfield( m_state, -1, element.data() );
|
---|
220 | size_t l = 0;
|
---|
221 | const char* str = nullptr;
|
---|
222 | shash64 result = shash64( defval );
|
---|
223 | if ( lua_type( m_state, -1 ) == LUA_TSTRING )
|
---|
224 | {
|
---|
225 | str = lua_tolstring( m_state, -1, &l );
|
---|
226 | string_view sv( str, l );
|
---|
227 | result = table ? table->insert( sv ) : shash64( sv );
|
---|
228 | }
|
---|
229 | lua_pop( m_state, 1 );
|
---|
230 | return result;
|
---|
231 | }
|
---|
232 |
|
---|
233 | const_string lua::table_guard::get_string( string_view element, string_view defval /*= string_view() */ )
|
---|
234 | {
|
---|
235 | lua_getfield( m_state, -1, element.data() );
|
---|
236 | size_t l = 0;
|
---|
237 | const char* str = nullptr;
|
---|
238 | if ( lua_type( m_state, -1 ) == LUA_TSTRING )
|
---|
239 | {
|
---|
240 | str = lua_tolstring( m_state, -1, &l );
|
---|
241 | }
|
---|
242 | else
|
---|
243 | {
|
---|
244 | l = defval.size();
|
---|
245 | str = defval.data();
|
---|
246 | }
|
---|
247 | const_string result( str, l );
|
---|
248 | lua_pop( m_state, 1 );
|
---|
249 | return result;
|
---|
250 | }
|
---|
251 |
|
---|
252 | string128 lua::table_guard::get_string128( string_view element, string_view defval )
|
---|
253 | {
|
---|
254 | lua_getfield( m_state, -1, element.data() );
|
---|
255 | size_t l = 0;
|
---|
256 | const char* str = nullptr;
|
---|
257 | if ( lua_type( m_state, -1 ) == LUA_TSTRING )
|
---|
258 | {
|
---|
259 | str = lua_tolstring( m_state, -1, &l );
|
---|
260 | }
|
---|
261 | else
|
---|
262 | {
|
---|
263 | l = defval.size();
|
---|
264 | str = defval.data();
|
---|
265 | }
|
---|
266 | string128 result( str, l );
|
---|
267 | lua_pop( m_state, 1 );
|
---|
268 | return result;
|
---|
269 | }
|
---|
270 |
|
---|
271 | char lua::table_guard::get_char( string_view element, char defval /*= "" */ )
|
---|
272 | {
|
---|
273 | lua_getfield( m_state, -1, element.data() );
|
---|
274 | char result = ( lua_type( m_state, -1 ) == LUA_TSTRING && nlua_rawlen( m_state, -1 ) > 0 ) ? lua_tostring( m_state, -1 )[0] : defval;
|
---|
275 | lua_pop( m_state, 1 );
|
---|
276 | return result;
|
---|
277 | }
|
---|
278 |
|
---|
279 | int lua::table_guard::get_integer( string_view element, int defval /*= "" */ )
|
---|
280 | {
|
---|
281 | lua_getfield( m_state, -1, element.data() );
|
---|
282 | lua_Integer result = lua_type( m_state, -1 ) == LUA_TNUMBER ? lua_tointeger( m_state, -1 ) : defval;
|
---|
283 | lua_pop( m_state, 1 );
|
---|
284 | return static_cast< int >( result );
|
---|
285 | }
|
---|
286 |
|
---|
287 | unsigned lua::table_guard::get_unsigned( string_view element, unsigned defval /*= "" */ )
|
---|
288 | {
|
---|
289 | lua_getfield( m_state, -1, element.data() );
|
---|
290 | unsigned result = lua_type( m_state, -1 ) == LUA_TNUMBER ? nlua_tounsigned( m_state, -1 ) : defval;
|
---|
291 | lua_pop( m_state, 1 );
|
---|
292 | return result;
|
---|
293 | }
|
---|
294 |
|
---|
295 | double lua::table_guard::get_double( string_view element, double defval /*= "" */ )
|
---|
296 | {
|
---|
297 | lua_getfield( m_state, -1, element.data() );
|
---|
298 | double result = lua_type( m_state, -1 ) == LUA_TNUMBER ? lua_tonumber( m_state, -1 ) : defval;
|
---|
299 | lua_pop( m_state, 1 );
|
---|
300 | return result;
|
---|
301 | }
|
---|
302 |
|
---|
303 | float nv::lua::table_guard::get_float( string_view element, float defval /*= 0.0 */ )
|
---|
304 | {
|
---|
305 | lua_getfield( m_state, -1, element.data() );
|
---|
306 | float result = lua_type( m_state, -1 ) == LUA_TNUMBER ? static_cast<float>( lua_tonumber( m_state, -1 ) ) : defval;
|
---|
307 | lua_pop( m_state, 1 );
|
---|
308 | return result;
|
---|
309 | }
|
---|
310 |
|
---|
311 | bool lua::table_guard::get_boolean( string_view element, bool defval /*= "" */ )
|
---|
312 | {
|
---|
313 | lua_getfield( m_state, -1, element.data() );
|
---|
314 | bool result = lua_type( m_state, -1 ) == LUA_TBOOLEAN ? lua_toboolean( m_state, -1 ) != 0 : defval;
|
---|
315 | lua_pop( m_state, 1 );
|
---|
316 | return result;
|
---|
317 | }
|
---|
318 |
|
---|
319 | bool nv::lua::table_guard::is_table( string_view element )
|
---|
320 | {
|
---|
321 | lua_getfield( m_state, -1, element.data() );
|
---|
322 | bool result = lua_type( m_state, -1 ) == LUA_TTABLE;
|
---|
323 | lua_pop( m_state, 1 );
|
---|
324 | return result;
|
---|
325 | }
|
---|
326 |
|
---|
327 | bool nv::lua::table_guard::is_number( string_view element )
|
---|
328 | {
|
---|
329 | lua_getfield( m_state, -1, element.data() );
|
---|
330 | bool result = lua_type( m_state, -1 ) == LUA_TNUMBER;
|
---|
331 | lua_pop( m_state, 1 );
|
---|
332 | return result;
|
---|
333 | }
|
---|
334 |
|
---|
335 | bool nv::lua::table_guard::is_boolean( string_view element )
|
---|
336 | {
|
---|
337 | lua_getfield( m_state, -1, element.data() );
|
---|
338 | bool result = lua_type( m_state, -1 ) == LUA_TBOOLEAN;
|
---|
339 | lua_pop( m_state, 1 );
|
---|
340 | return result;
|
---|
341 | }
|
---|
342 |
|
---|
343 | bool nv::lua::table_guard::is_string( string_view element )
|
---|
344 | {
|
---|
345 | lua_getfield( m_state, -1, element.data() );
|
---|
346 | bool result = lua_type( m_state, -1 ) == LUA_TSTRING;
|
---|
347 | lua_pop( m_state, 1 );
|
---|
348 | return result;
|
---|
349 | }
|
---|
350 |
|
---|
351 |
|
---|
352 | // state
|
---|
353 |
|
---|
354 | lua::state::state( lua_State* state ) : state_wrapper( state, false )
|
---|
355 | {
|
---|
356 |
|
---|
357 | }
|
---|
358 |
|
---|
359 | lua::state::state( bool load_libs /*= false*/ ) : state_wrapper( nullptr, true )
|
---|
360 | {
|
---|
361 | load_lua_library();
|
---|
362 | m_owner = true;
|
---|
363 | m_state = luaL_newstate( );
|
---|
364 |
|
---|
365 | lua_pushcfunction(m_state, luaopen_base);
|
---|
366 | lua_pushliteral(m_state, "");
|
---|
367 | lua_call(m_state, 1, 0);
|
---|
368 |
|
---|
369 | {
|
---|
370 | // Preregister 8 references for Handle registry
|
---|
371 | lua_newtable(m_state);
|
---|
372 | NV_ASSERT( luaL_ref( m_state, LUA_REGISTRYINDEX ) == 1, "First reference not 1!" );
|
---|
373 | for ( uint32 i = 1; i < 8; ++i )
|
---|
374 | {
|
---|
375 | lua_newtable(m_state);
|
---|
376 | luaL_ref( m_state, LUA_REGISTRYINDEX );
|
---|
377 | }
|
---|
378 | }
|
---|
379 |
|
---|
380 | if ( load_libs )
|
---|
381 | {
|
---|
382 | stack_guard guard( this );
|
---|
383 | static const luaL_Reg lualibs[] =
|
---|
384 | {
|
---|
385 | { "string", luaopen_string },
|
---|
386 | { "table", luaopen_table },
|
---|
387 | { "math", luaopen_math },
|
---|
388 | { NULL, NULL}
|
---|
389 | };
|
---|
390 | const luaL_Reg *lib = lualibs;
|
---|
391 | for(; lib->func != NULL; lib++)
|
---|
392 | {
|
---|
393 | lua_pushcfunction( m_state, lib->func );
|
---|
394 | lua_call(m_state, 0, 1);
|
---|
395 | lua_setglobal( m_state, lib->name );
|
---|
396 | }
|
---|
397 | register_nova( this );
|
---|
398 | }
|
---|
399 |
|
---|
400 | NV_LOG_TRACE( "Lua state created" );
|
---|
401 | }
|
---|
402 |
|
---|
403 | int lua::state::load_string( string_view code, string_view name )
|
---|
404 | {
|
---|
405 | NV_LOG_TRACE( "Loading Lua string '", name, "'");
|
---|
406 | return luaL_loadbuffer( m_state, code.data(), code.length(), name.data() );
|
---|
407 | }
|
---|
408 |
|
---|
409 | int lua::state::load_file( string_view filename )
|
---|
410 | {
|
---|
411 | NV_LOG_NOTICE( "Loading Lua file '", filename, "'");
|
---|
412 | return luaL_loadfile( m_state, filename.data() );
|
---|
413 | }
|
---|
414 |
|
---|
415 | bool lua::state::do_string( string_view code, string_view name, int rvalues )
|
---|
416 | {
|
---|
417 | lua::stack_guard( this );
|
---|
418 | int result = load_string(code,name);
|
---|
419 | if (result)
|
---|
420 | {
|
---|
421 | NV_LOG_WARNING( "Failed to load string ", name, ": ", nlua_tostringview(m_state, -1));
|
---|
422 | return false;
|
---|
423 | }
|
---|
424 | return do_current( name, rvalues ) == 0;
|
---|
425 | }
|
---|
426 |
|
---|
427 | bool lua::state::do_file( string_view filename )
|
---|
428 | {
|
---|
429 | lua::stack_guard( this );
|
---|
430 | int result = load_file(filename);
|
---|
431 | if (result)
|
---|
432 | {
|
---|
433 | NV_LOG_WARNING( "Failed to open file ", filename, ": ", nlua_tostringview( m_state, -1 ) );
|
---|
434 | return false;
|
---|
435 | }
|
---|
436 | return do_current( filename ) == 0;
|
---|
437 | }
|
---|
438 |
|
---|
439 | int lua::state::do_current( string_view name, int rvalues )
|
---|
440 | {
|
---|
441 | int result = lua_pcall(m_state, 0, rvalues, 0);
|
---|
442 | if (result)
|
---|
443 | {
|
---|
444 | NV_LOG_WARNING( "Failed to run script ", name, ": ", nlua_tostringview( m_state, -1 ) );
|
---|
445 | lua_pop( m_state, 1 );
|
---|
446 | }
|
---|
447 | return result;
|
---|
448 | }
|
---|
449 |
|
---|
450 | int lua::state::get_stack_size()
|
---|
451 | {
|
---|
452 | return lua_gettop( m_state );
|
---|
453 | }
|
---|
454 |
|
---|
455 | void lua::state::log_stack()
|
---|
456 | {
|
---|
457 | int top = lua_gettop(m_state);
|
---|
458 | NV_LOG_DEBUG( "Stack dump (", top, ")");
|
---|
459 | for ( int i = 0; i < top; ++i )
|
---|
460 | {
|
---|
461 | NV_LOG_DEBUG( "#", i+1, " - ", lua_typename(m_state, lua_type(m_state, i+1) ), " = ", nlua_typecontent(m_state, i+1) );
|
---|
462 | }
|
---|
463 | }
|
---|
464 |
|
---|
465 | lua_State* lua::state::get_raw()
|
---|
466 | {
|
---|
467 | return m_state;
|
---|
468 | }
|
---|
469 |
|
---|
470 | lua::ref lua::state::register_object( void* o, string_view lua_name )
|
---|
471 | {
|
---|
472 | if ( o == nullptr ) return lua::ref( lua::ref::none );
|
---|
473 | stack_guard guard( this );
|
---|
474 | lua_getglobal( m_state, lua_name.data() );
|
---|
475 | if ( lua_isnil( m_state, -1 ) )
|
---|
476 | {
|
---|
477 | NV_LUA_ABORT( "state::register_object", lua_name, " type not registered!" );
|
---|
478 | }
|
---|
479 | deep_pointer_copy( -1, o );
|
---|
480 | return lua::ref( luaL_ref( m_state, LUA_REGISTRYINDEX ) );
|
---|
481 | }
|
---|
482 |
|
---|
483 | lua::ref lua::state::register_proto( string_view id, string_view storage )
|
---|
484 | {
|
---|
485 | stack_guard guard( this );
|
---|
486 | lua_getglobal( m_state, storage.data() );
|
---|
487 | if ( lua_isnil( m_state, -1 ) )
|
---|
488 | {
|
---|
489 | NV_LUA_ABORT( "state::register_proto", "\"", storage, "\" storage not registered!" );
|
---|
490 | }
|
---|
491 | lua_getfield( m_state, -1, id.data() );
|
---|
492 | if ( lua_isnil( m_state, -1 ) )
|
---|
493 | {
|
---|
494 | NV_LUA_ABORT( "state::register_proto", "\"", id, "\" not found in \"", storage, "\"!" );
|
---|
495 | }
|
---|
496 | return lua::ref( luaL_ref( m_state, LUA_REGISTRYINDEX ) );
|
---|
497 | }
|
---|
498 |
|
---|
499 | void lua::state::register_native_object_method( string_view lua_name, string_view name, lfunction f )
|
---|
500 | {
|
---|
501 | stack_guard guard( this );
|
---|
502 | lua_getglobal( m_state, lua_name.data() );
|
---|
503 | if ( lua_isnil( m_state, -1 ) )
|
---|
504 | {
|
---|
505 | NV_LUA_ABORT( "state::register_native_object_method", "\"", lua_name, "\" type not registered!" );
|
---|
506 | }
|
---|
507 | lua_pushcfunction( m_state, f );
|
---|
508 | lua_setfield( m_state, -2, name.data() );
|
---|
509 | }
|
---|
510 |
|
---|
511 | void lua::state::unregister_object( ref object_index )
|
---|
512 | {
|
---|
513 | if ( !object_index.is_valid() ) return;
|
---|
514 | stack_guard guard( this );
|
---|
515 | lua_rawgeti( m_state, LUA_REGISTRYINDEX, object_index.get() );
|
---|
516 | lua_pushliteral( m_state, "__ptr" );
|
---|
517 | lua_pushboolean( m_state, false );
|
---|
518 | lua_rawset( m_state, -3 );
|
---|
519 | lua_pop( m_state, 1 );
|
---|
520 | luaL_unref( m_state, LUA_REGISTRYINDEX, object_index.get() );
|
---|
521 | }
|
---|
522 |
|
---|
523 |
|
---|
524 | void lua::state::deep_pointer_copy( int index, void* obj )
|
---|
525 | {
|
---|
526 | index = nlua_absindex( m_state, index );
|
---|
527 | lua_newtable( m_state );
|
---|
528 | lua_pushnil( m_state );
|
---|
529 | bool has_functions = false;
|
---|
530 | bool has_metatable = false;
|
---|
531 |
|
---|
532 | while ( lua_next( m_state, index ) != 0 )
|
---|
533 | {
|
---|
534 | if ( lua_isfunction( m_state, -1 ) )
|
---|
535 | has_functions = true;
|
---|
536 | else if ( lua_istable( m_state, -1 ) )
|
---|
537 | {
|
---|
538 | deep_pointer_copy( -1, obj );
|
---|
539 | lua_insert( m_state, -2 );
|
---|
540 | lua_pop( m_state, 1 );
|
---|
541 | }
|
---|
542 | lua_pushvalue( m_state, -2 );
|
---|
543 | lua_insert( m_state, -2 );
|
---|
544 | lua_settable( m_state, -4 );
|
---|
545 | }
|
---|
546 |
|
---|
547 | if ( lua_getmetatable( m_state, -2 ) )
|
---|
548 | {
|
---|
549 | lua_setmetatable( m_state, -2 );
|
---|
550 | has_metatable = true;
|
---|
551 | }
|
---|
552 |
|
---|
553 | if ( has_functions || has_metatable )
|
---|
554 | {
|
---|
555 | lua_pushliteral( m_state, "__ptr" );
|
---|
556 | lua_pushlightuserdata( m_state, obj );
|
---|
557 | lua_rawset( m_state, -3 );
|
---|
558 | }
|
---|
559 | }
|
---|
560 |
|
---|
561 | void nv::lua::state::store_metadata( ref object_index, string_view metaname, void* pointer )
|
---|
562 | {
|
---|
563 | if ( !object_index.is_valid() ) return;
|
---|
564 | lua_rawgeti( m_state, LUA_REGISTRYINDEX, object_index.get() );
|
---|
565 | nlua_pushstringview( m_state, metaname );
|
---|
566 | lua_pushlightuserdata( m_state, pointer );
|
---|
567 | lua_rawset( m_state, -3 );
|
---|
568 | lua_pop( m_state, 1 );
|
---|
569 | }
|
---|
570 |
|
---|
571 | void nv::lua::state::register_enum( string_view name, int value )
|
---|
572 | {
|
---|
573 | lua_pushinteger( m_state, value );
|
---|
574 | lua_setglobal( m_state, name.data() );
|
---|
575 | }
|
---|
576 |
|
---|
577 | nv::lua::ref nv::lua::state::register_handle_component_impl( string_view id, bool empty )
|
---|
578 | {
|
---|
579 | int args = empty ? 1 : 2;
|
---|
580 | NV_LUA_STACK_ASSERT( m_state, -args );
|
---|
581 |
|
---|
582 | if ( lua_isnil( m_state, -1 ) || (!empty && lua_isnil( m_state, -2 )) )
|
---|
583 | {
|
---|
584 | lua_pop( m_state, args );
|
---|
585 | return ref();
|
---|
586 | }
|
---|
587 | if (empty)
|
---|
588 | lua_createtable( m_state, 0, 0 );
|
---|
589 | else
|
---|
590 | nlua_deepcopy( m_state, -2 );
|
---|
591 | nlua_pushstringview( m_state, id );
|
---|
592 | lua_pushvalue( m_state, -2 );
|
---|
593 | lua_rawset( m_state, -4 );
|
---|
594 | lua_replace( m_state, -2 );
|
---|
595 | ref result = lua::ref( luaL_ref( m_state, LUA_REGISTRYINDEX ) );
|
---|
596 | if (!empty) lua_pop( m_state, 1 );
|
---|
597 | return result;
|
---|
598 | }
|
---|
599 |
|
---|
600 | void nv::lua::state::unregister_handle_component_impl( string_view id )
|
---|
601 | {
|
---|
602 | NV_LUA_STACK_ASSERT( m_state, -1 );
|
---|
603 |
|
---|
604 | if ( lua_isnil( m_state, -1 ) )
|
---|
605 | {
|
---|
606 | lua_pop( m_state, 1 );
|
---|
607 | return;
|
---|
608 | }
|
---|
609 | nlua_pushstringview( m_state, id );
|
---|
610 | lua_pushnil( m_state );
|
---|
611 | lua_rawset( m_state, -3 );
|
---|
612 | lua_pop( m_state, 1 );
|
---|
613 | }
|
---|
614 |
|
---|
615 | void nv::lua::state::register_singleton( string_view name, void* o )
|
---|
616 | {
|
---|
617 | if ( o == nullptr ) return;
|
---|
618 | stack_guard guard( this );
|
---|
619 | lua_getglobal( m_state, name.data() );
|
---|
620 | if ( lua_isnil( m_state, -1 ) )
|
---|
621 | {
|
---|
622 | NV_LUA_ABORT( "state::register_singleton", "\"", name, "\" type not registered!" );
|
---|
623 | }
|
---|
624 | deep_pointer_copy( -1, o );
|
---|
625 | lua_setglobal( m_state, name.data() );
|
---|
626 | }
|
---|
627 |
|
---|