ScummVM API documentation
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 #ifndef TWINE_DETECTION_H
23 #define TWINE_DETECTION_H
24 
25 namespace TwinE {
26 
27 enum TwineGameType {
28  GType_LBA = 1,
29  GType_LBA2 = 2,
30  // slideshow demo of lba1
31  GType_LBASHOW = 3
32 };
33 
34 enum TwineFeatureFlags {
35  TF_VERSION_EUROPE = (1 << 0),
36  TF_VERSION_USA = (1 << 1),
37  TF_VERSION_CUSTOM = (1 << 2),
38  TF_USE_GIF = (1 << 3),
39  TF_DOTEMU_ENHANCED = (1 << 4),
40  TF_LBA1_CLASSIC = (1 << 5),
41  TF_MOD = (1 << 6)
42 };
43 
44 #define GAMEOPTION_WALL_COLLISION GUIO_GAMEOPTIONS1
45 #define GAMEOPTION_DISABLE_SAVE_MENU GUIO_GAMEOPTIONS2
46 #define GAMEOPTION_DEBUG GUIO_GAMEOPTIONS3
47 #define GAMEOPTION_SOUND GUIO_GAMEOPTIONS4
48 #define GAMEOPTION_VOICES GUIO_GAMEOPTIONS5
49 #define GAMEOPTION_TEXT GUIO_GAMEOPTIONS6
50 #define GAMEOPTION_MOVIES GUIO_GAMEOPTIONS7
51 #define GAMEOPTION_MOUSE GUIO_GAMEOPTIONS8
52 #define GAMEOPTION_USA_VERSION GUIO_GAMEOPTIONS9
53 #define GAMEOPTION_HIGH_RESOLUTION GUIO_GAMEOPTIONS10
54 #define GAMEOPTION_TEXT_TO_SPEECH GUIO_GAMEOPTIONS11
55 
56 } // End of namespace TwinE
57 
58 #endif // TWINE_DETECTION_H
Definition: achievements_tables.h:27