ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
obsolete.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef SCUMM_OBSOLETE_H
23 #define SCUMM_OBSOLETE_H
24 
25 namespace Scumm {
26 
27 #define UNK Common::kPlatformUnknown
28 
33 static const Engines::ObsoleteGameID obsoleteGameIDsTable[] = {
34  {"bluesabctimedemo", "bluesabctime", UNK},
35  {"BluesBirthdayDemo", "BluesBirthday", UNK},
36  {"comidemo", "comi", UNK},
37  {"digdemo", "dig", UNK},
38  {"digdemoMac", "dig", Common::kPlatformMacintosh},
39  {"dottdemo", "tentacle", UNK},
40  {"fate", "atlantis", UNK},
41  {"ftMac", "ft", Common::kPlatformMacintosh},
42  {"ftpcdemo", "ft", UNK},
43  {"ftdemo", "ft", Common::kPlatformMacintosh},
44  {"game", "monkey", UNK},
45  {"indy3ega", "indy3", UNK},
46  {"indy3towns", "indy3", Common::kPlatformFMTowns},
47  {"indy4", "atlantis", Common::kPlatformFMTowns},
48  {"indydemo", "atlantis", Common::kPlatformFMTowns},
49  {"loomcd", "loom", UNK},
50  {"loomTowns", "loom", Common::kPlatformFMTowns},
51  {"mi2demo", "monkey2", UNK},
52  {"monkey1", "monkey", UNK},
53  {"monkeyEGA", "monkey", UNK},
54  {"monkeyVGA", "monkey", UNK},
55  {"playfate", "atlantis", UNK},
56  {"samnmax-alt", "samnmax", UNK},
57  {"samnmaxMac", "samnmax", Common::kPlatformMacintosh},
58  {"samdemo", "samnmax", UNK},
59  {"samdemoMac", "samnmax", Common::kPlatformMacintosh},
60  {"snmdemo", "samnmax", UNK},
61  {"snmidemo", "samnmax", UNK},
62  {"tentacleMac", "tentacle", Common::kPlatformMacintosh},
63  {"zakTowns", "zak", Common::kPlatformFMTowns},
64  {NULL, NULL, UNK}
65 };
66 
67 } // End of namespace Scumm
68 
69 #endif // SCUMM_OBSOLETE_H
Definition: actor.h:30
Definition: obsolete.h:42