/* ref_ptr.cpp */ #include "ref_ptr.h" #include "core/object/reference.h" #include "core/object/resource.h" void RefPtr::operator=(const RefPtr &p_other) { Ref *ref = reinterpret_cast *>(&data[0]); Ref *ref_other = reinterpret_cast *>(const_cast(&p_other.data[0])); *ref = *ref_other; } bool RefPtr::operator==(const RefPtr &p_other) const { Ref *ref = reinterpret_cast *>(&data[0]); Ref *ref_other = reinterpret_cast *>(const_cast(&p_other.data[0])); return *ref == *ref_other; } bool RefPtr::operator!=(const RefPtr &p_other) const { Ref *ref = reinterpret_cast *>(&data[0]); Ref *ref_other = reinterpret_cast *>(const_cast(&p_other.data[0])); return *ref != *ref_other; } RefPtr::RefPtr(const RefPtr &p_other) { memnew_placement(&data[0], Ref); Ref *ref = reinterpret_cast *>(&data[0]); Ref *ref_other = reinterpret_cast *>(const_cast(&p_other.data[0])); *ref = *ref_other; } bool RefPtr::is_null() const { Ref *ref = reinterpret_cast *>(&data[0]); return ref->is_null(); } RID RefPtr::get_rid() const { Ref *ref = reinterpret_cast *>(&data[0]); if (ref->is_null()) { return RID(); } Resource *res = Object::cast_to(ref->ptr()); if (res) { return res->get_rid(); } return RID(); } void RefPtr::unref() { Ref *ref = reinterpret_cast *>(&data[0]); ref->unref(); } RefPtr::RefPtr() { ERR_FAIL_COND(sizeof(Ref) > DATASIZE); memnew_placement(&data[0], Ref); } RefPtr::~RefPtr() { Ref *ref = reinterpret_cast *>(&data[0]); ref->~Ref(); }