NuriaProject Framework  0.1
The NuriaProject Framework
luavalue.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_LUAVALUE_HPP
18 #define NURIA_LUAVALUE_HPP
19 
20 #include <QSharedDataPointer>
21 #include <QVariant>
22 #include <QVector>
23 
24 #include "lua_global.hpp"
25 #include "luaobject.hpp"
26 
27 namespace Nuria {
28 
29 class LuaMetaObjectWrapper;
30 class LuaValuePrivate;
31 class LuaMetaObject;
32 class LuaStackUtils;
33 class LuaRuntime;
34 class MetaObject;
35 class LuaObject;
36 
40 class NURIA_LUA_EXPORT LuaValue {
41 public:
42 
44  enum Type {
45  Nil = 0,
46  Boolean = 1,
47  LightUserData = 2,
48  Number = 3,
49  String = 4,
50  Table = 5,
51  Function = 6,
52  UserData = 7,
53  Thread = 8
54  };
55 
57  LuaValue ();
58 
60  LuaValue (const LuaValue &other);
61 
63  LuaValue (const LuaObject &object);
64 
66  LuaValue (LuaRuntime *runtime, const QVariant &variant);
68  ~LuaValue ();
69 
71  LuaValue &operator= (const LuaValue &other);
72 
74  Type type () const;
75 
77  LuaRuntime *runtime () const;
78 
80  bool isValid () const;
81 
83  QVariant toVariant () const;
84 
90  LuaObject object () const;
91 
96  static Type qtTypeToLua (int type);
97 
102  static LuaValue fromStack (LuaRuntime *runtime, int idx);
103 
104 
105 private:
106  friend class LuaMetaObjectWrapper;
107  friend class LuaMetaObject;
108  friend class LuaStackUtils;
109  friend class LuaRuntime;
110  friend class LuaObject;
111 
112  //
113  void initValue (int idx);
114  void setLuaObject (int idx);
115 
116  //
117  QExplicitlySharedDataPointer< LuaValuePrivate > d;
118 
119 };
120 
122 typedef QVector< LuaValue > LuaValues;
123 
124 }
125 
126 #endif // NURIA_LUAVALUE_HPP
Definition: abstractsessionmanager.hpp:24
Type
Definition: luavalue.hpp:44
Runtime for the LUA scripting language.
Definition: luaruntime.hpp:77
Stores a value from LUA.
Definition: luavalue.hpp:40
Stores a C++ object with an associated Nuria::MetaObject.
Definition: luaobject.hpp:41