From 992d85e6f845d798ab26237fe52d1aa6461452c5 Mon Sep 17 00:00:00 2001 From: Bastiaan Olij Date: Sun, 11 Dec 2022 23:20:14 +1100 Subject: Fix virtual GDExtension method Ref conversion --- include/godot_cpp/classes/ref.hpp | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'include/godot_cpp/classes') diff --git a/include/godot_cpp/classes/ref.hpp b/include/godot_cpp/classes/ref.hpp index 4e2eb49..5a26548 100644 --- a/include/godot_cpp/classes/ref.hpp +++ b/include/godot_cpp/classes/ref.hpp @@ -240,13 +240,24 @@ public: template struct PtrToArg> { _FORCE_INLINE_ static Ref convert(const void *p_ptr) { - return Ref(reinterpret_cast(godot::internal::gde_interface->object_get_instance_binding(*reinterpret_cast(const_cast(p_ptr)), godot::internal::token, &T::___binding_callbacks))); + GDExtensionRefPtr ref = (GDExtensionRefPtr)p_ptr; + ERR_FAIL_NULL_V(ref, Ref()); + + T *obj = reinterpret_cast(godot::internal::gde_interface->object_get_instance_binding(godot::internal::gde_interface->ref_get_object(ref), godot::internal::token, &T::___binding_callbacks)); + return Ref(obj); } typedef Ref EncodeT; _FORCE_INLINE_ static void encode(Ref p_val, void *p_ptr) { - *reinterpret_cast(p_ptr) = p_val->_owner; + GDExtensionRefPtr ref = (GDExtensionRefPtr)p_ptr; + ERR_FAIL_NULL(ref); + + // This code assumes that p_ptr points to an unset Ref variable on the Godot side + // so we only set it if we have an object to set. + if (p_val.is_valid()) { + godot::internal::gde_interface->ref_set_object(ref, p_val->_owner); + } } }; -- cgit v1.2.3