godot-cpp/include/godot_cpp/classes/ref.hpp

285 lines
7.5 KiB
C++
Raw Normal View History

/*************************************************************************/
/* ref.hpp */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
2022-03-15 09:17:53 +00:00
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
/* "Software"), to deal in the Software without restriction, including */
/* without limitation the rights to use, copy, modify, merge, publish, */
/* distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to */
/* the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#ifndef GODOT_CPP_REF_HPP
#define GODOT_CPP_REF_HPP
2017-06-19 00:03:59 +00:00
#include <godot_cpp/core/defs.hpp>
#include <godot_cpp/classes/object.hpp>
#include <godot_cpp/classes/ref_counted.hpp>
#include <godot_cpp/core/binder_common.hpp>
#include <godot_cpp/core/memory.hpp>
#include <godot_cpp/variant/variant.hpp>
2017-06-19 00:03:59 +00:00
namespace godot {
// Helper class for RefCounted objects, same as Godot one.
class RefCounted;
template <class T>
2017-06-19 00:03:59 +00:00
class Ref {
2018-02-23 13:08:36 +00:00
T *reference = nullptr;
void ref(const Ref &p_from) {
if (p_from.reference == reference) {
return;
}
unref();
reference = p_from.reference;
if (reference) {
reference->reference();
}
}
void ref_pointer(T *p_ref) {
ERR_FAIL_COND(!p_ref);
if (p_ref->init_ref()) {
reference = p_ref;
}
}
2017-06-19 00:03:59 +00:00
public:
_FORCE_INLINE_ bool operator==(const T *p_ptr) const {
return reference == p_ptr;
}
_FORCE_INLINE_ bool operator!=(const T *p_ptr) const {
return reference != p_ptr;
}
_FORCE_INLINE_ bool operator<(const Ref<T> &p_r) const {
return reference < p_r.reference;
}
_FORCE_INLINE_ bool operator==(const Ref<T> &p_r) const {
return reference == p_r.reference;
}
_FORCE_INLINE_ bool operator!=(const Ref<T> &p_r) const {
return reference != p_r.reference;
}
_FORCE_INLINE_ T *operator->() {
2017-06-19 00:03:59 +00:00
return reference;
}
_FORCE_INLINE_ T *operator*() {
2017-06-19 00:03:59 +00:00
return reference;
}
_FORCE_INLINE_ const T *operator->() const {
2017-06-19 00:03:59 +00:00
return reference;
}
_FORCE_INLINE_ const T *ptr() const {
2017-06-19 00:03:59 +00:00
return reference;
}
_FORCE_INLINE_ T *ptr() {
2017-06-19 00:03:59 +00:00
return reference;
}
_FORCE_INLINE_ const T *operator*() const {
2017-06-19 00:03:59 +00:00
return reference;
}
2018-01-19 10:40:50 +00:00
operator Variant() const {
return Variant(reference);
2017-06-19 00:03:59 +00:00
}
void operator=(const Ref &p_from) {
ref(p_from);
}
2018-01-19 10:40:50 +00:00
template <class T_Other>
void operator=(const Ref<T_Other> &p_from) {
RefCounted *refb = const_cast<RefCounted *>(static_cast<const RefCounted *>(p_from.ptr()));
if (!refb) {
unref();
return;
}
2021-09-14 04:43:08 +00:00
Ref r;
2020-12-08 22:10:59 +00:00
r.reference = Object::cast_to<T>(refb);
ref(r);
2018-02-23 13:08:36 +00:00
r.reference = nullptr;
2017-06-19 00:03:59 +00:00
}
void operator=(const Variant &p_variant) {
2021-09-14 04:43:08 +00:00
// Needs testing, Variant has a cast to Object * here.
// Object *object = p_variant.get_validated_object();
2021-09-14 04:43:08 +00:00
Object *object = p_variant;
2021-09-14 04:43:08 +00:00
if (object == reference) {
return;
}
2021-09-14 04:43:08 +00:00
unref();
2021-09-14 04:43:08 +00:00
if (!object) {
return;
}
2021-09-14 04:43:08 +00:00
T *r = Object::cast_to<T>(object);
if (r && r->reference()) {
reference = r;
}
}
template <class T_Other>
void reference_ptr(T_Other *p_ptr) {
if (reference == p_ptr) {
return;
2018-01-19 10:40:50 +00:00
}
unref();
T *r = Object::cast_to<T>(p_ptr);
if (r) {
ref_pointer(r);
}
}
Ref(const Ref &p_from) {
ref(p_from);
2017-06-19 00:03:59 +00:00
}
2021-09-14 04:43:08 +00:00
template <class T_Other>
Ref(const Ref<T_Other> &p_from) {
RefCounted *refb = const_cast<RefCounted *>(static_cast<const RefCounted *>(p_from.ptr()));
if (!refb) {
unref();
return;
}
Ref r;
r.reference = Object::cast_to<T>(refb);
ref(r);
r.reference = nullptr;
}
Ref(T *p_reference) {
if (p_reference) {
ref_pointer(p_reference);
}
2017-06-19 00:03:59 +00:00
}
Ref(const Variant &p_variant) {
2021-09-14 04:43:08 +00:00
// Needs testing, Variant has a cast to Object * here.
// Object *object = p_variant.get_validated_object();
2021-09-14 04:43:08 +00:00
Object *object = p_variant;
2021-09-14 04:43:08 +00:00
if (!object) {
return;
}
2021-09-14 04:43:08 +00:00
T *r = Object::cast_to<T>(object);
if (r && r->reference()) {
reference = r;
}
2017-06-19 00:03:59 +00:00
}
2017-06-21 00:14:54 +00:00
2018-02-23 13:08:36 +00:00
inline bool is_valid() const { return reference != nullptr; }
inline bool is_null() const { return reference == nullptr; }
void unref() {
2017-06-19 00:03:59 +00:00
if (reference && reference->unreference()) {
memdelete(reference);
2017-06-19 00:03:59 +00:00
}
2018-02-23 13:08:36 +00:00
reference = nullptr;
2017-06-19 00:03:59 +00:00
}
2018-01-19 10:40:50 +00:00
void instantiate() {
ref(memnew(T()));
2018-01-17 00:54:02 +00:00
}
Ref() {}
~Ref() {
2017-06-19 00:03:59 +00:00
unref();
}
2018-01-24 22:16:00 +00:00
// Used exclusively in the bindings to recreate the Ref Godot encapsulates in return values,
// without adding to the refcount.
inline static Ref<T> ___internal_constructor(Object *obj) {
2018-01-24 22:16:00 +00:00
Ref<T> r;
r.reference = (T *)obj;
2018-01-24 22:16:00 +00:00
return r;
}
2017-06-19 00:03:59 +00:00
};
template <class T>
struct PtrToArg<Ref<T>> {
_FORCE_INLINE_ static Ref<T> convert(const void *p_ptr) {
return Ref<T>(godot::internal::gdn_interface->object_get_instance_binding((void *)p_ptr, godot::internal::token, &T::___binding_callbacks));
}
typedef Ref<T> EncodeT;
_FORCE_INLINE_ static void encode(Ref<T> p_val, const void *p_ptr) {
*(void **)p_ptr = p_val->_owner;
}
};
template <class T>
struct PtrToArg<const Ref<T> &> {
typedef Ref<T> EncodeT;
_FORCE_INLINE_ static Ref<T> convert(const void *p_ptr) {
return Ref<T>(godot::internal::gdn_interface->object_get_instance_binding((void *)p_ptr, godot::internal::token, &T::___binding_callbacks));
}
};
template <class T>
struct GetTypeInfo<Ref<T>, typename EnableIf<TypeInherits<RefCounted, T>::value>::type> {
static const GDNativeVariantType VARIANT_TYPE = GDNATIVE_VARIANT_TYPE_OBJECT;
static const GDNativeExtensionClassMethodArgumentMetadata METADATA = GDNATIVE_EXTENSION_METHOD_ARGUMENT_METADATA_NONE;
static inline PropertyInfo get_class_info() {
return PropertyInfo(GDNATIVE_VARIANT_TYPE_OBJECT, T::get_class_static());
}
};
template <class T>
struct GetTypeInfo<const Ref<T> &, typename EnableIf<TypeInherits<RefCounted, T>::value>::type> {
static const GDNativeVariantType VARIANT_TYPE = GDNATIVE_VARIANT_TYPE_OBJECT;
static const GDNativeExtensionClassMethodArgumentMetadata METADATA = GDNATIVE_EXTENSION_METHOD_ARGUMENT_METADATA_NONE;
static inline PropertyInfo get_class_info() {
return PropertyInfo(GDNATIVE_VARIANT_TYPE_OBJECT, T::get_class_static());
}
};
} // namespace godot
2017-06-19 00:03:59 +00:00
#endif // ! GODOT_CPP_REF_HPP