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