always display both eval and final eval after extra stages
This commit is contained in:
@@ -806,17 +806,20 @@ void ScreenEvaluation::MenuStart( PlayerNumber pn )
|
|||||||
{
|
{
|
||||||
if( m_bTryExtraStage )
|
if( m_bTryExtraStage )
|
||||||
m_Menu.TweenOffScreenToMenu( SM_GoToSelectMusic );
|
m_Menu.TweenOffScreenToMenu( SM_GoToSelectMusic );
|
||||||
else if( m_ResultMode == RM_ARCADE_STAGE && GAMESTATE->m_iCurrentStageIndex == PREFSMAN->m_iNumArcadeStages-1 )
|
else if( m_ResultMode == RM_ARCADE_STAGE )
|
||||||
{
|
{
|
||||||
/* Tween the screen out, but leave the MenuElements where they are.
|
if( GAMESTATE->m_iCurrentStageIndex < PREFSMAN->m_iNumArcadeStages-1 )
|
||||||
* Play the "swoosh" sound manually (would normally be played by the ME
|
m_Menu.TweenOffScreenToMenu( SM_GoToSelectMusic );
|
||||||
* tween out). */
|
else
|
||||||
SOUNDMAN->PlayOnce( THEME->GetPathTo("Sounds","menu swoosh") );
|
{
|
||||||
TweenOffScreen();
|
/* Tween the screen out, but leave the MenuElements where they are.
|
||||||
SCREENMAN->SendMessageToTopScreen( SM_GoToFinalEvaluation, MENU_ELEMENTS_TWEEN_TIME );
|
* Play the "swoosh" sound manually (would normally be played by the ME
|
||||||
|
* tween out). */
|
||||||
|
SOUNDMAN->PlayOnce( THEME->GetPathTo("Sounds","menu swoosh") );
|
||||||
|
TweenOffScreen();
|
||||||
|
SCREENMAN->SendMessageToTopScreen( SM_GoToFinalEvaluation, MENU_ELEMENTS_TWEEN_TIME );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if( m_ResultMode == RM_ARCADE_STAGE && GAMESTATE->m_iCurrentStageIndex < PREFSMAN->m_iNumArcadeStages-1 )
|
|
||||||
m_Menu.TweenOffScreenToMenu( SM_GoToSelectMusic );
|
|
||||||
else
|
else
|
||||||
m_Menu.TweenOffScreenToBlack( SM_GoToGameFinished, false );
|
m_Menu.TweenOffScreenToBlack( SM_GoToGameFinished, false );
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1508,14 +1508,14 @@ void ScreenGameplay::HandleScreenMessage( const ScreenMessage SM )
|
|||||||
ShowSavePrompt( SM_GoToScreenAfterFail );
|
ShowSavePrompt( SM_GoToScreenAfterFail );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( GAMESTATE->m_PlayMode == PLAY_MODE_NONSTOP ||
|
if( GAMESTATE->m_PlayMode == PLAY_MODE_NONSTOP ||
|
||||||
GAMESTATE->m_PlayMode == PLAY_MODE_ONI ||
|
GAMESTATE->m_PlayMode == PLAY_MODE_ONI ||
|
||||||
GAMESTATE->m_PlayMode == PLAY_MODE_ENDLESS )
|
GAMESTATE->m_PlayMode == PLAY_MODE_ENDLESS ||
|
||||||
|
GAMESTATE->IsExtraStage() || GAMESTATE->IsExtraStage2())
|
||||||
SCREENMAN->SetNewScreen( "ScreenEvaluation" );
|
SCREENMAN->SetNewScreen( "ScreenEvaluation" );
|
||||||
else if( PREFSMAN->m_bEventMode )
|
else if( PREFSMAN->m_bEventMode )
|
||||||
this->SendScreenMessage( SM_GoToScreenAfterBack, 0 );
|
this->SendScreenMessage( SM_GoToScreenAfterBack, 0 );
|
||||||
else if( GAMESTATE->IsExtraStage() || GAMESTATE->IsExtraStage2() )
|
|
||||||
SCREENMAN->SetNewScreen( "ScreenFinalEvaluation" );
|
|
||||||
else
|
else
|
||||||
SCREENMAN->SetNewScreen( "ScreenGameOver" );
|
SCREENMAN->SetNewScreen( "ScreenGameOver" );
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user