2014-05-16 21:58:49 +02:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "bladerunner/bladerunner.h"
|
|
|
|
#include "bladerunner/detection_tables.h"
|
2018-11-21 23:16:15 +01:00
|
|
|
#include "bladerunner/savefile.h"
|
|
|
|
|
|
|
|
#include "common/config-manager.h"
|
|
|
|
#include "common/system.h"
|
|
|
|
#include "common/savefile.h"
|
|
|
|
#include "common/serializer.h"
|
2019-02-10 19:45:50 +01:00
|
|
|
#include "common/translation.h"
|
2018-11-21 23:16:15 +01:00
|
|
|
|
|
|
|
#include "engines/advancedDetector.h"
|
2014-05-16 21:58:49 +02:00
|
|
|
|
|
|
|
namespace BladeRunner {
|
|
|
|
|
|
|
|
static const PlainGameDescriptor bladeRunnerGames[] = {
|
|
|
|
{"bladerunner", "Blade Runner"},
|
2019-05-18 20:13:21 +02:00
|
|
|
{"bladerunner-final", "Blade Runner with restored content"},
|
2014-05-16 21:58:49 +02:00
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
|
2019-02-10 19:45:50 +01:00
|
|
|
static const ADExtraGuiOptionsMap optionsList[] = {
|
|
|
|
{
|
|
|
|
GAMEOPTION_SITCOM,
|
|
|
|
{
|
|
|
|
_s("Sitcom mode"),
|
|
|
|
_s("Game will add laughter after actor's line or narration"),
|
|
|
|
"sitcom",
|
|
|
|
false
|
|
|
|
}
|
|
|
|
},
|
2019-02-10 20:32:49 +01:00
|
|
|
{
|
|
|
|
GAMEOPTION_SHORTY,
|
|
|
|
{
|
|
|
|
_s("Shorty mode"),
|
|
|
|
_s("Game will shrink the actors and make their voices high pitched"),
|
|
|
|
"shorty",
|
|
|
|
false
|
|
|
|
}
|
|
|
|
},
|
2019-09-16 11:59:52 +03:00
|
|
|
{
|
|
|
|
GAMEOPTION_FRAMELIMITER_NODELAYMILLIS,
|
|
|
|
{
|
|
|
|
_s("Frame limiter high performance mode"),
|
|
|
|
_s("This mode may result in high CPU usage! It avoids use of delayMillis() function."),
|
|
|
|
"nodelaymillisfl",
|
|
|
|
false
|
|
|
|
}
|
|
|
|
},
|
2019-11-10 17:37:56 +02:00
|
|
|
{
|
|
|
|
GAMEOPTION_FRAMELIMITER_FPS,
|
|
|
|
{
|
|
|
|
_s("Max frames per second limit"),
|
|
|
|
_s("This mode targets a maximum of 120 fps. When disabled, the game targets 60 fps"),
|
|
|
|
"frames_per_secondfl",
|
|
|
|
false
|
|
|
|
}
|
|
|
|
},
|
2020-02-27 20:24:12 +02:00
|
|
|
{
|
|
|
|
GAMEOPTION_DISABLE_STAMINA_DRAIN,
|
|
|
|
{
|
|
|
|
_s("Disable McCoy's quick stamina drain"),
|
|
|
|
_s("When running, McCoy won't start slowing down as soon as the player stops clicking the mouse"),
|
|
|
|
"disable_stamina_drain",
|
|
|
|
false
|
|
|
|
}
|
|
|
|
},
|
2019-02-10 19:45:50 +01:00
|
|
|
AD_EXTRA_GUI_OPTIONS_TERMINATOR
|
|
|
|
};
|
|
|
|
|
2014-05-16 21:58:49 +02:00
|
|
|
} // End of namespace BladeRunner
|
|
|
|
|
|
|
|
class BladeRunnerMetaEngine : public AdvancedMetaEngine {
|
|
|
|
public:
|
2018-11-21 23:16:15 +01:00
|
|
|
BladeRunnerMetaEngine();
|
2014-05-16 21:58:49 +02:00
|
|
|
|
2020-01-31 12:49:43 +01:00
|
|
|
const char *getEngineId() const override;
|
2018-11-21 23:16:15 +01:00
|
|
|
const char *getName() const override;
|
|
|
|
const char *getOriginalCopyright() const override;
|
|
|
|
bool createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const override;
|
|
|
|
bool hasFeature(MetaEngineFeature f) const override;
|
|
|
|
SaveStateList listSaves(const char *target) const override;
|
|
|
|
int getMaximumSaveSlot() const override;
|
|
|
|
void removeSaveState(const char *target, int slot) const override;
|
|
|
|
SaveStateDescriptor querySaveMetaInfos(const char *target, int slot) const override;
|
|
|
|
};
|
2014-05-16 21:58:49 +02:00
|
|
|
|
2018-11-21 23:16:15 +01:00
|
|
|
BladeRunnerMetaEngine::BladeRunnerMetaEngine()
|
|
|
|
: AdvancedMetaEngine(
|
|
|
|
BladeRunner::gameDescriptions,
|
|
|
|
sizeof(BladeRunner::gameDescriptions[0]),
|
2019-02-10 19:45:50 +01:00
|
|
|
BladeRunner::bladeRunnerGames,
|
|
|
|
BladeRunner::optionsList) {}
|
2014-05-16 21:58:49 +02:00
|
|
|
|
2016-09-15 18:23:35 +02:00
|
|
|
const char *BladeRunnerMetaEngine::getEngineId() const {
|
|
|
|
return "bladerunner";
|
|
|
|
}
|
2018-11-21 23:16:15 +01:00
|
|
|
|
|
|
|
const char *BladeRunnerMetaEngine::getName() const {
|
2016-09-15 20:04:14 +02:00
|
|
|
return "Blade Runner";
|
2018-11-21 23:16:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *BladeRunnerMetaEngine::getOriginalCopyright() const {
|
|
|
|
return "Blade Runner (C) 1997 Westwood Studios";
|
|
|
|
}
|
2014-05-16 21:58:49 +02:00
|
|
|
|
2018-01-29 20:32:28 +01:00
|
|
|
bool BladeRunnerMetaEngine::createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const {
|
2018-01-14 13:33:45 +01:00
|
|
|
*engine = new BladeRunner::BladeRunnerEngine(syst, desc);
|
2014-05-16 21:58:49 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-11-21 23:16:15 +01:00
|
|
|
bool BladeRunnerMetaEngine::hasFeature(MetaEngineFeature f) const {
|
|
|
|
return
|
|
|
|
f == kSupportsListSaves ||
|
|
|
|
f == kSupportsLoadingDuringStartup ||
|
|
|
|
f == kSupportsDeleteSave ||
|
|
|
|
f == kSavesSupportMetaInfo ||
|
|
|
|
f == kSavesSupportThumbnail ||
|
2019-05-25 15:56:12 -07:00
|
|
|
f == kSavesSupportCreationDate ||
|
|
|
|
f == kSavesSupportPlayTime ||
|
2018-11-21 23:16:15 +01:00
|
|
|
f == kSimpleSavesNames;
|
|
|
|
}
|
|
|
|
|
|
|
|
SaveStateList BladeRunnerMetaEngine::listSaves(const char *target) const {
|
2018-11-25 21:47:00 +01:00
|
|
|
return BladeRunner::SaveFileManager::list(target);
|
2018-11-21 23:16:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int BladeRunnerMetaEngine::getMaximumSaveSlot() const {
|
|
|
|
return 999;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BladeRunnerMetaEngine::removeSaveState(const char *target, int slot) const {
|
2018-12-05 18:18:13 +01:00
|
|
|
BladeRunner::SaveFileManager::remove(target, slot);
|
2018-11-21 23:16:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SaveStateDescriptor BladeRunnerMetaEngine::querySaveMetaInfos(const char *target, int slot) const {
|
2018-11-25 21:47:00 +01:00
|
|
|
return BladeRunner::SaveFileManager::queryMetaInfos(target, slot);
|
2018-11-21 23:16:15 +01:00
|
|
|
}
|
|
|
|
|
2014-05-16 21:58:49 +02:00
|
|
|
#if PLUGIN_ENABLED_DYNAMIC(BLADERUNNER)
|
|
|
|
REGISTER_PLUGIN_DYNAMIC(BLADERUNNER, PLUGIN_TYPE_ENGINE, BladeRunnerMetaEngine);
|
|
|
|
#else
|
|
|
|
REGISTER_PLUGIN_STATIC(BLADERUNNER, PLUGIN_TYPE_ENGINE, BladeRunnerMetaEngine);
|
|
|
|
#endif
|