From da3df98484a9da93554df18c29681fd5b9b941c3 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 1 Oct 2023 10:17:27 +0200 Subject: [PATCH] use global stat manager in Exhumed --- source/games/exhumed/src/anubis.cpp | 5 +++-- source/games/exhumed/src/exhumed.cpp | 8 ++------ source/games/exhumed/src/exhumed.h | 3 +-- source/games/exhumed/src/fish.cpp | 4 ++-- source/games/exhumed/src/gameloop.cpp | 5 ++--- source/games/exhumed/src/init.cpp | 3 +-- source/games/exhumed/src/lavadude.cpp | 4 ++-- source/games/exhumed/src/lion.cpp | 4 ++-- source/games/exhumed/src/mummy.cpp | 6 +++--- source/games/exhumed/src/queen.cpp | 4 ++-- source/games/exhumed/src/rex.cpp | 4 ++-- source/games/exhumed/src/roach.cpp | 4 ++-- source/games/exhumed/src/runlist.cpp | 7 +++++-- source/games/exhumed/src/scorp.cpp | 4 ++-- source/games/exhumed/src/set.cpp | 4 ++-- source/games/exhumed/src/sound.cpp | 2 +- source/games/exhumed/src/spider.cpp | 4 ++-- source/games/exhumed/src/status.cpp | 4 +--- source/games/exhumed/src/wasp.cpp | 4 ++-- 19 files changed, 39 insertions(+), 44 deletions(-) diff --git a/source/games/exhumed/src/anubis.cpp b/source/games/exhumed/src/anubis.cpp index 55cd998c0..3d7ea8016 100644 --- a/source/games/exhumed/src/anubis.cpp +++ b/source/games/exhumed/src/anubis.cpp @@ -21,6 +21,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #include "engine.h" #include "sequence.h" #include "sound.h" +#include "mapinfo.h" #include BEGIN_PS_NS @@ -109,7 +110,7 @@ void BuildAnubis(DExhumedActor* ap, const DVector3& pos, sectortype* pSector, DA ap->nSeqFile = "anubis"; runlist_AddRunRec(NewRun, ap, 0x90000); - nCreaturesTotal++; + Level.addKillCount(); } //--------------------------------------------------------------------------- @@ -425,7 +426,7 @@ void AIAnubis::Damage(RunListEvent* ev) ap->spr.cstat &= ~CSTAT_SPRITE_BLOCK_ALL; ap->nHealth = 0; - nCreaturesKilled++; + Level.addKill(-1); if (nAction < 11) { diff --git a/source/games/exhumed/src/exhumed.cpp b/source/games/exhumed/src/exhumed.cpp index 2ec0c0742..8ebc8ebe5 100644 --- a/source/games/exhumed/src/exhumed.cpp +++ b/source/games/exhumed/src/exhumed.cpp @@ -116,8 +116,6 @@ void MySetView(int x1, int y1, int x2, int y2); char sHollyStr[40]; -int nCreaturesKilled = 0, nCreaturesTotal = 0; - int nFreeze; int nSnakeCam = -1; @@ -528,7 +526,7 @@ bool GameInterface::CanSave() ::GameStats GameInterface::getStats() { - return { nCreaturesKilled, nCreaturesTotal, 0, 0, PlayClock / 120, 0 }; + return { Level.kills.got, Level.kills.max, Level.secrets.got, Level.secrets.max, PlayClock / 120, 0 }; } ::GameInterface* CreateInterface() @@ -581,9 +579,7 @@ void SerializeState(FSerializer& arc) InitEnergyTile(); } - arc ("creaturestotal", nCreaturesTotal) - ("creatureskilled", nCreaturesKilled) - ("freeze", nFreeze) + arc ("freeze", nFreeze) ("snakecam", nSnakeCam) ("clockval", nClockVal) ("redticks", nRedTicks) diff --git a/source/games/exhumed/src/exhumed.h b/source/games/exhumed/src/exhumed.h index dad56f5ef..5ca484fa8 100644 --- a/source/games/exhumed/src/exhumed.h +++ b/source/games/exhumed/src/exhumed.h @@ -37,6 +37,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #include "texinfo.h" #include "player.h" #include "texids.h" +#include "mapinfo.h" BEGIN_PS_NS @@ -107,8 +108,6 @@ extern int nNetTime; extern int nTotalPlayers; -extern int nCreaturesTotal, nCreaturesKilled; - extern int lLocalButtons; extern int nEnergyTowers; diff --git a/source/games/exhumed/src/fish.cpp b/source/games/exhumed/src/fish.cpp index 3ae0bc9b4..85c549b12 100644 --- a/source/games/exhumed/src/fish.cpp +++ b/source/games/exhumed/src/fish.cpp @@ -196,7 +196,7 @@ void BuildFish(DExhumedActor* pActor, const DVector3& pos, sectortype* pSector, pActor->spr.intowner = runlist_AddRunRec(pActor->spr.lotag - 1, pActor, 0x120000); pActor->nRun = runlist_AddRunRec(NewRun, pActor, 0x120000); - nCreaturesTotal++; + Level.addKillCount(); } //--------------------------------------------------------------------------- @@ -304,7 +304,7 @@ void AIFish::Damage(RunListEvent* ev) if (pActor->nHealth <= 0) { pActor->nHealth = 0; - nCreaturesKilled++; + Level.addKill(-1); pActor->spr.cstat &= ~CSTAT_SPRITE_BLOCK_ALL; diff --git a/source/games/exhumed/src/gameloop.cpp b/source/games/exhumed/src/gameloop.cpp index e02b9ec97..8503ed80c 100644 --- a/source/games/exhumed/src/gameloop.cpp +++ b/source/games/exhumed/src/gameloop.cpp @@ -191,9 +191,8 @@ void GameInterface::LevelCompleted(MapRecord *to_map, int skill) } } SummaryInfo info{}; - info.kills = nCreaturesKilled; - info.maxkills = nCreaturesTotal; - info.supersecrets = nBestLevel; + Level.fillSummary(info); + info.supersecrets = nBestLevel;// hacky override info.time = PlayClock * GameTicRate / 120; if (to_map) selectedlevelnew = to_map->levelNumber; ShowIntermission(currentLevel, to_map, &info, [=](bool) diff --git a/source/games/exhumed/src/init.cpp b/source/games/exhumed/src/init.cpp index c296c3ad9..699836aff 100644 --- a/source/games/exhumed/src/init.cpp +++ b/source/games/exhumed/src/init.cpp @@ -117,8 +117,7 @@ uint8_t LoadLevel(MapRecord* map) // init stuff { StopAllSounds(); - nCreaturesKilled = 0; - nCreaturesTotal = 0; + Level.clearStats(); nFreeze = 0; pSpiritSprite = nullptr; PlayClock = 0; diff --git a/source/games/exhumed/src/lavadude.cpp b/source/games/exhumed/src/lavadude.cpp index 06156f61d..2b8ce87a8 100644 --- a/source/games/exhumed/src/lavadude.cpp +++ b/source/games/exhumed/src/lavadude.cpp @@ -145,7 +145,7 @@ void BuildLava(DExhumedActor* pActor, const DVector3& pos, sectortype* pSector, pActor->spr.intowner = runlist_AddRunRec(pActor->spr.lotag - 1, pActor, 0x150000); pActor->nRun = runlist_AddRunRec(NewRun, pActor, 0x150000); - nCreaturesTotal++; + Level.addKillCount(); } void AILavaDude::Draw(RunListEvent* ev) @@ -178,7 +178,7 @@ void AILavaDude::Damage(RunListEvent* ev) pActor->nAction = 5; pActor->nFrame = 0; - nCreaturesKilled++; + Level.addKill(-1); pActor->spr.cstat &= ~CSTAT_SPRITE_BLOCK_ALL; } diff --git a/source/games/exhumed/src/lion.cpp b/source/games/exhumed/src/lion.cpp index 85a4e73f8..149366fe8 100644 --- a/source/games/exhumed/src/lion.cpp +++ b/source/games/exhumed/src/lion.cpp @@ -86,7 +86,7 @@ void BuildLion(DExhumedActor* pActor, const DVector3& pos, sectortype* pSector, pActor->nSeqFile = "lion"; - nCreaturesTotal++; + Level.addKillCount(); } void AILion::Draw(RunListEvent* ev) @@ -127,7 +127,7 @@ void AILion::Damage(RunListEvent* ev) pActor->nHealth = 0; - nCreaturesKilled++; + Level.addKill(-1); if (nAction < 10) { diff --git a/source/games/exhumed/src/mummy.cpp b/source/games/exhumed/src/mummy.cpp index 1a3f886e5..37c01760f 100644 --- a/source/games/exhumed/src/mummy.cpp +++ b/source/games/exhumed/src/mummy.cpp @@ -87,7 +87,7 @@ void BuildMummy(DExhumedActor* pActor, const DVector3& pos, sectortype* pSector, pActor->nSeqFile = "mummy"; - nCreaturesTotal++; + Level.addKillCount(); } //--------------------------------------------------------------------------- @@ -379,7 +379,7 @@ void AIMummy::Tick(RunListEvent* ev) pActor->nHealth = 300; pActor->pTarget = nullptr; - nCreaturesTotal++; + Level.addKillCount(); } return; } @@ -465,7 +465,7 @@ void AIMummy::Damage(RunListEvent* ev) { pActor->nHealth = 0; pActor->spr.cstat &= ~CSTAT_SPRITE_BLOCK_ALL; - nCreaturesKilled++; + Level.addKill(-1); DropMagic(pActor); diff --git a/source/games/exhumed/src/queen.cpp b/source/games/exhumed/src/queen.cpp index ead6c1c68..10691e491 100644 --- a/source/games/exhumed/src/queen.cpp +++ b/source/games/exhumed/src/queen.cpp @@ -1210,7 +1210,7 @@ void BuildQueen(DExhumedActor* pActor, const DVector3& pos, sectortype* pSector, runlist_AddRunRec(NewRun, nQueen, 0x1A0000); - nCreaturesTotal++; + Level.addKillCount(); } void SetQueenSpeed(DExhumedActor* pActor, int nSpeed) @@ -1549,7 +1549,7 @@ void AIQueen::Damage(RunListEvent* ev) QueenList[nQueen].nHealth = 0; QueenList[nQueen].nIndex = 5; - nCreaturesKilled++; + Level.addKill(-1); break; } diff --git a/source/games/exhumed/src/rex.cpp b/source/games/exhumed/src/rex.cpp index b01bc9168..18946ce11 100644 --- a/source/games/exhumed/src/rex.cpp +++ b/source/games/exhumed/src/rex.cpp @@ -91,7 +91,7 @@ void BuildRex(DExhumedActor* pActor, const DVector3& pos, sectortype* pSector, D // this isn't stored anywhere. runlist_AddRunRec(NewRun, pActor, 0x180000); - nCreaturesTotal++; + Level.addKillCount(); } //--------------------------------------------------------------------------- @@ -148,7 +148,7 @@ void AIRex::Damage(RunListEvent* ev) pActor->nHealth = 0; - nCreaturesKilled++; + Level.addKill(-1); if (nAction < 6) { diff --git a/source/games/exhumed/src/roach.cpp b/source/games/exhumed/src/roach.cpp index 81aaf3d10..15ec2f0c2 100644 --- a/source/games/exhumed/src/roach.cpp +++ b/source/games/exhumed/src/roach.cpp @@ -92,7 +92,7 @@ void BuildRoach(int nType, DExhumedActor* pActor, const DVector3& pos, sectortyp pActor->nSeqFile = "roach"; - nCreaturesTotal++; + Level.addKillCount(); } //--------------------------------------------------------------------------- @@ -166,7 +166,7 @@ void AIRoach::Damage(RunListEvent* ev) pActor->nFrame = 0; } - nCreaturesKilled++; // NOTE: This was incrementing in original code. Bug? + Level.addKill(-1); // NOTE: This was incrementing in original code. Bug? } else { diff --git a/source/games/exhumed/src/runlist.cpp b/source/games/exhumed/src/runlist.cpp index 7360d076b..6de42a499 100644 --- a/source/games/exhumed/src/runlist.cpp +++ b/source/games/exhumed/src/runlist.cpp @@ -1842,7 +1842,7 @@ void runlist_DamageEnemy(DExhumedActor* pActor, DExhumedActor* pActor2, int nDam return; } - int nPreCreaturesKilled = nCreaturesKilled; + int nPreCreaturesKilled = Level.kills.got; RunListEvent ev{}; ev.pOtherActor = pActor2; @@ -1850,13 +1850,16 @@ void runlist_DamageEnemy(DExhumedActor* pActor, DExhumedActor* pActor2, int nDam runlist_SendMessage(nRun, -1, &ExhumedAI::Damage, &ev); // is there now one less creature? (has one died) - if (nPreCreaturesKilled < nCreaturesKilled && pActor2 != nullptr) + if (nPreCreaturesKilled < Level.kills.got && pActor2 != nullptr) { if (pActor2->spr.statnum != 100) { return; } int nPlayer = GetPlayerFromActor(pActor2); + // Due to the horrible setup we can award the kill to the player only here. Yuck! + Level.kills.player[nPlayer]++; + PlayerList[nPlayer].nTauntTimer--; if (PlayerList[nPlayer].nTauntTimer <= 0) diff --git a/source/games/exhumed/src/scorp.cpp b/source/games/exhumed/src/scorp.cpp index e90c664a0..163b5400b 100644 --- a/source/games/exhumed/src/scorp.cpp +++ b/source/games/exhumed/src/scorp.cpp @@ -91,7 +91,7 @@ void BuildScorp(DExhumedActor* pActor, const DVector3& pos, sectortype* pSector, pActor->nSeqFile = "scorp"; - nCreaturesTotal++; + Level.addKillCount(); } //--------------------------------------------------------------------------- @@ -156,7 +156,7 @@ void AIScorp::Damage(RunListEvent* ev) pActor->vel.Z = 0; pActor->spr.cstat &= ~CSTAT_SPRITE_BLOCK_ALL; - nCreaturesKilled++; + Level.addKill(-1); return; } else diff --git a/source/games/exhumed/src/set.cpp b/source/games/exhumed/src/set.cpp index 4373f176a..5d1e71bc8 100644 --- a/source/games/exhumed/src/set.cpp +++ b/source/games/exhumed/src/set.cpp @@ -95,7 +95,7 @@ void BuildSet(DExhumedActor* pActor, const DVector3& pos, sectortype* pSector, D // this isn't stored anywhere. runlist_AddRunRec(NewRun, pActor, 0x190000); - nCreaturesTotal++; + Level.addKillCount(); } //--------------------------------------------------------------------------- @@ -223,7 +223,7 @@ void AISet::Damage(RunListEvent* ev) pActor->nHealth = 0; - nCreaturesKilled++; + Level.addKill(-1); if (nAction < 10) { diff --git a/source/games/exhumed/src/sound.cpp b/source/games/exhumed/src/sound.cpp index b9c1a5979..1910fb281 100644 --- a/source/games/exhumed/src/sound.cpp +++ b/source/games/exhumed/src/sound.cpp @@ -702,7 +702,7 @@ void UpdateCreepySounds() nCreepyTimer--; if (nCreepyTimer <= 0) { - if (nCreaturesKilled < nCreaturesTotal && !(PlayerList[nLocalPlayer].pPlayerViewSect->Flag & 0x2000)) + if (Level.kills.got < Level.kills.max && !(PlayerList[nLocalPlayer].pPlayerViewSect->Flag & 0x2000)) { const auto creepySeq = getSequence("creepy"); const auto seqFrameSound = creepySeq->frames[totalmoves % creepySeq->frames.Size()].sound; diff --git a/source/games/exhumed/src/spider.cpp b/source/games/exhumed/src/spider.cpp index 78e87e0d3..ae7882b79 100644 --- a/source/games/exhumed/src/spider.cpp +++ b/source/games/exhumed/src/spider.cpp @@ -87,7 +87,7 @@ DExhumedActor* BuildSpider(DExhumedActor* spp, const DVector3& pos, sectortype* spp->nSeqFile = "spider"; - nCreaturesTotal++; + Level.addKillCount(); return spp; } @@ -417,7 +417,7 @@ void AISpider::Damage(RunListEvent* ev) spp->spr.cstat &= ~CSTAT_SPRITE_BLOCK_ALL; - nCreaturesKilled++; + Level.addKill(-1); const auto spiderSeqs = getFileSeqs("spider"); diff --git a/source/games/exhumed/src/status.cpp b/source/games/exhumed/src/status.cpp index 19c87e912..3705f09a1 100644 --- a/source/games/exhumed/src/status.cpp +++ b/source/games/exhumed/src/status.cpp @@ -88,9 +88,7 @@ void DrawStatusBar() UpdateFrame(); } SummaryInfo info{}; - info.kills = nCreaturesKilled; - info.maxkills = nCreaturesTotal; - // got no secrets in the game + Level.fillSummary(info); info.time = Scale(PlayClock, 1000, 120); info.totaltime = STAT_GetTotalTime(); diff --git a/source/games/exhumed/src/wasp.cpp b/source/games/exhumed/src/wasp.cpp index 1c9f121d7..656a0c574 100644 --- a/source/games/exhumed/src/wasp.cpp +++ b/source/games/exhumed/src/wasp.cpp @@ -108,7 +108,7 @@ DExhumedActor* BuildWasp(DExhumedActor* pActor, const DVector3& pos, sectortype* pActor->nSeqFile = "wasp"; - nCreaturesTotal++; + Level.addKillCount(); return pActor; } @@ -187,7 +187,7 @@ void AIWasp::Damage(RunListEvent* ev) pActor->vel.Z = 2; - nCreaturesKilled++; + Level.addKill(-1); } pActor->nFrame = 0; }