Initial commit
This commit is contained in:
284
engines/private/detection.cpp
Normal file
284
engines/private/detection.cpp
Normal file
@@ -0,0 +1,284 @@
|
||||
/* 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 3 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, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "base/plugins.h"
|
||||
#include "common/translation.h"
|
||||
#include "engines/advancedDetector.h"
|
||||
|
||||
#include "private/private.h"
|
||||
#include "private/detection.h"
|
||||
|
||||
static const DebugChannelDef debugFlagList[] = {
|
||||
{Private::kPrivateDebugFunction, "function", "Function execution debug channel"},
|
||||
{Private::kPrivateDebugCode, "code", "Code execution debug channel"},
|
||||
{Private::kPrivateDebugScript, "script", "Script execution debug channel"},
|
||||
DEBUG_CHANNEL_END
|
||||
};
|
||||
|
||||
namespace Private {
|
||||
static const PlainGameDescriptor privateGames[] = {
|
||||
{ "private-eye", "Private Eye" },
|
||||
{ nullptr, nullptr }
|
||||
};
|
||||
|
||||
static const ADGameDescription gameDescriptions[] = {
|
||||
{
|
||||
"private-eye", // US release
|
||||
nullptr,
|
||||
AD_ENTRY2s("pvteye.z", "b682118cda6a42fa89833cae2b8824bd", 271895,
|
||||
"intro.smk", "270a1d0a29df122fc3d1d38e655161a7", 7310984),
|
||||
Common::EN_USA,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO3(GUIO_NOMIDI, GAMEOPTION_SFX_SUBTITLES, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // Demo from the US release v1.0.0.23
|
||||
"Demo",
|
||||
AD_ENTRY2s("pvteye.z", "af383c813157810e89d8d6d595895ff7", 263893,
|
||||
"bklynlgo.bmp", "1dfb703349a46f8ec183de107992b7f5", 33118),
|
||||
Common::EN_USA,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_DEMO,
|
||||
GUIO3(GUIO_NOMIDI, GAMEOPTION_SFX_SUBTITLES, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // EU release (UK)
|
||||
nullptr,
|
||||
AD_ENTRY2s("pvteye.z", "d9ce391395701615e8b5d04bc4bf7ec3", 284699,
|
||||
"bklynlgo.bmp", "1dfb703349a46f8ec183de107992b7f5", 33118),
|
||||
Common::EN_GRB,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO3(GUIO_NOMIDI, GAMEOPTION_SFX_SUBTITLES, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // Demo from the EU release
|
||||
"Demo",
|
||||
AD_ENTRY2s("pvteye.z", "01ca8641970189cb2ca3a96526026091", 284129,
|
||||
"bklynlgo.bmp", "1dfb703349a46f8ec183de107992b7f5", 33118),
|
||||
Common::EN_GRB,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_DEMO,
|
||||
GUIO3(GUIO_NOMIDI, GAMEOPTION_SFX_SUBTITLES, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // Demo from PCGamer Disc 2.6 JULY 1996 v1.0.0.12
|
||||
"Demo",
|
||||
AD_ENTRY2s("pvteye.z", "8ef908e212bb9c1e10f5e3c81f56682c", 263893,
|
||||
"bklynlgo.bmp", "1dfb703349a46f8ec183de107992b7f5", 33118),
|
||||
Common::EN_USA,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_DEMO,
|
||||
GUIO3(GUIO_NOMIDI, GAMEOPTION_SFX_SUBTITLES, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // Another demo
|
||||
"Demo",
|
||||
AD_ENTRY2s("pvteye.z", "af383c813157810e89d8d6d595895ff7", 271214,
|
||||
"bklynlgo.bmp", "1dfb703349a46f8ec183de107992b7f5", 33118),
|
||||
Common::EN_USA,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_DEMO,
|
||||
GUIO3(GUIO_NOMIDI, GAMEOPTION_SFX_SUBTITLES, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // EU release (ES)
|
||||
nullptr,
|
||||
AD_ENTRY2s("pvteye.ex_", "f41770550ab717086b2d0c805fef4b8f", 498176,
|
||||
"bklynlgo.bmp", "1dfb703349a46f8ec183de107992b7f5", 33118),
|
||||
Common::ES_ESP,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO3(GUIO_NOMIDI, GAMEOPTION_SFX_SUBTITLES, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // Demo from the EU release (ES)
|
||||
"Demo",
|
||||
AD_ENTRY2s("pvtdemo.ex_", "048f751acd7a0f1a87b20d6dc5229210", 497152,
|
||||
"bklynlgo.bmp", "1dfb703349a46f8ec183de107992b7f5", 33118),
|
||||
Common::ES_ESP,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_DEMO,
|
||||
GUIO3(GUIO_NOMIDI, GAMEOPTION_SFX_SUBTITLES, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // EU release (FR)
|
||||
nullptr,
|
||||
AD_ENTRY2s("pvteye.ex_", "ae0dec43b2f54d45c8a1c93e97092141", 600576,
|
||||
"bklynlgo.bmp", "1dfb703349a46f8ec183de107992b7f5", 33118),
|
||||
Common::FR_FRA,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO2(GUIO_NOMIDI, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // EU release (DE)
|
||||
nullptr,
|
||||
AD_ENTRY2s("pvteye.ex_", "5ca171c4e8d804c7277887277d049f03", 600576,
|
||||
"bklynlgo.bmp", "1dfb703349a46f8ec183de107992b7f5", 33118),
|
||||
Common::DE_DEU,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO2(GUIO_NOMIDI, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // Promotional demo disc
|
||||
"Demo",
|
||||
AD_ENTRY2s("pvteye.z", "adb2ceca453da546d5e86baad0c73cd1", 262537,
|
||||
"bklynlgo.bmp", "1dfb703349a46f8ec183de107992b7f5", 33118),
|
||||
Common::EN_USA,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_DEMO,
|
||||
GUIO2(GUIO_NOMIDI, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // Demo from the EU release (DE)
|
||||
"Demo",
|
||||
AD_ENTRY2s("pvtdemo.ex_", "17156cbac7d14b08f4e351ac0e16a889", 599040,
|
||||
"bklynlgo.bmp", "1dfb703349a46f8ec183de107992b7f5", 33118),
|
||||
Common::DE_DEU,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_DEMO,
|
||||
GUIO2(GUIO_NOMIDI, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // Demo from the EU release (FR)
|
||||
"Demo",
|
||||
AD_ENTRY2s("pvtdemo.ex_", "ad2156a762b3e376fda1b791a9491ea8", 599040,
|
||||
"bklynlgo.bmp", "1dfb703349a46f8ec183de107992b7f5", 33118),
|
||||
Common::FR_FRA,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_DEMO,
|
||||
GUIO2(GUIO_NOMIDI, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // RU release
|
||||
nullptr,
|
||||
AD_ENTRY2s("pvteye.z", "b682118cda6a42fa89833cae2b8824bd", 271895,
|
||||
"intro.smk", "61cc13c9e4e2affd574087209df5c4a4", 7241368),
|
||||
Common::RU_RUS,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO2(GUIO_NOMIDI, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // KO release
|
||||
nullptr,
|
||||
AD_ENTRY2s("pvteye.z", "b682118cda6a42fa89833cae2b8824bd", 271895,
|
||||
"intro.smk", "288f5f61311eb10fc6861707c340c15e", 7195200),
|
||||
Common::KO_KOR,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO2(GUIO_NOMIDI, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // JP release
|
||||
nullptr,
|
||||
AD_ENTRY2s("pvteye.z", "f5fb6e89e98294a09ff21e72282b58dc", 239066,
|
||||
"intro.smk", "b8d15a522f896ccbe4539394b6b8ec8a", 7202836),
|
||||
Common::JA_JPN,
|
||||
Common::kPlatformWindows,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO2(GUIO_NOMIDI, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // MacOS release (US)
|
||||
nullptr,
|
||||
AD_ENTRY2s("game.mac", "d:33553cc04813d3f658bbe9d548377878", 81894,
|
||||
"bklynlgo.bmp", "d:1dfb703349a46f8ec183de107992b7f5", 33118),
|
||||
Common::EN_USA,
|
||||
Common::kPlatformMacintosh,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO3(GUIO_NOMIDI, GAMEOPTION_SFX_SUBTITLES, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // MacOS release (US) uninstalled
|
||||
0,
|
||||
AD_ENTRY1s("Private Eye Installer", "d:02533427ebdf26d5dd12cee8e9f4de4d", 1647309),
|
||||
Common::EN_USA,
|
||||
Common::kPlatformMacintosh,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO1(GUIO_NOMIDI)
|
||||
},
|
||||
{
|
||||
"private-eye", // MacOS release (JP) uninstalled
|
||||
0,
|
||||
AD_ENTRY1s("xn--16jc8na7ay6a0eyg9e5nud0e4525d", "d:113b57e2f6bdaf1146fe83fe0f992891", 1477309),
|
||||
Common::JA_JPN,
|
||||
Common::kPlatformMacintosh,
|
||||
ADGF_NO_FLAGS,
|
||||
GUIO1(GUIO_NOMIDI)
|
||||
},
|
||||
{
|
||||
"private-eye", // MacOS demo (US)
|
||||
"Demo",
|
||||
AD_ENTRY2s("demogame.mac", "d:cfbceaa8b91f0f53c745db61d1bc9749", 6103,
|
||||
"bklynlgo.bmp", "d:1dfb703349a46f8ec183de107992b7f5", 33118),
|
||||
Common::EN_USA,
|
||||
Common::kPlatformMacintosh,
|
||||
ADGF_DEMO,
|
||||
GUIO3(GUIO_NOMIDI, GAMEOPTION_SFX_SUBTITLES, GAMEOPTION_HIGHLIGHT_MASKS)
|
||||
},
|
||||
{
|
||||
"private-eye", // MacOS demo (US) uninstalled
|
||||
0,
|
||||
AD_ENTRY1s("Private Eye Demo Installer", "d:e7665ddc5e6d932c4a65598ecc4ec7d2", 1626393),
|
||||
Common::EN_USA,
|
||||
Common::kPlatformMacintosh,
|
||||
ADGF_DEMO,
|
||||
GUIO1(GUIO_NOMIDI)
|
||||
},
|
||||
AD_TABLE_END_MARKER
|
||||
};
|
||||
} // End of namespace Private
|
||||
|
||||
static const char *const directoryGlobs[] = {
|
||||
"support",
|
||||
"intro",
|
||||
nullptr
|
||||
};
|
||||
|
||||
class PrivateMetaEngineDetection : public AdvancedMetaEngineDetection<ADGameDescription> {
|
||||
public:
|
||||
PrivateMetaEngineDetection() : AdvancedMetaEngineDetection(Private::gameDescriptions, Private::privateGames) {
|
||||
_maxScanDepth = 2;
|
||||
_directoryGlobs = directoryGlobs;
|
||||
}
|
||||
|
||||
const char *getName() const override {
|
||||
return "private";
|
||||
}
|
||||
|
||||
const char *getEngineName() const override {
|
||||
return "Private Eye";
|
||||
}
|
||||
|
||||
const char *getOriginalCopyright() const override {
|
||||
return "Copyright (C) Brooklyn Multimedia";
|
||||
}
|
||||
|
||||
const DebugChannelDef *getDebugChannels() const override {
|
||||
return debugFlagList;
|
||||
}
|
||||
};
|
||||
|
||||
REGISTER_PLUGIN_STATIC(PRIVATE_DETECTION, PLUGIN_TYPE_ENGINE_DETECTION, PrivateMetaEngineDetection);
|
||||
Reference in New Issue
Block a user