From 0a020e9cc16cbc794a2c84e3dcee1a4c46ab1b76 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 1 Jun 2022 12:22:59 +0200 Subject: [PATCH] - ported secret hack for WT's map 11 from SW Redux. This is hideously awful and definitely needs a better approach. For now it'll do... --- source/games/sw/src/sector.cpp | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/source/games/sw/src/sector.cpp b/source/games/sw/src/sector.cpp index 8d20598e0..8ae857cca 100644 --- a/source/games/sw/src/sector.cpp +++ b/source/games/sw/src/sector.cpp @@ -1754,6 +1754,18 @@ int DoTrapMatch(short match) return 0; } +void TriggerSecret(sectortype* sectp, PLAYER* pp) +{ + if (pp == Player + myconnectindex) + PlayerSound(DIGI_ANCIENTSECRET, v3df_dontpan | v3df_doppler | v3df_follow, pp); + + SECRET_Trigger(sectnum(pp->cursector)); + + PutStringInfo(pp, GStrings("TXTS_SECRET")); + // always give to the first player + Player->SecretsFound++; + sectp->lotag = 0; +} void OperateTripTrigger(PLAYER* pp) { @@ -1781,16 +1793,8 @@ void OperateTripTrigger(PLAYER* pp) } case TAG_SECRET_AREA_TRIGGER: - if (pp == Player+myconnectindex) - PlayerSound(DIGI_ANCIENTSECRET, v3df_dontpan|v3df_doppler|v3df_follow,pp); - - SECRET_Trigger(sectnum(pp->cursector)); - - PutStringInfo(pp, GStrings("TXTS_SECRET")); - // always give to the first player - Player->SecretsFound++; - sectp->lotag = 0; - sectp->hitag = 0; + TriggerSecret(sectp, pp); + sectp->hitag = 0; // intentionally not in TriggerSecret. break; case TAG_TRIGGER_EVERYTHING: @@ -2243,6 +2247,13 @@ void PlayerOperateEnv(PLAYER* pp) { // Release the key pp->KeyPressBits &= ~SB_OPEN; + + // crude and very awful hack for wd secret area + if (pp->cursector == §or[491] && currentLevel->levelNumber == 11 && sector[715].lotag == TAG_SECRET_AREA_TRIGGER) + { + TriggerSecret(§or[715], pp); + } + } } }