godot-cpp/include/core/Ref.hpp

163 lines
2.2 KiB
C++
Raw Normal View History

2017-06-19 00:03:59 +00:00
#ifndef REF_H
#define REF_H
#include "Variant.hpp"
2017-10-20 23:42:10 +00:00
#include "GodotGlobal.hpp"
2017-06-19 00:03:59 +00:00
namespace godot {
template<class T>
class Ref {
T *reference;
public:
inline bool operator==(const Ref<T> &r) const
{
return reference == r.reference;
}
inline bool operator!=(const Ref<T> &r) const
{
return reference != r.reference;
}
inline T *operator->()
{
return reference;
}
inline T *operator*()
{
return reference;
}
inline T *ptr()
{
return reference;
}
inline const T *operator->() const
{
return reference;
}
inline const T *operator*() const
{
return reference;
}
inline const T *ptr() const
{
return reference;
}
void operator=(const Ref &from)
{
2018-01-19 10:40:50 +00:00
if (reference)
unref();
if (from.reference) {
reference = from.reference;
reference->reference();
} else {
reference = nullptr;
}
2017-06-19 00:03:59 +00:00
}
template<class T_Other>
void operator=(const Ref<T_Other> &from)
{
2018-01-19 10:40:50 +00:00
if (reference)
unref();
if (from.reference) {
reference = (T *) from.reference;
reference->reference();
} else {
reference = nullptr;
}
}
2017-06-19 00:03:59 +00:00
void operator=(const Variant &variant)
{
2018-01-19 10:40:50 +00:00
if (reference)
2017-06-19 00:03:59 +00:00
unref();
2018-01-19 10:40:50 +00:00
reference = (T *) (Object *) variant;
2017-06-19 00:03:59 +00:00
}
operator Variant() const
{
return Variant((Object *) reference);
2017-06-19 00:03:59 +00:00
}
template<class T_Other>
Ref(const Ref<T_Other> &from)
{
2018-01-19 10:40:50 +00:00
if (from.reference) {
reference = (T *) from.reference;
reference->reference();
} else {
reference = nullptr;
2018-01-19 10:40:50 +00:00
}
}
2017-06-19 00:03:59 +00:00
Ref(const Ref &from)
{
2018-01-19 10:40:50 +00:00
if (from.reference) {
reference = from.reference;
reference->reference();
} else {
reference = nullptr;
}
2017-06-19 00:03:59 +00:00
}
2017-06-19 00:03:59 +00:00
Ref(T *r)
{
2017-06-21 00:14:54 +00:00
reference = r;
2017-06-19 00:03:59 +00:00
}
template<class T_Other>
Ref(T_Other *r) : Ref((T *) r) {}
2017-06-19 00:03:59 +00:00
Ref(const Variant &variant)
{
2018-01-19 10:40:50 +00:00
reference = (T *) (Object *) variant;
2017-06-19 00:03:59 +00:00
}
2017-06-21 00:14:54 +00:00
2017-06-19 00:03:59 +00:00
inline bool is_valid() const { return reference != nullptr; }
inline bool is_null() const { return reference == nullptr; }
void unref()
{
if (reference && reference->unreference()) {
2017-10-20 23:42:10 +00:00
godot::api->godot_object_destroy((godot_object *) reference);
2017-06-19 00:03:59 +00:00
}
reference = nullptr;
}
2018-01-17 00:54:02 +00:00
void instance()
{
2018-01-19 10:40:50 +00:00
unref();
reference = new T;
2018-01-17 00:54:02 +00:00
}
2017-06-19 00:03:59 +00:00
Ref()
{
reference = nullptr;
}
~Ref()
{
unref();
}
};
}
#endif