2020-11-21 08:21:10 -08: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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace AGS {
|
|
|
|
|
2021-01-10 20:34:51 -08:00
|
|
|
static const PlainGameDescriptor GAME_NAMES[] = {
|
2020-11-21 08:21:10 -08:00
|
|
|
{ "ags", "Adventure Game Studio Game" },
|
2020-11-28 21:49:31 -08:00
|
|
|
|
2021-01-10 20:39:39 -08:00
|
|
|
{ "atotk", "A Tale Of Two Kingdoms" },
|
2020-11-28 21:49:31 -08:00
|
|
|
{ "bcremake", "Black Cauldron Remake" },
|
2021-01-20 21:12:38 -08:00
|
|
|
{ "blackwelllegacy", "The Blackwell Legacy" },
|
2021-01-10 20:34:51 -08:00
|
|
|
{ "kq2agdi", "Kings Quest II - Romancing The Stones" },
|
|
|
|
|
2020-11-21 08:21:10 -08:00
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|
2021-01-10 20:34:51 -08:00
|
|
|
#define ENGLISH_ENTRY(ID, FILENAME, MD5, SIZE) { \
|
|
|
|
{ \
|
|
|
|
ID, \
|
|
|
|
nullptr, \
|
|
|
|
AD_ENTRY1s(FILENAME, MD5, SIZE), \
|
|
|
|
Common::EN_ANY, \
|
|
|
|
Common::kPlatformUnknown, \
|
|
|
|
ADGF_NO_FLAGS, \
|
|
|
|
GUIO1(GUIO_NOSPEECH) \
|
|
|
|
} \
|
|
|
|
}
|
2020-11-28 21:49:31 -08:00
|
|
|
|
2020-11-21 08:21:10 -08:00
|
|
|
static const AGSGameDescription GAME_DESCRIPTIONS[] = {
|
2021-01-10 20:34:51 -08:00
|
|
|
ENGLISH_ENTRY("bcremake", "bc.exe", "0710e2ec71042617f565c01824f0cf3c", 7683255),
|
2021-01-10 20:39:39 -08:00
|
|
|
ENGLISH_ENTRY("atotk", "atotk.exe", "37cf2d4d07842d45b59c6dd9387c1ee7", 42872046),
|
2021-01-20 21:12:38 -08:00
|
|
|
ENGLISH_ENTRY("blackwelllegacy", "blackwell1.exe", "605e124cb7e0b56841c471e2d641c224", 18822697),
|
2021-01-17 09:54:41 -08:00
|
|
|
ENGLISH_ENTRY("kq2agdi", "kq2vga.exe", "40cfb7563df7dacf6530b19289a4745b", 12563246), // 3.1
|
2020-11-28 21:49:31 -08:00
|
|
|
|
2020-11-21 08:21:10 -08:00
|
|
|
{ AD_TABLE_END_MARKER }
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace AGS
|