Files
itgmania212121/src/ScoreDisplayLifeTime.cpp
T

102 lines
3.5 KiB
C++
Raw Normal View History

2005-04-21 11:16:01 +00:00
#include "global.h"
#include "ScoreDisplayLifeTime.h"
#include "RageUtil.h"
#include "RageLog.h"
#include "PrefsManager.h"
#include "ThemeManager.h"
#include "PlayerState.h"
#include "PlayerStageStats.h"
2005-04-21 11:16:01 +00:00
#include "CommonMetrics.h"
#include "ActorUtil.h"
ScoreDisplayLifeTime::ScoreDisplayLifeTime()
{
LOG->Trace( "ScoreDisplayLifeTime::ScoreDisplayLifeTime()" );
}
void ScoreDisplayLifeTime::Init( const PlayerState* pPlayerState, const PlayerStageStats* pPlayerStageStats )
2005-04-21 11:16:01 +00:00
{
ScoreDisplay::Init( pPlayerState, pPlayerStageStats );
2005-04-21 11:16:01 +00:00
2006-01-22 01:00:06 +00:00
const RString sType = "ScoreDisplayLifeTime";
2005-04-21 11:16:01 +00:00
// TODO: Remove use of PlayerNumber.
PlayerNumber pn = pPlayerState->m_PlayerNumber;
m_sprFrame.Load( THEME->GetPathG(sType,"frame") );
m_sprFrame->SetName( "Frame" );
this->AddChild( m_sprFrame );
2007-02-19 09:30:07 +00:00
ActorUtil::LoadAllCommandsAndOnCommand( m_sprFrame, sType );
2005-04-21 11:16:01 +00:00
m_textTimeRemaining.LoadFromFont( THEME->GetPathF(sType, "TimeRemaining") );
m_textTimeRemaining.SetName( "TimeRemaining" );
this->AddChild( &m_textTimeRemaining );
2007-02-19 09:30:07 +00:00
ActorUtil::LoadAllCommandsAndOnCommand( m_textTimeRemaining, sType );
m_textTimeRemaining.RunCommands( CommonMetrics::PLAYER_COLOR.GetValue(pn) );
2005-04-21 11:16:01 +00:00
m_textDeltaSeconds.LoadFromFont( THEME->GetPathF(sType,"DeltaSeconds") );
m_textDeltaSeconds.SetName( "DeltaSeconds" );
this->AddChild( &m_textDeltaSeconds );
2007-02-19 09:30:07 +00:00
ActorUtil::LoadAllCommandsAndOnCommand( m_textDeltaSeconds, sType );
2005-04-21 11:16:01 +00:00
FOREACH_ENUM( TapNoteScore, tns )
2005-04-21 11:16:01 +00:00
{
2006-01-22 01:00:06 +00:00
const RString &sCommand = TapNoteScoreToString(tns);
2005-04-21 11:16:01 +00:00
if( !m_textDeltaSeconds.HasCommand( sCommand ) )
ActorUtil::LoadCommand( m_textDeltaSeconds, sType, sCommand );
}
FOREACH_ENUM( HoldNoteScore, hns )
2005-04-21 11:16:01 +00:00
{
2006-01-22 01:00:06 +00:00
const RString &sCommand = HoldNoteScoreToString(hns);
2005-04-21 11:16:01 +00:00
if( !m_textDeltaSeconds.HasCommand( sCommand ) )
ActorUtil::LoadCommand( m_textDeltaSeconds, sType, sCommand );
}
}
void ScoreDisplayLifeTime::Update( float fDelta )
{
ScoreDisplay::Update( fDelta );
float fSecs = m_pPlayerStageStats->m_fLifeRemainingSeconds;
2005-04-21 11:16:01 +00:00
2006-01-22 01:00:06 +00:00
RString s = SecondsToMSSMsMs(fSecs);
2005-05-07 16:45:51 +00:00
m_textTimeRemaining.SetText( s );
2005-04-21 11:16:01 +00:00
}
void ScoreDisplayLifeTime::OnLoadSong()
{
}
void ScoreDisplayLifeTime::OnJudgment( TapNoteScore tns )
{
}
void ScoreDisplayLifeTime::OnJudgment( HoldNoteScore hns, TapNoteScore tns )
{
}
2005-04-21 11:16:01 +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.
*/