scummvm/engines/mads/detection_tables.h
2021-12-26 18:48:43 +01:00

159 lines
3.9 KiB
C++

/* 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/>.
*
*/
namespace MADS {
static const MADSGameDescription gameDescriptions[] = {
#if 0
{
// Rex Nebular and the Cosmic Gender Bender DOS English (compressed)
// Removed for now, until the original floppy compression is supported
{
"nebular",
0,
AD_ENTRY1s("mpslabs.001", "4df5c557b52abb5b661cf4befe5ae301", 1315354),
Common::EN_ANY,
Common::kPlatformDOS,
ADGF_NO_FLAGS,
GUIO5(GUIO_NOSPEECH, GAMEOPTION_EASY_MOUSE, GAMEOPTION_ANIMATED_INVENTORY, GAMEOPTION_ANIMATED_INTERFACE, GAMEOPTION_NAUGHTY_MODE)
},
GType_RexNebular,
0
},
#endif
{
// Rex Nebular and the Cosmic Gender Bender DOS English
{
"nebular",
0,
AD_ENTRY1s("section1.hag", "6f725eb38660de8af31ec7cdd628d615", 927222),
Common::EN_ANY,
Common::kPlatformDOS,
ADGF_NO_FLAGS,
#ifdef USE_TTS
GUIO6(GUIO_NOSPEECH, GAMEOPTION_EASY_MOUSE, GAMEOPTION_ANIMATED_INVENTORY, GAMEOPTION_ANIMATED_INTERFACE, GAMEOPTION_NAUGHTY_MODE, GAMEOPTION_TTS_NARRATOR)
#else
GUIO5(GUIO_NOSPEECH, GAMEOPTION_EASY_MOUSE, GAMEOPTION_ANIMATED_INVENTORY, GAMEOPTION_ANIMATED_INTERFACE, GAMEOPTION_NAUGHTY_MODE)
#endif
},
GType_RexNebular,
0
},
{
// Rex Nebular and the Cosmic Gender Bender DOS English 8.49 Alternate
{
"nebular",
0,
AD_ENTRY1s("section1.hag", "d583576923e3437937fb7f46f4b6274f", 927222),
Common::EN_ANY,
Common::kPlatformDOS,
ADGF_NO_FLAGS,
GUIO5(GUIO_NOSPEECH, GAMEOPTION_EASY_MOUSE, GAMEOPTION_ANIMATED_INVENTORY, GAMEOPTION_ANIMATED_INTERFACE, GAMEOPTION_NAUGHTY_MODE)
},
GType_RexNebular,
0
},
{
// Rex Nebular and the Cosmic Gender Bender DOS English Demo
{
"nebular",
"Demo",
AD_ENTRY1s("section1.hag", "ead7ea63459173c32569feecac608c4f", 192065),
Common::EN_ANY,
Common::kPlatformDOS,
ADGF_DEMO,
GUIO5(GUIO_NOSPEECH, GAMEOPTION_EASY_MOUSE, GAMEOPTION_ANIMATED_INVENTORY, GAMEOPTION_ANIMATED_INTERFACE, GAMEOPTION_NAUGHTY_MODE)
},
GType_RexNebular,
0
},
#ifdef ENABLE_MADSV2
{
// Return of the Phantom DOS English
{
"phantom",
0,
AD_ENTRY1s("section1.hag", "76e2d47a7aebafe48edc9884b3d91782", 1130939),
Common::EN_ANY,
Common::kPlatformDOS,
ADGF_UNSTABLE,
GUIO1(GAMEOPTION_EASY_MOUSE)
},
GType_Phantom,
0
},
{
// Return of the Phantom DOS English Demo
{
"phantom",
"Demo",
AD_ENTRY1s("section1.hag", "ad738c8edb139790ebaf78f8ceceb182", 123627),
Common::EN_ANY,
Common::kPlatformDOS,
ADGF_UNSTABLE | ADGF_DEMO,
GUIO1(GAMEOPTION_EASY_MOUSE)
},
GType_Phantom,
0
},
{
// Dragonsphere DOS English
{
"dragonsphere",
0,
AD_ENTRY1s("section1.hag", "2770e441d296be5e806194693eebd95a", 2061199),
Common::EN_ANY,
Common::kPlatformDOS,
ADGF_UNSTABLE,
GUIO1(GAMEOPTION_EASY_MOUSE)
},
GType_Dragonsphere,
0
},
{
// Dragonsphere DOS English demo
{
"dragonsphere",
"Demo",
AD_ENTRY1s("section1.hag", "9587b06eb4f9ee7ed5b19af4643743b0", 328083),
Common::EN_ANY,
Common::kPlatformDOS,
ADGF_UNSTABLE | ADGF_DEMO,
GUIO1(GAMEOPTION_EASY_MOUSE)
},
GType_Dragonsphere,
0
},
#endif
{ AD_TABLE_END_MARKER, 0, 0 }
};
} // End of namespace MADS