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 GROOVIE_DETECTION_H
23 #define GROOVIE_DETECTION_H
24 
25 #include "engines/advancedDetector.h"
26 
27 namespace Groovie {
28 
29 enum EngineVersion {
30  kGroovieT7G,
31  kGroovieT11H,
32  kGroovieCDY,
33  kGroovieUHP,
34  kGroovieTLC
35 };
36 
38  ADGameDescription desc;
39 
40  EngineVersion version; // Version of the engine
41 };
42 
43 #define GAMEOPTION_T7G_FAST_MOVIE_SPEED GUIO_GAMEOPTIONS1
44 #define GAMEOPTION_ORIGINAL_SAVELOAD GUIO_GAMEOPTIONS2
45 #define GAMEOPTION_EASIER_AI GUIO_GAMEOPTIONS3
46 #define GAMEOPTION_FINAL_HOUR GUIO_GAMEOPTIONS4
47 #define GAMEOPTION_SPEEDRUN GUIO_GAMEOPTIONS5
48 #define GAMEOPTION_EASIER_AI_DEFAULT GUIO_GAMEOPTIONS6
49 #define GAMEOPTION_SLIMHOTSPOTS GUIO_GAMEOPTIONS7
50 
51 } // End of namespace Groovie
52 
53 #endif
Definition: detection.h:37
Definition: advancedDetector.h:120
Definition: cursor.h:32