mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
FREESCAPE: added game option to disable demo mode
This commit is contained in:
parent
1eb45bc162
commit
e90c014c1f
@ -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 {
|
||||
|
@ -24,5 +24,6 @@
|
||||
|
||||
#define GAMEOPTION_PRERECORDED_SOUNDS GUIO_GAMEOPTIONS1
|
||||
#define GAMEOPTION_AUTOMATIC_DRILLING GUIO_GAMEOPTIONS2
|
||||
#define GAMEOPTION_DISABLE_DEMO_MODE GUIO_GAMEOPTIONS3
|
||||
|
||||
#endif
|
||||
|
@ -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;
|
||||
|
@ -163,6 +163,7 @@ public:
|
||||
|
||||
// Input
|
||||
bool _demoMode;
|
||||
bool _disableDemoMode;
|
||||
bool _flyMode;
|
||||
bool _shootMode;
|
||||
bool _noClipMode;
|
||||
|
@ -245,7 +245,7 @@ void DrillerEngine::loadAssetsDemo() {
|
||||
} else
|
||||
error("Unsupported demo for Driller");
|
||||
|
||||
_demoMode = true;
|
||||
_demoMode = !_disableDemoMode;
|
||||
_angleRotationIndex = 0;
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user