From 759a8428fa258148a0a473a93621f9e86ee0f2c6 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 23 Nov 2021 21:25:31 +0100 Subject: [PATCH] - dragPoint --- source/build/include/build.h | 5 ++ source/games/blood/src/triggers.cpp | 84 ++++++++++++++--------------- source/games/blood/src/view.h | 14 ++--- 3 files changed, 53 insertions(+), 50 deletions(-) diff --git a/source/build/include/build.h b/source/build/include/build.h index 73080df80..246cfcb43 100644 --- a/source/build/include/build.h +++ b/source/build/include/build.h @@ -465,6 +465,11 @@ inline void rotatepoint(int px, int py, int ptx, int pty, int daang, int* resx, } int32_t lastwall(int16_t point); +inline walltype* lastwall(walltype* point) +{ + return &wall[lastwall(wall.IndexOf(point))]; +} + int32_t nextsectorneighborz(int16_t sectnum, int32_t refz, int16_t topbottom, int16_t direction); inline sectortype* nextsectorneighborzptr(int16_t sectnum, int32_t refz, int16_t topbottom, int16_t direction) { diff --git a/source/games/blood/src/triggers.cpp b/source/games/blood/src/triggers.cpp index 89d679d50..766db547c 100644 --- a/source/games/blood/src/triggers.cpp +++ b/source/games/blood/src/triggers.cpp @@ -764,46 +764,47 @@ void PathSound(int nSector, int nSound) } } -void DragPoint(int nWall, int x, int y) +void DragPoint(walltype* pWall, int x, int y) { - sector[wall[nWall].sector].dirty = 255; - viewInterpolateWall(nWall, &wall[nWall]); - wall[nWall].x = x; - wall[nWall].y = y; + sector[pWall->sector].dirty = 255; + viewInterpolateWall(pWall); + pWall->x = x; + pWall->y = y; int vsi = numwalls; - int vb = nWall; + auto prevWall = pWall; do { - if (wall[vb].nextwall >= 0) + if (prevWall->nextwall >= 0) { - vb = wall[wall[vb].nextwall].point2; - sector[wall[vb].sector].dirty = 255; - viewInterpolateWall(vb, &wall[vb]); - wall[vb].x = x; - wall[vb].y = y; + prevWall = prevWall->nextWall()->point2Wall(); + prevWall->sectorp()->dirty = 255; + viewInterpolateWall(prevWall); + prevWall->x = x; + prevWall->y = y; } else { - vb = nWall; + prevWall = pWall; do { - if (wall[lastwall(vb)].nextwall >= 0) + auto lw = lastwall(prevWall); + if (lw->nextwall >= 0) { - vb = wall[lastwall(vb)].nextwall; - sector[wall[vb].sector].dirty = 255; - viewInterpolateWall(vb, &wall[vb]); - wall[vb].x = x; - wall[vb].y = y; + prevWall = lw->nextWall(); + prevWall->sectorp()->dirty = 255; + viewInterpolateWall(prevWall); + prevWall->x = x; + prevWall->y = y; } else break; vsi--; - } while (vb != nWall && vsi > 0); + } while (prevWall != pWall && vsi > 0); break; } vsi--; - } while (vb != nWall && vsi > 0); + } while (prevWall != pWall && vsi > 0); } void TranslateSector(int nSector, int a2, int a3, int a4, int a5, int a6, int a7, int a8, int a9, int a10, int a11, char a12) @@ -820,54 +821,51 @@ void TranslateSector(int nSector, int a2, int a3, int a4, int a5, int a6, int a7 int v44 = interpolatedvalue(a8, a11, a2); int vbp = interpolatedvalue(a8, a11, a3); int v14 = vbp - v44; - int nWall = pSector->wallptr; if (a12) { - for (int i = 0; i < pSector->wallnum; nWall++, i++) + for (auto& wal : wallsofsector(pSector)) { - x = wall[nWall].baseWall.x; - y = wall[nWall].baseWall.y; + x = wal.baseWall.x; + y = wal.baseWall.y; if (vbp) RotatePoint((int*)&x, (int*)&y, vbp, a4, a5); - DragPoint(nWall, x+vc-a4, y+v8-a5); + DragPoint(&wal, x+vc-a4, y+v8-a5); } } else { - for (int i = 0; i < pSector->wallnum; nWall++, i++) + for (auto& wal : wallsofsector(pSector)) { - auto pWall = &wall[nWall]; - int v10 = pWall->point2; - auto p2Wall = pWall->point2Wall(); - x = pWall->baseWall.x; - y = pWall->baseWall.y; - if (pWall->cstat&16384) + auto p2Wall = wal.point2Wall(); + x = wal.baseWall.x; + y = wal.baseWall.y; + if (wal.cstat&16384) { if (vbp) RotatePoint((int*)&x, (int*)&y, vbp, a4, a5); - DragPoint(nWall, x+vc-a4, y+v8-a5); + DragPoint(&wal, x+vc-a4, y+v8-a5); if ((p2Wall->cstat&49152) == 0) { x = p2Wall->baseWall.x; y = p2Wall->baseWall.y; if (vbp) RotatePoint((int*)&x, (int*)&y, vbp, a4, a5); - DragPoint(v10, x+vc-a4, y+v8-a5); + DragPoint(p2Wall, x+vc-a4, y+v8-a5); } continue; } - if (pWall->cstat&32768) + if (wal.cstat&32768) { if (vbp) RotatePoint((int*)&x, (int*)&y, -vbp, a4, a5); - DragPoint(nWall, x-(vc-a4), y-(v8-a5)); + DragPoint(&wal, x-(vc-a4), y-(v8-a5)); if ((p2Wall->cstat&49152) == 0) { x = p2Wall->baseWall.x; y = p2Wall->baseWall.y; if (vbp) RotatePoint((int*)&x, (int*)&y, -vbp, a4, a5); - DragPoint(v10, x-(vc-a4), y-(v8-a5)); + DragPoint(p2Wall, x-(vc-a4), y-(v8-a5)); } continue; } @@ -930,7 +928,7 @@ void TranslateSector(int nSector, int a2, int a3, int a4, int a5, int a6, int a7 void ZTranslateSector(int nSector, XSECTOR *pXSector, int a3, int a4) { sectortype *pSector = §or[nSector]; - viewInterpolateSector(nSector, pSector); + viewInterpolateSector(pSector); int dz = pXSector->onFloorZ-pXSector->offFloorZ; if (dz != 0) { @@ -1055,7 +1053,7 @@ int VCrushBusy(unsigned int nSector, unsigned int a2) int v18; if (GetHighestSprite(nSector, 6, &v18) && vc >= v18) return 1; - viewInterpolateSector(nSector, §or[nSector]); + viewInterpolateSector(§or[nSector]); if (dz1 != 0) pSector->ceilingz = vc; if (dz2 != 0) @@ -1881,7 +1879,7 @@ void ProcessMotion(void) if (pXSector->bobFloor) { int floorZ = pSector->floorz; - viewInterpolateSector(nSector, pSector); + viewInterpolateSector(pSector); pSector->floorz = pSector->baseFloor + vdi; BloodSectIterator it(nSector); @@ -1905,7 +1903,7 @@ void ProcessMotion(void) if (pXSector->bobCeiling) { int ceilZ = pSector->ceilingz; - viewInterpolateSector(nSector, pSector); + viewInterpolateSector(pSector); pSector->ceilingz = pSector->baseCeil + vdi; BloodSectIterator it(nSector); @@ -1940,7 +1938,7 @@ void AlignSlopes(void) { int x = (pWall->x+pWall2->x)/2; int y = (pWall->y+pWall2->y)/2; - viewInterpolateSector(nSector, pSector); + viewInterpolateSector(pSector); alignflorslope(nSector, x, y, getflorzofslope(nNextSector, x, y)); alignceilslope(nSector, x, y, getceilzofslope(nNextSector, x, y)); } diff --git a/source/games/blood/src/view.h b/source/games/blood/src/view.h index fed6fd8e4..b4e3cdb71 100644 --- a/source/games/blood/src/view.h +++ b/source/games/blood/src/view.h @@ -158,17 +158,17 @@ void viewDrawScreen(bool sceneonly = false); void viewUpdateDelirium(void); void viewSetSystemMessage(const char* pMessage, ...); -inline void viewInterpolateSector(int nSector, sectortype *pSector) +inline void viewInterpolateSector(sectortype *pSector) { - StartInterpolation(nSector, Interp_Sect_Floorz); - StartInterpolation(nSector, Interp_Sect_Ceilingz); - StartInterpolation(nSector, Interp_Sect_Floorheinum); + StartInterpolation(pSector, Interp_Sect_Floorz); + StartInterpolation(pSector, Interp_Sect_Ceilingz); + StartInterpolation(pSector, Interp_Sect_Floorheinum); } -inline void viewInterpolateWall(int nWall, walltype *pWall) +inline void viewInterpolateWall(walltype *pWall) { - StartInterpolation(nWall, Interp_Wall_X); - StartInterpolation(nWall, Interp_Wall_Y); + StartInterpolation(pWall, Interp_Wall_X); + StartInterpolation(pWall, Interp_Wall_Y); } inline void viewBackupSpriteLoc(DBloodActor* actor)