mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-17 23:21:22 +00:00
Expose mobj->shadowscale to Lua
This commit is contained in:
parent
ba8ff3d502
commit
cfb9b3c234
1 changed files with 8 additions and 1 deletions
|
@ -88,7 +88,8 @@ enum mobj_e {
|
||||||
#ifdef ESLOPE
|
#ifdef ESLOPE
|
||||||
mobj_standingslope,
|
mobj_standingslope,
|
||||||
#endif
|
#endif
|
||||||
mobj_colorized
|
mobj_colorized,
|
||||||
|
mobj_shadowscale
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char *const mobj_opt[] = {
|
static const char *const mobj_opt[] = {
|
||||||
|
@ -156,6 +157,7 @@ static const char *const mobj_opt[] = {
|
||||||
"standingslope",
|
"standingslope",
|
||||||
#endif
|
#endif
|
||||||
"colorized",
|
"colorized",
|
||||||
|
"shadowscale",
|
||||||
NULL};
|
NULL};
|
||||||
|
|
||||||
#define UNIMPLEMENTED luaL_error(L, LUA_QL("mobj_t") " field " LUA_QS " is not implemented for Lua and cannot be accessed.", mobj_opt[field])
|
#define UNIMPLEMENTED luaL_error(L, LUA_QL("mobj_t") " field " LUA_QS " is not implemented for Lua and cannot be accessed.", mobj_opt[field])
|
||||||
|
@ -390,6 +392,9 @@ static int mobj_get(lua_State *L)
|
||||||
case mobj_colorized:
|
case mobj_colorized:
|
||||||
lua_pushboolean(L, mo->colorized);
|
lua_pushboolean(L, mo->colorized);
|
||||||
break;
|
break;
|
||||||
|
case mobj_shadowscale:
|
||||||
|
lua_pushfixed(L, mo->shadowscale);
|
||||||
|
break;
|
||||||
default: // extra custom variables in Lua memory
|
default: // extra custom variables in Lua memory
|
||||||
lua_getfield(L, LUA_REGISTRYINDEX, LREG_EXTVARS);
|
lua_getfield(L, LUA_REGISTRYINDEX, LREG_EXTVARS);
|
||||||
I_Assert(lua_istable(L, -1));
|
I_Assert(lua_istable(L, -1));
|
||||||
|
@ -719,6 +724,8 @@ static int mobj_set(lua_State *L)
|
||||||
case mobj_colorized:
|
case mobj_colorized:
|
||||||
mo->colorized = luaL_checkboolean(L, 3);
|
mo->colorized = luaL_checkboolean(L, 3);
|
||||||
break;
|
break;
|
||||||
|
case mobj_shadowscale:
|
||||||
|
mo->shadowscale = luaL_checkfixed(L, 3);
|
||||||
default:
|
default:
|
||||||
lua_getfield(L, LUA_REGISTRYINDEX, LREG_EXTVARS);
|
lua_getfield(L, LUA_REGISTRYINDEX, LREG_EXTVARS);
|
||||||
I_Assert(lua_istable(L, -1));
|
I_Assert(lua_istable(L, -1));
|
||||||
|
|
Loading…
Reference in a new issue