From d6225b1e0004c57cc50452ddb5d512fd6556a523 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Wed, 22 Jun 2016 23:12:20 -0300 Subject: Improved binding system (ObjectTypeDB::bind_method) to be friendlier to statically typed languages, should help in the Mono integration. Disabled by default. --- core/io/http_client.cpp | 2 - core/io/http_client.h | 1 + core/make_binders.py | 15 +- core/math/bsp_tree.h | 27 +++- core/math/face3.h | 2 + core/method_bind.h | 40 ++++++ core/method_ptrcall.h | 354 ++++++++++++++++++++++++++++++++++++++++++++++++ core/reference.h | 56 ++++++++ 8 files changed, 492 insertions(+), 5 deletions(-) create mode 100644 core/method_ptrcall.h (limited to 'core') diff --git a/core/io/http_client.cpp b/core/io/http_client.cpp index 0dfae6584b..2a831dd992 100644 --- a/core/io/http_client.cpp +++ b/core/io/http_client.cpp @@ -29,8 +29,6 @@ #include "http_client.h" #include "io/stream_peer_ssl.h" -VARIANT_ENUM_CAST(HTTPClient::Status); - Error HTTPClient::connect(const String &p_host, int p_port, bool p_ssl,bool p_verify_host){ diff --git a/core/io/http_client.h b/core/io/http_client.h index ceb0273a7d..32d2e72101 100644 --- a/core/io/http_client.h +++ b/core/io/http_client.h @@ -201,5 +201,6 @@ public: }; VARIANT_ENUM_CAST(HTTPClient::Method); +VARIANT_ENUM_CAST(HTTPClient::Status); #endif // HTTP_CLIENT_H diff --git a/core/make_binders.py b/core/make_binders.py index 93371dc0a3..1d55c92b89 100644 --- a/core/make_binders.py +++ b/core/make_binders.py @@ -48,7 +48,13 @@ public: $ifnoret return Variant();$ } - +#ifdef PTRCAL_ENABLED + virtual void ptrcall(Object*p_object,const void** p_args,void *r_ret) { + + T *instance=p_object->cast_to(); + $ifret PtrToArg::encode( $ (instance->*method)($arg, PtrToArg::convert(p_args[@-1])$) $ifret ,r_ret)$ ; + } +#endif MethodBind$argc$$ifret R$$ifconst C$ () { #ifdef DEBUG_METHODS_ENABLED _set_const($ifconst true$$ifnoconst false$); @@ -121,7 +127,12 @@ public: $ifret return Variant(ret);$ $ifnoret return Variant();$ } - +#ifdef PTRCALL_ENABLED + virtual void ptrcall(Object*p_object,const void** p_args,void *r_ret) { + __UnexistingClass *instance = (__UnexistingClass*)p_object; + $ifret PtrToArg::encode( $ (instance->*method)($arg, PtrToArg::convert(p_args[@-1])$) $ifret ,r_ret) $ ; + } +#endif MethodBind$argc$$ifret R$$ifconst C$ () { #ifdef DEBUG_METHODS_ENABLED _set_const($ifconst true$$ifnoconst false$); diff --git a/core/math/bsp_tree.h b/core/math/bsp_tree.h index 2bfc26b51e..6c36d80e3e 100644 --- a/core/math/bsp_tree.h +++ b/core/math/bsp_tree.h @@ -34,8 +34,8 @@ #include "face3.h" #include "vector.h" #include "dvector.h" - #include "variant.h" +#include "method_ptrcall.h" /** @author Juan Linietsky */ @@ -138,4 +138,29 @@ bool BSP_Tree::convex_is_inside(const T& p_convex) const { } +#ifdef PTRCALL_ENABLED + + +template<> +struct PtrToArg { + _FORCE_INLINE_ static BSP_Tree convert(const void* p_ptr) { + BSP_Tree s( Variant( *reinterpret_cast(p_ptr) ) ); + return s; + } + _FORCE_INLINE_ static void encode(BSP_Tree p_val,void* p_ptr) { + Dictionary *d = reinterpret_cast(p_ptr); + *d=Variant(p_val); + } +}; + +template<> +struct PtrToArg { + _FORCE_INLINE_ static BSP_Tree convert(const void* p_ptr) { + BSP_Tree s( Variant( *reinterpret_cast(p_ptr) ) ); + return s; + } +}; + +#endif + #endif diff --git a/core/math/face3.h b/core/math/face3.h index bc34be9935..3a81da74db 100644 --- a/core/math/face3.h +++ b/core/math/face3.h @@ -264,4 +264,6 @@ bool Face3::intersects_aabb2(const AABB& p_aabb) const { } +//this sucks... + #endif // FACE3_H diff --git a/core/method_bind.h b/core/method_bind.h index 48848c5848..30a848270d 100644 --- a/core/method_bind.h +++ b/core/method_bind.h @@ -33,6 +33,7 @@ #include "variant.h" #include "object.h" #include +#include "method_ptrcall.h" /** @author Juan Linietsky @@ -85,6 +86,32 @@ struct VariantCaster { (VariantCaster::cast( (m_idx-1)>=p_arg_count?get_default_argument(m_idx-1):*p_args[m_idx-1] )) //SIMPLE_NUMERIC_TYPE is used to avoid a warning on Variant::get_type_for + +#ifdef PTRCALL_ENABLED + + +#define VARIANT_ENUM_CAST( m_enum ) \ +SIMPLE_NUMERIC_TYPE( m_enum );\ +template<> \ +struct VariantCaster {\ +\ + static _FORCE_INLINE_ m_enum cast(const Variant& p_variant) {\ + return (m_enum)p_variant.operator int();\ + }\ +};\ +template<>\ +struct PtrToArg< m_enum > {\ + _FORCE_INLINE_ static m_enum convert(const void* p_ptr) {\ + return m_enum(*reinterpret_cast(p_ptr));\ + }\ + _FORCE_INLINE_ static void encode(m_enum p_val,const void* p_ptr) {\ + *(int*)p_ptr=p_val;\ + }\ +}; + +#else + + #define VARIANT_ENUM_CAST( m_enum ) \ SIMPLE_NUMERIC_TYPE( m_enum );\ template<> \ @@ -96,6 +123,9 @@ struct VariantCaster {\ }; +#endif + + #define CHECK_ARG(m_arg)\ if ((m_arg-1) +struct PtrToArg { + +}; + +#define MAKE_PTRARG(m_type) \ +template<>\ +struct PtrToArg {\ + _FORCE_INLINE_ static m_type convert(const void* p_ptr) {\ + return *reinterpret_cast(p_ptr);\ + }\ + _FORCE_INLINE_ static void encode(m_type p_val, void* p_ptr) {\ + *((m_type*)p_ptr)=p_val;\ + }\ +};\ +template<>\ +struct PtrToArg {\ + _FORCE_INLINE_ static m_type convert(const void* p_ptr) {\ + return *reinterpret_cast(p_ptr);\ + }\ + _FORCE_INLINE_ static void encode(m_type p_val, void* p_ptr) {\ + *((m_type*)p_ptr)=p_val;\ + }\ +} + + +#define MAKE_PTRARGR(m_type,m_ret) \ +template<>\ +struct PtrToArg {\ + _FORCE_INLINE_ static m_type convert(const void* p_ptr) {\ + return *reinterpret_cast(p_ptr);\ + }\ + _FORCE_INLINE_ static void encode(m_type p_val, void* p_ptr) {\ + *((m_ret*)p_ptr)=p_val;\ + }\ +};\ +template<>\ +struct PtrToArg {\ + _FORCE_INLINE_ static m_type convert(const void* p_ptr) {\ + return *reinterpret_cast(p_ptr);\ + }\ + _FORCE_INLINE_ static void encode(m_type p_val, void* p_ptr) {\ + *((m_ret*)p_ptr)=p_val;\ + }\ +} + + + +MAKE_PTRARG(bool); +MAKE_PTRARGR(uint8_t,int); +MAKE_PTRARGR(int8_t,int); +MAKE_PTRARGR(uint16_t,int); +MAKE_PTRARGR(int16_t,int); +MAKE_PTRARGR(uint32_t,int); +MAKE_PTRARGR(int32_t,int); +MAKE_PTRARGR(int64_t,int); +MAKE_PTRARGR(uint64_t,int); +MAKE_PTRARG(float); +MAKE_PTRARGR(double,float); + +MAKE_PTRARG(String); +MAKE_PTRARG(Vector2); +MAKE_PTRARG(Rect2); +MAKE_PTRARG(Vector3); +MAKE_PTRARG(Matrix32); +MAKE_PTRARG(Plane); +MAKE_PTRARG(Quat); +MAKE_PTRARG(AABB); +MAKE_PTRARG(Matrix3); +MAKE_PTRARG(Transform); +MAKE_PTRARG(Color); +MAKE_PTRARG(Image); +MAKE_PTRARG(NodePath); +MAKE_PTRARG(RID); +MAKE_PTRARG(InputEvent); +MAKE_PTRARG(Dictionary); +MAKE_PTRARG(Array); +MAKE_PTRARG(ByteArray); +MAKE_PTRARG(IntArray); +MAKE_PTRARG(RealArray); +MAKE_PTRARG(StringArray); +MAKE_PTRARG(Vector2Array); +MAKE_PTRARG(Vector3Array); +MAKE_PTRARG(ColorArray); +MAKE_PTRARG(Variant); + + +//this is for Object + +template +struct PtrToArg< T* > { + + _FORCE_INLINE_ static T* convert(const void* p_ptr) { + + return const_cast(reinterpret_cast(p_ptr)); + } + + _FORCE_INLINE_ static void encode(T* p_var, void* p_ptr) { + + *((T**)p_ptr)=p_var; + } + +}; + +template +struct PtrToArg< const T* > { + + _FORCE_INLINE_ static const T* convert(const void* p_ptr) { + + return reinterpret_cast(p_ptr); + } + + _FORCE_INLINE_ static void encode(T* p_var, void* p_ptr) { + + *((T**)p_ptr)=p_var; + } + +}; + + +//this is for the special cases used by Variant + +#define MAKE_VECARG(m_type) \ +template<>\ +struct PtrToArg > {\ + _FORCE_INLINE_ static Vector convert(const void* p_ptr) {\ + const DVector *dvs = reinterpret_cast *>(p_ptr);\ + Vector ret;\ + int len = dvs->size();\ + ret.resize(len);\ + {\ + DVector::Read r=dvs->read();\ + for(int i=0;i p_vec, void* p_ptr) {\ + DVector *dv = reinterpret_cast *>(p_ptr);\ + int len=p_vec.size();\ + dv->resize(len);\ + {\ + DVector::Write w=dv->write();\ + for(int i=0;i\ +struct PtrToArg& > {\ + _FORCE_INLINE_ static Vector convert(const void* p_ptr) {\ + const DVector *dvs = reinterpret_cast *>(p_ptr);\ + Vector ret;\ + int len = dvs->size();\ + ret.resize(len);\ + {\ + DVector::Read r=dvs->read();\ + for(int i=0;i\ +struct PtrToArg > {\ + _FORCE_INLINE_ static Vector convert(const void* p_ptr) {\ + const Array *arr = reinterpret_cast(p_ptr);\ + Vector ret;\ + int len = arr->size();\ + ret.resize(len);\ + for(int i=0;i p_vec, void* p_ptr) {\ + Array *arr = reinterpret_cast(p_ptr);\ + int len = p_vec.size();\ + arr->resize(len);\ + for(int i=0;i\ +struct PtrToArg& > {\ + _FORCE_INLINE_ static Vector convert(const void* p_ptr) {\ + const Array *arr = reinterpret_cast(p_ptr);\ + Vector ret;\ + int len = arr->size();\ + ret.resize(len);\ + for(int i=0;i\ +struct PtrToArg > {\ + _FORCE_INLINE_ static DVector convert(const void* p_ptr) {\ + const Array *arr = reinterpret_cast(p_ptr);\ + DVector ret;\ + int len = arr->size();\ + ret.resize(len);\ + {\ + DVector::Write w=ret.write();\ + for(int i=0;i p_vec, void* p_ptr) {\ + Array *arr = reinterpret_cast(p_ptr);\ + int len = p_vec.size();\ + arr->resize(len);\ + {\ + DVector::Read r=p_vec.read();\ + for(int i=0;i\ +struct PtrToArg& > {\ + _FORCE_INLINE_ static DVector convert(const void* p_ptr) {\ + const Array *arr = reinterpret_cast(p_ptr);\ + DVector ret;\ + int len = arr->size();\ + ret.resize(len);\ + {\ + DVector::Write w=ret.write();\ + for(int i=0;i\ +struct PtrToArg {\ + _FORCE_INLINE_ static m_type convert(const void* p_ptr) {\ + m_type s = *reinterpret_cast(p_ptr);\ + return s;\ + }\ + _FORCE_INLINE_ static void encode(m_type p_vec, void* p_ptr) {\ + String *arr = reinterpret_cast(p_ptr);\ + *arr=p_vec;\ + }\ +};\ +\ +template<>\ +struct PtrToArg {\ + _FORCE_INLINE_ static m_type convert(const void* p_ptr) {\ + m_type s = *reinterpret_cast(p_ptr);\ + return s;\ + }\ +} + +MAKE_STRINGCONV(StringName); +MAKE_STRINGCONV(IP_Address); + +template<> +struct PtrToArg > { + _FORCE_INLINE_ static DVector convert(const void* p_ptr) { + const DVector *dvs = reinterpret_cast *>(p_ptr); + DVector ret; + int len = dvs->size()/3; + ret.resize(len); + { + DVector::Read r=dvs->read(); + DVector::Write w=ret.write(); + for(int i=0;i p_vec, void* p_ptr) {\ + DVector *arr = reinterpret_cast *>(p_ptr);\ + int len = p_vec.size();\ + arr->resize(len*3);\ + {\ + DVector::Read r=p_vec.read();\ + DVector::Write w=arr->write();\ + for(int i=0;i +struct PtrToArg& > { + _FORCE_INLINE_ static DVector convert(const void* p_ptr) { + const DVector *dvs = reinterpret_cast *>(p_ptr); + DVector ret; + int len = dvs->size()/3; + ret.resize(len); + { + DVector::Read r=dvs->read(); + DVector::Write w=ret.write(); + for(int i=0;i +struct PtrToArg< Ref > { + + _FORCE_INLINE_ static Ref convert(const void* p_ptr) { + + return Ref(reinterpret_cast(p_ptr)); + } + + _FORCE_INLINE_ static void encode(Ref p_val,const void* p_ptr) { + + *((T**)p_ptr)=p_val.ptr(); + } + +}; + + +template +struct PtrToArg< const Ref& > { + + _FORCE_INLINE_ static Ref convert(const void* p_ptr) { + + return Ref(reinterpret_cast(p_ptr)); + } + +}; +//this is for RefPtr + +template<> +struct PtrToArg< RefPtr > { + + _FORCE_INLINE_ static RefPtr convert(const void* p_ptr) { + + return Ref(reinterpret_cast(p_ptr)).get_ref_ptr(); + } + + _FORCE_INLINE_ static void encode(RefPtr p_val,const void* p_ptr) { + + Ref r = p_val; + *((Reference**)p_ptr)=r.ptr(); + } + +}; + +template<> +struct PtrToArg< const RefPtr& > { + + _FORCE_INLINE_ static RefPtr convert(const void* p_ptr) { + + return Ref(reinterpret_cast(p_ptr)).get_ref_ptr(); + } + +}; + +#endif #endif // REFERENCE_H -- cgit v1.2.3