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"
|
2020-08-13 21:10:39 +05:30
|
|
|
#include "bladerunner/detection/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;
|
|
|
|
};
|
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
|
|
|
|
2020-08-07 04:42:10 +05:30
|
|
|
REGISTER_PLUGIN_STATIC(BLADERUNNER_DETECTION, PLUGIN_TYPE_METAENGINE, BladeRunnerMetaEngine);
|