mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Remove old powerup warning option
This commit is contained in:
parent
e610c41d0f
commit
dc350a77df
7 changed files with 7 additions and 30 deletions
|
|
@ -409,8 +409,6 @@ consvar_t cv_dualjawz = CVAR_INIT ("dualjawz", "On", CV_NETVAR|CV_CHEAT, C
|
|||
static CV_PossibleValue_t kartminimap_cons_t[] = {{0, "MIN"}, {10, "MAX"}, {0, NULL}};
|
||||
consvar_t cv_kartminimap = CVAR_INIT ("kartminimap", "4", CV_SAVE, kartminimap_cons_t, NULL);
|
||||
consvar_t cv_kartcheck = CVAR_INIT ("kartcheck", "Yes", CV_SAVE, CV_YesNo, NULL);
|
||||
static CV_PossibleValue_t kartinvinsfx_cons_t[] = {{0, "Music"}, {1, "SFX"}, {0, NULL}};
|
||||
consvar_t cv_kartinvinsfx = CVAR_INIT ("kartinvinsfx", "SFX", CV_SAVE, kartinvinsfx_cons_t, NULL);
|
||||
consvar_t cv_kartspeed = CVAR_INIT ("kartspeed", "Auto", CV_NETVAR|CV_CALL|CV_NOINIT, kartspeed_cons_t, KartSpeed_OnChange);
|
||||
static CV_PossibleValue_t kartbumpers_cons_t[] = {{1, "MIN"}, {12, "MAX"}, {0, NULL}};
|
||||
consvar_t cv_kartbumpers = CVAR_INIT ("kartbumpers", "3", CV_NETVAR|CV_CHEAT, kartbumpers_cons_t, NULL);
|
||||
|
|
|
|||
|
|
@ -83,7 +83,6 @@ extern consvar_t cv_tripleorbinaut, cv_quadorbinaut, cv_dualjawz;
|
|||
|
||||
extern consvar_t cv_kartminimap;
|
||||
extern consvar_t cv_kartcheck;
|
||||
extern consvar_t cv_kartinvinsfx;
|
||||
extern consvar_t cv_kartspeed;
|
||||
extern consvar_t cv_kartbumpers;
|
||||
extern consvar_t cv_kartfrantic;
|
||||
|
|
|
|||
17
src/k_kart.c
17
src/k_kart.c
|
|
@ -241,7 +241,6 @@ void K_RegisterKartStuff(void)
|
|||
|
||||
CV_RegisterVar(&cv_kartminimap);
|
||||
CV_RegisterVar(&cv_kartcheck);
|
||||
CV_RegisterVar(&cv_kartinvinsfx);
|
||||
CV_RegisterVar(&cv_kartspeed);
|
||||
CV_RegisterVar(&cv_kartbumpers);
|
||||
CV_RegisterVar(&cv_kartfrantic);
|
||||
|
|
@ -5796,7 +5795,7 @@ void K_DoInvincibility(player_t *player, tic_t time)
|
|||
}
|
||||
else //used to be "if (P_IsDisplayPlayer(player) == false)"
|
||||
{
|
||||
S_StartSound(player->mo, (cv_kartinvinsfx.value ? sfx_alarmi : sfx_kinvnc));
|
||||
S_StartSound(player->mo, sfx_alarmi);
|
||||
}
|
||||
|
||||
P_RestoreMusic(player);
|
||||
|
|
@ -7011,22 +7010,12 @@ static void K_UpdateInvincibilitySounds(player_t *player)
|
|||
INT32 sfxnum = sfx_None;
|
||||
|
||||
if (player->mo->health > 0 && !P_IsLocalPlayer(player)) // used to be !P_IsDisplayPlayer(player)
|
||||
{
|
||||
if (cv_kartinvinsfx.value)
|
||||
{
|
||||
if (player->invincibilitytimer > 0) // Prioritize invincibility
|
||||
sfxnum = sfx_alarmi;
|
||||
else if (player->growshrinktimer > 0)
|
||||
sfxnum = sfx_alarmg;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (player->invincibilitytimer > 0)
|
||||
sfxnum = sfx_kinvnc;
|
||||
else if (player->growshrinktimer > 0)
|
||||
sfxnum = sfx_kgrow;
|
||||
}
|
||||
}
|
||||
|
||||
if (sfxnum != sfx_None && !S_SoundPlaying(player->mo, sfxnum))
|
||||
S_StartSound(player->mo, sfxnum);
|
||||
|
|
@ -7036,8 +7025,6 @@ static void K_UpdateInvincibilitySounds(player_t *player)
|
|||
S_StopSoundByID(player->mo, this);
|
||||
STOPTHIS(sfx_alarmi);
|
||||
STOPTHIS(sfx_alarmg);
|
||||
STOPTHIS(sfx_kinvnc);
|
||||
STOPTHIS(sfx_kgrow);
|
||||
#undef STOPTHIS
|
||||
}
|
||||
|
||||
|
|
@ -10076,7 +10063,7 @@ void K_MoveKartPlayer(player_t *player, boolean onground)
|
|||
}
|
||||
else //used to be "if (P_IsDisplayPlayer(player) == false)"
|
||||
{
|
||||
S_StartSound(player->mo, (cv_kartinvinsfx.value ? sfx_alarmg : sfx_kgrow));
|
||||
S_StartSound(player->mo, sfx_alarmg);
|
||||
}
|
||||
|
||||
P_RestoreMusic(player);
|
||||
|
|
|
|||
|
|
@ -871,9 +871,6 @@ menuitem_t OPTIONS_Sound[] =
|
|||
{IT_STRING | IT_CVAR, "Character Voices", "Set how often to play character voices in game.",
|
||||
NULL, {.cvar = &cv_kartvoices}, 0, 0},
|
||||
|
||||
{IT_STRING | IT_CVAR, "Powerup Warning", "Set how to warn you from other player's powerups such as Invincibility.",
|
||||
NULL, {.cvar = &cv_kartinvinsfx}, 0, 0},
|
||||
|
||||
{IT_SPACE | IT_NOTHING, NULL, NULL,
|
||||
NULL, {NULL}, 0, 0},
|
||||
|
||||
|
|
|
|||
|
|
@ -545,7 +545,7 @@ boolean Obj_ShrinkLaserCollide(mobj_t *gun, mobj_t *victim)
|
|||
}
|
||||
else //used to be "if (P_IsDisplayPlayer(victim->player) == false)"
|
||||
{
|
||||
S_StartSound(victim, (cv_kartinvinsfx.value ? sfx_alarmg : sfx_kgrow));
|
||||
S_StartSound(victim, sfx_alarmg);
|
||||
}
|
||||
|
||||
P_RestoreMusic(victim->player);
|
||||
|
|
|
|||
|
|
@ -1054,8 +1054,6 @@ sfxinfo_t S_sfx[NUMSFX] =
|
|||
{"kpogos", false, 96, 8, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Pogo Spring use
|
||||
{"alarmi", false, 255, 8, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Invincibility alarm
|
||||
{"alarmg", false, 255, 8, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Grow alarm
|
||||
{"kinvnc", false, 255, 8, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Invincibility music
|
||||
{"kgrow", false, 255, 8, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Grow music
|
||||
{"itrol1", true, 96, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""}, // Roulette spinning
|
||||
{"itrol2", true, 96, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""},
|
||||
{"itrol3", true, 96, 0, -1, NULL, 0, -1, -1, LUMPERROR, ""},
|
||||
|
|
|
|||
|
|
@ -1118,8 +1118,6 @@ typedef enum
|
|||
sfx_kpogos,
|
||||
sfx_alarmi,
|
||||
sfx_alarmg,
|
||||
sfx_kinvnc,
|
||||
sfx_kgrow,
|
||||
sfx_itrol1,
|
||||
sfx_itrol2,
|
||||
sfx_itrol3,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue