From 1883aad7c26c724ca6031b34579be595531ef7a1 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 18 Dec 2021 15:18:15 +0100 Subject: [PATCH] - flag names in SetupGibWallState and TranslateSector --- source/core/maptypes.h | 8 ++++++-- source/games/blood/src/triggers.cpp | 28 ++++++++++++++-------------- 2 files changed, 20 insertions(+), 16 deletions(-) diff --git a/source/core/maptypes.h b/source/core/maptypes.h index 62797a9bd..6da3b0892 100644 --- a/source/core/maptypes.h +++ b/source/core/maptypes.h @@ -107,8 +107,12 @@ enum EWallBits // names are from Shadow Warrior CSTAT_WALL_ROTATE_90 = 1<<12, // EDuke32 extension supported by Raze - CSTAT_WALL_BLOCK_ACTOR = 1<<14, // SW specific. Also used by Blood for different purposes - CSTAT_WALL_WARP_HITSCAN = 1<<15, // SW specific. Also used by Blood for different purposes + CSTAT_WALL_BLOCK_ACTOR = 1<<14, // SW specific. + CSTAT_WALL_WARP_HITSCAN = 1<<15, // SW specific. + + CSTAT_WALL_MOVE_FORWARD = 1 << 14, // Blood specific + CSTAT_WALL_MOVE_BACKWARD = 1 << 15, // Blood specific + CSTAT_WALL_MOVE_MASK = CSTAT_WALL_MOVE_FORWARD | CSTAT_WALL_MOVE_BACKWARD }; diff --git a/source/games/blood/src/triggers.cpp b/source/games/blood/src/triggers.cpp index 11c109ae8..76a70c3f9 100644 --- a/source/games/blood/src/triggers.cpp +++ b/source/games/blood/src/triggers.cpp @@ -613,26 +613,26 @@ void SetupGibWallState(walltype *pWall, XWALL *pXWall) pWall2 = pWall->nextWall(); if (pXWall->state) { - pWall->cstat &= ~65; + pWall->cstat &= ~(CSTAT_WALL_BLOCK | CSTAT_WALL_BLOCK_HITSCAN); if (pWall2) { - pWall2->cstat &= ~65; - pWall->cstat &= ~16; - pWall2->cstat &= ~16; + pWall2->cstat &= ~(CSTAT_WALL_BLOCK | CSTAT_WALL_BLOCK_HITSCAN); + pWall->cstat &= ~CSTAT_WALL_MASKED; + pWall2->cstat &= ~CSTAT_WALL_MASKED; } return; } bool bVector = pXWall->triggerVector != 0; - pWall->cstat |= 1; + pWall->cstat |= CSTAT_WALL_BLOCK; if (bVector) - pWall->cstat |= 64; + pWall->cstat |= CSTAT_WALL_BLOCK_HITSCAN; if (pWall2) { - pWall2->cstat |= 1; + pWall2->cstat |= CSTAT_WALL_BLOCK; if (bVector) - pWall2->cstat |= 64; - pWall->cstat |= 16; - pWall2->cstat |= 16; + pWall2->cstat |= CSTAT_WALL_BLOCK_HITSCAN; + pWall->cstat |= CSTAT_WALL_MASKED; + pWall2->cstat |= CSTAT_WALL_MASKED; } } @@ -825,12 +825,12 @@ void TranslateSector(sectortype* pSector, int a2, int a3, int a4, int a5, int a6 auto p2Wall = wal.point2Wall(); x = wal.baseWall.x; y = wal.baseWall.y; - if (wal.cstat&16384) + if (wal.cstat & CSTAT_WALL_MOVE_FORWARD) { if (vbp) RotatePoint((int*)&x, (int*)&y, vbp, a4, a5); DragPoint(&wal, x+vc-a4, y+v8-a5); - if ((p2Wall->cstat&49152) == 0) + if ((p2Wall->cstat & CSTAT_WALL_MOVE_MASK) == 0) { x = p2Wall->baseWall.x; y = p2Wall->baseWall.y; @@ -840,12 +840,12 @@ void TranslateSector(sectortype* pSector, int a2, int a3, int a4, int a5, int a6 } continue; } - if (wal.cstat&32768) + if (wal.cstat & CSTAT_WALL_MOVE_BACKWARD) { if (vbp) RotatePoint((int*)&x, (int*)&y, -vbp, a4, a5); DragPoint(&wal, x-(vc-a4), y-(v8-a5)); - if ((p2Wall->cstat&49152) == 0) + if ((p2Wall->cstat & CSTAT_WALL_MOVE_MASK) == 0) { x = p2Wall->baseWall.x; y = p2Wall->baseWall.y;