2013-04-30 22:53:57 -04:00
|
|
|
#include "global.h"
|
|
|
|
|
#include "ScreenPlayerOptions.h"
|
|
|
|
|
#include "ScreenManager.h"
|
|
|
|
|
#include "RageLog.h"
|
|
|
|
|
#include "GameState.h"
|
|
|
|
|
#include "ThemeManager.h"
|
|
|
|
|
#include "AnnouncerManager.h"
|
|
|
|
|
#include "GameSoundManager.h"
|
|
|
|
|
#include "ScreenSongOptions.h"
|
|
|
|
|
#include "PrefsManager.h"
|
|
|
|
|
#include "CodeDetector.h"
|
|
|
|
|
#include "ScreenDimensions.h"
|
|
|
|
|
#include "PlayerState.h"
|
2013-05-01 23:54:39 -04:00
|
|
|
|
2013-04-30 22:53:57 -04:00
|
|
|
#include "InputEventPlus.h"
|
|
|
|
|
|
|
|
|
|
REGISTER_SCREEN_CLASS( ScreenPlayerOptions );
|
|
|
|
|
|
|
|
|
|
void ScreenPlayerOptions::Init()
|
|
|
|
|
{
|
|
|
|
|
ScreenOptionsMaster::Init();
|
|
|
|
|
|
|
|
|
|
FOREACH_PlayerNumber( p )
|
|
|
|
|
{
|
|
|
|
|
m_sprDisqualify[p].Load( THEME->GetPathG(m_sName,"disqualify") );
|
|
|
|
|
m_sprDisqualify[p]->SetName( ssprintf("DisqualifyP%i",p+1) );
|
|
|
|
|
LOAD_ALL_COMMANDS_AND_SET_XY( m_sprDisqualify[p] );
|
|
|
|
|
m_sprDisqualify[p]->SetVisible( false ); // unhide later if handicapping options are discovered
|
|
|
|
|
m_sprDisqualify[p]->SetDrawOrder( 2 );
|
|
|
|
|
m_frameContainer.AddChild( m_sprDisqualify[p] );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_bAskOptionsMessage =
|
|
|
|
|
!GAMESTATE->IsEditing() && PREFSMAN->m_ShowSongOptions == Maybe_ASK;
|
|
|
|
|
|
|
|
|
|
m_bAcceptedChoices = false;
|
|
|
|
|
m_bGoToOptions = ( PREFSMAN->m_ShowSongOptions == Maybe_YES );
|
|
|
|
|
|
|
|
|
|
SOUND->PlayOnceFromDir( ANNOUNCER->GetPathTo("player options intro") );
|
|
|
|
|
|
|
|
|
|
FOREACH_PlayerNumber( p )
|
|
|
|
|
m_bRowCausesDisqualified[p].resize( m_pRows.size(), false );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void ScreenPlayerOptions::BeginScreen()
|
|
|
|
|
{
|
|
|
|
|
FOREACH_PlayerNumber( p )
|
|
|
|
|
ON_COMMAND( m_sprDisqualify[p] );
|
|
|
|
|
|
|
|
|
|
ScreenOptionsMaster::BeginScreen();
|
|
|
|
|
|
|
|
|
|
FOREACH_HumanPlayer( p )
|
|
|
|
|
{
|
|
|
|
|
for( unsigned r=0; r<m_pRows.size(); r++ )
|
|
|
|
|
UpdateDisqualified( r, p );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ScreenPlayerOptions::Input( const InputEventPlus &input )
|
|
|
|
|
{
|
|
|
|
|
bool bHandled = false;
|
|
|
|
|
|
|
|
|
|
if( m_bAskOptionsMessage &&
|
|
|
|
|
input.type == IET_FIRST_PRESS &&
|
|
|
|
|
!m_In.IsTransitioning() &&
|
|
|
|
|
input.MenuI == GAME_BUTTON_START )
|
|
|
|
|
{
|
|
|
|
|
if( m_bAcceptedChoices && !m_bGoToOptions )
|
|
|
|
|
{
|
|
|
|
|
m_bGoToOptions = true;
|
|
|
|
|
this->PlayCommand( "GoToOptions" );
|
|
|
|
|
SCREENMAN->PlayStartSound();
|
|
|
|
|
bHandled = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PlayerNumber pn = input.pn;
|
|
|
|
|
if( GAMESTATE->IsHumanPlayer(pn) && CodeDetector::EnteredCode(input.GameI.controller,CODE_CANCEL_ALL_PLAYER_OPTIONS) )
|
|
|
|
|
{
|
|
|
|
|
// apply the game default mods, but not the Profile saved mods
|
|
|
|
|
GAMESTATE->m_pPlayerState[pn]->ResetToDefaultPlayerOptions( ModsLevel_Preferred );
|
|
|
|
|
|
|
|
|
|
MESSAGEMAN->Broadcast( ssprintf("CancelAllP%i", pn+1) );
|
|
|
|
|
|
|
|
|
|
for( unsigned r=0; r<m_pRows.size(); r++ )
|
|
|
|
|
{
|
2022-07-10 18:28:56 +03:00
|
|
|
std::vector<PlayerNumber> v;
|
2013-04-30 22:53:57 -04:00
|
|
|
v.push_back( pn );
|
|
|
|
|
int iOldFocus = m_pRows[r]->GetChoiceInRowWithFocus( pn );
|
|
|
|
|
this->ImportOptions( r, v );
|
|
|
|
|
m_pRows[r]->AfterImportOptions( pn );
|
|
|
|
|
this->UpdateDisqualified( r, pn );
|
|
|
|
|
m_pRows[r]->SetChoiceInRowWithFocus( pn, iOldFocus );
|
|
|
|
|
}
|
|
|
|
|
bHandled = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bHandled = ScreenOptionsMaster::Input( input ) || bHandled;
|
|
|
|
|
|
|
|
|
|
// UGLY: Update m_Disqualified whenever Start is pressed
|
|
|
|
|
if( GAMESTATE->IsHumanPlayer(pn) && input.MenuI == GAME_BUTTON_START )
|
|
|
|
|
{
|
|
|
|
|
int row = m_iCurrentRow[pn];
|
|
|
|
|
UpdateDisqualified( row, pn );
|
|
|
|
|
}
|
|
|
|
|
return bHandled;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ScreenPlayerOptions::HandleScreenMessage( const ScreenMessage SM )
|
|
|
|
|
{
|
|
|
|
|
if( SM == SM_BeginFadingOut && m_bAskOptionsMessage ) // user accepts the page of options
|
|
|
|
|
{
|
|
|
|
|
m_bAcceptedChoices = true;
|
|
|
|
|
|
|
|
|
|
// show "hold START for options"
|
|
|
|
|
this->PlayCommand( "AskForGoToOptions" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ScreenOptionsMaster::HandleScreenMessage( SM );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ScreenPlayerOptions::UpdateDisqualified( int row, PlayerNumber pn )
|
|
|
|
|
{
|
|
|
|
|
ASSERT( GAMESTATE->IsHumanPlayer(pn) );
|
|
|
|
|
|
|
|
|
|
// save original player options
|
|
|
|
|
PlayerOptions poOrig = GAMESTATE->m_pPlayerState[pn]->m_PlayerOptions.GetPreferred();
|
|
|
|
|
|
|
|
|
|
// Find out if the current row when exported causes disqualification.
|
|
|
|
|
// Exporting the row will fill GAMESTATE->m_PlayerOptions.
|
|
|
|
|
PO_GROUP_CALL( GAMESTATE->m_pPlayerState[pn]->m_PlayerOptions, ModsLevel_Preferred, Init );
|
2022-07-10 18:28:56 +03:00
|
|
|
std::vector<PlayerNumber> v;
|
2013-04-30 22:53:57 -04:00
|
|
|
v.push_back( pn );
|
|
|
|
|
ExportOptions( row, v );
|
|
|
|
|
bool bRowCausesDisqualified = GAMESTATE->CurrentOptionsDisqualifyPlayer( pn );
|
|
|
|
|
m_bRowCausesDisqualified[pn][row] = bRowCausesDisqualified;
|
|
|
|
|
|
|
|
|
|
// Update disqualified graphic
|
|
|
|
|
bool disqualified = std::any_of(m_bRowCausesDisqualified[pn].begin(), m_bRowCausesDisqualified[pn].end(), [](bool const &b) { return b; });
|
|
|
|
|
|
|
|
|
|
m_sprDisqualify[pn]->SetVisible( disqualified );
|
|
|
|
|
|
|
|
|
|
// restore previous player options in case the user escapes back after this
|
|
|
|
|
GAMESTATE->m_pPlayerState[pn]->m_PlayerOptions.Assign( ModsLevel_Preferred, poOrig );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// lua start
|
|
|
|
|
#include "LuaBinding.h"
|
|
|
|
|
|
|
|
|
|
/** @brief Allow Lua to have access to the ScreenPlayerOptions. */
|
|
|
|
|
class LunaScreenPlayerOptions: public Luna<ScreenPlayerOptions>
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
static int GetGoToOptions( T* p, lua_State *L ) { lua_pushboolean( L, p->GetGoToOptions() ); return 1; }
|
|
|
|
|
|
|
|
|
|
LunaScreenPlayerOptions()
|
|
|
|
|
{
|
|
|
|
|
ADD_METHOD( GetGoToOptions );
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
LUA_REGISTER_DERIVED_CLASS( ScreenPlayerOptions, ScreenOptions )
|
|
|
|
|
// lua end
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* (c) 2001-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.
|
|
|
|
|
*/
|