Files
itgmania212121/src/ScreenOptionsToggleSongs.cpp
T

155 lines
4.6 KiB
C++
Raw Normal View History

2011-03-17 01:47:30 -04:00
#include "global.h"
#include "ScreenOptionsToggleSongs.h"
#include "OptionRowHandler.h"
#include "RageUtil.h"
#include "ScreenManager.h"
#include "Song.h"
#include "SongManager.h"
#include "UnlockManager.h"
#include "PrefsManager.h"
#include "MessageManager.h"
// main page (group list)
REGISTER_SCREEN_CLASS( ScreenOptionsToggleSongs );
REGISTER_SCREEN_CLASS( ScreenOptionsToggleSongsSubPage );
void ScreenOptionsToggleSongs::BeginScreen()
{
m_asGroups.clear();
vector<OptionRowHandler*> vHands;
vector<RString> asAllGroups;
SONGMAN->GetSongGroupNames(asAllGroups);
FOREACH_CONST( RString, asAllGroups , s )
{
vHands.push_back( OptionRowHandlerUtil::MakeNull() );
OptionRowDefinition &def = vHands.back()->m_Def;
RString sGroup = *s;
def.m_sName = sGroup;
def.m_sExplanationName = "Select Group";
def.m_bAllowThemeTitle = false; // not themable
def.m_bAllowThemeItems = false; // already themed
def.m_bOneChoiceForAllPlayers = true;
def.m_vsChoices.clear();
def.m_vsChoices.push_back( "" );
m_asGroups.push_back( sGroup );
}
ScreenOptions::InitMenu( vHands );
ScreenOptions::BeginScreen();
}
void ScreenOptionsToggleSongs::ProcessMenuStart( const InputEventPlus &input )
{
if( IsTransitioning() )
return;
// switch to the subpage with the specified group
int iRow = GetCurrentRow();
OptionRow &row = *m_pRows[iRow];
if( row.GetRowType() == OptionRow::RowType_Exit )
{
ScreenOptions::ProcessMenuStart( input );
return;
}
ToggleSongs::m_sGroup = m_asGroups[iRow];
SCREENMAN->SetNewScreen("ScreenOptionsToggleSongsSubPage");
}
void ScreenOptionsToggleSongs::ImportOptions( int row, const vector<PlayerNumber> &vpns )
{
}
void ScreenOptionsToggleSongs::ExportOptions( int row, const vector<PlayerNumber> &vpns )
{
}
// subpage (has the songs in a specific group)
void ScreenOptionsToggleSongsSubPage::BeginScreen()
{
m_apSongs.clear();
vector<OptionRowHandler*> vHands;
const vector<Song *> &apAllSongs = SONGMAN->GetSongs(ToggleSongs::m_sGroup);
FOREACH_CONST( Song *, apAllSongs , s )
{
Song *pSong = *s;
if( UNLOCKMAN->SongIsLocked(pSong) & ~LOCKED_DISABLED )
continue;
vHands.push_back( OptionRowHandlerUtil::MakeNull() );
OptionRowDefinition &def = vHands.back()->m_Def;
def.m_sName = pSong->GetTranslitFullTitle();
def.m_bAllowThemeTitle = false; // not themable
def.m_sExplanationName = "Toggle Song";
def.m_bOneChoiceForAllPlayers = true;
def.m_vsChoices.clear();
def.m_vsChoices.push_back( "On" );
def.m_vsChoices.push_back( "Off" );
def.m_bAllowThemeItems = false; // already themed
m_apSongs.push_back( pSong );
}
InitMenu( vHands );
ScreenOptions::BeginScreen();
}
void ScreenOptionsToggleSongsSubPage::ImportOptions( int iRow, const vector<PlayerNumber> &vpns )
{
if( iRow >= (int)m_apSongs.size() ) // exit row
return;
OptionRow &row = *m_pRows[iRow];
bool bEnable = m_apSongs[iRow]->GetEnabled();
int iSelection = bEnable? 0:1;
row.SetOneSharedSelection( iSelection );
}
void ScreenOptionsToggleSongsSubPage::ExportOptions( int iRow, const vector<PlayerNumber> &vpns )
{
if( iRow >= (int)m_apSongs.size() ) // exit row
return;
const OptionRow &row = *m_pRows[iRow];
int iSelection = row.GetOneSharedSelection();
bool bEnable = (iSelection == 0);
m_apSongs[iRow]->SetEnabled( bEnable );
SONGMAN->SaveEnabledSongsToPref();
PREFSMAN->SavePrefsToDisk();
}
/*
* (c) 2007 Glenn Maynard
* 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.
*/