diff --git a/src/lua_baselib.c b/src/lua_baselib.c index 2815844bc7d11135b729a7e21858d20d1647ae64..93552553c993f93fdf1694ba0f00ce0f1edb7a4a 100644 --- a/src/lua_baselib.c +++ b/src/lua_baselib.c @@ -2909,6 +2909,9 @@ static int lib_rFrame2Char(lua_State *L) return 2; } +// R_SKINS +//////////// + // R_SetPlayerSkin technically doesn't exist either, although it's basically just SetPlayerSkin and SetPlayerSkinByNum handled in one place for convenience static int lib_rSetPlayerSkin(lua_State *L) { @@ -2971,6 +2974,36 @@ static int lib_rSkinUsable(lua_State *L) return 1; } +static int lib_pGetStateSprite2(lua_State *L) +{ + int statenum = luaL_checkinteger(L, 1); + if (statenum < 0 || statenum >= NUMSTATES) + return luaL_error(L, "state %d out of range (0 - %d)", statenum, NUMSTATES-1); + + lua_pushinteger(L, P_GetStateSprite2(&states[statenum])); + return 1; +} + +static int lib_pGetSprite2StateFrame(lua_State *L) +{ + int statenum = luaL_checkinteger(L, 1); + if (statenum < 0 || statenum >= NUMSTATES) + return luaL_error(L, "state %d out of range (0 - %d)", statenum, NUMSTATES-1); + + lua_pushinteger(L, P_GetSprite2StateFrame(&states[statenum])); + return 1; +} + +static int lib_pIsStateSprite2Super(lua_State *L) +{ + int statenum = luaL_checkinteger(L, 1); + if (statenum < 0 || statenum >= NUMSTATES) + return luaL_error(L, "state %d out of range (0 - %d)", statenum, NUMSTATES-1); + + lua_pushboolean(L, P_IsStateSprite2Super(&states[statenum])); + return 1; +} + // R_DATA //////////// @@ -4370,7 +4403,12 @@ static luaL_Reg lib[] = { {"R_Char2Frame",lib_rChar2Frame}, {"R_Frame2Char",lib_rFrame2Char}, {"R_SetPlayerSkin",lib_rSetPlayerSkin}, + + // r_skins {"R_SkinUsable",lib_rSkinUsable}, + {"P_GetStateSprite2",lib_pGetStateSprite2}, + {"P_GetSprite2StateFrame",lib_pGetSprite2StateFrame}, + {"P_IsStateSprite2Super",lib_pIsStateSprite2Super}, // r_data {"R_CheckTextureNumForName",lib_rCheckTextureNumForName},