ScummVM API documentation
mti_data.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 MTROPOLIS_PLUGIN_MTI_DATA_H
23 #define MTROPOLIS_PLUGIN_MTI_DATA_H
24 
25 #include "mtropolis/data.h"
26 
27 namespace MTropolis {
28 
29 namespace Data {
30 
31 namespace MTI {
32 
33 // Known Muppet Treasure Island custom modifiers:
34 // Shanghai - Shanghai minigame tile randomizer
35 
37  PlugInTypeTaggedValue resetWhen; // Reset When
38  PlugInTypeTaggedValue tileSetVar; // VarRef
39 
40 protected:
41  DataReadErrorCode load(PlugIn &plugIn, const PlugInModifier &prefix, DataReader &reader) override;
42 };
43 
45  PlugInTypeTaggedValue executeWhen;
46  PlugInTypeTaggedValue unknown1Bool;
47  PlugInTypeTaggedValue unknown2Bool;
48  PlugInTypeTaggedValue unknown3Bool;
49  PlugInTypeTaggedValue filePath;
50  PlugInTypeTaggedValue unknown4Bool;
51 
52 protected:
53  DataReadErrorCode load(PlugIn &plugIn, const PlugInModifier &prefix, DataReader &reader) override;
54 };
55 
57  PlugInTypeTaggedValue executeWhen;
58  PlugInTypeTaggedValue videoNumber;
59 
60 protected:
61  DataReadErrorCode load(PlugIn &plugIn, const PlugInModifier &prefix, DataReader &reader) override;
62 };
63 
64 } // End of namespace MTI
65 
66 } // End of namespace Data
67 
68 } // End of namespace MTropolis
69 
70 #endif
Definition: mti_data.h:44
Definition: runtime.h:1185
Definition: mti_data.h:56
Definition: actions.h:25
Definition: data.h:1891
Definition: data.h:261