applied eriktorbjorn's floppy-intro-with-cd-version patch (#765885)

svn-id: r8753
This commit is contained in:
Joost Peters 2003-07-05 00:57:03 +00:00
parent 39509be92c
commit 934611c348
6 changed files with 28 additions and 2 deletions

1
README
View File

@ -379,6 +379,7 @@ Command Line Options:
--multi-midi - enable combination Adlib and native MIDI --multi-midi - enable combination Adlib and native MIDI
--native-mt32 - true Roland MT-32 (disable GM emulation) --native-mt32 - true Roland MT-32 (disable GM emulation)
--aspect-ratio - enable aspect ratio correction --aspect-ratio - enable aspect ratio correction
--floppy-intro - Use floppy version intro for Beneath a Steel Sky CD
The meaning of long options can be inversed by prefixing them with "no-", e.g. The meaning of long options can be inversed by prefixing them with "no-", e.g.
--no-aspect-ratio. This is useful if you want to override a setting in the --no-aspect-ratio. This is useful if you want to override a setting in the

View File

@ -83,6 +83,9 @@ static const char USAGE_STRING[] =
"\t--multi-midi - enable combination Adlib and native MIDI\n" "\t--multi-midi - enable combination Adlib and native MIDI\n"
"\t--native-mt32 - true Roland MT-32 (disable GM emulation)\n" "\t--native-mt32 - true Roland MT-32 (disable GM emulation)\n"
"\t--aspect-ratio - enable aspect ratio correction\n" "\t--aspect-ratio - enable aspect ratio correction\n"
#ifndef DISABLE_SKY
"\t--floppy-intro - Use floppy version intro for Beneath a Steel Sky CD\n"
#endif
"\n" "\n"
"The meaning of long options can be inverted by prefixing them with \"no-\",\n" "The meaning of long options can be inverted by prefixing them with \"no-\",\n"
"e.g. \"--no-aspect-ratio\".\n" "e.g. \"--no-aspect-ratio\".\n"
@ -163,6 +166,10 @@ GameDetector::GameDetector() {
_amiga = false; _amiga = false;
_language = 0; _language = 0;
#ifndef DISABLE_SKY
_floppyIntro = false;
#endif
_talkSpeed = 60; _talkSpeed = 60;
_debugMode = 0; _debugMode = 0;
_debugLevel = 0; _debugLevel = 0;
@ -260,6 +267,10 @@ void GameDetector::updateconfig() {
exit(-1); exit(-1);
} }
#ifndef DISABLE_SKY
_floppyIntro = g_config->getBool("floppy_intro", _floppyIntro);
#endif
if ((val = g_config->get("language"))) if ((val = g_config->get("language")))
if ((_language = parseLanguage(val)) == -1) { if ((_language = parseLanguage(val)) == -1) {
printf("Error in the config file: invalid language.\n"); printf("Error in the config file: invalid language.\n");
@ -469,6 +480,11 @@ void GameDetector::parseCommandLine(int argc, char **argv) {
} else if (!strcmp (s, "aspect-ratio")) { } else if (!strcmp (s, "aspect-ratio")) {
_aspectRatio = long_option_value; _aspectRatio = long_option_value;
g_config->setBool ("aspect_ratio", _aspectRatio); g_config->setBool ("aspect_ratio", _aspectRatio);
#ifndef DISABLE_SKY
} else if (!strcmp (s, "floppy-intro")) {
_floppyIntro = long_option_value;
g_config->setBool ("floppy_intro", _floppyIntro);
#endif
} else { } else {
goto ShowHelpAndExit; goto ShowHelpAndExit;
} }

View File

@ -120,6 +120,8 @@ public:
bool _amiga; bool _amiga;
int _language; int _language;
bool _floppyIntro;
uint16 _talkSpeed; uint16 _talkSpeed;
uint16 _debugMode; uint16 _debugMode;
uint16 _debugLevel; uint16 _debugLevel;

View File

@ -205,6 +205,9 @@ bool SkyState::intro(void) {
uint32 *commandPtr = (uint32 *)zeroCommands; uint32 *commandPtr = (uint32 *)zeroCommands;
if (!isCDVersion())
_floppyIntro = true;
_skyDisk->prefetchFile(60112); // revolution screen _skyDisk->prefetchFile(60112); // revolution screen
_skyDisk->prefetchFile(60113); // revolution palette _skyDisk->prefetchFile(60113); // revolution palette
@ -214,7 +217,7 @@ bool SkyState::intro(void) {
escDelay(3000); //keep virgin screen up for 3 seconds escDelay(3000); //keep virgin screen up for 3 seconds
CHECK_ESC CHECK_ESC
if (!isCDVersion()) if (_floppyIntro)
_skyMusic->startMusic(1); _skyMusic->startMusic(1);
escDelay(3000); //and another 3 seconds. escDelay(3000); //and another 3 seconds.
@ -242,7 +245,7 @@ bool SkyState::intro(void) {
_skyScreen->paletteFadeUp(60115); _skyScreen->paletteFadeUp(60115);
if (isCDVersion()) { if (!_floppyIntro) {
return doCDIntro(); return doCDIntro();
} else { } else {
_skyDisk->prefetchFile(FN_A_PAL); _skyDisk->prefetchFile(FN_A_PAL);

View File

@ -88,6 +88,8 @@ SkyState::SkyState(GameDetector *detector, OSystem *syst)
_systemVars.language = detector->_language; _systemVars.language = detector->_language;
_detector = detector; _detector = detector;
_floppyIntro = detector->_floppyIntro;
_introTextSpace = 0; _introTextSpace = 0;
_introTextSave = 0; _introTextSave = 0;
} }

View File

@ -65,6 +65,8 @@ protected:
byte *_introTextSpace; byte *_introTextSpace;
byte *_introTextSave; byte *_introTextSave;
bool _floppyIntro;
uint16 _debugMode; uint16 _debugMode;
uint16 _debugLevel; uint16 _debugLevel;
bool _paintGrid; bool _paintGrid;