[SongManager] Check the root Songs/ folder for extra stage course files. also update docs
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
sm-ssc Changelog
|
sm-ssc Changelog
|
||||||
________________________________________________________________________________
|
________________________________________________________________________________
|
||||||
The sm-ssc changelog mostly deals with source code-related changes,
|
The sm-ssc changelog mostly deals with source code-related changes,
|
||||||
as theme changes happen at a rapid pace.
|
as theme changes happen at a faster pace.
|
||||||
|
|
||||||
Changes are grouped by date.
|
Changes are grouped by date.
|
||||||
Not all changes are documented, for various reasons.
|
Not all changes are documented, for various reasons.
|
||||||
@@ -13,6 +13,16 @@ _____________________________________________________________________________
|
|||||||
sm-ssc v1.2 | 201101xx
|
sm-ssc v1.2 | 201101xx
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
20110106
|
||||||
|
--------
|
||||||
|
* [SpecialScoring] Fix some minor issues [FSX]
|
||||||
|
* New pump routine noteskins [cesarmades]
|
||||||
|
* [SongManager] Check the root Songs/ folder for extra stage course files. [freem]
|
||||||
|
|
||||||
|
20110102
|
||||||
|
--------
|
||||||
|
* Fix routine mode saving in the editor. [Wolfman2000]
|
||||||
|
|
||||||
20110101
|
20110101
|
||||||
--------
|
--------
|
||||||
* [Screen] Added HandleBackButton metric; useful for custom menus that need to
|
* [Screen] Added HandleBackButton metric; useful for custom menus that need to
|
||||||
|
|||||||
+4
-1
@@ -59,7 +59,7 @@ Kaox
|
|||||||
* Pump/default noteskin
|
* Pump/default noteskin
|
||||||
|
|
||||||
cesarmades
|
cesarmades
|
||||||
* Pump/cmd noteskin
|
* Pump/cmd-* noteskins
|
||||||
|
|
||||||
David Santamaría Rogado (howl)
|
David Santamaría Rogado (howl)
|
||||||
* Various patches (see Changelog_sm-ssc.txt for more details and links)
|
* Various patches (see Changelog_sm-ssc.txt for more details and links)
|
||||||
@@ -106,6 +106,9 @@ juanelote
|
|||||||
* [SongManager] GetSongGroupByIndex function
|
* [SongManager] GetSongGroupByIndex function
|
||||||
* [MusicWheel] JumpToNextGroup/JumpToPrevGroup logic modifications
|
* [MusicWheel] JumpToNextGroup/JumpToPrevGroup logic modifications
|
||||||
|
|
||||||
|
NitroX72
|
||||||
|
* Pump/frame noteskin
|
||||||
|
|
||||||
==the beta testers==
|
==the beta testers==
|
||||||
[SSC Beta Testing Team]
|
[SSC Beta Testing Team]
|
||||||
KeithD
|
KeithD
|
||||||
|
|||||||
@@ -1176,9 +1176,14 @@ void SongManager::GetExtraStageInfo( bool bExtra2, const Style *sd, Song*& pSong
|
|||||||
GAMESTATE->m_pCurSong? GAMESTATE->m_pCurSong->GetSongDir().c_str():"",
|
GAMESTATE->m_pCurSong? GAMESTATE->m_pCurSong->GetSongDir().c_str():"",
|
||||||
GAMESTATE->m_pCurSong? GAMESTATE->m_pCurSong->m_sGroupName.c_str():"") );
|
GAMESTATE->m_pCurSong? GAMESTATE->m_pCurSong->m_sGroupName.c_str():"") );
|
||||||
|
|
||||||
|
// Check preferred group
|
||||||
if( GetExtraStageInfoFromCourse(bExtra2, sGroup, pSongOut, pStepsOut) )
|
if( GetExtraStageInfoFromCourse(bExtra2, sGroup, pSongOut, pStepsOut) )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
// Optionally, check the Songs folder for extra1/2.crs files.
|
||||||
|
if( GetExtraStageInfoFromCourse(bExtra2, "", pSongOut, pStepsOut) )
|
||||||
|
return;
|
||||||
|
|
||||||
// Choose a hard song for the extra stage
|
// Choose a hard song for the extra stage
|
||||||
Song* pExtra1Song = NULL; // the absolute hardest Song and Steps. Use this for extra stage 1.
|
Song* pExtra1Song = NULL; // the absolute hardest Song and Steps. Use this for extra stage 1.
|
||||||
Steps* pExtra1Notes = NULL;
|
Steps* pExtra1Notes = NULL;
|
||||||
|
|||||||
Reference in New Issue
Block a user