mirror of
https://github.com/ZDoom/Raze.git
synced 2025-05-31 01:11:15 +00:00
engine: add yax_getflorzofslope() and yax_getceilzofslope()
This commit is contained in:
parent
5e677d6089
commit
e2d79b4682
3 changed files with 31 additions and 23 deletions
|
@ -963,6 +963,9 @@ void getzsofslopeptr(usectorptr_t sec, int32_t dax, int32_t day,
|
|||
int32_t *ceilz, int32_t *florz) ATTRIBUTE((nonnull(1,4,5)));
|
||||
void yax_getzsofslope(int sectNum, int playerX, int playerY, int32_t* pCeilZ, int32_t* pFloorZ);
|
||||
|
||||
int32_t yax_getceilzofslope(int const sectnum, vec2_t const vect);
|
||||
int32_t yax_getflorzofslope(int const sectnum, vec2_t const vect);
|
||||
|
||||
static FORCE_INLINE int32_t getceilzofslope(int16_t sectnum, int32_t dax, int32_t day)
|
||||
{
|
||||
return getceilzofslopeptr((usectorptr_t)§or[sectnum], dax, day);
|
||||
|
|
|
@ -5298,6 +5298,30 @@ floor:
|
|||
else if (!didFloor)
|
||||
goto floor;
|
||||
}
|
||||
|
||||
int32_t yax_getceilzofslope(int const sectnum, vec2_t const vect)
|
||||
{
|
||||
if ((sector[sectnum].ceilingstat&512)==0)
|
||||
{
|
||||
int const nsect = yax_getneighborsect(vect.x, vect.y, sectnum, YAX_CEILING);
|
||||
if (nsect >= 0)
|
||||
return getcorrectceilzofslope(nsect, vect.x, vect.y);
|
||||
}
|
||||
|
||||
return getcorrectceilzofslope(sectnum, vect.x, vect.y);
|
||||
}
|
||||
|
||||
int32_t yax_getflorzofslope(int const sectnum, vec2_t const vect)
|
||||
{
|
||||
if ((sector[sectnum].floorstat&512)==0)
|
||||
{
|
||||
int const nsect = yax_getneighborsect(vect.x, vect.y, sectnum, YAX_FLOOR);
|
||||
if (nsect >= 0)
|
||||
return getcorrectflorzofslope(nsect, vect.x, vect.y);
|
||||
}
|
||||
|
||||
return getcorrectflorzofslope(sectnum, vect.x, vect.y);
|
||||
}
|
||||
#endif
|
||||
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue