#include "global.h" /* ----------------------------------------------------------------------------- Class: ScreenSelectDifficulty Desc: See header. Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved. Chris Danford ----------------------------------------------------------------------------- */ #include "ScreenSelectDifficulty.h" #include "ScreenManager.h" #include "PrefsManager.h" #include "RageSounds.h" #include "GameManager.h" #include "ThemeManager.h" #include "GameState.h" #include "AnnouncerManager.h" #include "ModeChoice.h" #include "ActorUtil.h" #define NUM_CHOICES_ON_PAGE_1 THEME->GetMetricI(m_sName,"NumChoicesOnPage1") #define LOCK_INPUT_SECONDS THEME->GetMetricF(m_sName,"LockInputSeconds") #define SLEEP_AFTER_CHOICE_SECONDS THEME->GetMetricF(m_sName,"SleepAfterChoiceSeconds") #define SLEEP_AFTER_TWEEN_OFF_SECONDS THEME->GetMetricF(m_sName,"SleepAfterTweenOffSeconds") #define CURSOR_CHOOSE_COMMAND THEME->GetMetric (m_sName,"CursorChooseCommand") #define CURSOR_OFFSET_X_FROM_PICTURE( p ) THEME->GetMetricF(m_sName,ssprintf("CursorP%dOffsetXFromPicture",p+1)) #define CURSOR_OFFSET_Y_FROM_PICTURE( p ) THEME->GetMetricF(m_sName,ssprintf("CursorP%dOffsetYFromPicture",p+1)) #define SHADOW_CHOOSE_COMMAND THEME->GetMetric (m_sName,"ShadowChooseCommand") #define SHADOW_LENGTH_X THEME->GetMetricF(m_sName,"ShadowLengthX") #define SHADOW_LENGTH_Y THEME->GetMetricF(m_sName,"ShadowLengthY") #define OK_CHOOSE_COMMAND THEME->GetMetric (m_sName,"OKChooseCommand") #define DISABLED_COLOR THEME->GetMetricC(m_sName,"DisabledColor") #define IGNORED_ELEMENT_COMMAND THEME->GetMetric (m_sName,"IgnoredElementOnCommand") ScreenSelectDifficulty::ScreenSelectDifficulty( CString sClassName ) : ScreenSelect( sClassName ) { m_CurrentPage = PAGE_1; int p; for( p=0; pGetPathToG(sPictureFile) ); m_framePages.AddChild( &m_sprPicture[page][choice] ); m_sprInfo[page][choice].SetName( ssprintf("InfoPage%dChoice%d",page+1,choice+1) ); m_sprInfo[page][choice].Load( THEME->GetPathToG(sInfoFile) ); m_framePages.AddChild( &m_sprInfo[page][choice] ); } m_sprMore[page].SetName( ssprintf("MorePage%d",page+1) ); m_sprMore[page].Load( THEME->GetPathToG( ssprintf("%s more page%d", m_sName.c_str(),page+1) ) ); m_framePages.AddChild( &m_sprMore[page] ); m_sprExplanation[page].SetName( ssprintf("ExplanationPage%d",page+1) ); m_sprExplanation[page].Load( THEME->GetPathToG( m_sName + " explanation") ); m_sprExplanation[page].StopAnimating(); m_sprExplanation[page].SetState( page ); m_framePages.AddChild( &m_sprExplanation[page] ); } for( p=0; pIsHumanPlayer(p) ) continue; m_sprShadow[p].SetName( "Shadow" ); m_sprShadow[p].Load( THEME->GetPathToG( m_sName + " shadow 2x1") ); m_sprShadow[p].StopAnimating(); m_sprShadow[p].SetState( p ); m_sprShadow[p].SetDiffuse( RageColor(0,0,0,0.6f) ); m_framePages.AddChild( &m_sprShadow[p] ); m_sprCursor[p].SetName( "Cursor" ); m_sprCursor[p].Load( THEME->GetPathToG( m_sName + " cursor 2x1") ); m_sprCursor[p].StopAnimating(); m_sprCursor[p].SetState( p ); m_framePages.AddChild( &m_sprCursor[p] ); m_sprOK[p].SetName( "OK" ); m_sprOK[p].Load( THEME->GetPathToG( m_sName + " ok 2x1") ); m_sprOK[p].SetState( p ); m_sprOK[p].StopAnimating(); m_sprOK[p].SetDiffuse( RageColor(1,1,1,0) ); m_framePages.AddChild( &m_sprOK[p] ); } this->AddChild( &m_framePages ); m_soundChange.Load( THEME->GetPathToS( m_sName + " change") ); m_soundSelect.Load( THEME->GetPathToS( "Common start") ); m_soundDifficult.Load( ANNOUNCER->GetPathTo("select difficulty challenge") ); m_fLockInputTime = LOCK_INPUT_SECONDS; this->UpdateSelectableChoices(); TweenOnScreen(); this->SortByZ(); } void ScreenSelectDifficulty::Update( float fDelta ) { ScreenSelect::Update( fDelta ); m_fLockInputTime = max( 0, m_fLockInputTime-fDelta ); } void ScreenSelectDifficulty::HandleScreenMessage( const ScreenMessage SM ) { ScreenSelect::HandleScreenMessage( SM ); switch( SM ) { case SM_BeginFadingOut: TweenOffScreen(); SCREENMAN->PostMessageToTopScreen( SM_AllDoneChoosing, SLEEP_AFTER_TWEEN_OFF_SECONDS ); // nofify parent that we're finished m_Menu.StopTimer(); break; } } int ScreenSelectDifficulty::GetSelectionIndex( PlayerNumber pn ) { int index = 0; for( int page=0; pageIsHumanPlayer(p) ) // { // MenuRight( (PlayerNumber)p ); // MenuLeft( (PlayerNumber)p ); // } } static bool BothPlayersModeChoice( const ModeChoice &mc ) { switch( mc.m_pm ) { case PLAY_MODE_ONI: case PLAY_MODE_NONSTOP: case PLAY_MODE_ENDLESS: case PLAY_MODE_RAVE: return true; } return false; } void ScreenSelectDifficulty::MenuLeft( PlayerNumber pn ) { // if( m_fLockInputTime > 0 ) // return; if( m_bChosen[pn] ) return; bool AnotherPlayerSelected = false; for( int p=0; p=0; i-- ) { const ModeChoice &mc = m_ModeChoices[m_CurrentPage][i]; if( AnotherPlayerSelected && BothPlayersModeChoice(mc) ) continue; if( mc.IsPlayable() ) { iSwitchToIndex = i; break; } } if( iSwitchToIndex == -1 ) { if( m_CurrentPage > 0 ) ChangePage( (Page)(m_CurrentPage-1) ); return; } if( ChangeWithinPage( pn, iSwitchToIndex, false ) ) m_soundChange.Play(); } void ScreenSelectDifficulty::MenuRight( PlayerNumber pn ) { // if( m_fLockInputTime > 0 ) // return; if( m_bChosen[pn] ) return; bool AnotherPlayerSelected = false; for( int p=0; pIsHumanPlayer(p) && m_bChosen[p] ) return; bool bPageIncreasing = newPage > m_CurrentPage; m_CurrentPage = newPage; if( newPage == PAGE_2 ) { /* XXX: only play this once (I thought we already did that?) */ m_soundDifficult.Stop(); m_soundDifficult.PlayRandom(); } // Find the first Playable mode on the new page int iSwitchToIndex = -1; if( !bPageIncreasing ) { for( int i=m_ModeChoices[newPage].size()-1; i>=0; i-- ) { if( m_ModeChoices[newPage][i].IsPlayable() ) { iSwitchToIndex = i; break; } } } else { for( unsigned i=0; iIsHumanPlayer(p) ) continue; // skip if( p!=pn && m_CurrentPage==PAGE_1 ) continue; // skip if( m_iChoiceOnPage[p] == iNewChoice ) continue; // skip bAnyChanged = true; m_iChoiceOnPage[p] = iNewChoice; float fCursorX = GetCursorX( (PlayerNumber)p ); float fCursorY = GetCursorY( (PlayerNumber)p ); m_sprCursor[p].StopTweening(); m_sprCursor[p].BeginTweening( 0.2f, bChangingPages ? TWEEN_LINEAR : TWEEN_DECELERATE ); m_sprCursor[p].SetX( fCursorX ); m_sprCursor[p].SetY( fCursorY ); m_sprShadow[p].StopTweening(); m_sprShadow[p].BeginTweening( 0.2f, bChangingPages ? TWEEN_LINEAR : TWEEN_DECELERATE ); m_sprShadow[p].SetX( fCursorX + SHADOW_LENGTH_X ); m_sprShadow[p].SetY( fCursorY + SHADOW_LENGTH_Y ); } return bAnyChanged; } void ScreenSelectDifficulty::MenuStart( PlayerNumber pn ) { if( m_fLockInputTime > 0 ) return; if( m_bChosen[pn] == true ) return; m_bChosen[pn] = true; for( int page=0; pagePlayOnceFromDir( ANNOUNCER->GetPathTo(ssprintf("ScreenSelectDifficulty comment %s",mc.m_sName.c_str())) ); m_soundSelect.Play(); } int p; // courses should be selected for both players at all times if( BothPlayersModeChoice(mc) ) { for( p=0; pIsHumanPlayer((PlayerNumber)p) || p == pn ) continue; // move all cursors to the oni/nonstop selection so it graphically looks as if all players selected the same option. ChangeWithinPage( (PlayerNumber)p, m_iChoiceOnPage[pn], false ); bPlaySelect = false; MenuStart( (PlayerNumber)p ); // agree everyone bPlaySelect = true; } } else // someone must have chosen arcade style play so oni/nonstop/endless must be disabled { for( p=0; pIsHumanPlayer((PlayerNumber)p) || p == pn ) continue; if( !BothPlayersModeChoice(m_ModeChoices[m_CurrentPage][m_iChoiceOnPage[p]]) ) continue; /* This player is currently on a choice that is no longer available due to * the selection just made. */ int iSwitchToIndex = -1; int i; for( i=m_iChoiceOnPage[p]+1; iSwitchToIndex == -1 && i < (int) m_ModeChoices[m_CurrentPage].size(); ++i ) { const ModeChoice &mc = m_ModeChoices[m_CurrentPage][i]; if( mc.IsPlayable() && !BothPlayersModeChoice(mc) ) iSwitchToIndex = i; } if( iSwitchToIndex == -1 ) /* couldn't find a spot looking up; look down */ { for( i=m_iChoiceOnPage[p]-1; iSwitchToIndex == -1 && i >= 0; --i ) { const ModeChoice &mc = m_ModeChoices[m_CurrentPage][i]; if( mc.IsPlayable() && !BothPlayersModeChoice(mc) ) iSwitchToIndex = i; } } /* We should always find a place to go--we should at least be able to choose * the same thing pn picked. */ ASSERT( iSwitchToIndex != -1 ); // move the cursor ChangeWithinPage( (PlayerNumber) p, iSwitchToIndex, false ); } /* If the other player is active and hasn't yet chosen, gray out unselectable options. * Otherwise, don't do this, so we don't gray out stuff when nothing else can be selected * anyway. */ bool bAnyPlayersLeft = false; for( p=0; pIsHumanPlayer((PlayerNumber)p) || m_bChosen[p] || p == pn ) continue; bAnyPlayersLeft = true; } if( bAnyPlayersLeft ) { for( unsigned c=0; cIsHumanPlayer((PlayerNumber)p) && m_bChosen[p] == false ) return; } this->PostScreenMessage( SM_BeginFadingOut, SLEEP_AFTER_CHOICE_SECONDS ); // tell our owner it's time to move on } void ScreenSelectDifficulty::TweenOnScreen() { unsigned p; for( int page=0; pageIsHumanPlayer((PlayerNumber)p) ) continue; float fCursorX = GetCursorX( (PlayerNumber)p ); float fCursorY = GetCursorY( (PlayerNumber)p ); m_sprCursor[p].SetXY( fCursorX, fCursorY ); ON_COMMAND( m_sprCursor[p] ); m_sprShadow[p].SetXY( fCursorX + SHADOW_LENGTH_X, fCursorY + SHADOW_LENGTH_Y ); ON_COMMAND( m_sprShadow[p] ); } } void ScreenSelectDifficulty::TweenOffScreen() { const int page = m_CurrentPage; OFF_COMMAND( m_sprExplanation[page] ); OFF_COMMAND( m_sprMore[page] ); for( int p=0; pIsHumanPlayer(p) ) continue; OFF_COMMAND( m_sprCursor[p] ); OFF_COMMAND( m_sprOK[p] ); OFF_COMMAND( m_sprShadow[p] ); } for( unsigned c=0; c