2019-09-19 22:42:45 +00:00
//-------------------------------------------------------------------------
/*
Copyright ( C ) 2010 - 2019 EDuke32 developers and contributors
Copyright ( C ) 2019 Nuke . YKT
This file is part of NBlood .
NBlood is free software ; you can redistribute it and / or
modify it under the terms of the GNU General Public License version 2
as published by the Free Software Foundation .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE .
See the GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 , USA .
*/
//-------------------------------------------------------------------------
2019-09-21 18:59:54 +00:00
# include "ns.h" // Must come before everything else!
2019-09-19 22:42:45 +00:00
# include "build.h"
# include "mmulti.h"
# include "compat.h"
2019-10-25 22:32:49 +00:00
# include "gamecontrol.h"
2019-09-19 22:42:45 +00:00
# include "common_game.h"
# include "blood.h"
# include "eventq.h"
# include "globals.h"
# include "levels.h"
# include "loadsave.h"
# include "messages.h"
# include "player.h"
# include "view.h"
2019-12-09 01:01:30 +00:00
# include "gstrings.h"
2020-08-03 18:51:31 +00:00
# include "cheathandler.h"
2020-09-02 22:29:17 +00:00
# include "d_protocol.h"
2020-09-03 14:31:31 +00:00
# include "gamestate.h"
2019-09-19 22:42:45 +00:00
2019-09-22 06:39:22 +00:00
BEGIN_BLD_NS
2019-09-19 22:42:45 +00:00
void sub_5A928 ( void )
{
2020-04-11 22:10:39 +00:00
for ( int i = 0 ; i < buttonMap . NumButtons ( ) ; i + + )
2019-11-04 22:01:50 +00:00
buttonMap . ClearButton ( i ) ;
2019-09-19 22:42:45 +00:00
}
2020-09-02 22:29:17 +00:00
const char * SetGodMode ( bool god )
2019-09-19 22:42:45 +00:00
{
playerSetGodMode ( gMe , god ) ;
2020-09-02 22:41:32 +00:00
bPlayerCheated = true ;
2020-09-02 22:29:17 +00:00
return gMe - > godMode ? GStrings ( " TXTB_GODMODE " ) : GStrings ( " TXTB_NOTGODMODE " ) ;
2019-09-19 22:42:45 +00:00
}
2020-09-02 22:41:32 +00:00
const char * SetClipMode ( bool noclip )
2019-09-19 22:42:45 +00:00
{
gNoClip = noclip ;
2020-09-02 22:41:32 +00:00
bPlayerCheated = true ;
return gNoClip ? GStrings ( " TXTB_NOCLIP " ) : GStrings ( " TXTB_NOCLIPOFF " ) ;
2019-09-19 22:42:45 +00:00
}
void packStuff ( PLAYER * pPlayer )
{
for ( int i = 0 ; i < 5 ; i + + )
packAddItem ( pPlayer , i ) ;
}
void packClear ( PLAYER * pPlayer )
{
2019-10-21 19:46:41 +00:00
pPlayer - > packItemId = 0 ;
2019-09-19 22:42:45 +00:00
for ( int i = 0 ; i < 5 ; i + + )
{
2019-10-21 19:46:41 +00:00
pPlayer - > packSlots [ i ] . isActive = 0 ;
pPlayer - > packSlots [ i ] . curAmount = 0 ;
2019-09-19 22:42:45 +00:00
}
}
void SetAmmo ( bool stat )
{
if ( stat )
{
for ( int i = 0 ; i < 12 ; i + + )
2019-10-25 20:53:41 +00:00
gMe - > ammoCount [ i ] = gAmmoInfo [ i ] . max ;
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_FULLAMMO " ) ) ;
2019-09-19 22:42:45 +00:00
}
else
{
for ( int i = 0 ; i < 12 ; i + + )
2019-10-25 20:53:41 +00:00
gMe - > ammoCount [ i ] = 0 ;
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_NOAMMO " ) ) ;
2019-09-19 22:42:45 +00:00
}
}
void SetWeapons ( bool stat )
{
for ( int i = 0 ; i < 14 ; i + + )
{
2019-10-21 19:46:41 +00:00
gMe - > hasWeapon [ i ] = stat ;
2019-09-19 22:42:45 +00:00
}
SetAmmo ( stat ) ;
if ( stat )
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_ALLWEAP " ) ) ;
2019-09-19 22:42:45 +00:00
else
{
if ( ! VanillaMode ( ) )
{
// Keep the pitchfork to avoid freeze
2019-10-21 19:46:41 +00:00
gMe - > hasWeapon [ 1 ] = 1 ;
gMe - > curWeapon = 0 ;
gMe - > nextWeapon = 1 ;
2019-09-19 22:42:45 +00:00
}
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_NOWEAP " ) ) ;
2019-09-19 22:42:45 +00:00
}
}
void SetToys ( bool stat )
{
if ( stat )
{
packStuff ( gMe ) ;
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_FULLINV " ) ) ;
2019-09-19 22:42:45 +00:00
}
else
{
packClear ( gMe ) ;
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_NOINV " ) ) ;
2019-09-19 22:42:45 +00:00
}
}
void SetArmor ( bool stat )
{
int nAmount ;
if ( stat )
{
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_FULLARM " ) ) ;
2019-09-19 22:42:45 +00:00
nAmount = 3200 ;
}
else
{
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_NOARM " ) ) ;
2019-09-19 22:42:45 +00:00
nAmount = 0 ;
}
for ( int i = 0 ; i < 3 ; i + + )
2019-10-21 19:46:41 +00:00
gMe - > armor [ i ] = nAmount ;
2019-09-19 22:42:45 +00:00
}
void SetKeys ( bool stat )
{
for ( int i = 1 ; i < = 6 ; i + + )
2019-10-21 19:46:41 +00:00
gMe - > hasKey [ i ] = stat ;
2019-09-19 22:42:45 +00:00
if ( stat )
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_ALLKEYS " ) ) ;
2019-09-19 22:42:45 +00:00
else
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_NOKEYS " ) ) ;
2019-09-19 22:42:45 +00:00
}
void SetInfiniteAmmo ( bool stat )
{
gInfiniteAmmo = stat ;
if ( gInfiniteAmmo )
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_INFAMMO " ) ) ;
2019-09-19 22:42:45 +00:00
else
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_LIMAMMO " ) ) ;
2019-09-19 22:42:45 +00:00
}
void SetMap ( bool stat )
{
gFullMap = stat ;
if ( gFullMap )
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_ALLMAP " ) ) ;
2019-09-19 22:42:45 +00:00
else
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_NOALLMAP " ) ) ;
2019-09-19 22:42:45 +00:00
}
void SetWooMode ( bool stat )
{
if ( stat )
{
2019-10-19 19:11:39 +00:00
if ( ! powerupCheck ( gMe , kPwUpTwoGuns ) )
powerupActivate ( gMe , kPwUpTwoGuns ) ;
2019-09-19 22:42:45 +00:00
}
else
{
2019-10-19 19:11:39 +00:00
if ( powerupCheck ( gMe , kPwUpTwoGuns ) )
2019-09-19 22:42:45 +00:00
{
if ( ! VanillaMode ( ) )
2019-10-21 19:46:41 +00:00
gMe - > pwUpTime [ kPwUpTwoGuns ] = 0 ;
2019-10-19 19:11:39 +00:00
powerupDeactivate ( gMe , kPwUpTwoGuns ) ;
2019-09-19 22:42:45 +00:00
}
}
}
void ToggleWooMode ( void )
{
2019-10-19 19:11:39 +00:00
SetWooMode ( ! ( powerupCheck ( gMe , kPwUpTwoGuns ) ! = 0 ) ) ;
2019-09-19 22:42:45 +00:00
}
void ToggleBoots ( void )
{
2019-10-19 19:11:39 +00:00
if ( powerupCheck ( gMe , kPwUpJumpBoots ) )
2019-09-19 22:42:45 +00:00
{
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_NOJBOOTS " ) ) ;
2019-09-19 22:42:45 +00:00
if ( ! VanillaMode ( ) )
{
2019-10-21 19:46:41 +00:00
gMe - > pwUpTime [ kPwUpJumpBoots ] = 0 ;
gMe - > packSlots [ 4 ] . curAmount = 0 ;
2019-09-19 22:42:45 +00:00
}
2019-10-19 19:11:39 +00:00
powerupDeactivate ( gMe , kPwUpJumpBoots ) ;
2019-09-19 22:42:45 +00:00
}
else
{
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_JBOOTS " ) ) ;
2019-09-19 22:42:45 +00:00
if ( ! VanillaMode ( ) )
2019-10-21 19:46:41 +00:00
gMe - > pwUpTime [ kPwUpJumpBoots ] = gPowerUpInfo [ kPwUpJumpBoots ] . bonusTime ;
2019-10-19 19:11:39 +00:00
powerupActivate ( gMe , kPwUpJumpBoots ) ;
2019-09-19 22:42:45 +00:00
}
}
void ToggleInvisibility ( void )
{
2019-10-19 19:11:39 +00:00
if ( powerupCheck ( gMe , kPwUpShadowCloak ) )
2019-09-19 22:42:45 +00:00
{
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_VISIBLE " ) ) ;
2019-09-19 22:42:45 +00:00
if ( ! VanillaMode ( ) )
2019-10-21 19:46:41 +00:00
gMe - > pwUpTime [ kPwUpShadowCloak ] = 0 ;
2019-10-19 19:11:39 +00:00
powerupDeactivate ( gMe , kPwUpShadowCloak ) ;
2019-09-19 22:42:45 +00:00
}
else
{
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_INVISIBLE " ) ) ;
2019-10-19 19:11:39 +00:00
powerupActivate ( gMe , kPwUpShadowCloak ) ;
2019-09-19 22:42:45 +00:00
}
}
void ToggleInvulnerability ( void )
{
2019-10-19 19:11:39 +00:00
if ( powerupCheck ( gMe , kPwUpDeathMask ) )
2019-09-19 22:42:45 +00:00
{
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_VULN " ) ) ;
2019-09-19 22:42:45 +00:00
if ( ! VanillaMode ( ) )
2019-10-21 19:46:41 +00:00
gMe - > pwUpTime [ kPwUpDeathMask ] = 0 ;
2019-10-19 19:11:39 +00:00
powerupDeactivate ( gMe , kPwUpDeathMask ) ;
2019-09-19 22:42:45 +00:00
}
else
{
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_INVULN " ) ) ;
2019-10-19 19:11:39 +00:00
powerupActivate ( gMe , kPwUpDeathMask ) ;
2019-09-19 22:42:45 +00:00
}
}
void ToggleDelirium ( void )
{
2019-10-19 19:11:39 +00:00
if ( powerupCheck ( gMe , kPwUpDeliriumShroom ) )
2019-09-19 22:42:45 +00:00
{
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_NODELIR " ) ) ;
2019-09-19 22:42:45 +00:00
if ( ! VanillaMode ( ) )
2019-10-21 19:46:41 +00:00
gMe - > pwUpTime [ kPwUpDeliriumShroom ] = 0 ;
2019-10-19 19:11:39 +00:00
powerupDeactivate ( gMe , kPwUpDeliriumShroom ) ;
2019-09-19 22:42:45 +00:00
}
else
{
2019-12-09 01:01:30 +00:00
viewSetMessage ( GStrings ( " TXTB_DELIR " ) ) ;
2019-10-19 19:11:39 +00:00
powerupActivate ( gMe , kPwUpDeliriumShroom ) ;
2019-09-19 22:42:45 +00:00
}
}
void LevelWarp ( int nEpisode , int nLevel )
{
2020-08-16 11:26:57 +00:00
auto map = FindMapByLevelNum ( levelnum ( nEpisode , nLevel ) ) ;
if ( map ) StartLevel ( map ) ;
2019-09-20 10:23:07 +00:00
}
2020-08-03 18:51:31 +00:00
bool bPlayerCheated = false ;
2019-09-19 22:42:45 +00:00
2020-08-03 18:51:31 +00:00
static int parseArgs ( char * pzArgs , int * nArg1 , int * nArg2 )
2019-09-19 22:42:45 +00:00
{
2020-08-10 18:18:21 +00:00
if ( ! nArg1 | | ! nArg2 | | strlen ( pzArgs ) < 3 )
2019-09-19 22:42:45 +00:00
return - 1 ;
2020-08-03 18:51:31 +00:00
* nArg1 = pzArgs [ 0 ] - ' 0 ' - 1 ;
* nArg2 = ( pzArgs [ 1 ] - ' 0 ' ) * 10 + ( pzArgs [ 2 ] - ' 0 ' ) - 1 ;
* nArg1 = ClipRange ( * nArg1 , 0 , gEpisodeCount - 1 ) ;
* nArg2 = ClipRange ( * nArg2 , 0 , gEpisodeInfo [ * nArg1 ] . nLevels - 1 ) ;
return 2 ;
2019-09-19 22:42:45 +00:00
}
2020-09-02 23:32:51 +00:00
const char * GameInterface : : GenericCheat ( int player , int cheat )
2019-09-19 22:42:45 +00:00
{
2020-09-02 23:32:51 +00:00
// message processing is not perfect because many cheats output multiple messages.
2020-09-03 14:31:31 +00:00
if ( gGameOptions . nGameType ! = 0 | | numplayers > 1 ) // sp only for now.
2020-09-02 23:32:51 +00:00
return nullptr ;
2020-09-03 14:31:31 +00:00
if ( gamestate ! = GS_LEVEL | | gMe - > pXSprite - > health = = 0 ) // must be alive and in a level to cheat.
return nullptr ;
bPlayerCheated = true ;
2020-09-02 23:32:51 +00:00
switch ( cheat )
2019-09-19 22:42:45 +00:00
{
2020-09-02 23:32:51 +00:00
case CHT_GOD :
return SetGodMode ( ! gMe - > godMode ) ;
case CHT_GODOFF :
return SetGodMode ( false ) ;
case CHT_GODON :
return SetGodMode ( true ) ;
case CHT_NOCLIP :
return SetClipMode ( ! gNoClip ) ;
2019-09-19 22:42:45 +00:00
case kCheatSpielberg :
2020-09-02 23:32:51 +00:00
// demo record
2019-09-19 22:42:45 +00:00
break ;
case kCheatSatchel :
SetToys ( true ) ;
break ;
case kCheatKevorkian :
2019-10-21 19:46:41 +00:00
actDamageSprite ( gMe - > nSprite , gMe - > pSprite , DAMAGE_TYPE_2 , 8000 ) ;
2020-09-02 23:32:51 +00:00
return GStrings ( " TXTB_KEVORKIAN " ) ;
2019-09-19 22:42:45 +00:00
case kCheatMcGee :
{
if ( ! gMe - > pXSprite - > burnTime )
2019-10-21 19:46:41 +00:00
evPost ( gMe - > nSprite , 3 , 0 , kCallbackFXFlameLick ) ;
actBurnSprite ( actSpriteIdToOwnerId ( gMe - > nSprite ) , gMe - > pXSprite , 2400 ) ;
2020-09-02 23:32:51 +00:00
return GStrings ( " TXTB_FIRED " ) ;
2019-09-19 22:42:45 +00:00
}
case kCheatEdmark :
2019-10-21 19:46:41 +00:00
actDamageSprite ( gMe - > nSprite , gMe - > pSprite , DAMAGE_TYPE_3 , 8000 ) ;
2020-09-02 23:32:51 +00:00
return GStrings ( " TXTB_THEDAYS " ) ;
2019-09-19 22:42:45 +00:00
case kCheatKrueger :
{
actHealDude ( gMe - > pXSprite , 200 , 200 ) ;
2019-10-21 19:46:41 +00:00
gMe - > armor [ 1 ] = VanillaMode ( ) ? 200 : 3200 ;
2019-09-19 22:42:45 +00:00
if ( ! gMe - > pXSprite - > burnTime )
2019-10-21 19:46:41 +00:00
evPost ( gMe - > nSprite , 3 , 0 , kCallbackFXFlameLick ) ;
actBurnSprite ( actSpriteIdToOwnerId ( gMe - > nSprite ) , gMe - > pXSprite , 2400 ) ;
2020-09-02 23:32:51 +00:00
return GStrings ( " TXTB_RETARD " ) ;
2019-09-19 22:42:45 +00:00
}
case kCheatSterno :
2019-10-21 19:46:41 +00:00
gMe - > blindEffect = 250 ;
2019-09-19 22:42:45 +00:00
break ;
2019-10-21 19:46:41 +00:00
case kCheat14 : // quakeEffect (causing a little flickerEffect), not used by any cheat code (dead code)
gMe - > flickerEffect = 360 ;
2019-09-19 22:42:45 +00:00
break ;
case kCheatSpork :
actHealDude ( gMe - > pXSprite , 200 , 200 ) ;
break ;
case kCheatClarice :
2020-09-02 23:32:51 +00:00
for ( int i = 0 ; i < 3 ; i + + )
gMe - > armor [ i ] = 1600 ;
return GStrings ( " TXTB_HALFARMOR " ) ;
2019-09-19 22:42:45 +00:00
case kCheatFrankenstein :
2019-10-21 19:46:41 +00:00
gMe - > packSlots [ 0 ] . curAmount = 100 ;
2019-09-19 22:42:45 +00:00
break ;
case kCheatCheeseHead :
2019-10-21 19:46:41 +00:00
gMe - > packSlots [ 1 ] . curAmount = 100 ;
2019-09-19 22:42:45 +00:00
if ( ! VanillaMode ( ) )
2019-10-21 19:46:41 +00:00
gMe - > pwUpTime [ kPwUpDivingSuit ] = gPowerUpInfo [ kPwUpDivingSuit ] . bonusTime ;
2019-09-19 22:42:45 +00:00
break ;
case kCheatTequila :
ToggleWooMode ( ) ;
break ;
case kCheatFunkyShoes :
ToggleBoots ( ) ;
break ;
case kCheatKeyMaster :
SetKeys ( true ) ;
break ;
case kCheatOneRing :
ToggleInvisibility ( ) ;
break ;
case kCheatVoorhees :
ToggleInvulnerability ( ) ;
break ;
case kCheatJoJo :
ToggleDelirium ( ) ;
break ;
case kCheatLaraCroft :
SetInfiniteAmmo ( ! gInfiniteAmmo ) ;
SetWeapons ( gInfiniteAmmo ) ;
break ;
case kCheatHongKong :
SetWeapons ( true ) ;
SetInfiniteAmmo ( true ) ;
break ;
case kCheatMontana :
SetWeapons ( true ) ;
SetToys ( true ) ;
break ;
case kCheatBunz :
SetWeapons ( true ) ;
SetWooMode ( true ) ;
break ;
case kCheatCousteau :
2020-09-02 23:32:51 +00:00
actHealDude ( gMe - > pXSprite , 200 , 200 ) ;
2019-10-21 19:46:41 +00:00
gMe - > packSlots [ 1 ] . curAmount = 100 ;
2019-09-19 22:42:45 +00:00
if ( ! VanillaMode ( ) )
2019-10-21 19:46:41 +00:00
gMe - > pwUpTime [ kPwUpDivingSuit ] = gPowerUpInfo [ kPwUpDivingSuit ] . bonusTime ;
2019-09-19 22:42:45 +00:00
break ;
case kCheatForkYou :
SetInfiniteAmmo ( false ) ;
SetMap ( false ) ;
SetWeapons ( false ) ;
SetAmmo ( false ) ;
SetArmor ( false ) ;
SetToys ( false ) ;
SetKeys ( false ) ;
SetWooMode ( true ) ;
2019-10-19 19:11:39 +00:00
powerupActivate ( gMe , kPwUpDeliriumShroom ) ;
2019-09-19 22:42:45 +00:00
gMe - > pXSprite - > health = 16 ;
2019-10-21 19:46:41 +00:00
gMe - > hasWeapon [ 1 ] = 1 ;
gMe - > curWeapon = 0 ;
gMe - > nextWeapon = 1 ;
2019-09-19 22:42:45 +00:00
break ;
2020-09-02 23:32:51 +00:00
2019-09-19 22:42:45 +00:00
default :
2020-09-02 23:32:51 +00:00
return nullptr ;
2019-09-19 22:42:45 +00:00
}
2020-09-02 23:32:51 +00:00
return nullptr ;
2020-08-03 18:51:31 +00:00
}
2020-09-02 23:32:51 +00:00
static bool cheatGoonies ( cheatseq_t * )
2020-09-02 22:29:17 +00:00
{
2020-09-02 23:32:51 +00:00
SetMap ( ! gFullMap ) ;
return true ;
2020-09-02 22:29:17 +00:00
}
2020-09-02 23:32:51 +00:00
static bool cheatMario ( cheatseq_t * c )
{
int nEpisode , nLevel ;
if ( parseArgs ( ( char * ) c - > Args , & nEpisode , & nLevel ) = = 2 )
LevelWarp ( nEpisode , nLevel ) ;
return true ;
}
2020-09-02 22:29:17 +00:00
2020-09-02 23:32:51 +00:00
static bool cheatCalgon ( cheatseq_t * )
2020-08-03 18:51:31 +00:00
{
2020-09-02 23:32:51 +00:00
levelEndLevel ( 0 ) ;
return true ;
2020-08-03 18:51:31 +00:00
}
static cheatseq_t s_CheatInfo [ ] = {
2020-09-02 23:32:51 +00:00
{ " MPKFA " , nullptr , SendGenericCheat , 0 , CHT_GOD } ,
{ " CAPINMYASS " , nullptr , SendGenericCheat , 0 , CHT_GODOFF } ,
{ " NOCAPINMYASS " , nullptr , SendGenericCheat , 0 , CHT_GODON } ,
{ " I WANNA BE LIKE KEVIN " , nullptr , SendGenericCheat , 0 , CHT_GODON } ,
{ " IDAHO " , " give weapons " } ,
{ " GRISWOLD " , " give armor " } ,
{ " MONTANA " , nullptr , SendGenericCheat , 0 , kCheatMontana } , // MONTANA (All weapons, full ammo and all items)
{ " EDMARK " , nullptr , SendGenericCheat , 0 , kCheatEdmark } , // EDMARK (Does a lot of fire damage to you (if you have 200HP and 200 fire armor then you can survive). Displays the message "THOSE WERE THE DAYS".)
{ " TEQUILA " , nullptr , SendGenericCheat , 0 , kCheatTequila } , // TEQUILA (Guns akimbo power-up)
{ " BUNZ " , nullptr , SendGenericCheat , 0 , kCheatBunz } , // BUNZ (All weapons, full ammo, and guns akimbo power-up)
{ " FUNKY SHOES " , nullptr , SendGenericCheat , 0 , kCheatFunkyShoes } , // FUNKY SHOES (Gives jump boots item and activates it)
{ " GATEKEEPER " , nullptr , SendGenericCheat , 0 , kCheatGateKeeper } , // GATEKEEPER (Sets the you cheated flag to true, at the end of the level you will see that you have cheated)
{ " KEYMASTER " , nullptr , SendGenericCheat , 0 , kCheatKeyMaster } , // KEYMASTER (All keys)
{ " JOJO " , nullptr , SendGenericCheat , 0 , kCheatJoJo } , // JOJO (Drunk mode (same effect as getting bitten by red spider))
{ " SATCHEL " , nullptr , SendGenericCheat , 0 , kCheatSatchel } , // SATCHEL (Full inventory)
{ " SPORK " , nullptr , SendGenericCheat , 0 , kCheatSpork } , // SPORK (200% health (same effect as getting life seed))
{ " ONERING " , nullptr , SendGenericCheat , 0 , kCheatOneRing } , // ONERING (Cloak of invisibility power-up)
{ " MARIO### " , nullptr , cheatMario } , // MARIO (Warp to level E M, e.g.: MARIO 1 3 will take you to Phantom Express)
{ " CALGON " , nullptr , cheatCalgon } , // CALGON (Jumps to next level)
{ " KEVORKIAN " , nullptr , SendGenericCheat , 0 , kCheatKevorkian } , // KEVORKIAN (Does a lot of physical damage to you (if you have 200HP and 200 fire armor then you can survive). Displays the message "KEVORKIAN APPROVES".)
{ " MCGEE " , nullptr , SendGenericCheat , 0 , kCheatMcGee } , // MCGEE (Sets you on fire. Displays the message "YOU'RE FIRED".)
{ " KRUEGER " , nullptr , SendGenericCheat , 0 , kCheatKrueger } , // KRUEGER (200% health, but sets you on fire. Displays the message "FLAME RETARDANT".)
{ " CHEESEHEAD " , nullptr , SendGenericCheat , 0 , kCheatCheeseHead } , // CHEESEHEAD (100% diving suit)
{ " COUSTEAU " , nullptr , SendGenericCheat , 0 , kCheatCousteau } , // COUSTEAU (200% health and diving suit)
{ " VOORHEES " , nullptr , SendGenericCheat , 0 , kCheatVoorhees } , // VOORHEES (Death mask power-up)
{ " LARA CROFT " , nullptr , SendGenericCheat , 0 , kCheatLaraCroft } , // LARA CROFT (All weapons and infinite ammo. Displays the message "LARA RULES". Typing it the second time will lose all weapons and ammo.)
{ " HONGKONG " , nullptr , SendGenericCheat , 0 , kCheatHongKong } , // HONGKONG (All weapons and infinite ammo)
{ " FRANKENSTEIN " , nullptr , SendGenericCheat , 0 , kCheatFrankenstein } , // FRANKENSTEIN (100% med-kit)
{ " STERNO " , nullptr , SendGenericCheat , 0 , kCheatSterno } , // STERNO (Temporary blindness (same effect as getting bitten by green spider))
{ " CLARICE " , nullptr , SendGenericCheat , 0 , kCheatClarice } , // CLARICE (Gives 100% body armor, 100% fire armor, 100% spirit armor)
{ " FORK YOU " , nullptr , SendGenericCheat , 0 , kCheatForkYou } , // FORK YOU (Drunk mode, 1HP, no armor, no weapons, no ammo, no items, no keys, no map, guns akimbo power-up)
{ " LIEBERMAN " , nullptr , SendGenericCheat , 0 , kCheatLieberMan } , // LIEBERMAN (Sets the you cheated flag to true, at the end of the level you will see that you have cheated)
{ " EVA GALLI " , nullptr , SendGenericCheat , 0 , CHT_NOCLIP } ,
{ " RATE " , " toggle r_showfps " , nullptr , 1 } , // RATE (Display frame rate (doesn't count as a cheat))
{ " GOONIES " , nullptr , cheatGoonies , 0 } , // GOONIES (Enable full map. Displays the message "YOU HAVE THE MAP".)
2020-09-02 22:29:17 +00:00
//{"SPIELBERG", nullptr, doCheat<kCheatSpielberg, 1 }, // SPIELBERG (Disables all cheats. If number values corresponding to a level and episode number are entered after the cheat word (i.e. "spielberg 1 3" for Phantom Express), you will be spawned to said level and the game will begin recording a demo from your actions.)
2020-09-02 23:32:51 +00:00
} ;
2019-09-19 22:42:45 +00:00
2020-08-03 18:51:31 +00:00
void cheatReset ( void )
2019-09-19 22:42:45 +00:00
{
2020-08-03 18:51:31 +00:00
bPlayerCheated = 0 ;
2019-09-19 22:42:45 +00:00
playerSetGodMode ( gMe , 0 ) ;
gNoClip = 0 ;
packClear ( gMe ) ;
gInfiniteAmmo = 0 ;
gFullMap = 0 ;
}
2020-09-03 14:31:31 +00:00
static void cmd_Give ( int player , uint8_t * * stream , bool skip )
{
int type = ReadByte ( stream ) ;
if ( skip ) return ;
if ( numplayers ! = 1 | | gamestate ! = GS_LEVEL | | gMe - > pXSprite - > health = = 0 )
{
Printf ( " give: Cannot give while dead or not in a single-player game. \n " ) ;
return ;
}
switch ( type )
{
case GIVE_ALL :
SetWeapons ( true ) ;
SetAmmo ( true ) ;
SetToys ( true ) ;
SetArmor ( true ) ;
SetKeys ( true ) ;
bPlayerCheated = true ;
break ;
case GIVE_HEALTH :
actHealDude ( gMe - > pXSprite , 200 , 200 ) ;
bPlayerCheated = true ;
break ;
case GIVE_WEAPONS :
SetWeapons ( true ) ;
bPlayerCheated = true ;
break ;
case GIVE_AMMO :
SetAmmo ( true ) ;
bPlayerCheated = true ;
break ;
case GIVE_ARMOR :
SetArmor ( true ) ;
bPlayerCheated = true ;
break ;
case GIVE_KEYS :
SetKeys ( true ) ;
bPlayerCheated = true ;
break ;
case GIVE_INVENTORY :
SetToys ( true ) ;
bPlayerCheated = true ;
break ;
default :
break ;
}
}
2019-09-19 22:42:45 +00:00
class MessagesLoadSave : public LoadSave
{
public :
virtual void Load ( ) ;
virtual void Save ( ) ;
} ;
void MessagesLoadSave : : Load ( )
{
2020-08-03 18:51:31 +00:00
Read ( & bPlayerCheated , sizeof ( bPlayerCheated ) ) ;
2019-09-19 22:42:45 +00:00
}
void MessagesLoadSave : : Save ( )
{
2020-08-03 18:51:31 +00:00
Write ( & bPlayerCheated , sizeof ( bPlayerCheated ) ) ;
2019-09-19 22:42:45 +00:00
}
static MessagesLoadSave * myLoadSave ;
void MessagesLoadSaveConstruct ( void )
{
myLoadSave = new MessagesLoadSave ( ) ;
}
2019-09-22 06:39:22 +00:00
2020-08-03 18:51:31 +00:00
void InitCheats ( )
{
SetCheats ( s_CheatInfo , countof ( s_CheatInfo ) ) ;
2020-09-03 14:31:31 +00:00
Net_SetCommandHandler ( DEM_GIVE , cmd_Give ) ;
2020-08-03 18:51:31 +00:00
}
2019-09-22 06:39:22 +00:00
END_BLD_NS