ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
variable.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 MEDIASTATION_MEDIASCRIPT_VARIABLE_DECLARATION_H
23 #define MEDIASTATION_MEDIASCRIPT_VARIABLE_DECLARATION_H
24 
25 #include "common/ptr.h"
26 #include "common/str.h"
27 #include "common/array.h"
28 
29 #include "mediastation/datafile.h"
30 #include "mediastation/datum.h"
31 #include "mediastation/mediascript/scriptconstants.h"
32 
33 namespace MediaStation {
34 
35 class Operand;
36 
37 class Collection : public Common::Array<Operand> {
38 public:
39  Operand callMethod(BuiltInMethod method, Common::Array<Operand> &args);
40 };
41 
42 class Variable {
43 public:
44  uint32 _id = 0;
45  VariableType _type = kVariableTypeEmpty;
46  union {
47  Common::String *string;
48  uint functionId;
49  int i;
50  double d;
51  uint assetId;
52  } _value;
54 
55  Variable();
56  Variable(Chunk &chunk, bool readId = true);
57  ~Variable();
58 
59  Operand getValue();
60  void putValue(Operand value);
61 
62 private:
63  void clear();
64 };
65 
66 } // End of namespace MediaStation
67 
68 #endif
Definition: str.h:59
Definition: asset.h:33
Definition: array.h:52
void clear()
Definition: array.h:320
Definition: datafile.h:39
Definition: operand.h:35
Definition: variable.h:37
Definition: variable.h:42
Definition: ptr.h:159