Files
itgmania212121/stepmania/src/Course.cpp
T

272 lines
7.3 KiB
C++
Raw Normal View History

2002-06-14 22:25:22 +00:00
#include "stdafx.h"
/*
-----------------------------------------------------------------------------
Class: Course
Desc: See header.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "Course.h"
2002-07-23 01:41:40 +00:00
#include "PrefsManager.h"
2002-07-02 17:34:20 +00:00
#include "Song.h"
2002-07-23 01:41:40 +00:00
#include "GameManager.h"
#include "SongManager.h"
#include "GameState.h"
2002-07-27 19:29:51 +00:00
#include "RageException.h"
#include "RageLog.h"
#include "MsdFile.h"
2002-07-28 20:28:37 +00:00
#include "PlayerOptions.h"
#include "SongOptions.h"
2002-06-14 22:25:22 +00:00
2002-07-02 17:34:20 +00:00
void Course::LoadFromCRSFile( CString sPath, CArray<Song*,Song*> &apSongs )
{
2002-07-27 19:29:51 +00:00
MsdFile msd;
if( !msd.ReadFile(sPath) )
throw RageException( "Error opening CRS file '%s'.", sPath.GetString() );
2002-07-02 17:34:20 +00:00
2002-07-27 19:29:51 +00:00
CString sDir, sFName, sExt;
splitrelpath( sPath, sDir, sFName, sExt );
2002-07-02 17:34:20 +00:00
2002-07-27 19:29:51 +00:00
CStringArray arrayPossibleBanners;
GetDirListing( "Courses\\" + sFName + ".png", arrayPossibleBanners, false, true );
GetDirListing( "Courses\\" + sFName + ".jpg", arrayPossibleBanners, false, true );
GetDirListing( "Courses\\" + sFName + ".bmp", arrayPossibleBanners, false, true );
GetDirListing( "Courses\\" + sFName + ".gif", arrayPossibleBanners, false, true );
2002-10-31 02:11:52 +00:00
if( !arrayPossibleBanners.empty() )
2002-07-27 19:29:51 +00:00
m_sBannerPath = arrayPossibleBanners[0];
2002-07-02 17:34:20 +00:00
2002-07-27 19:29:51 +00:00
for( int i=0; i<msd.m_iNumValues; i++ )
2002-07-02 17:34:20 +00:00
{
CString sValueName = msd.m_sParams[i][0];
CString* sParams = msd.m_sParams[i];
2002-07-02 17:34:20 +00:00
2002-07-27 19:29:51 +00:00
// handle the data
if( 0 == stricmp(sValueName, "COURSE") )
m_sName = sParams[1];
2002-07-02 17:34:20 +00:00
2002-07-27 19:29:51 +00:00
else if( 0 == stricmp(sValueName, "REPEAT") )
2002-07-02 17:34:20 +00:00
{
2002-07-27 19:29:51 +00:00
sParams[1].MakeLower();
if( sParams[1].Find("yes") != -1 )
m_bRepeat = true;
2002-07-02 17:34:20 +00:00
}
2002-07-27 19:29:51 +00:00
else if( 0 == stricmp(sValueName, "LIVES") )
2002-07-02 17:34:20 +00:00
{
2002-07-27 19:29:51 +00:00
m_iLives = atoi( sParams[1] );
2002-07-02 17:34:20 +00:00
}
else if( 0 == stricmp(sValueName, "EXTRA") )
{
m_iExtra = atoi( sParams[1] );
}
2002-07-27 19:29:51 +00:00
else if( 0 == stricmp(sValueName, "SONG") )
2002-07-02 17:34:20 +00:00
{
2002-10-12 19:30:15 +00:00
CString sSongDir = sParams[1];
2002-07-27 19:29:51 +00:00
CString sNotesDescription = sParams[2];
2002-08-01 13:42:56 +00:00
CString sModifiers = sParams[3];
2002-07-02 17:34:20 +00:00
2002-10-12 19:30:15 +00:00
if(!sSongDir.GetLength()) {
/* Err. */
LOG->Trace( "Course file '%s' has an empty #SONG. Ignored.", sPath.GetString(), sSongDir.GetString() );
2002-10-12 19:30:15 +00:00
continue;
}
/* m_sSongDir contains a path to the song, possibly a full path, eg:
* Songs\Group\SongName or
* My Other Song Folder\Group\SongName or
* c:\Corny J-pop\Group\SongName
*
* Most course group names are "Group\SongName", so we want to
* match against the last two elements. Let's also support
* "SongName" alone, since the group is only important when it's
* potentially ambiguous.
*
* Let's *not* support "Songs\Group\SongName" in course files.
* That's probably a common error, but that would result in
* course files floating around that only work for people who put
* songs in "Songs"; we don't want that.
*/
CStringArray split_SongDir;
split( sSongDir, "\\", split_SongDir, true );
2002-10-31 02:11:52 +00:00
if( split_SongDir.size() > 2 )
2002-10-12 19:30:15 +00:00
{
LOG->Warn( "Course file \"%s\" path \"%s\" should contain "
"at most one backslash; ignored.",
2002-10-13 17:37:29 +00:00
(const char *) sPath, (const char *) sSongDir);
2002-10-12 19:30:15 +00:00
continue;
}
2002-07-03 21:27:26 +00:00
2002-10-12 19:30:15 +00:00
Song *pSong = NULL;
// foreach song
2002-10-31 02:11:52 +00:00
for( unsigned i = 0; pSong == NULL && i < apSongs.size(); i++ )
2002-07-27 19:29:51 +00:00
{
2002-10-12 19:30:15 +00:00
CStringArray splitted;
split( apSongs[i]->m_sSongDir, "\\", splitted, true );
bool matches = true;
2002-10-31 02:11:52 +00:00
int split_no = splitted.size()-1;
int SongDir_no = split_SongDir.size()-1;
2002-10-12 19:30:15 +00:00
while( split_no >= 0 && SongDir_no >= 0 ) {
2002-10-13 17:37:29 +00:00
if( stricmp(splitted[split_no--], split_SongDir[SongDir_no--] ) )
2002-10-12 19:30:15 +00:00
matches=false;
}
if(matches)
2002-07-02 17:34:20 +00:00
pSong = apSongs[i];
2002-07-27 19:29:51 +00:00
}
2002-07-02 17:34:20 +00:00
if( pSong == NULL ) // we didn't find the Song
continue; // skip this song
2002-08-01 13:42:56 +00:00
AddStage( pSong, sNotesDescription, sModifiers );
2002-07-02 17:34:20 +00:00
}
else
LOG->Trace( "Unexpected value named '%s'", sValueName.GetString() );
2002-07-02 17:34:20 +00:00
}
}
2002-07-23 01:41:40 +00:00
2002-09-29 05:06:18 +00:00
void Course::CreateEndlessCourseFromGroupAndDifficulty( CString sGroupName, Difficulty dc, CArray<Song*,Song*> &apSongsInGroup )
2002-07-23 01:41:40 +00:00
{
2002-07-29 03:06:55 +00:00
m_bRepeat = true;
m_bRandomize = true;
m_iLives = -1;
CStringArray asPossibleBannerPaths;
GetDirListing( "Songs\\" + sGroupName + "\\banner.png", asPossibleBannerPaths, false, true );
GetDirListing( "Songs\\" + sGroupName + "\\banner.jpg", asPossibleBannerPaths, false, true );
GetDirListing( "Songs\\" + sGroupName + "\\banner.gif", asPossibleBannerPaths, false, true );
GetDirListing( "Songs\\" + sGroupName + "\\banner.bmp", asPossibleBannerPaths, false, true );
2002-10-31 02:11:52 +00:00
if( !asPossibleBannerPaths.empty() )
m_sBannerPath = asPossibleBannerPaths[0];
2002-07-23 01:41:40 +00:00
CString sShortGroupName = SONGMAN->ShortenGroupName( sGroupName );
m_sName = sShortGroupName + " ";
switch( dc )
{
2002-09-29 05:06:18 +00:00
case DIFFICULTY_EASY: m_sName += "Easy"; break;
case DIFFICULTY_MEDIUM: m_sName += "Medium"; break;
case DIFFICULTY_HARD: m_sName += "Hard"; break;
2002-07-23 01:41:40 +00:00
}
2002-10-31 02:11:52 +00:00
for( unsigned s=0; s<apSongsInGroup.size(); s++ )
2002-07-23 01:41:40 +00:00
{
Song* pSong = apSongsInGroup[s];
2002-09-29 05:06:18 +00:00
AddStage( pSong, DifficultyToString(dc), "" );
2002-07-23 01:41:40 +00:00
}
Shuffle();
2002-07-23 01:41:40 +00:00
}
void Course::Shuffle()
{
/* Shuffle the list. */
for( int i = 0; i < m_iStages; ++i)
swap(SongOrdering[i], SongOrdering[rand() % m_iStages]);
}
2002-07-23 01:41:40 +00:00
Notes* Course::GetNotesForStage( int iStage )
{
Song* pSong = m_apSongs[iStage];
CString sDescription = m_asDescriptions[iStage];
2002-10-31 02:11:52 +00:00
unsigned i;
for( i=0; i<pSong->m_apNotes.size(); i++ )
2002-07-23 01:41:40 +00:00
{
Notes* pNotes = pSong->m_apNotes[i];
if( 0==stricmp(pNotes->m_sDescription, sDescription) &&
GAMESTATE->GetCurrentStyleDef()->MatchesNotesType(pNotes->m_NotesType) )
2002-07-23 01:41:40 +00:00
return pNotes;
}
2002-09-29 05:06:18 +00:00
// Didn't find a matching description. Try to match the Difficulty instead.
Difficulty dc = Notes::DifficultyFromDescriptionAndMeter( sDescription, 5 );
2002-07-23 01:41:40 +00:00
2002-10-31 02:11:52 +00:00
for( i=0; i<pSong->m_apNotes.size(); i++ )
2002-07-23 01:41:40 +00:00
{
Notes* pNotes = pSong->m_apNotes[i];
2002-09-29 05:06:18 +00:00
if( pNotes->m_Difficulty == dc &&
GAMESTATE->GetCurrentStyleDef()->MatchesNotesType(pNotes->m_NotesType) )
2002-07-23 01:41:40 +00:00
return pNotes;
}
return NULL;
}
/* When bShuffled is true, returns courses in the song ordering list. */
void Course::GetSongAndNotesForCurrentStyle(
CArray<Song*,Song*>& apSongsOut,
CArray<Notes*,Notes*>& apNotesOut,
CStringArray& asModifiersOut,
bool bShuffled )
2002-07-23 01:41:40 +00:00
{
for( int i=0; i<m_iStages; i++ )
{
int num = bShuffled? SongOrdering[i]:i;
Song* pSong = m_apSongs[num];
Notes* pNotes = GetNotesForStage( num );
CString sModifiers = m_asModifiers[num];
2002-07-23 01:41:40 +00:00
if( !pSong->HasMusic() )
continue; // skip
2002-07-23 01:41:40 +00:00
if( pNotes == NULL )
continue; // skip
apSongsOut.Add( pSong );
2002-08-01 13:42:56 +00:00
apNotesOut.Add( pNotes );
asModifiersOut.Add( sModifiers );
2002-07-23 01:41:40 +00:00
}
2002-07-27 19:29:51 +00:00
}
RageColor Course::GetColor()
2002-07-27 19:29:51 +00:00
{
// This could be made smarter
if( m_iStages >= 7 )
return RageColor(1,0,0,1); // red
2002-07-27 19:29:51 +00:00
else if( m_iStages >= 4 )
return RageColor(1,0.5f,0,1); // orange
2002-07-27 19:29:51 +00:00
else
return RageColor(0,1,0,1); // green
2002-07-27 19:29:51 +00:00
}
2002-07-28 20:28:37 +00:00
void Course::GetPlayerOptions( PlayerOptions* pPO_out )
{
*pPO_out = PlayerOptions();
}
void Course::GetSongOptions( SongOptions* pSO_out )
{
*pSO_out = SongOptions();
pSO_out->m_LifeType = (m_iLives==-1) ? SongOptions::LIFE_BAR : SongOptions::LIFE_BATTERY;
if( m_iLives != -1 )
pSO_out->m_iBatteryLives = m_iLives;
}
2002-07-27 19:29:51 +00:00
//
// Sorting stuff
//
2002-10-24 08:17:09 +00:00
static int CompareCoursePointersByDifficulty(const Course* pCourse1, const Course* pCourse2)
2002-07-27 19:29:51 +00:00
{
2002-10-24 08:17:09 +00:00
return pCourse1->m_iStages < pCourse2->m_iStages;
2002-07-27 19:29:51 +00:00
}
void SortCoursePointerArrayByDifficulty( CArray<Course*,Course*> &apCourses )
{
2002-10-24 08:40:27 +00:00
sort( apCourses.begin(), apCourses.end(), CompareCoursePointersByDifficulty );
2002-07-27 19:29:51 +00:00
}