Files
itgmania212121/stepmania/src/NotesLoaderKSF.cpp
T

611 lines
18 KiB
C++
Raw Normal View History

2003-02-16 04:01:45 +00:00
#include "global.h"
2002-09-06 23:24:40 +00:00
#include "NotesLoaderKSF.h"
2003-05-21 00:10:31 +00:00
#include "RageUtil_CharConversions.h"
2002-09-06 23:24:40 +00:00
#include "MsdFile.h"
#include "RageLog.h"
2002-09-07 11:43:36 +00:00
#include "RageUtil.h"
#include "NoteData.h"
#include "NoteTypes.h"
2005-07-03 02:51:29 +00:00
#include "song.h"
#include "Steps.h"
2002-09-06 23:24:40 +00:00
2003-05-21 00:10:31 +00:00
#if 0
2007-02-14 10:55:36 +00:00
static void RemoveHoles( NoteData &out, const Song &song )
2003-05-21 00:10:31 +00:00
{
/* Start at the second BPM segment; the first one is already aligned. */
2003-12-18 04:48:26 +00:00
for( unsigned seg = 1; seg < song.m_Timing.m_BPMSegments.size(); ++seg )
2003-05-21 00:10:31 +00:00
{
2003-12-18 04:48:26 +00:00
// 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;
2003-05-21 00:10:31 +00:00
const int FromRow = (int) BeatToNoteRow(FromBeat);
2003-12-18 04:48:26 +00:00
const int ToRow = (int) BeatToNoteRow(song.m_Timing.m_BPMSegments[seg].m_fStartBeat);
2003-05-21 00:10:31 +00:00
LOG->Trace("from %f (%i) to (%i)", FromBeat, FromRow, ToRow);
2007-01-03 05:05:28 +00:00
// const int ToRow = lrintf(FromRow * song.m_Timing.m_BPMSegments[0].m_fBPM / song.m_BPMSegments[seg].m_fBPM);
2003-05-21 00:10:31 +00:00
// const int Rows = out.GetLastRow() - FromRow + 1;
// int LastRow;
2003-12-18 04:48:26 +00:00
// if(seg+1 < song.m_Timing.m_BPMSegments().size())
// LastRow = (int) NoteRowToBeat( song.m_Timing.m_BPMSegments[seg+1].m_fStartBeat ) - 1;
2003-05-21 00:10:31 +00:00
// else
// LastRow = out.GetLastRow();
NoteData tmp;
2005-01-25 05:02:35 +00:00
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 );
2003-05-21 00:10:31 +00:00
}
/*
for( t = 0; t < notedata.GetNumTracks(); ++t )
{
const float CurBPM = song.GetBPMAtBeat( NoteRowToBeat(row) );
2003-12-18 04:48:26 +00:00
song.m_Timing.m_BPMSegments.size()
2003-05-21 00:10:31 +00:00
for( int row = 0; row <= notedata.GetLastRow(); ++row )
{
TapNote tn = notedata.GetTapNote(t, row);
if( tn == TAP_EMPTY )
continue;
2007-01-03 05:05:28 +00:00
const int RealRow = lrintf(row * OrigBPM / CurBPM);
2003-05-21 00:10:31 +00:00
if( RealRow == row )
continue;
LOG->Trace("from %i to %i", row, RealRow);
notedata.SetTapNote( t, RealRow, tn );
notedata.SetTapNote( t, row, TAP_EMPTY );
}
}
*/
}
#endif
2007-02-14 10:55:36 +00:00
static bool LoadFromKSFFile( const RString &sPath, Steps &out, const Song &song, bool bKIUCompliant )
2002-09-06 23:24:40 +00:00
{
2003-08-03 00:13:55 +00:00
LOG->Trace( "Steps::LoadFromKSFFile( '%s' )", sPath.c_str() );
2002-09-06 23:24:40 +00:00
MsdFile msd;
if( !msd.ReadFile( sPath, false ) ) // don't unescape
{
2006-09-24 03:57:26 +00:00
LOG->UserLog( "Song file", sPath, "couldn't be opened: %s", msd.GetError().c_str() );
return false;
}
2002-09-06 23:24:40 +00:00
int iTickCount = -1; // this is the value we read for TICKCOUNT
vector<RString> vNoteRows;
2002-09-06 23:24:40 +00:00
2003-01-14 22:10:04 +00:00
for( unsigned i=0; i<msd.GetNumValues(); i++ )
2002-09-06 23:24:40 +00:00
{
2006-07-08 06:00:37 +00:00
const MsdFile::value_t &sParams = msd.GetValue( i );
2006-01-22 01:00:06 +00:00
RString sValueName = sParams[0];
2002-09-06 23:24:40 +00:00
// handle the data
if( 0==stricmp(sValueName,"TICKCOUNT") )
2006-07-08 06:00:37 +00:00
{
iTickCount = atoi( sParams[1] );
if( iTickCount <= 0 )
{
LOG->UserLog( "Song file", sPath, "has an invalid tick count: %d.", iTickCount );
return false;
}
2006-07-08 06:00:37 +00:00
}
2002-09-06 23:24:40 +00:00
else if( 0==stricmp(sValueName,"STEP") )
2003-05-21 00:10:31 +00:00
{
RString theSteps = sParams[1];
TrimLeft( theSteps );
split( theSteps, "\n", vNoteRows, true );
2003-05-21 00:10:31 +00:00
}
2002-09-06 23:24:40 +00:00
else if( 0==stricmp(sValueName,"DIFFICULTY") )
2006-07-08 06:00:37 +00:00
{
out.SetMeter( max(atoi(sParams[1]), 0) );
2006-07-08 06:00:37 +00:00
}
2002-09-06 23:24:40 +00:00
}
if( iTickCount == -1 )
2002-09-06 23:24:40 +00:00
{
iTickCount = 2;
LOG->UserLog( "Song file", sPath, "doesn't have a TICKCOUNT. Defaulting to %i.", iTickCount );
2002-09-06 23:24:40 +00:00
}
NoteData notedata; // read it into here
{
2006-01-22 01:00:06 +00:00
RString sDir, sFName, sExt;
2003-10-29 21:06:33 +00:00
splitpath( sPath, sDir, sFName, sExt );
sFName.MakeLower();
2003-01-02 22:10:51 +00:00
out.SetDescription(sFName);
if( sFName.find("crazy") != string::npos || sFName.find("nightmare") != string::npos ||
sFName.find("crazydouble") != string::npos )
{
2006-07-08 06:00:37 +00:00
out.SetDifficulty( DIFFICULTY_HARD );
2006-07-22 16:09:47 +00:00
if( !out.GetMeter() ) out.SetMeter( 14 ); // Set the meters to the Pump scale, not DDR.
}
2006-07-22 16:09:47 +00:00
else if( sFName.find("hard") != string::npos || sFName.find("freestyle") != string::npos ||
sFName.find("double") != string::npos )
{
2006-07-08 06:00:37 +00:00
out.SetDifficulty( DIFFICULTY_MEDIUM );
2006-07-22 16:09:47 +00:00
if( !out.GetMeter() ) out.SetMeter( 8 );
}
else if( sFName.find("easy") != string::npos || sFName.find("normal") != string::npos )
{
2006-07-08 06:00:37 +00:00
out.SetDifficulty( DIFFICULTY_EASY );
2006-07-22 16:09:47 +00:00
if( !out.GetMeter() ) out.SetMeter( 4 );
}
else
{
2006-07-08 06:00:37 +00:00
out.SetDifficulty( DIFFICULTY_MEDIUM );
2006-07-22 16:09:47 +00:00
if( !out.GetMeter() ) out.SetMeter( 8 );
}
out.m_StepsType = STEPS_TYPE_PUMP_SINGLE;
/* Check for "halfdouble" before "double". */
2005-12-23 09:51:09 +00:00
if( sFName.find("halfdouble") != string::npos || sFName.find("h_double") != string::npos )
out.m_StepsType = STEPS_TYPE_PUMP_HALFDOUBLE;
else if( sFName.find("double") != string::npos || sFName.find("nightmare") != string::npos )
2003-08-07 06:36:34 +00:00
out.m_StepsType = STEPS_TYPE_PUMP_DOUBLE;
2005-12-21 08:33:30 +00:00
else if( sFName.find("_1") != string::npos )
out.m_StepsType = STEPS_TYPE_PUMP_SINGLE;
2005-12-21 08:33:30 +00:00
else if( sFName.find("_2") != string::npos )
2003-08-07 06:36:34 +00:00
out.m_StepsType = STEPS_TYPE_PUMP_COUPLE;
}
switch( out.m_StepsType )
{
case STEPS_TYPE_PUMP_SINGLE: notedata.SetNumTracks( 5 ); break;
case STEPS_TYPE_PUMP_COUPLE: notedata.SetNumTracks( 10 ); break;
case STEPS_TYPE_PUMP_DOUBLE: notedata.SetNumTracks( 10 ); break;
case STEPS_TYPE_PUMP_HALFDOUBLE: notedata.SetNumTracks( 6 ); break;
default: FAIL_M( ssprintf("%i", out.m_StepsType) );
}
2006-07-22 16:09:47 +00:00
int t = 0;
2002-09-06 23:24:40 +00:00
int iHoldStartRow[13];
2006-07-22 16:09:47 +00:00
for( t=0; t<13; t++ )
iHoldStartRow[t] = -1;
bool bTickChangeNeeded = false;
int newTick = -1;
2007-02-14 10:44:54 +00:00
float fCurBeat = 0.0f;
float prevBeat = 0.0f; // Used for hold tails.
for( unsigned r=0; r<vNoteRows.size(); r++ )
2002-09-06 23:24:40 +00:00
{
RString& sRowString = vNoteRows[r];
2003-09-02 03:19:33 +00:00
StripCrnl( sRowString );
2002-09-06 23:24:40 +00:00
if( sRowString == "" )
continue; // skip
// All 2s indicates the end of the song.
2002-09-06 23:24:40 +00:00
if( sRowString == "2222222222222" )
2006-07-22 16:09:47 +00:00
{
// Finish any holds that didn't get...well, finished.
2006-07-22 16:09:47 +00:00
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 );
}
}
2002-09-06 23:24:40 +00:00
break;
2006-07-22 16:09:47 +00:00
}
2002-09-06 23:24:40 +00:00
2006-07-08 06:00:37 +00:00
if( sRowString.size() != 13 )
2006-07-17 18:32:21 +00:00
{
2007-02-14 10:55:36 +00:00
if( bKIUCompliant )
2006-07-17 18:32:21 +00:00
{
2006-09-24 03:57:26 +00:00
LOG->UserLog( "Song file", sPath, "has illegal syntax \"%s\" which can't be in KIU complient files.",
2006-09-04 08:09:27 +00:00
sRowString.c_str() );
return false;
}
if( BeginsWith(sRowString, "|B") || BeginsWith(sRowString, "|D") )
{
// 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;
2006-07-17 18:32:21 +00:00
}
else
{
2006-09-24 03:57:26 +00:00
LOG->UserLog( "Song file", sPath, "has a RowString with an improper length \"%s\"; corrupt notes ignored.",
2006-09-04 08:09:27 +00:00
sRowString.c_str() );
return false;
2006-07-17 18:32:21 +00:00
}
2003-01-01 09:19:10 +00:00
}
2002-09-06 23:24:40 +00:00
2004-11-07 00:58:43 +00:00
/* Half-doubles is offset; "0011111100000". */
2004-11-07 07:12:44 +00:00
if( out.m_StepsType == STEPS_TYPE_PUMP_HALFDOUBLE )
2004-11-07 00:58:43 +00:00
sRowString.erase( 0, 2 );
// Update TICKCOUNT for Direct Move files.
if( bTickChangeNeeded )
{
iTickCount = newTick;
bTickChangeNeeded = false;
}
2006-07-22 16:09:47 +00:00
for( t=0; t < notedata.GetNumTracks(); t++ )
2002-09-06 23:24:40 +00:00
{
if( sRowString[t] == '4' )
{
/* Remember when each hold starts; ignore the middle. */
if( iHoldStartRow[t] == -1 )
2007-02-14 10:44:54 +00:00
iHoldStartRow[t] = BeatToNoteRow(fCurBeat);
2002-09-06 23:24:40 +00:00
continue;
}
if( iHoldStartRow[t] != -1 ) // this ends the hold
{
int iEndRow = BeatToNoteRow(prevBeat);
2006-07-08 00:58:43 +00:00
if( iHoldStartRow[t] == iEndRow )
notedata.SetTapNote( t, iHoldStartRow[t], TAP_ORIGINAL_TAP );
else
2006-08-14 04:04:20 +00:00
{
//notedata.AddHoldNote( t, iHoldStartRow[t], iEndRow , TAP_ORIGINAL_PUMP_HEAD );
2006-07-08 00:58:43 +00:00
notedata.AddHoldNote( t, iHoldStartRow[t], iEndRow , TAP_ORIGINAL_HOLD_HEAD );
2006-08-14 04:04:20 +00:00
}
2002-09-06 23:24:40 +00:00
iHoldStartRow[t] = -1;
}
2002-11-02 21:33:56 +00:00
TapNote tap;
2006-07-08 06:00:37 +00:00
switch( sRowString[t] )
2002-11-02 21:33:56 +00:00
{
2006-07-08 00:58:43 +00:00
case '0': tap = TAP_EMPTY; break;
case '1': tap = TAP_ORIGINAL_TAP; break;
default:
2006-09-24 03:57:26 +00:00
LOG->UserLog( "Song file", sPath, "has an invalid row \"%s\"; corrupt notes ignored.",
2006-09-04 08:09:27 +00:00
sRowString.c_str() );
return false;
2002-11-02 21:33:56 +00:00
}
2007-02-14 10:44:54 +00:00
notedata.SetTapNote(t, BeatToNoteRow(fCurBeat), tap);
2002-09-06 23:24:40 +00:00
}
2007-02-14 10:44:54 +00:00
prevBeat = fCurBeat;
fCurBeat = prevBeat + 1.0f / iTickCount;
2002-09-06 23:24:40 +00:00
}
2003-05-21 00:10:31 +00:00
/* We need to remove holes where the BPM increases. */
2003-12-18 04:48:26 +00:00
// if( song.m_Timing.m_BPMSegments.size() > 1 )
2003-05-21 00:10:31 +00:00
// RemoveHoles( notedata, song );
2004-10-23 17:43:49 +00:00
out.SetNoteData( notedata );
2002-09-06 23:24:40 +00:00
out.TidyUpData();
out.SetSavedToDisk( true ); // we're loading from disk, so this is by definintion already saved
2002-09-06 23:24:40 +00:00
return true;
}
2007-02-14 10:55:36 +00:00
static void LoadTags( const RString &str, Song &out )
2003-05-21 00:10:31 +00:00
{
/* str is either a #TITLE or a directory component. Fill in missing information.
* str is either "title", "artist - title", or "artist - title - difficulty". */
2006-01-22 01:00:06 +00:00
vector<RString> asBits;
2003-05-21 00:10:31 +00:00
split( str, " - ", asBits, false );
/* Ignore the difficulty, since we get that elsewhere. */
2006-08-19 19:44:23 +00: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"))
)
2003-05-21 00:10:31 +00:00
{
2006-07-08 06:00:37 +00:00
asBits.erase( asBits.begin()+2, asBits.begin()+3 );
2003-05-21 00:10:31 +00:00
}
2006-01-22 01:00:06 +00:00
RString title, artist;
2003-05-21 00:10:31 +00:00
if( asBits.size() == 2 )
{
artist = asBits[0];
title = asBits[1];
}
else if( asBits.size() == 1 )
2003-05-21 00:10:31 +00:00
{
title = asBits[0];
}
/* Convert, if possible. Most KSFs are in Korean encodings (CP942/EUC-KR). */
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;
}
2007-02-14 10:55:36 +00:00
static bool LoadGlobalData( const RString &sPath, Song &out, bool &bKIUCompliant )
2002-09-06 23:24:40 +00:00
{
MsdFile msd;
if( !msd.ReadFile( sPath, false ) ) // don't unescape
{
2006-09-24 03:57:26 +00:00
LOG->UserLog( "Song file", sPath, "couldn't be opened: %s", msd.GetError().c_str() );
return false;
}
2002-09-06 23:24:40 +00:00
float SMGap1 = 0, SMGap2 = 0, BPM1 = -1, BPMPos2 = -1, BPM2 = -1, BPMPos3 = -1, BPM3 = -1;
int iTickCount = -1;
2007-02-14 10:55:36 +00:00
bKIUCompliant = false;
vector<RString> vNoteRows;
2003-05-19 19:55:42 +00:00
for( unsigned i=0; i < msd.GetNumValues(); i++ )
2002-09-06 23:24:40 +00:00
{
2003-01-14 22:44:30 +00:00
const MsdFile::value_t &sParams = msd.GetValue(i);
2006-01-22 01:00:06 +00:00
RString sValueName = sParams[0];
2002-09-06 23:24:40 +00:00
// handle the data
if( 0==stricmp(sValueName,"TITLE") )
2003-05-21 00:10:31 +00:00
LoadTags(sParams[1], out);
2002-09-06 23:24:40 +00:00
else if( 0==stricmp(sValueName,"BPM") )
{
BPM1 = StringToFloat(sParams[1]);
out.AddBPMSegment( BPMSegment(0, BPM1) );
}
2003-05-18 05:11:46 +00:00
else if( 0==stricmp(sValueName,"BPM2") )
{
2007-02-14 10:55:36 +00:00
bKIUCompliant = true;
2006-06-12 06:42:25 +00:00
BPM2 = StringToFloat( sParams[1] );
}
else if( 0==stricmp(sValueName,"BPM3") )
{
2007-02-14 10:55:36 +00:00
bKIUCompliant = true;
2006-06-12 06:42:25 +00:00
BPM3 = StringToFloat( sParams[1] );
}
2003-05-18 05:11:46 +00:00
else if( 0==stricmp(sValueName,"BUNKI") )
{
2007-02-14 10:55:36 +00:00
bKIUCompliant = true;
2006-06-12 06:42:25 +00:00
BPMPos2 = StringToFloat( sParams[1] ) / 100.0f;
}
else if( 0==stricmp(sValueName,"BUNKI2") )
{
2007-02-14 10:55:36 +00:00
bKIUCompliant = true;
2006-06-12 06:42:25 +00:00
BPMPos3 = StringToFloat( sParams[1] ) / 100.0f;
}
2002-09-06 23:24:40 +00:00
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") )
{
2007-02-14 10:55:36 +00:00
bKIUCompliant = true;
SMGap2 = -StringToFloat( sParams[1] )/100;
}
else if ( 0==stricmp(sValueName,"STARTTIME3") )
{
// STARTTIME3 only ensures this is a KIU complient simfile.
2007-02-14 10:55:36 +00:00
bKIUCompliant = true;
}
else if ( 0==stricmp(sValueName,"TICKCOUNT") )
2006-07-08 06:00:37 +00:00
{
2006-07-22 16:09:47 +00:00
/* TICKCOUNT is will be used below if there are DM complient BPM changes and stops.
* It will be called again in LoadFromKSFFile for the actual steps. */
iTickCount = atoi( sParams[1] );
iTickCount = iTickCount > 0 ? iTickCount : 2;
}
else if ( 0==stricmp(sValueName,"STEP") )
{
/* STEP will always be the last header in a KSF file by design. Due to
* 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 );
}
else if( 0==stricmp(sValueName,"DIFFICULTY"))
{
/* DIFFICULTY is handled only in LoadFromKSFFile. Ignore it here. */
2006-07-08 06:00:37 +00:00
continue;
}
2002-09-06 23:24:40 +00:00
else
{
2006-09-24 03:57:26 +00:00
LOG->UserLog( "Song file", sPath, "has an unexpected value named \"%s\".",
2006-09-04 08:09:27 +00:00
sValueName.c_str() );
}
2002-09-06 23:24:40 +00:00
}
2007-02-14 10:55:36 +00:00
/* 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. */
2007-02-14 10:55:36 +00:00
if( bKIUCompliant )
2003-05-18 05:11:46 +00:00
{
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) );
}
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;
2007-02-14 10:44:54 +00:00
float fCurBeat = 0.0f;
float speedToChange = 0.0f, timeToStop = 0.0f;
2007-02-14 10:44:54 +00:00
bool bDMRequired = false;
bool bBPMChangeNeeded = false;
bool bBPMStopNeeded = false;
bool bTickChangeNeeded = false;
2007-02-14 10:57:26 +00:00
for( unsigned i=0; i < vNoteRows.size(); ++i )
{
RString& NoteRowString = vNoteRows[i];
StripCrnl( NoteRowString );
if( NoteRowString == "" )
continue; // Empty rows do us no good.
if( NoteRowString == "2222222222222" ) // Row of 2s = end. Confirm KIUCompliency here.
{
2007-02-14 10:44:54 +00:00
if (!bDMRequired)
2007-02-14 10:55:36 +00:00
bKIUCompliant = true;
break;
}
/* This is where the DMRequired test will take place. */
if( NoteRowString.size() != 13)
{
if (BeginsWith(NoteRowString, "|T") ||
BeginsWith(NoteRowString, "|B") || BeginsWith(NoteRowString, "|D") )
{
2007-02-14 10:44:54 +00:00
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"))
{
2007-02-14 10:44:54 +00:00
bBPMChangeNeeded = true;
speedToChange = numTemp;
continue;
}
else
{
2007-02-14 10:44:54 +00:00
bBPMStopNeeded = true;
timeToStop = numTemp / 1000.0f;
continue;
}
}
else
{
/* Quit while we're ahead if any bad syntax is spotted. */
2006-09-24 03:57:26 +00:00
LOG->UserLog( "Song file", sPath, "has an invalid RowString \"%s\".",
2006-09-04 08:09:27 +00:00
NoteRowString.c_str() );
return false;
}
}
if( bTickChangeNeeded )
{
iTickCount = tickToChange;
bTickChangeNeeded = false;
}
2007-02-14 10:44:54 +00:00
if( bBPMChangeNeeded )
{
2007-02-14 10:44:54 +00:00
LOG->Trace( "Adding tempo change of %f BPM at beat %f", speedToChange, fCurBeat );
out.AddBPMSegment( BPMSegment(BeatToNoteRow(fCurBeat), speedToChange) );
bBPMChangeNeeded = false;
}
2007-02-14 10:44:54 +00:00
if( bBPMStopNeeded )
{
2007-02-14 10:44:54 +00:00
LOG->Trace( "Adding tempo freeze of %f seconds at beat %f", timeToStop, fCurBeat );
out.AddStopSegment( StopSegment(BeatToNoteRow(fCurBeat),timeToStop) );
bBPMStopNeeded = false;
}
fCurBeat += 1.0f / iTickCount;
}
}
2003-05-21 00:10:31 +00:00
/* Try to fill in missing bits of information from the pathname. */
2003-05-19 19:55:42 +00:00
{
2006-01-22 01:00:06 +00:00
vector<RString> asBits;
2003-12-10 09:26:05 +00:00
split( sPath, "/", asBits, true);
2003-05-19 19:55:42 +00:00
2006-07-08 06:00:37 +00:00
ASSERT( asBits.size() > 1 );
LoadTags( asBits[asBits.size()-2], out );
2003-05-19 19:55:42 +00:00
}
2002-09-06 23:24:40 +00:00
// search for music with song in the file name
2006-01-22 01:00:06 +00:00
vector<RString> arrayPossibleMusic;
GetDirListing( out.GetSongDir() + RString("song.mp3"), arrayPossibleMusic );
GetDirListing( out.GetSongDir() + RString("song.ogg"), arrayPossibleMusic );
GetDirListing( out.GetSongDir() + RString("song.wav"), arrayPossibleMusic );
2002-09-06 23:24:40 +00:00
if( !arrayPossibleMusic.empty() ) // we found a match
2002-09-06 23:24:40 +00:00
out.m_sMusicFile = arrayPossibleMusic[0];
2002-12-17 10:39:33 +00:00
return true;
2002-09-06 23:24:40 +00:00
}
2007-02-14 10:55:36 +00:00
void KSFLoader::GetApplicableFiles( const RString &sPath, vector<RString> &out )
{
GetDirListing( sPath + RString("*.ksf"), out );
}
2006-02-02 23:52:28 +00:00
bool KSFLoader::LoadFromDir( const RString &sDir, Song &out )
2003-05-19 19:55:42 +00:00
{
LOG->Trace( "Song::LoadFromKSFDir(%s)", sDir.c_str() );
2006-01-22 01:00:06 +00:00
vector<RString> arrayKSFFileNames;
GetDirListing( sDir + RString("*.ksf"), arrayKSFFileNames );
2003-05-19 19:55:42 +00:00
/* We shouldn't have been called to begin with if there were no KSFs. */
2006-09-04 08:09:27 +00:00
ASSERT( arrayKSFFileNames.size() );
2003-05-19 19:55:42 +00:00
2007-02-14 10:55:36 +00:00
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. */
2007-02-14 10:55:36 +00:00
if( !LoadGlobalData(out.GetSongDir() + arrayKSFFileNames[0], out, bKIUCompliant) )
2003-05-19 19:58:46 +00:00
return false;
2003-08-03 00:13:55 +00:00
// load the Steps from the rest of the KSF files
2003-05-21 00:10:31 +00:00
for( unsigned i=0; i<arrayKSFFileNames.size(); i++ )
2003-05-19 19:55:42 +00:00
{
2003-08-03 00:13:55 +00:00
Steps* pNewNotes = new Steps;
2007-02-14 10:55:36 +00:00
if( !LoadFromKSFFile(out.GetSongDir() + arrayKSFFileNames[i], *pNewNotes, out, bKIUCompliant) )
2003-05-19 19:55:42 +00:00
{
delete pNewNotes;
continue;
}
2004-06-05 05:13:23 +00:00
out.AddSteps( pNewNotes );
2003-05-19 19:55:42 +00:00
}
return true;
}
2004-05-31 21:55:14 +00:00
/*
2006-07-11 04:13:19 +00:00
* (c) 2001-2006 Chris Danford, Glenn Maynard, Jason Felds
2004-05-31 21:55:14 +00:00
* 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.
*/