mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-12-03 09:42:45 +00:00
Expose per-texture offsets to Lua
This commit is contained in:
parent
0e24b42c8d
commit
15b170b733
1 changed files with 48 additions and 0 deletions
|
@ -158,6 +158,12 @@ enum side_e {
|
||||||
side_valid = 0,
|
side_valid = 0,
|
||||||
side_textureoffset,
|
side_textureoffset,
|
||||||
side_rowoffset,
|
side_rowoffset,
|
||||||
|
side_offsetx_top,
|
||||||
|
side_offsety_top,
|
||||||
|
side_offsetx_mid,
|
||||||
|
side_offsety_mid,
|
||||||
|
side_offsetx_bot,
|
||||||
|
side_offsety_bot,
|
||||||
side_toptexture,
|
side_toptexture,
|
||||||
side_bottomtexture,
|
side_bottomtexture,
|
||||||
side_midtexture,
|
side_midtexture,
|
||||||
|
@ -172,6 +178,12 @@ static const char *const side_opt[] = {
|
||||||
"valid",
|
"valid",
|
||||||
"textureoffset",
|
"textureoffset",
|
||||||
"rowoffset",
|
"rowoffset",
|
||||||
|
"offsetx_top",
|
||||||
|
"offsety_top",
|
||||||
|
"offsetx_mid",
|
||||||
|
"offsety_mid",
|
||||||
|
"offsetx_bot",
|
||||||
|
"offsety_bot",
|
||||||
"toptexture",
|
"toptexture",
|
||||||
"bottomtexture",
|
"bottomtexture",
|
||||||
"midtexture",
|
"midtexture",
|
||||||
|
@ -1072,6 +1084,24 @@ static int side_get(lua_State *L)
|
||||||
case side_rowoffset:
|
case side_rowoffset:
|
||||||
lua_pushfixed(L, side->rowoffset);
|
lua_pushfixed(L, side->rowoffset);
|
||||||
return 1;
|
return 1;
|
||||||
|
case side_offsetx_top:
|
||||||
|
lua_pushfixed(L, side->offsetx_top);
|
||||||
|
return 1;
|
||||||
|
case side_offsety_top:
|
||||||
|
lua_pushfixed(L, side->offsety_top);
|
||||||
|
return 1;
|
||||||
|
case side_offsetx_mid:
|
||||||
|
lua_pushfixed(L, side->offsetx_mid);
|
||||||
|
return 1;
|
||||||
|
case side_offsety_mid:
|
||||||
|
lua_pushfixed(L, side->offsety_mid);
|
||||||
|
return 1;
|
||||||
|
case side_offsetx_bot:
|
||||||
|
lua_pushfixed(L, side->offsetx_bot);
|
||||||
|
return 1;
|
||||||
|
case side_offsety_bot:
|
||||||
|
lua_pushfixed(L, side->offsety_bot);
|
||||||
|
return 1;
|
||||||
case side_toptexture:
|
case side_toptexture:
|
||||||
lua_pushinteger(L, side->toptexture);
|
lua_pushinteger(L, side->toptexture);
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -1129,6 +1159,24 @@ static int side_set(lua_State *L)
|
||||||
case side_rowoffset:
|
case side_rowoffset:
|
||||||
side->rowoffset = luaL_checkfixed(L, 3);
|
side->rowoffset = luaL_checkfixed(L, 3);
|
||||||
break;
|
break;
|
||||||
|
case side_offsetx_top:
|
||||||
|
side->offsetx_top = luaL_checkfixed(L, 3);
|
||||||
|
break;
|
||||||
|
case side_offsety_top:
|
||||||
|
side->offsety_top = luaL_checkfixed(L, 3);
|
||||||
|
break;
|
||||||
|
case side_offsetx_mid:
|
||||||
|
side->offsetx_mid = luaL_checkfixed(L, 3);
|
||||||
|
break;
|
||||||
|
case side_offsety_mid:
|
||||||
|
side->offsety_mid = luaL_checkfixed(L, 3);
|
||||||
|
break;
|
||||||
|
case side_offsetx_bot:
|
||||||
|
side->offsetx_bot = luaL_checkfixed(L, 3);
|
||||||
|
break;
|
||||||
|
case side_offsety_bot:
|
||||||
|
side->offsety_bot = luaL_checkfixed(L, 3);
|
||||||
|
break;
|
||||||
case side_toptexture:
|
case side_toptexture:
|
||||||
side->toptexture = luaL_checkinteger(L, 3);
|
side->toptexture = luaL_checkinteger(L, 3);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue