mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-03 06:20:56 +00:00
- 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...
This commit is contained in:
parent
f245a70883
commit
0a020e9cc1
1 changed files with 21 additions and 10 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue