Files
itgmania212121/stepmania/src/BPMDisplay.cpp
T

222 lines
4.8 KiB
C++
Raw Normal View History

2003-02-16 04:01:45 +00:00
#include "global.h"
2001-12-28 10:15:59 +00:00
/*
-----------------------------------------------------------------------------
File: BPMDisplay.h
Desc: A graphic displayed in the BPMDisplay during Dancing.
2002-05-19 01:59:48 +00:00
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
2001-12-28 10:15:59 +00:00
-----------------------------------------------------------------------------
*/
#include "BPMDisplay.h"
#include "RageUtil.h"
2002-05-01 19:14:55 +00:00
#include "GameConstantsAndTypes.h"
2002-07-23 01:41:40 +00:00
#include "PrefsManager.h"
2002-08-28 22:42:40 +00:00
#include "GameState.h"
#include "ThemeManager.h"
2003-07-20 04:22:25 +00:00
#include "Course.h"
#include "StyleDef.h"
2001-12-28 10:15:59 +00:00
2003-11-14 18:37:45 +00:00
#define NORMAL_COLOR THEME->GetMetricC(m_sName,"NormalColor")
#define CHANGE_COLOR THEME->GetMetricC(m_sName,"ChangeColor")
#define EXTRA_COLOR THEME->GetMetricC(m_sName,"ExtraColor")
#define CYCLE THEME->GetMetricB(m_sName,"Cycle")
#define SEPARATOR THEME->GetMetric (m_sName,"Separator")
#define NO_BPM_TEXT THEME->GetMetric (m_sName,"NoBPMText")
2001-12-28 10:15:59 +00:00
BPMDisplay::BPMDisplay()
{
2003-07-20 04:22:25 +00:00
m_fBPMFrom = m_fBPMTo = 0;
m_iCurrentBPM = 0;
m_BPMS.push_back(0);
m_fPercentInState = 0;
m_fCycleTime = 1.0f;
}
2001-12-28 10:15:59 +00:00
void BPMDisplay::Load()
{
m_textBPM.SetName( "Text" );
m_textBPM.LoadFromFont( THEME->GetPathToN(m_sName) );
SET_XY_AND_ON_COMMAND( m_textBPM );
m_textBPM.SetDiffuse( NORMAL_COLOR );
this->AddChild( &m_textBPM );
2003-11-17 04:18:55 +00:00
m_sprLabel.Load( THEME->GetPathToG(ssprintf("%s label", m_sName.c_str())) );
m_sprLabel->SetName( "Label" );
SET_XY_AND_ON_COMMAND( m_sprLabel );
m_sprLabel->SetDiffuse( NORMAL_COLOR );
this->AddChild( m_sprLabel );
2001-12-28 10:15:59 +00:00
}
2003-07-20 04:22:25 +00:00
float BPMDisplay::GetActiveBPM() const
{
return m_fBPMTo + (m_fBPMFrom-m_fBPMTo)*m_fPercentInState;
}
2001-12-28 10:15:59 +00:00
void BPMDisplay::Update( float fDeltaTime )
{
ActorFrame::Update( fDeltaTime );
2003-07-20 04:22:25 +00:00
if( !CYCLE )
return;
2003-07-20 04:22:25 +00:00
if( m_BPMS.size() == 0 )
return; /* no bpm */
m_fPercentInState -= fDeltaTime / m_fCycleTime;
if( m_fPercentInState < 0 )
2001-12-28 10:15:59 +00:00
{
2003-03-30 19:30:54 +00:00
// go to next state
2003-07-20 04:22:25 +00:00
m_fPercentInState = 1; // reset timer
m_iCurrentBPM = (m_iCurrentBPM + 1) % m_BPMS.size();
m_fBPMFrom = m_fBPMTo;
m_fBPMTo = m_BPMS[m_iCurrentBPM];
if(m_fBPMTo == -1)
2001-12-28 10:15:59 +00:00
{
2003-07-20 04:22:25 +00:00
m_fBPMFrom = -1;
2003-03-30 18:12:57 +00:00
m_textBPM.SetText( (RandomFloat(0,1)>0.90) ? "xxx" : ssprintf("%03.0f",RandomFloat(0,600)) );
2003-07-20 04:22:25 +00:00
} else if(m_fBPMFrom == -1)
m_fBPMFrom = m_fBPMTo;
2001-12-28 10:15:59 +00:00
}
2003-03-30 19:30:54 +00:00
2003-07-20 04:22:25 +00:00
// update m_textBPM
if( m_fBPMTo != -1)
2001-12-28 10:15:59 +00:00
{
2003-07-20 04:22:25 +00:00
const float fActualBPM = GetActiveBPM();
m_textBPM.SetText( ssprintf("%03.0f", fActualBPM) );
2001-12-28 10:15:59 +00:00
}
}
void BPMDisplay::SetBPMRange( const DisplayBpms &bpms )
2001-12-28 10:15:59 +00:00
{
ASSERT( !bpms.vfBpms.empty() );
const vector<float> &BPMS = bpms.vfBpms;
2003-07-20 04:22:25 +00:00
unsigned i;
bool AllIdentical = true;
for( i = 0; i < BPMS.size(); ++i )
{
2003-07-21 20:11:13 +00:00
if( i > 0 && BPMS[i] != BPMS[i-1] )
2003-07-20 04:22:25 +00:00
AllIdentical = false;
}
if( !CYCLE )
{
int MinBPM=99999999;
int MaxBPM=-99999999;
for( i = 0; i < BPMS.size(); ++i )
{
MinBPM = min( MinBPM, (int) roundf(BPMS[i]) );
MaxBPM = max( MaxBPM, (int) roundf(BPMS[i]) );
}
if( MinBPM == MaxBPM )
2003-11-17 01:41:21 +00:00
{
if( MinBPM == -1 )
m_textBPM.SetText( "..." ); // random
else
m_textBPM.SetText( ssprintf("%i", MinBPM) );
}
else
m_textBPM.SetText( ssprintf("%i%s%i", MinBPM, SEPARATOR.c_str(), MaxBPM) );
} else {
m_BPMS.clear();
for( i = 0; i < BPMS.size(); ++i )
{
m_BPMS.push_back(BPMS[i]);
if( BPMS[i] != -1 )
m_BPMS.push_back(BPMS[i]); /* hold */
}
m_iCurrentBPM = min(1u, m_BPMS.size()); /* start on the first hold */
m_fBPMFrom = BPMS[0];
m_fBPMTo = BPMS[0];
m_fPercentInState = 1;
}
2001-12-28 10:15:59 +00:00
m_textBPM.StopTweening();
m_sprLabel->StopTweening();
2002-08-28 22:42:40 +00:00
m_textBPM.BeginTweening(0.5f);
m_sprLabel->BeginTweening(0.5f);
2002-08-28 22:42:40 +00:00
if( GAMESTATE->IsExtraStage() || GAMESTATE->IsExtraStage2() )
{
2003-04-12 06:16:12 +00:00
m_textBPM.SetDiffuse( EXTRA_COLOR );
m_sprLabel->SetDiffuse( EXTRA_COLOR );
2002-08-28 22:42:40 +00:00
}
2003-07-20 04:22:25 +00:00
else if( !AllIdentical )
2001-12-28 10:15:59 +00:00
{
2003-04-12 06:16:12 +00:00
m_textBPM.SetDiffuse( CHANGE_COLOR );
m_sprLabel->SetDiffuse( CHANGE_COLOR );
2001-12-28 10:15:59 +00:00
}
else
{
2003-04-12 06:16:12 +00:00
m_textBPM.SetDiffuse( NORMAL_COLOR );
m_sprLabel->SetDiffuse( NORMAL_COLOR );
2001-12-28 10:15:59 +00:00
}
2003-02-16 04:56:36 +00:00
}
2003-03-30 19:30:54 +00:00
void BPMDisplay::CycleRandomly()
{
DisplayBpms bpms;
bpms.Add(-1);
SetBPMRange( bpms );
2003-03-30 21:02:15 +00:00
2003-07-20 04:22:25 +00:00
m_fCycleTime = 0.2f;
2003-03-30 19:30:54 +00:00
}
void BPMDisplay::NoBPM()
{
2003-07-20 04:22:25 +00:00
m_BPMS.clear();
m_textBPM.SetText( NO_BPM_TEXT );
2003-03-30 21:02:15 +00:00
2003-04-12 06:16:12 +00:00
m_textBPM.SetDiffuse( NORMAL_COLOR );
m_sprLabel->SetDiffuse( NORMAL_COLOR );
2003-03-30 19:30:54 +00:00
}
void BPMDisplay::SetBPM( const Song* pSong )
{
ASSERT( pSong );
switch( pSong->m_DisplayBPMType )
{
case Song::DISPLAY_ACTUAL:
2003-07-20 04:22:25 +00:00
case Song::DISPLAY_SPECIFIED:
{
DisplayBpms bpms;
pSong->GetDisplayBpms( bpms );
SetBPMRange( bpms );
2003-07-20 05:08:32 +00:00
m_fCycleTime = 1.0f;
}
break;
case Song::DISPLAY_RANDOM:
2003-06-12 20:10:08 +00:00
CycleRandomly();
break;
default:
ASSERT(0);
}
2003-07-20 04:22:25 +00:00
}
void BPMDisplay::SetBPM( const Course* pCourse )
{
2003-07-21 20:11:13 +00:00
ASSERT( pCourse );
2003-07-20 04:22:25 +00:00
2004-05-24 06:07:59 +00:00
StepsType st = GAMESTATE->GetCurrentStyleDef()->m_StepsType;
Trail *pTrail = pCourse->GetTrail( st, COURSE_DIFFICULTY_REGULAR );
2003-07-20 04:22:25 +00:00
ASSERT( pTrail->m_vEntries.size() );
2003-07-20 04:22:25 +00:00
DisplayBpms bpms;
pTrail->GetDisplayBpms( bpms );
2003-07-20 04:22:25 +00:00
SetBPMRange( bpms );
2003-07-20 04:22:25 +00:00
m_fCycleTime = 0.2f;
}
void BPMDisplay::DrawPrimitives()
{
ActorFrame::DrawPrimitives();
}