[Core] Add ClassDB functions to retrieve/construct extensions.
Calling the constructor alone is not enough if the class to be instantiated is not a base class. This commit adds two functions, one for retrieving the the extension class reference, the other to construct an instance using the constructor and the extension class reference.
This commit is contained in:
parent
a4b80cdad9
commit
f724bd1880
4 changed files with 25 additions and 0 deletions
|
|
@ -862,6 +862,18 @@ static GDNativeClassConstructor gdnative_classdb_get_constructor(const char *p_c
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
static GDNativeExtensionPtr gdnative_classdb_get_extension(const char *p_classname) {
|
||||
ClassDB::ClassInfo *class_info = ClassDB::classes.getptr(StringName(p_classname));
|
||||
if (class_info) {
|
||||
return (GDNativeExtensionPtr)class_info->native_extension;
|
||||
}
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
static GDNativeObjectPtr gdnative_classdb_construct_extended(GDNativeClassConstructor p_constructor, GDNativeExtensionPtr p_extension) {
|
||||
return (GDNativeObjectPtr)ClassDB::construct_extended((Object * (*)()) p_constructor, (ObjectNativeExtension *)p_extension);
|
||||
}
|
||||
|
||||
static void *gdnative_classdb_get_class_tag(const char *p_classname) {
|
||||
ClassDB::ClassInfo *class_info = ClassDB::classes.getptr(p_classname);
|
||||
return class_info ? class_info->class_ptr : nullptr;
|
||||
|
|
@ -1010,6 +1022,8 @@ void gdnative_setup_interface(GDNativeInterface *p_interface) {
|
|||
/* CLASSDB */
|
||||
|
||||
gdni.classdb_get_constructor = gdnative_classdb_get_constructor;
|
||||
gdni.classdb_get_extension = gdnative_classdb_get_extension;
|
||||
gdni.classdb_construct_extended = gdnative_classdb_construct_extended;
|
||||
gdni.classdb_get_method_bind = gdnative_classdb_get_method_bind;
|
||||
gdni.classdb_get_class_tag = gdnative_classdb_get_class_tag;
|
||||
|
||||
|
|
|
|||
|
|
@ -137,6 +137,7 @@ typedef void *GDNativeStringNamePtr;
|
|||
typedef void *GDNativeStringPtr;
|
||||
typedef void *GDNativeObjectPtr;
|
||||
typedef void *GDNativeTypePtr;
|
||||
typedef void *GDNativeExtensionPtr;
|
||||
typedef void *GDNativeMethodBindPtr;
|
||||
typedef int64_t GDNativeInt;
|
||||
typedef uint8_t GDNativeBool;
|
||||
|
|
@ -432,6 +433,8 @@ typedef struct {
|
|||
/* CLASSDB */
|
||||
|
||||
GDNativeClassConstructor (*classdb_get_constructor)(const char *p_classname);
|
||||
GDNativeExtensionPtr (*classdb_get_extension)(const char *p_classname);
|
||||
GDNativeObjectPtr (*classdb_construct_extended)(GDNativeClassConstructor p_constructor, GDNativeExtensionPtr p_extension);
|
||||
GDNativeMethodBindPtr (*classdb_get_method_bind)(const char *p_classname, const char *p_methodname, GDNativeInt p_hash);
|
||||
void *(*classdb_get_class_tag)(const char *p_classname);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue