[ScoreDisplayRave] Add FrameBase and FrameOver to the metrics.

This commit is contained in:
AJ Kelly
2012-07-06 13:09:18 -05:00
parent 3f16433261
commit d1c2e3ad02
3 changed files with 117 additions and 91 deletions
+4
View File
@@ -8,6 +8,10 @@ ________________________________________________________________________________
StepMania 5.0 ???? ?? | 20120???
--------------------------------------------------------------------------------
2012/07/06
----------
* [ScoreDisplayRave] Add FrameBase and FrameOver to the metrics. [AJ]
2012/07/05
----------
* [ScreenRanking] Added "NextPage" command. "SwitchPage" command is
+18
View File
@@ -1322,6 +1322,24 @@ LevelP2Y=
LevelP2OnCommand=
LevelP2OffCommand=
FrameBaseP1X=
FrameBaseP1Y=
FrameBaseP1OnCommand=
FrameBaseP1OffCommand=
FrameBaseP2X=
FrameBaseP2Y=
FrameBaseP2OnCommand=
FrameBaseP2OffCommand=
FrameOverP1X=
FrameOverP1Y=
FrameOverP1OnCommand=
FrameOverP1OffCommand=
FrameOverP2X=
FrameOverP2Y=
FrameOverP2OnCommand=
FrameOverP2OffCommand=
[ScoreKeeperRave]
AttackDurationSeconds=3.0
+4
View File
@@ -30,6 +30,8 @@ void ScoreDisplayRave::Init( const PlayerState* pPlayerState, const PlayerStageS
PlayerNumber pn = pPlayerState->m_PlayerNumber;
m_sprFrameBase.Load( THEME->GetPathG("ScoreDisplayRave",ssprintf("frame base p%d",pn+1)) );
m_sprFrameBase->SetName( ssprintf("FrameBaseP%d",pn+1) );
LOAD_ALL_COMMANDS_AND_SET_XY( m_sprFrameBase );
this->AddChild( m_sprFrameBase );
for( int i=0; i<NUM_ATTACK_LEVELS; i++ )
@@ -44,6 +46,8 @@ void ScoreDisplayRave::Init( const PlayerState* pPlayerState, const PlayerStageS
this->AddChild( &m_textLevel );
m_sprFrameOverlay.Load( THEME->GetPathG("ScoreDisplayRave",ssprintf("frame overlay p%d",pn+1)) );
m_sprFrameOverlay->SetName( ssprintf("FrameOverP%d",pn+1) );
LOAD_ALL_COMMANDS_AND_SET_XY( m_sprFrameOverlay );
this->AddChild( m_sprFrameOverlay );
}