mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
55 lines
1.5 KiB
C++
55 lines
1.5 KiB
C++
#ifndef EQEMU_LUA_PTR_H
|
|
#define EQEMU_LUA_PTR_H
|
|
#ifdef LUA_EQEMU
|
|
|
|
#ifndef EQEMU_UNSAFE_LUA
|
|
#define Lua_Safe_Call_Void() if(!d_) { return; } NativeType *self = reinterpret_cast<NativeType*>(d_)
|
|
#define Lua_Safe_Call_Bool() if(!d_) { return false; } NativeType *self = reinterpret_cast<NativeType*>(d_)
|
|
#define Lua_Safe_Call_Int() if(!d_) { return 0; } NativeType *self = reinterpret_cast<NativeType*>(d_)
|
|
#define Lua_Safe_Call_Real() if(!d_) { return 0.0; } NativeType *self = reinterpret_cast<NativeType*>(d_)
|
|
#define Lua_Safe_Call_String() if(!d_) { return ""; } NativeType *self = reinterpret_cast<NativeType*>(d_)
|
|
#define Lua_Safe_Call_Class(type) if(!d_) { return type(); } NativeType *self = reinterpret_cast<NativeType*>(d_)
|
|
#else
|
|
#define Lua_Safe_Call_Void() NativeType *self = reinterpret_cast<NativeType*>(d_)
|
|
#define Lua_Safe_Call_Bool() NativeType *self = reinterpret_cast<NativeType*>(d_)
|
|
#define Lua_Safe_Call_Int() NativeType *self = reinterpret_cast<NativeType*>(d_)
|
|
#define Lua_Safe_Call_Real() NativeType *self = reinterpret_cast<NativeType*>(d_)
|
|
#define Lua_Safe_Call_String() NativeType *self = reinterpret_cast<NativeType*>(d_)
|
|
#define Lua_Safe_Call_Class(type) NativeType *self = reinterpret_cast<NativeType*>(d_)
|
|
#endif
|
|
|
|
template<typename T>
|
|
class Lua_Ptr
|
|
{
|
|
public:
|
|
Lua_Ptr() {
|
|
}
|
|
|
|
Lua_Ptr(T *d) : d_(d) {
|
|
}
|
|
|
|
~Lua_Ptr() {
|
|
}
|
|
|
|
T *GetLuaPtrData() {
|
|
return d_;
|
|
}
|
|
|
|
void SetLuaPtrData(T *d) {
|
|
d_ = d;
|
|
}
|
|
|
|
bool Null() {
|
|
return d_ == nullptr;
|
|
}
|
|
|
|
bool Valid() {
|
|
return d_ != nullptr;
|
|
}
|
|
|
|
protected:
|
|
T *d_;
|
|
};
|
|
|
|
#endif
|
|
#endif |