mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'mental-sonic' into 'master'
"mental sonic" cheat See merge request KartKrew/Kart!1866
This commit is contained in:
commit
2f0540f316
4 changed files with 29 additions and 0 deletions
|
|
@ -892,6 +892,8 @@ consvar_t cv_palettenum = PlayerCheat("palettenum", "0").values(CV_Unsigned).onc
|
||||||
extern CV_PossibleValue_t renderhitbox_cons_t[];
|
extern CV_PossibleValue_t renderhitbox_cons_t[];
|
||||||
consvar_t cv_renderhitbox = PlayerCheat("renderhitbox", "Off").values(renderhitbox_cons_t).description("Show hitboxes around objects");
|
consvar_t cv_renderhitbox = PlayerCheat("renderhitbox", "Off").values(renderhitbox_cons_t).description("Show hitboxes around objects");
|
||||||
|
|
||||||
|
consvar_t cv_mentalsonic = PlayerCheat("mentalsonic", "Off").values(CV_OnOff).flags(CV_HIDDEN).description("Works out at the library");
|
||||||
|
|
||||||
//
|
//
|
||||||
// Dummy variables used solely in the menu system.
|
// Dummy variables used solely in the menu system.
|
||||||
// todo: add a way to use non-console variables in the menu
|
// todo: add a way to use non-console variables in the menu
|
||||||
|
|
|
||||||
|
|
@ -98,6 +98,8 @@ extern consvar_t cv_kartdebugstart;
|
||||||
extern consvar_t cv_debugrank;
|
extern consvar_t cv_debugrank;
|
||||||
extern consvar_t cv_battletest;
|
extern consvar_t cv_battletest;
|
||||||
|
|
||||||
|
extern consvar_t cv_mentalsonic;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
CV_CAPSULETEST_OFF,
|
CV_CAPSULETEST_OFF,
|
||||||
CV_CAPSULETEST_MULTIPLAYER,
|
CV_CAPSULETEST_MULTIPLAYER,
|
||||||
|
|
|
||||||
|
|
@ -5983,6 +5983,9 @@ void K_Squish(mobj_t *mo)
|
||||||
|
|
||||||
mo->spriteyscale =
|
mo->spriteyscale =
|
||||||
FixedDiv(FRACUNIT, mo->spritexscale);
|
FixedDiv(FRACUNIT, mo->spritexscale);
|
||||||
|
|
||||||
|
if (cv_mentalsonic.value && (mo->type == MT_PLAYER || (!P_MobjWasRemoved(mo->target) && mo->target->type == MT_PLAYER)))
|
||||||
|
mo->spriteyscale *= 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
static mobj_t *K_FindLastTrailMobj(player_t *player)
|
static mobj_t *K_FindLastTrailMobj(player_t *player)
|
||||||
|
|
|
||||||
|
|
@ -162,6 +162,21 @@ static UINT8 cheatf_savetheframes(void)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static UINT8 cheatf_mentalsonic(void)
|
||||||
|
{
|
||||||
|
cv_mentalsonic.value = !(cv_mentalsonic.value);
|
||||||
|
if (cv_mentalsonic.value)
|
||||||
|
{
|
||||||
|
S_StartSound(NULL, sfx_gshbb);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
S_StartSound(NULL, sfx_kc46);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef DEVELOP
|
#ifdef DEVELOP
|
||||||
static UINT8 cheatf_devmode(void)
|
static UINT8 cheatf_devmode(void)
|
||||||
{
|
{
|
||||||
|
|
@ -235,6 +250,12 @@ static cheatseq_t cheat_savetheframes = {
|
||||||
(UINT8[]){ SCRAMBLE('s'), SCRAMBLE('a'), SCRAMBLE('v'), SCRAMBLE('e'), SCRAMBLE('t'), SCRAMBLE('h'), SCRAMBLE('e'), SCRAMBLE('f'), SCRAMBLE('r'), SCRAMBLE('a'), SCRAMBLE('m'), SCRAMBLE('e'), SCRAMBLE('s'), 0xff }
|
(UINT8[]){ SCRAMBLE('s'), SCRAMBLE('a'), SCRAMBLE('v'), SCRAMBLE('e'), SCRAMBLE('t'), SCRAMBLE('h'), SCRAMBLE('e'), SCRAMBLE('f'), SCRAMBLE('r'), SCRAMBLE('a'), SCRAMBLE('m'), SCRAMBLE('e'), SCRAMBLE('s'), 0xff }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static cheatseq_t cheat_mentalsonic = {
|
||||||
|
NULL, cheatf_mentalsonic,
|
||||||
|
(UINT8[]){ SCRAMBLE('m'), SCRAMBLE('e'), SCRAMBLE('n'), SCRAMBLE('t'), SCRAMBLE('a'), SCRAMBLE('l'), SCRAMBLE(' '), SCRAMBLE('s'), SCRAMBLE('o'), SCRAMBLE('n'), SCRAMBLE('i'), SCRAMBLE('c'), 0xff }
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
#ifdef DEVELOP
|
#ifdef DEVELOP
|
||||||
static cheatseq_t cheat_devmode = {
|
static cheatseq_t cheat_devmode = {
|
||||||
NULL, cheatf_devmode,
|
NULL, cheatf_devmode,
|
||||||
|
|
@ -253,6 +274,7 @@ cheatseq_t *cheatseqlist[] =
|
||||||
&cheat_wrongwarp,
|
&cheat_wrongwarp,
|
||||||
&cheat_savetheanimals,
|
&cheat_savetheanimals,
|
||||||
&cheat_savetheframes,
|
&cheat_savetheframes,
|
||||||
|
&cheat_mentalsonic,
|
||||||
#ifdef DEVELOP
|
#ifdef DEVELOP
|
||||||
&cheat_devmode,
|
&cheat_devmode,
|
||||||
&cheat_skipgoner,
|
&cheat_skipgoner,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue