mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-29 20:50:58 +00:00
Merge branch 'recordattack-bg-fixes' into 'master'
Record Attack bg fixes See merge request STJr/SRB2Internal!259
This commit is contained in:
commit
cb278388f0
1 changed files with 21 additions and 7 deletions
28
src/m_menu.c
28
src/m_menu.c
|
@ -2288,23 +2288,26 @@ static boolean MIT_SetCurBackground(UINT32 menutype, INT32 level, INT32 *retval,
|
|||
(void)retval;
|
||||
(void)fromoldest;
|
||||
|
||||
if (!menutype) // if there's nothing in this level, do nothing
|
||||
return false;
|
||||
|
||||
if (menupres[menutype].bgcolor >= 0)
|
||||
{
|
||||
curbgcolor = menupres[menutype].bgcolor;
|
||||
return true;
|
||||
}
|
||||
else if (menupres[menutype].bgname[0] && (!menupres[menutype].bghide || !titlemapinaction))
|
||||
else if (menupres[menutype].bghide && titlemapinaction) // hide the background
|
||||
{
|
||||
curbghide = true;
|
||||
return true;
|
||||
}
|
||||
else if (menupres[menutype].bgname[0])
|
||||
{
|
||||
strncpy(curbgname, menupres[menutype].bgname, 8);
|
||||
curbgxspeed = menupres[menutype].titlescrollxspeed != INT32_MAX ? menupres[menutype].titlescrollxspeed : titlescrollxspeed;
|
||||
curbgyspeed = menupres[menutype].titlescrollyspeed != INT32_MAX ? menupres[menutype].titlescrollyspeed : titlescrollyspeed;
|
||||
return true;
|
||||
}
|
||||
else if (menupres[menutype].bghide && titlemapinaction) // hide the background
|
||||
{
|
||||
curbghide = true;
|
||||
return true;
|
||||
}
|
||||
else if (!level)
|
||||
{
|
||||
if (M_GetYoungestChildMenu() == MN_SP_PLAYER || !defaultname || !defaultname[0])
|
||||
|
@ -2328,6 +2331,9 @@ static boolean MIT_ChangeMusic(UINT32 menutype, INT32 level, INT32 *retval, void
|
|||
(void)retval;
|
||||
(void)fromoldest;
|
||||
|
||||
if (!menutype) // if there's nothing in this level, do nothing
|
||||
return false;
|
||||
|
||||
if (menupres[menutype].musname[0])
|
||||
{
|
||||
S_ChangeMusic(menupres[menutype].musname, menupres[menutype].mustrack, menupres[menutype].muslooping);
|
||||
|
@ -2352,6 +2358,9 @@ static boolean MIT_SetCurFadeValue(UINT32 menutype, INT32 level, INT32 *retval,
|
|||
(void)retval;
|
||||
(void)fromoldest;
|
||||
|
||||
if (!menutype) // if there's nothing in this level, do nothing
|
||||
return false;
|
||||
|
||||
if (menupres[menutype].fadestrength >= 0)
|
||||
{
|
||||
curfadevalue = (menupres[menutype].fadestrength % 32);
|
||||
|
@ -2368,6 +2377,9 @@ static boolean MIT_SetCurHideTitlePics(UINT32 menutype, INT32 level, INT32 *retv
|
|||
(void)retval;
|
||||
(void)fromoldest;
|
||||
|
||||
if (!menutype) // if there's nothing in this level, do nothing
|
||||
return false;
|
||||
|
||||
if (menupres[menutype].hidetitlepics >= 0)
|
||||
{
|
||||
curhidepics = menupres[menutype].hidetitlepics;
|
||||
|
@ -2469,7 +2481,7 @@ static void M_HandleMenuPresState(menu_t *newMenu)
|
|||
curbgcolor = -1;
|
||||
curbgxspeed = titlescrollxspeed;
|
||||
curbgyspeed = titlescrollyspeed;
|
||||
curbghide = true;
|
||||
curbghide = (gamestate != GS_TIMEATTACK); // show in time attack, hide in other menus
|
||||
|
||||
// don't do the below during the in-game menus
|
||||
if (gamestate != GS_TITLESCREEN && gamestate != GS_TIMEATTACK)
|
||||
|
@ -8234,6 +8246,7 @@ static void M_TimeAttack(INT32 choice)
|
|||
M_PatchSkinNameTable();
|
||||
|
||||
G_SetGamestate(GS_TIMEATTACK); // do this before M_SetupNextMenu so that menu meta state knows that we're switching
|
||||
titlemapinaction = TITLEMAP_OFF; // Nope don't give us HOMs please
|
||||
M_SetupNextMenu(&SP_TimeAttackDef);
|
||||
if (!M_CanShowLevelInList(cv_nextmap.value-1, -1) && levelselect.rows[0].maplist[0])
|
||||
CV_SetValue(&cv_nextmap, levelselect.rows[0].maplist[0]);
|
||||
|
@ -8415,6 +8428,7 @@ static void M_NightsAttack(INT32 choice)
|
|||
|
||||
G_SetGamestate(GS_TIMEATTACK); // do this before M_SetupNextMenu so that menu meta state knows that we're switching
|
||||
M_SetupNextMenu(&SP_NightsAttackDef);
|
||||
titlemapinaction = TITLEMAP_OFF; // Nope don't give us HOMs please
|
||||
if (!M_CanShowLevelInList(cv_nextmap.value-1, -1) && levelselect.rows[0].maplist[0])
|
||||
CV_SetValue(&cv_nextmap, levelselect.rows[0].maplist[0]);
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue