ScummVM API documentation
as_variablescope.h
1 /*
2  AngelCode Scripting Library
3  Copyright (c) 2003-2012 Andreas Jonsson
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any
7  damages arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any
10  purpose, including commercial applications, and to alter it and
11  redistribute it freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you
14  must not claim that you wrote the original software. If you use
15  this software in a product, an acknowledgment in the product
16  documentation would be appreciated but is not required.
17 
18  2. Altered source versions must be plainly marked as such, and
19  must not be misrepresented as being the original software.
20 
21  3. This notice may not be removed or altered from any source
22  distribution.
23 
24  The original version of this library can be located at:
25  http://www.angelcode.com/angelscript/
26 
27  Andreas Jonsson
28  andreas@angelcode.com
29 */
30 
31 
32 //
33 // as_variablescope.h
34 //
35 // A manager class for variable declarations
36 //
37 
38 
39 #ifndef AS_VARIABLESCOPE_H
40 #define AS_VARIABLESCOPE_H
41 
42 #include "as_config.h"
43 
44 #ifndef AS_NO_COMPILER
45 
46 #include "as_memory.h"
47 #include "as_string.h"
48 #include "as_datatype.h"
49 
50 BEGIN_AS_NAMESPACE
51 
52 struct sVariable {
53  asCString name;
54  asCDataType type;
55  int stackOffset;
56  bool isInitialized;
57  bool isPureConstant;
58  asQWORD constantValue;
59  bool onHeap;
60 };
61 
63 public:
66 
67  void Reset();
68 
69  int DeclareVariable(const char *name, const asCDataType &type, int stackOffset, bool isObjectOnHeap);
70  sVariable *GetVariable(const char *name);
71  sVariable *GetVariableByOffset(int offset);
72 
73  asCVariableScope *parent;
74 
75  bool isBreakScope;
76  bool isContinueScope;
77 
78  asCArray<sVariable *> variables;
79 };
80 
81 END_AS_NAMESPACE
82 
83 #endif // AS_NO_COMPILER
84 
85 #endif
Definition: as_array.h:47
Definition: as_datatype.h:60
Definition: as_variablescope.h:62
Definition: as_variablescope.h:52
Definition: as_string.h:41