mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +00:00
- SetSectorState
This commit is contained in:
parent
7f94eee9bb
commit
8f3c97dde4
3 changed files with 16 additions and 15 deletions
|
@ -5377,7 +5377,7 @@ bool modernTypeOperateSector(int nSector, sectortype* pSector, XSECTOR* pXSector
|
||||||
{
|
{
|
||||||
case kSectorCounter:
|
case kSectorCounter:
|
||||||
if (pXSector->locked != 1) break;
|
if (pXSector->locked != 1) break;
|
||||||
SetSectorState(nSector, pXSector, 0);
|
SetSectorState(pSector, 0);
|
||||||
evPostSector(pSector, 0, kCallbackCounterCheck);
|
evPostSector(pSector, 0, kCallbackCounterCheck);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -95,9 +95,10 @@ bool SetWallState(walltype* pWall, int nState)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool SetSectorState(int nSector, XSECTOR *pXSector, int nState)
|
bool SetSectorState(sectortype *pSector, int nState)
|
||||||
{
|
{
|
||||||
auto pSector = §or[nSector];
|
assert(pSector->hasX());
|
||||||
|
auto pXSector = &pSector->xs();
|
||||||
if ((pXSector->busy&0xffff) == 0 && pXSector->state == nState)
|
if ((pXSector->busy&0xffff) == 0 && pXSector->state == nState)
|
||||||
return 0;
|
return 0;
|
||||||
pXSector->busy = IntToFixed(nState);
|
pXSector->busy = IntToFixed(nState);
|
||||||
|
@ -1053,7 +1054,7 @@ int VCrushBusy(sectortype *pSector, unsigned int a2)
|
||||||
evSendSector(pSector,pXSector->txID, kCmdLink);
|
evSendSector(pSector,pXSector->txID, kCmdLink);
|
||||||
if ((a2&0xffff) == 0)
|
if ((a2&0xffff) == 0)
|
||||||
{
|
{
|
||||||
SetSectorState(sectnum(pSector), pXSector, FixedToInt(a2));
|
SetSectorState(pSector, FixedToInt(a2));
|
||||||
SectorEndSound(pSector, FixedToInt(a2));
|
SectorEndSound(pSector, FixedToInt(a2));
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
|
@ -1102,7 +1103,7 @@ int VSpriteBusy(sectortype* pSector, unsigned int a2)
|
||||||
evSendSector(pSector,pXSector->txID, kCmdLink);
|
evSendSector(pSector,pXSector->txID, kCmdLink);
|
||||||
if ((a2&0xffff) == 0)
|
if ((a2&0xffff) == 0)
|
||||||
{
|
{
|
||||||
SetSectorState(sectnum(pSector), pXSector, FixedToInt(a2));
|
SetSectorState(pSector, FixedToInt(a2));
|
||||||
SectorEndSound(pSector, FixedToInt(a2));
|
SectorEndSound(pSector, FixedToInt(a2));
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
|
@ -1197,7 +1198,7 @@ int VDoorBusy(sectortype* pSector, unsigned int a2)
|
||||||
evSendSector(pSector,pXSector->txID, kCmdLink);
|
evSendSector(pSector,pXSector->txID, kCmdLink);
|
||||||
if ((a2&0xffff) == 0)
|
if ((a2&0xffff) == 0)
|
||||||
{
|
{
|
||||||
SetSectorState(sectnum(pSector), pXSector, FixedToInt(a2));
|
SetSectorState(pSector, FixedToInt(a2));
|
||||||
SectorEndSound(pSector, FixedToInt(a2));
|
SectorEndSound(pSector, FixedToInt(a2));
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
|
@ -1223,7 +1224,7 @@ int HDoorBusy(sectortype* pSector, unsigned int a2)
|
||||||
evSendSector(pSector, pXSector->txID, kCmdLink);
|
evSendSector(pSector, pXSector->txID, kCmdLink);
|
||||||
if ((a2&0xffff) == 0)
|
if ((a2&0xffff) == 0)
|
||||||
{
|
{
|
||||||
SetSectorState(sectnum(pSector), pXSector, FixedToInt(a2));
|
SetSectorState(pSector, FixedToInt(a2));
|
||||||
SectorEndSound(pSector, FixedToInt(a2));
|
SectorEndSound(pSector, FixedToInt(a2));
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
|
@ -1248,7 +1249,7 @@ int RDoorBusy(sectortype* pSector, unsigned int a2)
|
||||||
evSendSector(pSector, pXSector->txID, kCmdLink);
|
evSendSector(pSector, pXSector->txID, kCmdLink);
|
||||||
if ((a2&0xffff) == 0)
|
if ((a2&0xffff) == 0)
|
||||||
{
|
{
|
||||||
SetSectorState(sectnum(pSector), pXSector, FixedToInt(a2));
|
SetSectorState(pSector, FixedToInt(a2));
|
||||||
SectorEndSound(pSector, FixedToInt(a2));
|
SectorEndSound(pSector, FixedToInt(a2));
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
|
@ -1279,7 +1280,7 @@ int StepRotateBusy(sectortype* pSector, unsigned int a2)
|
||||||
evSendSector(pSector, pXSector->txID, kCmdLink);
|
evSendSector(pSector, pXSector->txID, kCmdLink);
|
||||||
if ((a2&0xffff) == 0)
|
if ((a2&0xffff) == 0)
|
||||||
{
|
{
|
||||||
SetSectorState(sectnum(pSector), pXSector, FixedToInt(a2));
|
SetSectorState(pSector, FixedToInt(a2));
|
||||||
SectorEndSound(pSector, FixedToInt(a2));
|
SectorEndSound(pSector, FixedToInt(a2));
|
||||||
pXSector->data = vbp&2047;
|
pXSector->data = vbp&2047;
|
||||||
return 3;
|
return 3;
|
||||||
|
@ -1296,7 +1297,7 @@ int GenSectorBusy(sectortype* pSector, unsigned int a2)
|
||||||
evSendSector(pSector, pXSector->txID, kCmdLink);
|
evSendSector(pSector, pXSector->txID, kCmdLink);
|
||||||
if ((a2&0xffff) == 0)
|
if ((a2&0xffff) == 0)
|
||||||
{
|
{
|
||||||
SetSectorState(sectnum(pSector), pXSector, FixedToInt(a2));
|
SetSectorState(pSector, FixedToInt(a2));
|
||||||
SectorEndSound(pSector, FixedToInt(a2));
|
SectorEndSound(pSector, FixedToInt(a2));
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
|
@ -1567,13 +1568,13 @@ void OperateSector(sectortype* pSector, EVENT event)
|
||||||
|
|
||||||
switch (event.cmd) {
|
switch (event.cmd) {
|
||||||
case kCmdOff:
|
case kCmdOff:
|
||||||
SetSectorState(nSector, pXSector, 0);
|
SetSectorState(pSector, 0);
|
||||||
break;
|
break;
|
||||||
case kCmdOn:
|
case kCmdOn:
|
||||||
SetSectorState(nSector, pXSector, 1);
|
SetSectorState(pSector, 1);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
SetSectorState(nSector, pXSector, pXSector->state ^ 1);
|
SetSectorState(pSector, pXSector->state ^ 1);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1646,7 +1647,7 @@ void LinkSector(int nSector, XSECTOR *pXSector, EVENT event)
|
||||||
default:
|
default:
|
||||||
pXSector->busy = nBusy;
|
pXSector->busy = nBusy;
|
||||||
if ((pXSector->busy&0xffff) == 0)
|
if ((pXSector->busy&0xffff) == 0)
|
||||||
SetSectorState(nSector, pXSector, FixedToInt(nBusy));
|
SetSectorState(pSector, FixedToInt(nBusy));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -62,7 +62,7 @@ void trInit(void);
|
||||||
void trTextOver(int nId);
|
void trTextOver(int nId);
|
||||||
bool SetSpriteState(DBloodActor* actor, int nState);
|
bool SetSpriteState(DBloodActor* actor, int nState);
|
||||||
bool SetWallState(walltype* pWall, int nState);
|
bool SetWallState(walltype* pWall, int nState);
|
||||||
bool SetSectorState(int nSector, XSECTOR* pXSector, int nState);
|
bool SetSectorState(sectortype* pSector, int nState);
|
||||||
void TeleFrag(DBloodActor* killer, sectortype* pSector);
|
void TeleFrag(DBloodActor* killer, sectortype* pSector);
|
||||||
void SectorStartSound(sectortype* pSector, int nState);
|
void SectorStartSound(sectortype* pSector, int nState);
|
||||||
void SectorEndSound(sectortype* pSector, int nState);
|
void SectorEndSound(sectortype* pSector, int nState);
|
||||||
|
|
Loading…
Reference in a new issue