FREESCAPE: added game option to disable demo mode

This commit is contained in:
neuromancer 2022-11-21 23:38:02 +01:00
parent 1eb45bc162
commit e90c014c1f
6 changed files with 19 additions and 2 deletions

View File

@ -252,7 +252,7 @@ static const DebugChannelDef debugFlagList[] = {
class FreescapeMetaEngineDetection : public AdvancedMetaEngineDetection {
public:
FreescapeMetaEngineDetection() : AdvancedMetaEngineDetection(Freescape::gameDescriptions, sizeof(ADGameDescription), Freescape::freescapeGames) {
_guiOptions = GUIO2(GUIO_NOMIDI, GAMEOPTION_PRERECORDED_SOUNDS);
_guiOptions = GUIO3(GUIO_NOMIDI, GAMEOPTION_PRERECORDED_SOUNDS, GAMEOPTION_DISABLE_DEMO_MODE);
}
const char *getName() const override {

View File

@ -24,5 +24,6 @@
#define GAMEOPTION_PRERECORDED_SOUNDS GUIO_GAMEOPTIONS1
#define GAMEOPTION_AUTOMATIC_DRILLING GUIO_GAMEOPTIONS2
#define GAMEOPTION_DISABLE_DEMO_MODE GUIO_GAMEOPTIONS3
#endif

View File

@ -56,6 +56,9 @@ FreescapeEngine::FreescapeEngine(OSystem *syst, const ADGameDescription *gd)
if (!Common::parseBool(ConfMan.get("prerecorded_sounds"), _usePrerecordedSounds))
error("Failed to parse bool from prerecorded_sounds option");
if (!Common::parseBool(ConfMan.get("disable_demo_mode"), _disableDemoMode))
error("Failed to parse bool from disable_demo_mode option");
_startArea = 0;
_startEntrance = 0;
_currentArea = nullptr;

View File

@ -163,6 +163,7 @@ public:
// Input
bool _demoMode;
bool _disableDemoMode;
bool _flyMode;
bool _shootMode;
bool _noClipMode;

View File

@ -245,7 +245,7 @@ void DrillerEngine::loadAssetsDemo() {
} else
error("Unsupported demo for Driller");
_demoMode = true;
_demoMode = !_disableDemoMode;
_angleRotationIndex = 0;
}

View File

@ -47,6 +47,18 @@ static const ADExtraGuiOptionsMap optionsList[] = {
0
}
},
{
GAMEOPTION_DISABLE_DEMO_MODE,
{
_s("Disable demo mode"),
_s("Never activate demo mode"),
"disable_demo_mode",
false,
0,
0
}
},
AD_EXTRA_GUI_OPTIONS_TERMINATOR
};