mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 21:59:17 +00:00
300 lines
6.2 KiB
C++
300 lines
6.2 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/>.
|
|
*
|
|
*/
|
|
|
|
#include "common/translation.h"
|
|
|
|
namespace TsAGE {
|
|
|
|
static const tSageGameDescription gameDescriptions[] = {
|
|
|
|
// Ringworld English CD and First Wave versions
|
|
{
|
|
{
|
|
"ringworld",
|
|
"CD",
|
|
AD_ENTRY1s("ring.rlb", "466f0e6492d9d0f34d35c5cd088de90f", 37847618),
|
|
Common::EN_ANY,
|
|
Common::kPlatformDOS,
|
|
ADGF_CD,
|
|
GUIO2(GUIO_NOSPEECH, GUIO_NOSFX)
|
|
},
|
|
GType_Ringworld,
|
|
GF_CD | GF_ALT_REGIONS
|
|
},
|
|
// Ringworld Spanish Floppy and CD use the same files
|
|
{
|
|
{
|
|
"ringworld",
|
|
"",
|
|
AD_ENTRY1s("ring.rlb", "cb8bba91b30cd172712371d7123bd763", 7427980),
|
|
Common::ES_ESP,
|
|
Common::kPlatformDOS,
|
|
ADGF_NO_FLAGS,
|
|
GUIO2(GUIO_NOSPEECH, GUIO_NOSFX)
|
|
},
|
|
GType_Ringworld,
|
|
GF_FLOPPY | GF_ALT_REGIONS
|
|
},
|
|
// Ringworld English Floppy version
|
|
{
|
|
{
|
|
"ringworld",
|
|
"Floppy",
|
|
AD_ENTRY1s("ring.rlb", "7b7f0c5b37b58fa5ec06ebb2ca0d0d9d", 8438770),
|
|
Common::EN_ANY,
|
|
Common::kPlatformDOS,
|
|
ADGF_NO_FLAGS,
|
|
GUIO2(GUIO_NOSPEECH, GUIO_NOSFX)
|
|
},
|
|
GType_Ringworld,
|
|
GF_FLOPPY
|
|
},
|
|
// Ringworld English Floppy Demo #1 version
|
|
{
|
|
{
|
|
"ringworld",
|
|
"Floppy Demo",
|
|
AD_ENTRY1s("tsage.rlb", "3b3604a97c06c91f3735d3e9d341f63f", 833453),
|
|
Common::EN_ANY,
|
|
Common::kPlatformDOS,
|
|
ADGF_DEMO,
|
|
GUIO2(GUIO_NOSPEECH, GUIO_NOSFX)
|
|
},
|
|
GType_Ringworld,
|
|
GF_FLOPPY | GF_DEMO
|
|
},
|
|
|
|
// Ringworld English Floppy Demo #2 version
|
|
{
|
|
{
|
|
"ringworld",
|
|
"Floppy Demo",
|
|
AD_ENTRY1s("demoring.rlb", "64050e1806203b15bb03876140eb4f56", 832206),
|
|
Common::EN_ANY,
|
|
Common::kPlatformDOS,
|
|
ADGF_DEMO,
|
|
GUIO2(GUIO_NOSPEECH, GUIO_NOSFX)
|
|
},
|
|
GType_Ringworld,
|
|
GF_FLOPPY | GF_DEMO | GF_ALT_REGIONS
|
|
},
|
|
|
|
// Found on Wacky Funsters!
|
|
{
|
|
{
|
|
"ringworld",
|
|
"Demo",
|
|
AD_ENTRY1s("demoring.rlb", "94a3a8a249e935f2c803d55136a10780", 1584551),
|
|
Common::EN_ANY,
|
|
Common::kPlatformDOS,
|
|
ADGF_DEMO,
|
|
GUIO2(GUIO_NOSPEECH, GUIO_NOSFX)
|
|
},
|
|
GType_Ringworld,
|
|
GF_FLOPPY | GF_DEMO | GF_ALT_REGIONS
|
|
},
|
|
|
|
// Blue Force floppy, uninstalled
|
|
{
|
|
{
|
|
"blueforce",
|
|
"Floppy, Uninstalled",
|
|
AD_ENTRY1s("blue.rlb", "0625e9f985e52bf221107f50672bd4c3", 1156508),
|
|
Common::EN_ANY,
|
|
Common::kPlatformDOS,
|
|
ADGF_UNSTABLE,
|
|
GUIO2(GUIO_NOSPEECH, GUIO_NOSFX)
|
|
},
|
|
GType_BlueForce,
|
|
GF_FLOPPY | GF_UNINSTALLED
|
|
},
|
|
|
|
// Blue Force
|
|
{
|
|
{
|
|
"blueforce",
|
|
"",
|
|
AD_ENTRY1s("blue.rlb", "17eabb456cb1546c66baf1aff387ba6a", 10032614),
|
|
Common::EN_ANY,
|
|
Common::kPlatformDOS,
|
|
ADGF_NO_FLAGS,
|
|
GUIO2(GUIO_NOSPEECH, GUIO_NOSFX)
|
|
},
|
|
GType_BlueForce,
|
|
GF_FLOPPY | GF_ALT_REGIONS
|
|
},
|
|
|
|
// Blue Force CD and First Wave use the same files
|
|
{
|
|
{
|
|
"blueforce",
|
|
"CD",
|
|
AD_ENTRY1s("blue.rlb", "99983f48cb218f1f3760cf2f9a7ef11d", 63863322),
|
|
Common::EN_ANY,
|
|
Common::kPlatformDOS,
|
|
ADGF_CD,
|
|
GUIO2(GUIO_NOSPEECH, GUIO_NOSFX)
|
|
},
|
|
GType_BlueForce,
|
|
GF_CD | GF_ALT_REGIONS
|
|
},
|
|
|
|
// Blue Force Spanish Floppy and CD use the same files
|
|
{
|
|
{
|
|
"blueforce",
|
|
"",
|
|
AD_ENTRY1s("blue.rlb", "5b2b35c51b62e82d82b0791540bfae2d", 10082565),
|
|
Common::ES_ESP,
|
|
Common::kPlatformDOS,
|
|
ADGF_NO_FLAGS,
|
|
GUIO2(GUIO_NOSPEECH, GUIO_NOSFX)
|
|
},
|
|
GType_BlueForce,
|
|
GF_FLOPPY | GF_ALT_REGIONS
|
|
},
|
|
|
|
// Found on Wacky Funsters!
|
|
{
|
|
{
|
|
"blueforce",
|
|
"Demo",
|
|
AD_ENTRY1s("demoblue.rlb", "08491db14d395601e92c230d4fb5d2d5", 1586930),
|
|
Common::EN_ANY,
|
|
Common::kPlatformDOS,
|
|
ADGF_DEMO,
|
|
GUIO2(GUIO_NOSPEECH, GUIO_NOSFX)
|
|
},
|
|
GType_BlueForce,
|
|
GF_CD | GF_DEMO | GF_ALT_REGIONS
|
|
},
|
|
|
|
// Found on Geekwad
|
|
{
|
|
{
|
|
"blueforce",
|
|
"Demo",
|
|
AD_ENTRY1s("demoblue.rlb", "a8f631135718844bc72ea8bd85c57ba6", 901321),
|
|
Common::EN_ANY,
|
|
Common::kPlatformDOS,
|
|
ADGF_DEMO,
|
|
GUIO2(GUIO_NOSPEECH, GUIO_NOSFX)
|
|
},
|
|
GType_BlueForce,
|
|
GF_CD | GF_DEMO | GF_ALT_REGIONS
|
|
},
|
|
|
|
// Return to Ringworld
|
|
{
|
|
{
|
|
"ringworld2",
|
|
"CD",
|
|
AD_ENTRY1s("r2rw.rlb", "df6c25622387007788ca36d99362c1f0", 47586928),
|
|
Common::EN_ANY,
|
|
Common::kPlatformDOS,
|
|
ADGF_CD,
|
|
GUIO0()
|
|
},
|
|
GType_Ringworld2,
|
|
GF_CD | GF_ALT_REGIONS
|
|
},
|
|
// Return to Ringworld - Demo
|
|
{
|
|
{
|
|
"ringworld2",
|
|
"CD Demo",
|
|
AD_ENTRY1s("r2rw.rlb", "c8e1a82c67c3caf57368eadde13dc15f", 32384464),
|
|
Common::EN_ANY,
|
|
Common::kPlatformDOS,
|
|
ADGF_CD,
|
|
GUIO0()
|
|
},
|
|
GType_Ringworld2,
|
|
GF_CD | GF_ALT_REGIONS | GF_DEMO
|
|
},
|
|
|
|
// Return to Ringworld. Spanish fan translation.
|
|
{
|
|
{
|
|
"ringworld2",
|
|
"CD",
|
|
AD_ENTRY1s("r2rw.rlb", "05f9af7b0153a0c5727022dc0122d02b", 47678672),
|
|
Common::ES_ESP,
|
|
Common::kPlatformDOS,
|
|
ADGF_CD,
|
|
GUIO0()
|
|
},
|
|
GType_Ringworld2,
|
|
GF_CD | GF_ALT_REGIONS
|
|
},
|
|
|
|
// Found on Wacky Funsters!
|
|
{
|
|
{
|
|
"protostar",
|
|
"Demo",
|
|
AD_ENTRY1s("demops.rlb", "8a2aa522b4473bcc32e06371568c0d9a", 1019247),
|
|
Common::EN_ANY,
|
|
Common::kPlatformDOS,
|
|
ADGF_DEMO,
|
|
GUIO2(GUIO_NOSPEECH, GUIO_NOSFX)
|
|
},
|
|
GType_Ringworld,
|
|
GF_FLOPPY | GF_DEMO | GF_ALT_REGIONS
|
|
},
|
|
|
|
// Found on Geekwad
|
|
{
|
|
{
|
|
"protostar",
|
|
"Demo",
|
|
AD_ENTRY1s("demops.rlb", "efe17413126b13228564f687d185a7ad", 511111),
|
|
Common::EN_ANY,
|
|
Common::kPlatformDOS,
|
|
ADGF_DEMO,
|
|
GUIO2(GUIO_NOSPEECH, GUIO_NOSFX)
|
|
},
|
|
GType_Ringworld,
|
|
GF_FLOPPY | GF_DEMO | GF_ALT_REGIONS
|
|
},
|
|
|
|
#ifdef TSAGE_SHERLOCK_ENABLED
|
|
// The Lost Files of Sherlock Holmes - The Case of the Serrated Scalpel (Logo)
|
|
{
|
|
{
|
|
"sherlock-logo",
|
|
"",
|
|
AD_ENTRY1s("sf3.rlb", "153f9b93eda4e95578e31be30e69b5e5", 50419),
|
|
Common::EN_ANY,
|
|
Common::kPlatformDOS,
|
|
ADGF_NO_FLAGS,
|
|
GUIO0()
|
|
},
|
|
GType_Sherlock1,
|
|
GF_FLOPPY
|
|
},
|
|
#endif
|
|
|
|
{ AD_TABLE_END_MARKER, 0, 0 }
|
|
};
|
|
|
|
} // End of namespace TsAGE
|