Files
itgmania212121/stepmania/src/CommonMetrics.cpp
T

159 lines
5.7 KiB
C++
Raw Normal View History

2005-02-12 21:03:39 +00:00
#include "global.h"
#include "CommonMetrics.h"
#include "RageUtil.h"
2005-03-10 19:57:43 +00:00
#include "Foreach.h"
#include "GameManager.h"
#include "RageLog.h"
#include "GameState.h"
#include "ProductInfo.h"
2006-06-24 05:13:54 +00:00
#include "LuaFunctions.h"
2005-02-12 21:03:39 +00:00
2006-01-22 01:00:06 +00:00
static RString PLAYER_COLOR_NAME( size_t p ) { return ssprintf("ColorP%dCommand",int(p+1)); }
2005-02-12 21:03:39 +00:00
2006-09-22 07:14:56 +00:00
DynamicThemeMetric<RString> CommonMetrics::INITIAL_SCREEN ("Common","InitialScreen");
2006-01-29 22:13:36 +00:00
ThemeMetric<RString> CommonMetrics::FIRST_ATTRACT_SCREEN ("Common","FirstAttractScreen");
ThemeMetric<RString> CommonMetrics::DEFAULT_MODIFIERS ("Common","DefaultModifiers" );
ThemeMetric<RString> CommonMetrics::DEFAULT_CPU_MODIFIERS ("Common","DefaultCpuModifiers" );
ThemeMetric1D<apActorCommands> CommonMetrics::PLAYER_COLOR ("Common",PLAYER_COLOR_NAME,NUM_PLAYERS);
LocalizedString CommonMetrics::WINDOW_TITLE ("Common","WindowTitle");
ThemeMetric<int> CommonMetrics::MAX_COURSE_ENTRIES_BEFORE_VARIOUS("Common","MaxCourseEntriesBeforeShowVarious");
ThemeMetric<float> CommonMetrics::TICK_EARLY_SECONDS ("ScreenGameplay","TickEarlySeconds");
ThemeMetricDifficultiesToShow CommonMetrics::DIFFICULTIES_TO_SHOW ("Common","DifficultiesToShow");
ThemeMetricCourseDifficultiesToShow CommonMetrics::COURSE_DIFFICULTIES_TO_SHOW ("Common","CourseDifficultiesToShow");
ThemeMetricStepsTypesToShow CommonMetrics::STEPS_TYPES_TO_SHOW ("Common","StepsTypesToHide");
2005-02-12 21:03:39 +00:00
2006-01-22 01:00:06 +00:00
ThemeMetricDifficultiesToShow::ThemeMetricDifficultiesToShow( const RString& sGroup, const RString& sName ) :
ThemeMetric<RString>(sGroup,sName)
2005-03-10 19:57:43 +00:00
{
// re-read because ThemeMetric::ThemeMetric calls ThemeMetric::Read, not the derived one
if( IsLoaded() )
Read();
}
void ThemeMetricDifficultiesToShow::Read()
{
2005-10-07 03:24:22 +00:00
ASSERT( GetName().Right(6) == "ToShow" );
2006-01-22 01:00:06 +00:00
ThemeMetric<RString>::Read();
m_v.clear();
2005-03-10 19:57:43 +00:00
2006-01-22 01:00:06 +00:00
vector<RString> v;
split( ThemeMetric<RString>::GetValue(), ",", v );
ASSERT( v.size() > 0 );
2006-01-22 01:00:06 +00:00
FOREACH_CONST( RString, v, i )
2005-03-10 19:57:43 +00:00
{
Difficulty d = StringToDifficulty( *i );
if( d == DIFFICULTY_INVALID )
RageException::Throw( "Unknown difficulty \"%s\" in CourseDifficultiesToShow.", i->c_str() );
m_v.push_back( d );
}
}
2006-09-02 19:33:49 +00:00
const vector<Difficulty>& ThemeMetricDifficultiesToShow::GetValue() const { return m_v; }
2006-01-22 01:00:06 +00:00
ThemeMetricCourseDifficultiesToShow::ThemeMetricCourseDifficultiesToShow( const RString& sGroup, const RString& sName ) :
ThemeMetric<RString>(sGroup,sName)
{
// re-read because ThemeMetric::ThemeMetric calls ThemeMetric::Read, not the derived one
if( IsLoaded() )
Read();
}
void ThemeMetricCourseDifficultiesToShow::Read()
{
2005-10-07 03:24:22 +00:00
ASSERT( GetName().Right(6) == "ToShow" );
2006-01-22 01:00:06 +00:00
ThemeMetric<RString>::Read();
2005-03-10 19:57:43 +00:00
m_v.clear();
2005-03-10 19:57:43 +00:00
2006-01-22 01:00:06 +00:00
vector<RString> v;
split( ThemeMetric<RString>::GetValue(), ",", v );
ASSERT( v.size() > 0 );
2005-03-10 19:57:43 +00:00
2006-01-22 01:00:06 +00:00
FOREACH_CONST( RString, v, i )
{
CourseDifficulty d = StringToCourseDifficulty( *i );
if( d == DIFFICULTY_INVALID )
RageException::Throw( "Unknown CourseDifficulty \"%s\" in CourseDifficultiesToShow.", i->c_str() );
m_v.push_back( d );
2005-03-10 19:57:43 +00:00
}
}
2006-09-02 19:33:49 +00:00
const vector<CourseDifficulty>& ThemeMetricCourseDifficultiesToShow::GetValue() const { return m_v; }
2005-03-10 19:57:43 +00:00
2006-01-22 01:00:06 +00:00
static void RemoveStepsTypes( vector<StepsType>& inout, RString sStepsTypesToRemove )
2005-03-10 19:57:43 +00:00
{
2006-01-22 01:00:06 +00:00
vector<RString> v;
split( sStepsTypesToRemove, ",", v );
ASSERT( v.size() > 0 );
2005-03-10 19:57:43 +00:00
// subtract StepsTypes
2006-01-22 01:00:06 +00:00
FOREACH_CONST( RString, v, i )
2005-03-10 19:57:43 +00:00
{
StepsType st = GameManager::StringToStepsType(*i);
if( st == STEPS_TYPE_INVALID )
LOG->Warn( "Invalid StepsType value '%s' in '%s'", i->c_str(), sStepsTypesToRemove.c_str() );
const vector<StepsType>::iterator iter = find( inout.begin(), inout.end(), st );
if( iter != inout.end() )
inout.erase( iter );
}
}
2006-01-22 01:00:06 +00:00
ThemeMetricStepsTypesToShow::ThemeMetricStepsTypesToShow( const RString& sGroup, const RString& sName ) :
ThemeMetric<RString>(sGroup,sName)
{
// re-read because ThemeMetric::ThemeMetric calls ThemeMetric::Read, not the derived one
if( IsLoaded() )
Read();
}
void ThemeMetricStepsTypesToShow::Read()
{
2005-10-07 03:24:22 +00:00
ASSERT( GetName().Right(6) == "ToHide" );
2006-01-22 01:00:06 +00:00
ThemeMetric<RString>::Read();
2005-03-10 19:57:43 +00:00
m_v.clear();
GAMEMAN->GetStepsTypesForGame( GAMESTATE->m_pCurGame, m_v );
2005-03-10 19:57:43 +00:00
2006-01-22 01:00:06 +00:00
RemoveStepsTypes( m_v, ThemeMetric<RString>::GetValue() );
}
2006-09-02 19:33:49 +00:00
const vector<StepsType>& ThemeMetricStepsTypesToShow::GetValue() const { return m_v; }
2005-03-10 19:57:43 +00:00
2006-01-29 22:13:36 +00:00
RString CommonMetrics::LocalizeOptionItem( const RString &s, bool bOptional )
{
2006-06-24 05:13:54 +00:00
if( bOptional && !THEME->HasString("OptionNames",s) )
return s;
2006-01-08 18:40:20 +00:00
return THEME->GetString( "OptionNames", s );
}
2005-03-10 19:57:43 +00:00
2006-06-24 05:13:54 +00:00
LuaFunction( LocalizeOptionItem, CommonMetrics::LocalizeOptionItem(SArg(1),true) );
2005-03-10 19:57:43 +00:00
2005-02-12 21:03:39 +00:00
/*
* (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.
*/