+ support o2mania style BMS (7 keys)
+ move notes to autokeysound when reducing tracks
This commit is contained in:
Thai Pangsakulyanont
2011-03-09 19:24:15 +07:00
139 changed files with 4637 additions and 1332 deletions
+14
View File
@@ -635,6 +635,20 @@ int NoteData::GetNumLifts( int iStartIndex, int iEndIndex ) const
return iNumLifts;
}
int NoteData::GetNumFakes( int iStartIndex, int iEndIndex ) const
{
int iNumFakes = 0;
for( int t=0; t<GetNumTracks(); t++ )
{
FOREACH_NONEMPTY_ROW_IN_TRACK_RANGE( *this, t, r, iStartIndex, iEndIndex )
if( GetTapNote(t, r).type == TapNote::fake )
iNumFakes++;
}
return iNumFakes;
}
/*
int NoteData::GetNumMinefields( int iStartIndex, int iEndIndex ) const
{