re-wrote score/statistics tracking

This commit is contained in:
Chris Danford
2002-07-28 20:28:37 +00:00
parent e07060fa08
commit f9046674fb
59 changed files with 1027 additions and 910 deletions
+5 -1
View File
@@ -40,6 +40,10 @@ NoteData::~NoteData()
void NoteData::LoadFromSMNoteDataString( CString sSMNoteData )
{
int iNumTracks = m_iNumTracks;
NoteData::Init();
m_iNumTracks = iNumTracks;
// strip comments out of sSMNoteData
while( sSMNoteData.Find("//") != -1 )
{
@@ -780,7 +784,7 @@ float NoteData::GetAirRadarValue( float fSongSeconds )
float NoteData::GetChaosRadarValue( float fSongSeconds )
{
// count number of triplets
// count number of triplets or 16ths
int iNumChaosNotes = 0;
for( int r=0; r<MAX_TAP_NOTE_ROWS; r++ )
{