17 #ifndef NURIA_LUARUNTIME_HPP
18 #define NURIA_LUARUNTIME_HPP
23 #include <nuria/metaobject.hpp>
24 #include "lua_global.hpp"
25 #include "luavalue.hpp"
31 namespace Internal {
class Delegate; }
32 class LuaCallbackTrampoline;
33 class LuaMetaObjectWrapper;
34 class LuaBuiltinFunctions;
35 class LuaRuntimePrivate;
88 OperatinSystem = 0x20,
96 AllLibraries = Base | Math | String | Table | InputOutput |
97 OperatinSystem | Package |
Debug | Bit | Jit | Ffi
100 Q_DECLARE_FLAGS(LuaLibs, LuaLib)
120 Q_DECLARE_FLAGS(OwnershipFlags, Ownership)
127 explicit
LuaRuntime (LuaLibs libraries, QObject *parent = 0);
145 bool execute (const QByteArray &script);
152 bool executeStream (QIODevice *device);
166 LuaValues allResults () const;
169 LuaValue global (const QString &name);
172 void setGlobal (const QString &name, const QVariant &value);
175 void setGlobal (const QString &name, const
LuaValue &value);
178 bool hasGlobal (const QString &name);
192 void registerMetaObject (
MetaObject *metaObject, const QByteArray &prefix = QByteArray ());
201 void collectGarbage ();
207 Ownership objectOwnership (
void *
object);
213 void setObjectOwnership (
void *
object, Ownership ownership);
238 void setObjectHandler (ObjectHandler handler, OwnershipFlags flags = OwnershipFlags (OwnedByLua | OwnedByCpp));
250 friend class LuaCallbackTrampoline;
251 friend class LuaMetaObjectWrapper;
252 friend class LuaBuiltinFunctions;
253 friend class Internal::Delegate;
254 friend class LuaMetaObject;
258 void createObjectsReferenceTable ();
260 bool pcall (
int argCount, LuaValues &results);
262 void setLastResultError (LuaValues &values, const QString &message);
263 static QString luaErrorToString (
int error);
264 void createLuaInstance ();
265 void openLuaLibraries (LuaLibs libraries);
268 LuaRuntimePrivate *d_ptr;
274 #endif // NURIA_LUARUNTIME_HPP
LuaLib
Definition: luaruntime.hpp:82
Definition: abstractsessionmanager.hpp:24
Ownership
Definition: luaruntime.hpp:103
Runtime for the LUA scripting language.
Definition: luaruntime.hpp:77
Stores a value from LUA.
Definition: luavalue.hpp:40
std::function< bool(Ownership, void *, MetaObject *) > ObjectHandler
Definition: luaruntime.hpp:228
Debugging and logging class of the Nuria Framework.
Definition: debug.hpp:89
Stores a C++ object with an associated Nuria::MetaObject.
Definition: luaobject.hpp:41