From 42679d58bb4aa49ebab5c4cfc6e86e096b712d98 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 7 Oct 2022 19:26:23 +0200 Subject: [PATCH] - lots of repeats in Exhumed --- source/core/maptypes.h | 6 ++++++ source/games/exhumed/src/bullet.cpp | 8 ++++---- source/games/exhumed/src/items.cpp | 7 +++---- source/games/exhumed/src/lavadude.cpp | 6 ++---- source/games/exhumed/src/mummy.cpp | 3 +-- source/games/exhumed/src/object.cpp | 8 +++----- source/games/exhumed/src/player.cpp | 3 +-- source/games/exhumed/src/queen.cpp | 21 +++++++-------------- source/games/exhumed/src/ramses.cpp | 3 +-- source/games/exhumed/src/scorp.cpp | 3 +-- source/games/exhumed/src/sequence.cpp | 6 ++---- source/games/exhumed/src/set.cpp | 13 +++++-------- 12 files changed, 36 insertions(+), 51 deletions(-) diff --git a/source/core/maptypes.h b/source/core/maptypes.h index eb6468f0c..1505675bd 100644 --- a/source/core/maptypes.h +++ b/source/core/maptypes.h @@ -484,6 +484,12 @@ struct spritetypebase yrepeat = uint8_t(y * scaletoint); } + void SetScale(const DVector2& p) + { + xrepeat = uint8_t(p.X * scaletoint); + yrepeat = uint8_t(p.Y * scaletoint); + } + void SetScaleX(double x) { xrepeat = uint8_t(x * scaletoint); diff --git a/source/games/exhumed/src/bullet.cpp b/source/games/exhumed/src/bullet.cpp index fe0bcd677..b7f44ef23 100644 --- a/source/games/exhumed/src/bullet.cpp +++ b/source/games/exhumed/src/bullet.cpp @@ -347,8 +347,8 @@ int MoveBullet(int nBullet) { if (pBullet->field_E < 8) { - pActor->spr.xrepeat -= 1; - pActor->spr.yrepeat += 8; + pActor->spr.AddScaleX(-REPEAT_SCALE); + pActor->spr.AddScaleY(0.125); pBullet->vect.Z -= 200/256.; @@ -367,8 +367,8 @@ int MoveBullet(int nBullet) } else { - pActor->spr.xrepeat += 4; - pActor->spr.yrepeat += 4; + pActor->spr.AddScaleX(0.0625); + pActor->spr.AddScaleY(0.0625); } } diff --git a/source/games/exhumed/src/items.cpp b/source/games/exhumed/src/items.cpp index 24caf7235..6913c5e23 100644 --- a/source/games/exhumed/src/items.cpp +++ b/source/games/exhumed/src/items.cpp @@ -457,8 +457,7 @@ void StartRegenerate(DExhumedActor* pActor) } pActor->spr.cstat = CSTAT_SPRITE_INVISIBLE; - pActor->spr.xrepeat = 1; - pActor->spr.yrepeat = 1; + pActor->spr.SetScale(REPEAT_SCALE, REPEAT_SCALE); pActor->spr.pal = 1; Regenerates.Push(pActor); @@ -492,8 +491,8 @@ void DoRegenerates() { if (pActor->spr.xrepeat < pActor->spr.xint) { - pActor->spr.xrepeat += 2; - pActor->spr.yrepeat += 2; + pActor->spr.AddScaleX(0.03125); + pActor->spr.AddScaleY(0.03125); continue; } } diff --git a/source/games/exhumed/src/lavadude.cpp b/source/games/exhumed/src/lavadude.cpp index 962aafe63..9adcf6f86 100644 --- a/source/games/exhumed/src/lavadude.cpp +++ b/source/games/exhumed/src/lavadude.cpp @@ -50,8 +50,7 @@ DExhumedActor* BuildLavaLimb(DExhumedActor* pActor, int move, double height) pLimbActor->vel.Z = 10 - RandomSize(5); pLimbActor->spr.xoffset = 0; pLimbActor->spr.yoffset = 0; - pLimbActor->spr.xrepeat = 90; - pLimbActor->spr.yrepeat = 90; + pLimbActor->spr.SetScale(1.40625, 1.40625); pLimbActor->spr.picnum = (move & 3) % 3; pLimbActor->spr.hitag = 0; pLimbActor->spr.lotag = runlist_HeadRun() + 1; @@ -114,8 +113,7 @@ void BuildLava(DExhumedActor* pActor, const DVector3& pos, sectortype* pSector, } pActor->spr.cstat = CSTAT_SPRITE_INVISIBLE; - pActor->spr.xrepeat = 200; - pActor->spr.yrepeat = 200; + pActor->spr.SetScale(3.125, 3.125); pActor->spr.shade = -12; pActor->spr.pal = 0; pActor->clipdist = 31.75; diff --git a/source/games/exhumed/src/mummy.cpp b/source/games/exhumed/src/mummy.cpp index 599269a49..7d2327cd0 100644 --- a/source/games/exhumed/src/mummy.cpp +++ b/source/games/exhumed/src/mummy.cpp @@ -62,8 +62,7 @@ void BuildMummy(DExhumedActor* pActor, const DVector3& pos, sectortype* pSector, pActor->vel.X = 0; pActor->vel.Y = 0; pActor->vel.Z = 0; - pActor->spr.xrepeat = 42; - pActor->spr.yrepeat = 42; + pActor->spr.SetScale(0.65625, 0.65625); pActor->spr.pal = pActor->sector()->ceilingpal; pActor->spr.xoffset = 0; pActor->spr.yoffset = 0; diff --git a/source/games/exhumed/src/object.cpp b/source/games/exhumed/src/object.cpp index 5481a6749..f0b53624e 100644 --- a/source/games/exhumed/src/object.cpp +++ b/source/games/exhumed/src/object.cpp @@ -1410,13 +1410,11 @@ DExhumedActor* BuildSpark(DExhumedActor* pActor, int nVal) if (nVal == 3) { - pSpark->spr.xrepeat = 120; - pSpark->spr.yrepeat = 120; + pSpark->spr.SetScale(1.875, 1.875); } else { - pSpark->spr.xrepeat = pActor->spr.xrepeat + 15; - pSpark->spr.yrepeat = pActor->spr.xrepeat + 15; + pSpark->spr.SetScale(pActor->spr.Scale() + DVector2(0.234375, 0.234375)); } } else @@ -1467,7 +1465,7 @@ void AISpark::Tick(RunListEvent* ev) if (pActor->spr.ScaleX() >= 0.0625 && pActor->spr.shade <= 100) { - pActor->spr.yrepeat -= 2; + pActor->spr.AddScaleY(-0.03125); // calling BuildSpark() with 2nd parameter as '1' will set kTile986 if (pActor->spr.picnum == kTile986 && (pActor->spr.xrepeat & 2)) diff --git a/source/games/exhumed/src/player.cpp b/source/games/exhumed/src/player.cpp index 873959c31..1370b4bca 100644 --- a/source/games/exhumed/src/player.cpp +++ b/source/games/exhumed/src/player.cpp @@ -338,8 +338,7 @@ void RestartPlayer(int nPlayer) pActor->spr.lotag = runlist_HeadRun() + 1; pDActor->spr.pos = pActor->spr.pos; - pDActor->spr.xrepeat = pActor->spr.xrepeat; - pDActor->spr.yrepeat = pActor->spr.yrepeat; + pDActor->spr.CopyScale(&pActor->spr); pDActor->spr.xoffset = 0; pDActor->spr.yoffset = 0; pDActor->spr.shade = pActor->spr.shade; diff --git a/source/games/exhumed/src/queen.cpp b/source/games/exhumed/src/queen.cpp index 3dea080f6..7e07cf407 100644 --- a/source/games/exhumed/src/queen.cpp +++ b/source/games/exhumed/src/queen.cpp @@ -425,8 +425,7 @@ void BuildTail() pTailActor->spr.hitag = 0; pTailActor->spr.cstat = 0; pTailActor->clipdist = 25; - pTailActor->spr.xrepeat = 80; - pTailActor->spr.yrepeat = 80; + pTailActor->spr.SetScale(1.25, 1.25); pTailActor->spr.picnum = 1; pTailActor->spr.pal = pTailActor->sector()->ceilingpal; pTailActor->spr.xoffset = 0; @@ -478,16 +477,14 @@ void BuildQueenEgg(int nQueen, int nVal) if (!nVal) { - pActor2->spr.xrepeat = 30; - pActor2->spr.yrepeat = 30; + pActor2->spr.SetScale(0.46875, 0.46875); pActor2->vel.XY() = pActor2->spr.angle.ToVector() * 1024; pActor2->vel.Z = -6000 / 256.; pActor2->spr.cstat = 0; } else { - pActor2->spr.xrepeat = 60; - pActor2->spr.yrepeat = 60; + pActor2->spr.SetScale(0.9375, 0.9375); pActor2->vel.X = 0; pActor2->vel.Y = 0; pActor2->vel.Z = -2000 / 256.; @@ -749,8 +746,7 @@ void BuildQueenHead(int nQueen) pActor2->spr.pos.XY() = pActor->spr.pos.XY(); pActor2->spr.pos.Z = pSector->floorz; pActor2->clipdist = 17.5; - pActor2->spr.xrepeat = 80; - pActor2->spr.yrepeat = 80; + pActor2->spr.SetScale(1.25, 1.25); pActor2->spr.cstat = 0; pActor2->spr.picnum = 1; pActor2->spr.shade = -12; @@ -1182,8 +1178,7 @@ void BuildQueen(DExhumedActor* pActor, const DVector3& pos, sectortype* pSector, pActor->spr.pal = 0; pActor->spr.shade = -12; pActor->clipdist = 25; - pActor->spr.xrepeat = 80; - pActor->spr.yrepeat = 80; + pActor->spr.SetScale(1.25, 1.25); pActor->spr.xoffset = 0; pActor->spr.yoffset = 0; pActor->spr.picnum = 1; @@ -1451,15 +1446,13 @@ void AIQueen::Tick(RunListEvent* ev) auto pChunkActor = BuildCreatureChunk(pActor, seq_GetSeqPicnum(kSeqQueen, 57, 0)); pChunkActor->spr.picnum = kQueenChunk + (i % 3); - pChunkActor->spr.xrepeat = 100; - pChunkActor->spr.yrepeat = 100; + pChunkActor->spr.SetScale(1.5625, 1.5625); } auto pChunkActor = BuildCreatureChunk(pActor, seq_GetSeqPicnum(kSeqQueen, 57, 0)); pChunkActor->spr.picnum = kTile3126; - pChunkActor->spr.yrepeat = 100; - pChunkActor->spr.xrepeat = 100; + pChunkActor->spr.SetScale(1.5625, 1.5625); PlayFXAtXYZ( StaticSound[kSound40], diff --git a/source/games/exhumed/src/ramses.cpp b/source/games/exhumed/src/ramses.cpp index 1f54f5844..15c0590e6 100644 --- a/source/games/exhumed/src/ramses.cpp +++ b/source/games/exhumed/src/ramses.cpp @@ -117,8 +117,7 @@ void InitSpiritHead() } - pSpiritSpr->spr.yrepeat = 140; - pSpiritSpr->spr.xrepeat = 140; + pSpiritSpr->spr.SetScale(2.1875, 2.1875); pSpiritSpr->spr.picnum = kTileRamsesWorkTile; nHeadStage = 0; diff --git a/source/games/exhumed/src/scorp.cpp b/source/games/exhumed/src/scorp.cpp index cebad1b76..905902fb3 100644 --- a/source/games/exhumed/src/scorp.cpp +++ b/source/games/exhumed/src/scorp.cpp @@ -61,8 +61,7 @@ void BuildScorp(DExhumedActor* pActor, const DVector3& pos, sectortype* pSector, pActor->spr.cstat = CSTAT_SPRITE_BLOCK_ALL; pActor->clipdist = 17.5; pActor->spr.shade = -12; - pActor->spr.xrepeat = 80; - pActor->spr.yrepeat = 80; + pActor->spr.SetScale(1.25, 1.25); pActor->spr.picnum = 1; pActor->spr.pal = pActor->sector()->ceilingpal; pActor->spr.xoffset = 0; diff --git a/source/games/exhumed/src/sequence.cpp b/source/games/exhumed/src/sequence.cpp index a4392e9e4..1934be7e0 100644 --- a/source/games/exhumed/src/sequence.cpp +++ b/source/games/exhumed/src/sequence.cpp @@ -643,8 +643,7 @@ int seq_PlotSequence(int nSprite, int16_t edx, int16_t nFrame, int16_t ecx) tsp->shade = shade; tsp->pal = pTSprite->pal; - tsp->xrepeat = pTSprite->xrepeat; - tsp->yrepeat = pTSprite->yrepeat; + tsp->CopyScale(pTSprite); tsp->angle = pTSprite->angle; tsp->ownerActor = pTSprite->ownerActor; tsp->sectp = pTSprite->sectp; @@ -691,8 +690,7 @@ int seq_PlotSequence(int nSprite, int16_t edx, int16_t nFrame, int16_t ecx) pTSprite->cstat = CSTAT_SPRITE_ALIGNMENT_FLOOR | CSTAT_SPRITE_TRANSLUCENT; pTSprite->pos.Z = pSector->floorz; - pTSprite->yrepeat = (uint8_t)edx; - pTSprite->xrepeat = (uint8_t)edx; + pTSprite->SetScale(edx * REPEAT_SCALE, edx * REPEAT_SCALE); pTSprite->statnum = -3; pTSprite->pal = 0; } diff --git a/source/games/exhumed/src/set.cpp b/source/games/exhumed/src/set.cpp index d93c24898..87405d469 100644 --- a/source/games/exhumed/src/set.cpp +++ b/source/games/exhumed/src/set.cpp @@ -65,8 +65,7 @@ void BuildSet(DExhumedActor* pActor, const DVector3& pos, sectortype* pSector, D pActor->vel.X = 0; pActor->vel.Y = 0; pActor->vel.Z = 0; - pActor->spr.xrepeat = 87; - pActor->spr.yrepeat = 96; + pActor->spr.SetScale(1.359375, 1.5); pActor->spr.pal = pActor->sector()->ceilingpal; pActor->spr.xoffset = 0; pActor->spr.yoffset = 0; @@ -109,8 +108,7 @@ void BuildSoul(DExhumedActor* pSet) pActor->spr.cstat = CSTAT_SPRITE_INVISIBLE; pActor->spr.shade = -127; - pActor->spr.xrepeat = 1; - pActor->spr.yrepeat = 1; + pActor->spr.SetScale(REPEAT_SCALE, REPEAT_SCALE); pActor->spr.pal = 0; pActor->clipdist = 1.25; pActor->spr.xoffset = 0; @@ -148,8 +146,8 @@ void AISoul::Tick(RunListEvent* ev) if (pActor->spr.ScaleX() < 0.5) { - pActor->spr.xrepeat++; - pActor->spr.yrepeat++; + pActor->spr.AddScaleX(REPEAT_SCALE); + pActor->spr.AddScaleY(REPEAT_SCALE); } pActor->spr.extra += (pActor->nPhase & 0x0F) + 5; @@ -165,8 +163,7 @@ void AISoul::Tick(RunListEvent* ev) if (!pSet) return; pActor->spr.cstat = 0; - pActor->spr.yrepeat = 1; - pActor->spr.xrepeat = 1; + pActor->spr.SetScale(REPEAT_SCALE, REPEAT_SCALE); pActor->spr.pos = pSet->spr.pos.plusZ(-GetActorHeight(pSet) * 0.5); ChangeActorSect(pActor, pSet->sector()); return;