5318d0670d
in each place gameplay exits. This incremented the stage number in SSM, and was brittle: FinishStage was sprinkled in many odd places. Do both in SGameplay. This increments the stage number as soon as gameplay ends. This only affects evaluation. Use the stage number from StageStats there, instead of the current stage, and adjust branches. During evaluation, the game is on the upcoming stage and displaying old data for the last stage, instead of the stage continuing through evaluation. This also moves a bunch of scoring-related stuff out of SEvaluation, to the end of gameplay, where it belongs. Eval is almost const, and things won't break like they would before if Eval is not used.
126 lines
3.5 KiB
C++
126 lines
3.5 KiB
C++
#include "global.h"
|
|
#include "ScreenContinue.h"
|
|
#include "ScreenManager.h"
|
|
#include "SongManager.h"
|
|
#include "GameSoundManager.h"
|
|
#include "ThemeManager.h"
|
|
#include "AnnouncerManager.h"
|
|
#include "song.h"
|
|
#include "ProfileManager.h"
|
|
#include "Profile.h"
|
|
#include "ActorUtil.h"
|
|
#include "GameState.h"
|
|
#include "MemoryCardManager.h"
|
|
#include "RageLog.h"
|
|
#include "Style.h"
|
|
#include "GameManager.h"
|
|
#include "PrefsManager.h"
|
|
#include "StatsManager.h"
|
|
#include "PlayerState.h"
|
|
#include "CommonMetrics.h"
|
|
#include "InputEventPlus.h"
|
|
#include "MenuTimer.h"
|
|
|
|
|
|
REGISTER_SCREEN_CLASS( ScreenContinue );
|
|
ScreenContinue::ScreenContinue() : ScreenWithMenuElements()
|
|
{
|
|
}
|
|
|
|
void ScreenContinue::Init()
|
|
{
|
|
ScreenWithMenuElements::Init();
|
|
}
|
|
|
|
void ScreenContinue::BeginScreen()
|
|
{
|
|
GAMESTATE->SetCurrentStyle( NULL );
|
|
|
|
// unjoin all players with 0 stages left
|
|
FOREACH_HumanPlayer( p )
|
|
{
|
|
bool bNoStagesLeft = GAMESTATE->m_iPlayerCurrentStageIndexForCurrentCredit[p] >= PREFSMAN->m_iSongsPerPlay;
|
|
if( bNoStagesLeft )
|
|
GAMESTATE->UnjoinPlayer( p );
|
|
}
|
|
|
|
ScreenWithMenuElements::BeginScreen();
|
|
}
|
|
|
|
void ScreenContinue::Input( const InputEventPlus &input )
|
|
{
|
|
if( input.MenuI == MENU_BUTTON_COIN && input.type == IET_FIRST_PRESS )
|
|
ResetTimer();
|
|
|
|
if( input.MenuI == MENU_BUTTON_START && input.type == IET_FIRST_PRESS && GAMESTATE->JoinInput(input.pn) )
|
|
{
|
|
bool bAllPlayersAreEnabled = true;
|
|
FOREACH_ENUM( PlayerNumber, p )
|
|
{
|
|
if( !GAMESTATE->IsPlayerEnabled(p) )
|
|
bAllPlayersAreEnabled = false;
|
|
}
|
|
if( bAllPlayersAreEnabled )
|
|
{
|
|
m_MenuTimer->Stop();
|
|
if( !IsTransitioning() )
|
|
StartTransitioningScreen( SM_GoToNextScreen );
|
|
}
|
|
else
|
|
{
|
|
ResetTimer();
|
|
}
|
|
return; // handled
|
|
}
|
|
|
|
if( IsTransitioning() )
|
|
return;
|
|
|
|
if( input.MenuI == MENU_BUTTON_START && input.type == IET_FIRST_PRESS && GAMESTATE->IsHumanPlayer(input.pn) )
|
|
{
|
|
m_MenuTimer->SetSeconds( m_MenuTimer->GetSeconds() - 1 );
|
|
return; // handled
|
|
}
|
|
|
|
ScreenWithMenuElements::Input( input );
|
|
}
|
|
|
|
void ScreenContinue::HandleScreenMessage( const ScreenMessage SM )
|
|
{
|
|
RString s = ScreenMessageHelpers::NumberToString( SM );
|
|
|
|
if( SM == SM_MenuTimer )
|
|
{
|
|
if( !IsTransitioning() )
|
|
StartTransitioningScreen( SM_GoToNextScreen );
|
|
return;
|
|
}
|
|
|
|
ScreenWithMenuElements::HandleScreenMessage( SM );
|
|
}
|
|
|
|
/*
|
|
* (c) 2004 Chris Danford
|
|
* All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, and/or sell copies of the Software, and to permit persons to
|
|
* whom the Software is furnished to do so, provided that the above
|
|
* copyright notice(s) and this permission notice appear in all copies of
|
|
* the Software and that both the above copyright notice(s) and this
|
|
* permission notice appear in supporting documentation.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
|
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
|
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
|
|
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|