ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
intern_detection.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 // Game detection - related enums, taken from agos/intern.h
23 
24 namespace AGOS {
25 
26 enum GameIds {
27  GID_PN,
28  GID_ELVIRA1,
29  GID_ELVIRA2,
30  GID_WAXWORKS,
31 
32  GID_SIMON1,
33  GID_SIMON1DOS,
34  GID_SIMON1CD32,
35 
36  GID_SIMON2,
37 
38  GID_FEEBLEFILES,
39 
40  GID_DIMP,
41  GID_JUMBLE,
42  GID_PUZZLE,
43  GID_SWAMPY
44 };
45 
46 enum GameFeatures {
47  GF_TALKIE = 1 << 0,
48  GF_OLD_BUNDLE = 1 << 1,
49  GF_CRUNCHED = 1 << 2,
50  GF_CRUNCHED_GAMEPC = 1 << 3,
51  GF_ZLIBCOMP = 1 << 4,
52  GF_32COLOR = 1 << 5,
53  GF_EGA = 1 << 6,
54  GF_PLANAR = 1 << 7,
55  GF_DEMO = 1 << 8,
56  GF_PACKED = 1 << 9,
57  GF_BROKEN_FF_RATING = 1 << 10,
58  GF_WAVSFX = 1 << 11,
59  GF_MT32_XMIDI = 1 << 12,
60  GF_MT32_TRACK10_FIX = 1 << 13
61 };
62 
63 enum GameFileTypes {
64  GAME_BASEFILE = 1 << 0,
65  GAME_ICONFILE = 1 << 1,
66  GAME_GMEFILE = 1 << 2,
67  GAME_MENUFILE = 1 << 3,
68  GAME_STRFILE = 1 << 4,
69  GAME_RMSLFILE = 1 << 5,
70  GAME_STATFILE = 1 << 6,
71  GAME_TBLFILE = 1 << 7,
72  GAME_XTBLFILE = 1 << 8,
73  GAME_RESTFILE = 1 << 9,
74  GAME_TEXTFILE = 1 << 10,
75  GAME_VGAFILE = 1 << 11,
76  GAME_GFXIDXFILE = 1 << 12,
77  GAME_CABFILE = 1 << 13
78 
79 };
80 
81 
82 } // End of namespace AGOS
Definition: agos.h:70