2010-01-26 21:00:30 -06:00
|
|
|
#include "global.h"
|
|
|
|
|
#include "NotesLoaderKSF.h"
|
|
|
|
|
#include "RageUtil_CharConversions.h"
|
|
|
|
|
#include "MsdFile.h"
|
|
|
|
|
#include "RageLog.h"
|
|
|
|
|
#include "RageUtil.h"
|
|
|
|
|
#include "NoteData.h"
|
|
|
|
|
#include "NoteTypes.h"
|
|
|
|
|
#include "Song.h"
|
|
|
|
|
#include "Steps.h"
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
static void RemoveHoles( NoteData &out, const Song &song )
|
|
|
|
|
{
|
2010-06-27 11:45:30 -05:00
|
|
|
// Start at the second BPM segment; the first one is already aligned.
|
2010-01-26 21:00:30 -06:00
|
|
|
for( unsigned seg = 1; seg < song.m_Timing.m_BPMSegments.size(); ++seg )
|
|
|
|
|
{
|
|
|
|
|
// const float FromBeat = song.m_Timing.m_BPMSegments[seg].m_fStartBeat;
|
|
|
|
|
const float FromBeat = song.m_Timing.m_BPMSegments[seg].m_fStartBeat * song.m_BPMSegments[seg].m_fBPM / song.m_BPMSegments[0].m_fBPM;
|
|
|
|
|
const int FromRow = (int) BeatToNoteRow(FromBeat);
|
|
|
|
|
const int ToRow = (int) BeatToNoteRow(song.m_Timing.m_BPMSegments[seg].m_fStartBeat);
|
|
|
|
|
|
|
|
|
|
LOG->Trace("from %f (%i) to (%i)", FromBeat, FromRow, ToRow);
|
|
|
|
|
// const int ToRow = lrintf(FromRow * song.m_Timing.m_BPMSegments[0].m_fBPM / song.m_BPMSegments[seg].m_fBPM);
|
|
|
|
|
// const int Rows = out.GetLastRow() - FromRow + 1;
|
|
|
|
|
// int LastRow;
|
|
|
|
|
// if(seg+1 < song.m_Timing.m_BPMSegments().size())
|
|
|
|
|
// LastRow = (int) NoteRowToBeat( song.m_Timing.m_BPMSegments[seg+1].m_fStartBeat ) - 1;
|
|
|
|
|
// else
|
|
|
|
|
// LastRow = out.GetLastRow();
|
|
|
|
|
NoteData tmp;
|
|
|
|
|
tmp.SetNumTracks( out.GetNumTracks() );
|
|
|
|
|
tmp.CopyRange( &out, FromRow, MAX_NOTE_ROW );
|
|
|
|
|
out.ClearRange( FromRow, MAX_NOTE_ROW );
|
|
|
|
|
out.CopyRange( &tmp, 0, MAX_NOTE_ROW, ToRow );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
for( t = 0; t < notedata.GetNumTracks(); ++t )
|
|
|
|
|
{
|
|
|
|
|
const float CurBPM = song.GetBPMAtBeat( NoteRowToBeat(row) );
|
|
|
|
|
song.m_Timing.m_BPMSegments.size()
|
|
|
|
|
for( int row = 0; row <= notedata.GetLastRow(); ++row )
|
|
|
|
|
{
|
|
|
|
|
TapNote tn = notedata.GetTapNote(t, row);
|
|
|
|
|
if( tn == TAP_EMPTY )
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
const int RealRow = lrintf(row * OrigBPM / CurBPM);
|
|
|
|
|
if( RealRow == row )
|
|
|
|
|
continue;
|
|
|
|
|
LOG->Trace("from %i to %i", row, RealRow);
|
|
|
|
|
notedata.SetTapNote( t, RealRow, tn );
|
|
|
|
|
notedata.SetTapNote( t, row, TAP_EMPTY );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
static bool LoadFromKSFFile( const RString &sPath, Steps &out, const Song &song, bool bKIUCompliant )
|
|
|
|
|
{
|
|
|
|
|
LOG->Trace( "Steps::LoadFromKSFFile( '%s' )", sPath.c_str() );
|
|
|
|
|
|
|
|
|
|
MsdFile msd;
|
|
|
|
|
if( !msd.ReadFile( sPath, false ) ) // don't unescape
|
|
|
|
|
{
|
|
|
|
|
LOG->UserLog( "Song file", sPath, "couldn't be opened: %s", msd.GetError().c_str() );
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int iTickCount = -1; // this is the value we read for TICKCOUNT
|
|
|
|
|
vector<RString> vNoteRows;
|
|
|
|
|
|
2010-06-27 11:45:30 -05:00
|
|
|
// According to Aldo_MX, there is a default BPM and it's 60. -aj
|
|
|
|
|
bool bDoublesChart = false;
|
|
|
|
|
|
2010-01-26 21:00:30 -06:00
|
|
|
for( unsigned i=0; i<msd.GetNumValues(); i++ )
|
|
|
|
|
{
|
|
|
|
|
const MsdFile::value_t &sParams = msd.GetValue( i );
|
|
|
|
|
RString sValueName = sParams[0];
|
|
|
|
|
|
|
|
|
|
// handle the data
|
|
|
|
|
if( 0==stricmp(sValueName,"TICKCOUNT") )
|
|
|
|
|
{
|
|
|
|
|
iTickCount = atoi( sParams[1] );
|
|
|
|
|
if( iTickCount <= 0 )
|
|
|
|
|
{
|
|
|
|
|
LOG->UserLog( "Song file", sPath, "has an invalid tick count: %d.", iTickCount );
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if( 0==stricmp(sValueName,"STEP") )
|
|
|
|
|
{
|
|
|
|
|
RString theSteps = sParams[1];
|
|
|
|
|
TrimLeft( theSteps );
|
|
|
|
|
split( theSteps, "\n", vNoteRows, true );
|
|
|
|
|
}
|
|
|
|
|
else if( 0==stricmp(sValueName,"DIFFICULTY") )
|
|
|
|
|
{
|
|
|
|
|
out.SetMeter( max(atoi(sParams[1]), 0) );
|
|
|
|
|
}
|
2010-06-27 11:45:30 -05:00
|
|
|
// new cases from Aldo_MX's fork:
|
|
|
|
|
else if( 0==stricmp(sValueName,"PLAYER") )
|
|
|
|
|
{
|
|
|
|
|
RString player = sParams[1];
|
|
|
|
|
player.ToLower();
|
|
|
|
|
if( player.Find( "double" ) != -1 )
|
|
|
|
|
bDoublesChart = true;
|
|
|
|
|
}
|
2010-01-26 21:00:30 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( iTickCount == -1 )
|
|
|
|
|
{
|
2010-04-20 23:06:37 -05:00
|
|
|
iTickCount = 2; // Direct Move 0.5 has a default value of 4... -aj
|
2010-01-26 21:00:30 -06:00
|
|
|
LOG->UserLog( "Song file", sPath, "doesn't have a TICKCOUNT. Defaulting to %i.", iTickCount );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NoteData notedata; // read it into here
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
RString sDir, sFName, sExt;
|
|
|
|
|
splitpath( sPath, sDir, sFName, sExt );
|
|
|
|
|
sFName.MakeLower();
|
|
|
|
|
|
|
|
|
|
out.SetDescription(sFName);
|
|
|
|
|
if( sFName.find("crazy") != string::npos || sFName.find("nightmare") != string::npos ||
|
|
|
|
|
sFName.find("crazydouble") != string::npos )
|
|
|
|
|
{
|
|
|
|
|
out.SetDifficulty( Difficulty_Hard );
|
|
|
|
|
if( !out.GetMeter() ) out.SetMeter( 14 ); // Set the meters to the Pump scale, not DDR.
|
|
|
|
|
}
|
|
|
|
|
else if( sFName.find("hard") != string::npos || sFName.find("freestyle") != string::npos ||
|
|
|
|
|
sFName.find("double") != string::npos )
|
|
|
|
|
{
|
|
|
|
|
out.SetDifficulty( Difficulty_Medium );
|
|
|
|
|
if( !out.GetMeter() ) out.SetMeter( 8 );
|
|
|
|
|
}
|
|
|
|
|
else if( sFName.find("easy") != string::npos || sFName.find("normal") != string::npos )
|
|
|
|
|
{
|
|
|
|
|
out.SetDifficulty( Difficulty_Easy );
|
|
|
|
|
if( !out.GetMeter() ) out.SetMeter( 4 );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
out.SetDifficulty( Difficulty_Medium );
|
|
|
|
|
if( !out.GetMeter() ) out.SetMeter( 8 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
out.m_StepsType = StepsType_pump_single;
|
|
|
|
|
|
2010-06-27 11:45:30 -05:00
|
|
|
// Check for "halfdouble" before "double".
|
2010-01-26 21:00:30 -06:00
|
|
|
if( sFName.find("halfdouble") != string::npos || sFName.find("h_double") != string::npos )
|
|
|
|
|
out.m_StepsType = StepsType_pump_halfdouble;
|
2010-06-27 11:45:30 -05:00
|
|
|
// Handle bDoublesChart from above as well. -aj
|
|
|
|
|
else if( sFName.find("double") != string::npos || sFName.find("nightmare") != string::npos || sFName.find("freestyle") != string::npos || bDoublesChart )
|
2010-01-26 21:00:30 -06:00
|
|
|
out.m_StepsType = StepsType_pump_double;
|
|
|
|
|
else if( sFName.find("_1") != string::npos )
|
|
|
|
|
out.m_StepsType = StepsType_pump_single;
|
|
|
|
|
else if( sFName.find("_2") != string::npos )
|
|
|
|
|
out.m_StepsType = StepsType_pump_couple;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch( out.m_StepsType )
|
|
|
|
|
{
|
|
|
|
|
case StepsType_pump_single: notedata.SetNumTracks( 5 ); break;
|
|
|
|
|
case StepsType_pump_couple: notedata.SetNumTracks( 10 ); break;
|
|
|
|
|
case StepsType_pump_double: notedata.SetNumTracks( 10 ); break;
|
|
|
|
|
case StepsType_pump_halfdouble: notedata.SetNumTracks( 6 ); break;
|
|
|
|
|
default: FAIL_M( ssprintf("%i", out.m_StepsType) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int t = 0;
|
|
|
|
|
int iHoldStartRow[13];
|
|
|
|
|
for( t=0; t<13; t++ )
|
|
|
|
|
iHoldStartRow[t] = -1;
|
|
|
|
|
|
|
|
|
|
bool bTickChangeNeeded = false;
|
|
|
|
|
int newTick = -1;
|
|
|
|
|
float fCurBeat = 0.0f;
|
|
|
|
|
float prevBeat = 0.0f; // Used for hold tails.
|
|
|
|
|
for( unsigned r=0; r<vNoteRows.size(); r++ )
|
|
|
|
|
{
|
|
|
|
|
RString& sRowString = vNoteRows[r];
|
|
|
|
|
StripCrnl( sRowString );
|
|
|
|
|
|
|
|
|
|
if( sRowString == "" )
|
|
|
|
|
continue; // skip
|
|
|
|
|
|
|
|
|
|
// All 2s indicates the end of the song.
|
|
|
|
|
if( sRowString == "2222222222222" )
|
|
|
|
|
{
|
|
|
|
|
// Finish any holds that didn't get...well, finished.
|
|
|
|
|
for( t=0; t < notedata.GetNumTracks(); t++ )
|
|
|
|
|
{
|
|
|
|
|
if( iHoldStartRow[t] != -1 ) // this ends the hold
|
|
|
|
|
{
|
|
|
|
|
if( iHoldStartRow[t] == BeatToNoteRow(prevBeat) )
|
|
|
|
|
notedata.SetTapNote( t, iHoldStartRow[t], TAP_ORIGINAL_TAP );
|
|
|
|
|
else
|
|
|
|
|
notedata.AddHoldNote( t, iHoldStartRow[t], BeatToNoteRow(prevBeat) , TAP_ORIGINAL_HOLD_HEAD );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( sRowString.size() != 13 )
|
|
|
|
|
{
|
|
|
|
|
if( bKIUCompliant )
|
|
|
|
|
{
|
|
|
|
|
LOG->UserLog( "Song file", sPath, "has illegal syntax \"%s\" which can't be in KIU complient files.",
|
|
|
|
|
sRowString.c_str() );
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if( BeginsWith(sRowString, "|B") || BeginsWith(sRowString, "|D") || BeginsWith(sRowString, "|E") )
|
|
|
|
|
{
|
|
|
|
|
// These don't have to be worried about here: the changes and stops were already added.
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if ( BeginsWith(sRowString, "|T") )
|
|
|
|
|
{
|
|
|
|
|
RString temp = sRowString.substr(2,sRowString.size()-3);
|
|
|
|
|
newTick = atoi(temp);
|
|
|
|
|
bTickChangeNeeded = true;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
LOG->UserLog( "Song file", sPath, "has a RowString with an improper length \"%s\"; corrupt notes ignored.",
|
|
|
|
|
sRowString.c_str() );
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-27 11:45:30 -05:00
|
|
|
// Half-doubles is offset; "0011111100000".
|
2010-01-26 21:00:30 -06:00
|
|
|
if( out.m_StepsType == StepsType_pump_halfdouble )
|
|
|
|
|
sRowString.erase( 0, 2 );
|
|
|
|
|
|
|
|
|
|
// Update TICKCOUNT for Direct Move files.
|
|
|
|
|
if( bTickChangeNeeded )
|
|
|
|
|
{
|
|
|
|
|
iTickCount = newTick;
|
|
|
|
|
bTickChangeNeeded = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for( t=0; t < notedata.GetNumTracks(); t++ )
|
|
|
|
|
{
|
|
|
|
|
if( sRowString[t] == '4' )
|
|
|
|
|
{
|
|
|
|
|
/* Remember when each hold starts; ignore the middle. */
|
|
|
|
|
if( iHoldStartRow[t] == -1 )
|
|
|
|
|
iHoldStartRow[t] = BeatToNoteRow(fCurBeat);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( iHoldStartRow[t] != -1 ) // this ends the hold
|
|
|
|
|
{
|
|
|
|
|
int iEndRow = BeatToNoteRow(prevBeat);
|
|
|
|
|
if( iHoldStartRow[t] == iEndRow )
|
|
|
|
|
notedata.SetTapNote( t, iHoldStartRow[t], TAP_ORIGINAL_TAP );
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
//notedata.AddHoldNote( t, iHoldStartRow[t], iEndRow , TAP_ORIGINAL_PUMP_HEAD );
|
|
|
|
|
notedata.AddHoldNote( t, iHoldStartRow[t], iEndRow , TAP_ORIGINAL_HOLD_HEAD );
|
|
|
|
|
}
|
|
|
|
|
iHoldStartRow[t] = -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TapNote tap;
|
|
|
|
|
switch( sRowString[t] )
|
|
|
|
|
{
|
|
|
|
|
case '0': tap = TAP_EMPTY; break;
|
|
|
|
|
case '1': tap = TAP_ORIGINAL_TAP; break;
|
|
|
|
|
default:
|
|
|
|
|
LOG->UserLog( "Song file", sPath, "has an invalid row \"%s\"; corrupt notes ignored.",
|
|
|
|
|
sRowString.c_str() );
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
notedata.SetTapNote(t, BeatToNoteRow(fCurBeat), tap);
|
|
|
|
|
}
|
|
|
|
|
prevBeat = fCurBeat;
|
|
|
|
|
fCurBeat = prevBeat + 1.0f / iTickCount;
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-27 11:45:30 -05:00
|
|
|
// We need to remove holes where the BPM increases.
|
2010-01-26 21:00:30 -06:00
|
|
|
// if( song.m_Timing.m_BPMSegments.size() > 1 )
|
|
|
|
|
// RemoveHoles( notedata, song );
|
|
|
|
|
|
|
|
|
|
out.SetNoteData( notedata );
|
|
|
|
|
|
|
|
|
|
out.TidyUpData();
|
|
|
|
|
|
|
|
|
|
out.SetSavedToDisk( true ); // we're loading from disk, so this is by definintion already saved
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void LoadTags( const RString &str, Song &out )
|
|
|
|
|
{
|
|
|
|
|
/* str is either a #TITLE or a directory component. Fill in missing information.
|
|
|
|
|
* str is either "title", "artist - title", or "artist - title - difficulty". */
|
|
|
|
|
vector<RString> asBits;
|
|
|
|
|
split( str, " - ", asBits, false );
|
2010-06-27 11:45:30 -05:00
|
|
|
// Ignore the difficulty, since we get that elsewhere.
|
2010-01-26 21:00:30 -06:00
|
|
|
if( asBits.size() == 3 && (
|
|
|
|
|
!stricmp(asBits[2], "double") ||
|
|
|
|
|
!stricmp(asBits[2], "easy") ||
|
|
|
|
|
!stricmp(asBits[2], "normal") ||
|
|
|
|
|
!stricmp(asBits[2], "hard") ||
|
|
|
|
|
!stricmp(asBits[2], "crazy") ||
|
|
|
|
|
!stricmp(asBits[2], "nightmare"))
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
asBits.erase( asBits.begin()+2, asBits.begin()+3 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RString title, artist;
|
|
|
|
|
if( asBits.size() == 2 )
|
|
|
|
|
{
|
|
|
|
|
artist = asBits[0];
|
|
|
|
|
title = asBits[1];
|
|
|
|
|
}
|
|
|
|
|
else if( asBits.size() == 1 )
|
|
|
|
|
{
|
|
|
|
|
title = asBits[0];
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-27 11:45:30 -05:00
|
|
|
// Convert, if possible. Most KSFs are in Korean encodings (CP942/EUC-KR).
|
2010-01-26 21:00:30 -06:00
|
|
|
if( !ConvertString( title, "korean" ) )
|
|
|
|
|
title = "";
|
|
|
|
|
if( !ConvertString( artist, "korean" ) )
|
|
|
|
|
artist = "";
|
|
|
|
|
|
|
|
|
|
if( out.m_sMainTitle == "" )
|
|
|
|
|
out.m_sMainTitle = title;
|
|
|
|
|
if( out.m_sArtist == "" )
|
|
|
|
|
out.m_sArtist = artist;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool LoadGlobalData( const RString &sPath, Song &out, bool &bKIUCompliant )
|
|
|
|
|
{
|
|
|
|
|
MsdFile msd;
|
|
|
|
|
if( !msd.ReadFile( sPath, false ) ) // don't unescape
|
|
|
|
|
{
|
|
|
|
|
LOG->UserLog( "Song file", sPath, "couldn't be opened: %s", msd.GetError().c_str() );
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float SMGap1 = 0, SMGap2 = 0, BPM1 = -1, BPMPos2 = -1, BPM2 = -1, BPMPos3 = -1, BPM3 = -1;
|
|
|
|
|
int iTickCount = -1;
|
|
|
|
|
bKIUCompliant = false;
|
|
|
|
|
vector<RString> vNoteRows;
|
|
|
|
|
|
|
|
|
|
for( unsigned i=0; i < msd.GetNumValues(); i++ )
|
|
|
|
|
{
|
|
|
|
|
const MsdFile::value_t &sParams = msd.GetValue(i);
|
|
|
|
|
RString sValueName = sParams[0];
|
|
|
|
|
|
|
|
|
|
// handle the data
|
|
|
|
|
if( 0==stricmp(sValueName,"TITLE") )
|
|
|
|
|
LoadTags(sParams[1], out);
|
|
|
|
|
else if( 0==stricmp(sValueName,"BPM") )
|
|
|
|
|
{
|
|
|
|
|
BPM1 = StringToFloat(sParams[1]);
|
|
|
|
|
out.AddBPMSegment( BPMSegment(0, BPM1) );
|
|
|
|
|
}
|
|
|
|
|
else if( 0==stricmp(sValueName,"BPM2") )
|
|
|
|
|
{
|
|
|
|
|
bKIUCompliant = true;
|
|
|
|
|
BPM2 = StringToFloat( sParams[1] );
|
|
|
|
|
}
|
|
|
|
|
else if( 0==stricmp(sValueName,"BPM3") )
|
|
|
|
|
{
|
|
|
|
|
bKIUCompliant = true;
|
|
|
|
|
BPM3 = StringToFloat( sParams[1] );
|
|
|
|
|
}
|
|
|
|
|
else if( 0==stricmp(sValueName,"BUNKI") )
|
|
|
|
|
{
|
|
|
|
|
bKIUCompliant = true;
|
|
|
|
|
BPMPos2 = StringToFloat( sParams[1] ) / 100.0f;
|
|
|
|
|
}
|
|
|
|
|
else if( 0==stricmp(sValueName,"BUNKI2") )
|
|
|
|
|
{
|
|
|
|
|
bKIUCompliant = true;
|
|
|
|
|
BPMPos3 = StringToFloat( sParams[1] ) / 100.0f;
|
|
|
|
|
}
|
|
|
|
|
else if( 0==stricmp(sValueName,"STARTTIME") )
|
|
|
|
|
{
|
|
|
|
|
SMGap1 = -StringToFloat( sParams[1] )/100;
|
|
|
|
|
out.m_Timing.m_fBeat0OffsetInSeconds = SMGap1;
|
|
|
|
|
}
|
|
|
|
|
// This is currently required for more accurate KIU BPM changes.
|
|
|
|
|
else if( 0==stricmp(sValueName,"STARTTIME2") )
|
|
|
|
|
{
|
|
|
|
|
bKIUCompliant = true;
|
|
|
|
|
SMGap2 = -StringToFloat( sParams[1] )/100;
|
|
|
|
|
}
|
|
|
|
|
else if ( 0==stricmp(sValueName,"STARTTIME3") )
|
|
|
|
|
{
|
|
|
|
|
// STARTTIME3 only ensures this is a KIU compliant simfile.
|
|
|
|
|
bKIUCompliant = true;
|
|
|
|
|
}
|
|
|
|
|
else if ( 0==stricmp(sValueName,"TICKCOUNT") )
|
|
|
|
|
{
|
2010-04-20 23:06:37 -05:00
|
|
|
/* TICKCOUNT will be used below if there are DM compliant BPM changes
|
|
|
|
|
* and stops. It will be called again in LoadFromKSFFile for the
|
|
|
|
|
* actual steps. */
|
2010-01-26 21:00:30 -06:00
|
|
|
iTickCount = atoi( sParams[1] );
|
2010-04-20 23:06:37 -05:00
|
|
|
iTickCount = iTickCount > 0 ? iTickCount : 2; // again, Direct Move uses 4 as a default.
|
|
|
|
|
// add a time signature for those using the [Player]
|
|
|
|
|
// CheckpointsUseTimeSignatures metric. -aj
|
|
|
|
|
TimeSignatureSegment seg;
|
|
|
|
|
seg.m_iStartRow = BeatToNoteRow(0.0f);
|
|
|
|
|
seg.m_iNumerator = iTickCount;
|
|
|
|
|
seg.m_iDenominator = 4;
|
|
|
|
|
out.m_Timing.AddTimeSignatureSegment( seg );
|
2010-01-26 21:00:30 -06:00
|
|
|
}
|
|
|
|
|
else if ( 0==stricmp(sValueName,"STEP") )
|
|
|
|
|
{
|
2010-04-20 23:06:37 -05:00
|
|
|
/* STEP will always be the last header in a KSF file by design. Due to
|
2010-01-26 21:00:30 -06:00
|
|
|
* the Direct Move syntax, it is best to get the rows of notes here. */
|
|
|
|
|
RString theSteps = sParams[1];
|
|
|
|
|
TrimLeft( theSteps );
|
|
|
|
|
split( theSteps, "\n", vNoteRows, true );
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-27 11:45:30 -05:00
|
|
|
else if( 0==stricmp(sValueName,"DIFFICULTY") )
|
2010-01-26 21:00:30 -06:00
|
|
|
{
|
|
|
|
|
/* DIFFICULTY is handled only in LoadFromKSFFile. Ignore it here. */
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2010-06-27 11:45:30 -05:00
|
|
|
// New cases noted in Aldo_MX's code:
|
|
|
|
|
else if( 0==stricmp(sValueName,"MUSICINTRO") || 0==stricmp(sValueName,"INTRO") )
|
|
|
|
|
{
|
|
|
|
|
out.m_fMusicSampleStartSeconds = HHMMSSToSeconds( sParams[1] );
|
|
|
|
|
}
|
|
|
|
|
// end new cases
|
2010-01-26 21:00:30 -06:00
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
LOG->UserLog( "Song file", sPath, "has an unexpected value named \"%s\".",
|
|
|
|
|
sValueName.c_str() );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* BPM Change checks are done here. If bKIUCompliant, it's short and sweet.
|
|
|
|
|
* Otherwise, the whole file has to be processed. Right now, this is only
|
|
|
|
|
* called once, for the initial file (often the Crazy steps). Hopefully that
|
|
|
|
|
* will end up changing soon. */
|
|
|
|
|
if( bKIUCompliant )
|
|
|
|
|
{
|
|
|
|
|
if( BPM2 > 0 && BPMPos2 > 0 )
|
|
|
|
|
{
|
|
|
|
|
const float BeatsPerSecond = BPM1 / 60.0f;
|
|
|
|
|
const float beat = (BPMPos2 + SMGap1) * BeatsPerSecond;
|
|
|
|
|
LOG->Trace( "BPM %f, BPS %f, BPMPos2 %f, beat %f",
|
|
|
|
|
BPM1, BeatsPerSecond, BPMPos2, beat );
|
|
|
|
|
out.AddBPMSegment( BPMSegment(BeatToNoteRow(beat), BPM2) );
|
|
|
|
|
}
|
2010-06-27 11:45:30 -05:00
|
|
|
|
2010-01-26 21:00:30 -06:00
|
|
|
if( BPM3 > 0 && BPMPos3 > 0 )
|
|
|
|
|
{
|
|
|
|
|
const float BeatsPerSecond = BPM2 / 60.0f;
|
|
|
|
|
//The line below isn't perfect, but works better than previous versions.
|
|
|
|
|
const float beat = (BPMPos3 + SMGap2) * BeatsPerSecond;
|
|
|
|
|
LOG->Trace( "BPM %f, BPS %f, BPMPos3 %f, beat %f",
|
|
|
|
|
BPM2, BeatsPerSecond, BPMPos3, beat );
|
|
|
|
|
out.AddBPMSegment( BPMSegment(BeatToNoteRow(beat), BPM3) );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int tickToChange = iTickCount;
|
|
|
|
|
float fCurBeat = 0.0f;
|
|
|
|
|
float speedToChange = 0.0f, timeToStop = 0.0f;
|
|
|
|
|
bool bDMRequired = false;
|
|
|
|
|
bool bBPMChangeNeeded = false;
|
|
|
|
|
bool bBPMStopNeeded = false;
|
|
|
|
|
bool bTickChangeNeeded = false;
|
|
|
|
|
|
|
|
|
|
for( unsigned i=0; i < vNoteRows.size(); ++i )
|
|
|
|
|
{
|
|
|
|
|
RString& NoteRowString = vNoteRows[i];
|
|
|
|
|
StripCrnl( NoteRowString );
|
|
|
|
|
|
|
|
|
|
if( NoteRowString == "" )
|
2010-04-20 23:06:37 -05:00
|
|
|
continue; // ignore empty rows.
|
2010-01-26 21:00:30 -06:00
|
|
|
|
2010-04-20 23:06:37 -05:00
|
|
|
if( NoteRowString == "2222222222222" ) // Row of 2s = end. Confirm KIUCompliency here.
|
2010-01-26 21:00:30 -06:00
|
|
|
{
|
|
|
|
|
if (!bDMRequired)
|
|
|
|
|
bKIUCompliant = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-20 23:06:37 -05:00
|
|
|
// This is where the DMRequired test will take place.
|
2010-01-26 21:00:30 -06:00
|
|
|
if( NoteRowString.size() != 13)
|
|
|
|
|
{
|
|
|
|
|
if (BeginsWith(NoteRowString, "|T") || BeginsWith(NoteRowString, "|B") ||
|
|
|
|
|
BeginsWith(NoteRowString, "|D") || BeginsWith(NoteRowString, "|E") )
|
|
|
|
|
{
|
|
|
|
|
bDMRequired = true;
|
|
|
|
|
RString temp = NoteRowString.substr(2,NoteRowString.size()-3);
|
|
|
|
|
float numTemp = StringToFloat(temp);
|
|
|
|
|
if (BeginsWith(NoteRowString, "|T"))
|
|
|
|
|
{
|
|
|
|
|
bTickChangeNeeded = true;
|
|
|
|
|
tickToChange = (int)numTemp;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if (BeginsWith(NoteRowString, "|B"))
|
|
|
|
|
{
|
|
|
|
|
bBPMChangeNeeded = true;
|
|
|
|
|
speedToChange = numTemp;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if (BeginsWith(NoteRowString, "|E"))
|
|
|
|
|
{
|
|
|
|
|
bBPMStopNeeded = true;
|
|
|
|
|
timeToStop = (60 / out.m_Timing.GetBPMAtBeat(NoteRowToBeat(i)) * numTemp) / (float)iTickCount;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
else if (BeginsWith(NoteRowString, "|D"))
|
|
|
|
|
{
|
|
|
|
|
bBPMStopNeeded = true;
|
|
|
|
|
timeToStop = numTemp / 1000.0f;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2010-04-20 23:06:37 -05:00
|
|
|
// Quit while we're ahead if any bad syntax is spotted.
|
2010-01-26 21:00:30 -06:00
|
|
|
LOG->UserLog( "Song file", sPath, "has an invalid RowString \"%s\".",
|
|
|
|
|
NoteRowString.c_str() );
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( bTickChangeNeeded )
|
|
|
|
|
{
|
|
|
|
|
iTickCount = tickToChange;
|
2010-04-20 23:06:37 -05:00
|
|
|
LOG->Trace( "Adding time signature of %i/4 at beat %f", iTickCount, fCurBeat );
|
|
|
|
|
TimeSignatureSegment seg;
|
|
|
|
|
seg.m_iStartRow = BeatToNoteRow(fCurBeat);
|
|
|
|
|
seg.m_iNumerator = iTickCount;
|
|
|
|
|
seg.m_iDenominator = 4;
|
|
|
|
|
out.m_Timing.AddTimeSignatureSegment( seg );
|
2010-01-26 21:00:30 -06:00
|
|
|
bTickChangeNeeded = false;
|
|
|
|
|
}
|
|
|
|
|
if( bBPMChangeNeeded )
|
|
|
|
|
{
|
|
|
|
|
LOG->Trace( "Adding tempo change of %f BPM at beat %f", speedToChange, fCurBeat );
|
|
|
|
|
out.AddBPMSegment( BPMSegment(BeatToNoteRow(fCurBeat), speedToChange) );
|
|
|
|
|
bBPMChangeNeeded = false;
|
|
|
|
|
}
|
|
|
|
|
if( bBPMStopNeeded )
|
|
|
|
|
{
|
|
|
|
|
LOG->Trace( "Adding delay of %f seconds at beat %f", timeToStop, fCurBeat );
|
|
|
|
|
out.AddStopSegment( StopSegment(BeatToNoteRow(fCurBeat),timeToStop,true) );
|
|
|
|
|
bBPMStopNeeded = false;
|
|
|
|
|
}
|
|
|
|
|
fCurBeat += 1.0f / iTickCount;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-20 23:06:37 -05:00
|
|
|
// Try to fill in missing bits of information from the pathname.
|
2010-01-26 21:00:30 -06:00
|
|
|
{
|
|
|
|
|
vector<RString> asBits;
|
|
|
|
|
split( sPath, "/", asBits, true);
|
|
|
|
|
|
|
|
|
|
ASSERT( asBits.size() > 1 );
|
|
|
|
|
LoadTags( asBits[asBits.size()-2], out );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// search for music with song in the file name
|
|
|
|
|
vector<RString> arrayPossibleMusic;
|
|
|
|
|
GetDirListing( out.GetSongDir() + RString("song.mp3"), arrayPossibleMusic );
|
|
|
|
|
GetDirListing( out.GetSongDir() + RString("song.oga"), arrayPossibleMusic );
|
|
|
|
|
GetDirListing( out.GetSongDir() + RString("song.ogg"), arrayPossibleMusic );
|
|
|
|
|
GetDirListing( out.GetSongDir() + RString("song.wav"), arrayPossibleMusic );
|
|
|
|
|
|
|
|
|
|
if( !arrayPossibleMusic.empty() ) // we found a match
|
|
|
|
|
out.m_sMusicFile = arrayPossibleMusic[0];
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void KSFLoader::GetApplicableFiles( const RString &sPath, vector<RString> &out )
|
|
|
|
|
{
|
|
|
|
|
GetDirListing( sPath + RString("*.ksf"), out );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool KSFLoader::LoadFromDir( const RString &sDir, Song &out )
|
|
|
|
|
{
|
|
|
|
|
LOG->Trace( "KSFLoader::LoadFromDir(%s)", sDir.c_str() );
|
|
|
|
|
|
|
|
|
|
vector<RString> arrayKSFFileNames;
|
|
|
|
|
GetDirListing( sDir + RString("*.ksf"), arrayKSFFileNames );
|
|
|
|
|
|
2010-04-20 23:06:37 -05:00
|
|
|
// We shouldn't have been called to begin with if there were no KSFs.
|
2010-01-26 21:00:30 -06:00
|
|
|
ASSERT( arrayKSFFileNames.size() );
|
|
|
|
|
|
|
|
|
|
bool bKIUCompliant = false;
|
|
|
|
|
/* If only the first file is read, it will cause problems for other simfiles with
|
|
|
|
|
* different BPM changes and tickcounts. This command will probably have to be
|
|
|
|
|
* changed in the future. */
|
|
|
|
|
if( !LoadGlobalData(out.GetSongDir() + arrayKSFFileNames[0], out, bKIUCompliant) )
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
// load the Steps from the rest of the KSF files
|
|
|
|
|
for( unsigned i=0; i<arrayKSFFileNames.size(); i++ )
|
|
|
|
|
{
|
|
|
|
|
Steps* pNewNotes = new Steps;
|
|
|
|
|
if( !LoadFromKSFFile(out.GetSongDir() + arrayKSFFileNames[i], *pNewNotes, out, bKIUCompliant) )
|
|
|
|
|
{
|
|
|
|
|
delete pNewNotes;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
out.AddSteps( pNewNotes );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* (c) 2001-2006 Chris Danford, Glenn Maynard, Jason Felds
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|