From f2d1ca1d4bcda5f63d135709e78ccb5818a78981 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Fri, 24 Jun 2011 11:58:51 -0400 Subject: [PATCH] Make Step #ATTACKS official. --- Docs/Changelog_SSCformat.txt | 3 +++ Docs/Changelog_sm5.txt | 3 +++ Docs/SimfileFormats/ssc_msd5.txt | 2 +- src/Song.cpp | 2 +- src/Song.h | 2 +- 5 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Docs/Changelog_SSCformat.txt b/Docs/Changelog_SSCformat.txt index ee7909d2ed..bf388ed6fc 100644 --- a/Docs/Changelog_SSCformat.txt +++ b/Docs/Changelog_SSCformat.txt @@ -9,6 +9,9 @@ change to JSON, but it is unsure if this will be done. Implement .ssc at your own risk. ________________________________________________________________________________ +[v0.71] - Wolfman2000 +* Have #ATTACKS work per step as well. + [v0.7] - theDtTvB, Wolfman2000 * Split Timing officially implemented. * #SPEEDS tag for modified scroll speeds. diff --git a/Docs/Changelog_sm5.txt b/Docs/Changelog_sm5.txt index 28e8b704e0..46eb6b02dc 100644 --- a/Docs/Changelog_sm5.txt +++ b/Docs/Changelog_sm5.txt @@ -17,6 +17,9 @@ StepMania 5.0 Preview 2 | 201106?? song to use this on besides Uprock. [Wolfman2000] * [ScreenEdit] Fix a crash if you don't save any steps on a new song. [Wolfman2000] +* [NotesLoader/WriterSSC] Add support for Step #ATTACKS. Furthermore, Song + Attacks (or rather, Step Attacks as it should be called now) are turned on + by default instead of off. [Wolfman2000] 2011/06/19 ---------- diff --git a/Docs/SimfileFormats/ssc_msd5.txt b/Docs/SimfileFormats/ssc_msd5.txt index 845844fbc6..0b878925d9 100644 --- a/Docs/SimfileFormats/ssc_msd5.txt +++ b/Docs/SimfileFormats/ssc_msd5.txt @@ -61,7 +61,7 @@ #SCROLLS:; #FAKES:; #LABELS:; -#ATTACKS:; // Not yet in use. +#ATTACKS:; #OFFSET:; // actual step data diff --git a/src/Song.cpp b/src/Song.cpp index a7ad0e399c..df12a2c63d 100644 --- a/src/Song.cpp +++ b/src/Song.cpp @@ -41,7 +41,7 @@ * @brief The internal version of the cache for StepMania. * * Increment this value to invalidate the current cache. */ -const int FILE_CACHE_VERSION = 182; +const int FILE_CACHE_VERSION = 183; /** @brief How long does a song sample last by default? */ const float DEFAULT_MUSIC_SAMPLE_LENGTH = 12.f; diff --git a/src/Song.h b/src/Song.h index 98ff89ece2..ca490b6294 100644 --- a/src/Song.h +++ b/src/Song.h @@ -20,7 +20,7 @@ void FixupPath( RString &path, const RString &sSongPath ); RString GetSongAssetPath( RString sPath, const RString &sSongPath ); /** @brief The version of the .ssc file format. */ -const static float STEPFILE_VERSION_NUMBER = 0.7f; +const static float STEPFILE_VERSION_NUMBER = 0.71f; /** @brief How many edits for this song can each profile have? */ const int MAX_EDITS_PER_SONG_PER_PROFILE = 15;