699b66b62d
Allow GDExtensions to add editor plugins
1539 lines
77 KiB
C++
1539 lines
77 KiB
C++
/**************************************************************************/
|
|
/* gdextension_interface.cpp */
|
|
/**************************************************************************/
|
|
/* This file is part of: */
|
|
/* GODOT ENGINE */
|
|
/* https://godotengine.org */
|
|
/**************************************************************************/
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
/* */
|
|
/* 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. */
|
|
/**************************************************************************/
|
|
|
|
#include "gdextension_interface.h"
|
|
|
|
#include "core/config/engine.h"
|
|
#include "core/extension/gdextension.h"
|
|
#include "core/io/file_access.h"
|
|
#include "core/io/xml_parser.h"
|
|
#include "core/object/class_db.h"
|
|
#include "core/object/script_language_extension.h"
|
|
#include "core/object/worker_thread_pool.h"
|
|
#include "core/os/memory.h"
|
|
#include "core/variant/variant.h"
|
|
#include "core/version.h"
|
|
|
|
// Core interface functions.
|
|
GDExtensionInterfaceFunctionPtr gdextension_get_proc_address(const char *p_name) {
|
|
return GDExtension::get_interface_function(p_name);
|
|
}
|
|
|
|
static void gdextension_get_godot_version(GDExtensionGodotVersion *r_godot_version) {
|
|
r_godot_version->major = VERSION_MAJOR;
|
|
r_godot_version->minor = VERSION_MINOR;
|
|
r_godot_version->patch = VERSION_PATCH;
|
|
r_godot_version->string = VERSION_FULL_NAME;
|
|
}
|
|
|
|
// Memory Functions
|
|
static void *gdextension_mem_alloc(size_t p_size) {
|
|
return memalloc(p_size);
|
|
}
|
|
|
|
static void *gdextension_mem_realloc(void *p_mem, size_t p_size) {
|
|
return memrealloc(p_mem, p_size);
|
|
}
|
|
|
|
static void gdextension_mem_free(void *p_mem) {
|
|
memfree(p_mem);
|
|
}
|
|
|
|
// Helper print functions.
|
|
static void gdextension_print_error(const char *p_description, const char *p_function, const char *p_file, int32_t p_line, GDExtensionBool p_editor_notify) {
|
|
_err_print_error(p_function, p_file, p_line, p_description, p_editor_notify, ERR_HANDLER_ERROR);
|
|
}
|
|
static void gdextension_print_error_with_message(const char *p_description, const char *p_message, const char *p_function, const char *p_file, int32_t p_line, GDExtensionBool p_editor_notify) {
|
|
_err_print_error(p_function, p_file, p_line, p_description, p_message, p_editor_notify, ERR_HANDLER_ERROR);
|
|
}
|
|
static void gdextension_print_warning(const char *p_description, const char *p_function, const char *p_file, int32_t p_line, GDExtensionBool p_editor_notify) {
|
|
_err_print_error(p_function, p_file, p_line, p_description, p_editor_notify, ERR_HANDLER_WARNING);
|
|
}
|
|
static void gdextension_print_warning_with_message(const char *p_description, const char *p_message, const char *p_function, const char *p_file, int32_t p_line, GDExtensionBool p_editor_notify) {
|
|
_err_print_error(p_function, p_file, p_line, p_description, p_message, p_editor_notify, ERR_HANDLER_WARNING);
|
|
}
|
|
static void gdextension_print_script_error(const char *p_description, const char *p_function, const char *p_file, int32_t p_line, GDExtensionBool p_editor_notify) {
|
|
_err_print_error(p_function, p_file, p_line, p_description, p_editor_notify, ERR_HANDLER_SCRIPT);
|
|
}
|
|
static void gdextension_print_script_error_with_message(const char *p_description, const char *p_message, const char *p_function, const char *p_file, int32_t p_line, GDExtensionBool p_editor_notify) {
|
|
_err_print_error(p_function, p_file, p_line, p_description, p_message, p_editor_notify, ERR_HANDLER_SCRIPT);
|
|
}
|
|
|
|
uint64_t gdextension_get_native_struct_size(GDExtensionConstStringNamePtr p_name) {
|
|
const StringName name = *reinterpret_cast<const StringName *>(p_name);
|
|
return ClassDB::get_native_struct_size(name);
|
|
}
|
|
|
|
// Variant functions
|
|
|
|
static void gdextension_variant_new_copy(GDExtensionUninitializedVariantPtr r_dest, GDExtensionConstVariantPtr p_src) {
|
|
memnew_placement(reinterpret_cast<Variant *>(r_dest), Variant(*reinterpret_cast<const Variant *>(p_src)));
|
|
}
|
|
static void gdextension_variant_new_nil(GDExtensionUninitializedVariantPtr r_dest) {
|
|
memnew_placement(reinterpret_cast<Variant *>(r_dest), Variant);
|
|
}
|
|
static void gdextension_variant_destroy(GDExtensionVariantPtr p_self) {
|
|
reinterpret_cast<Variant *>(p_self)->~Variant();
|
|
}
|
|
|
|
// variant type
|
|
|
|
static void gdextension_variant_call(GDExtensionVariantPtr p_self, GDExtensionConstStringNamePtr p_method, const GDExtensionConstVariantPtr *p_args, GDExtensionInt p_argcount, GDExtensionUninitializedVariantPtr r_return, GDExtensionCallError *r_error) {
|
|
Variant *self = (Variant *)p_self;
|
|
const StringName method = *reinterpret_cast<const StringName *>(p_method);
|
|
const Variant **args = (const Variant **)p_args;
|
|
Callable::CallError error;
|
|
memnew_placement(r_return, Variant);
|
|
Variant *ret = reinterpret_cast<Variant *>(r_return);
|
|
self->callp(method, args, p_argcount, *ret, error);
|
|
|
|
if (r_error) {
|
|
r_error->error = (GDExtensionCallErrorType)(error.error);
|
|
r_error->argument = error.argument;
|
|
r_error->expected = error.expected;
|
|
}
|
|
}
|
|
|
|
static void gdextension_variant_call_static(GDExtensionVariantType p_type, GDExtensionConstStringNamePtr p_method, const GDExtensionConstVariantPtr *p_args, GDExtensionInt p_argcount, GDExtensionUninitializedVariantPtr r_return, GDExtensionCallError *r_error) {
|
|
Variant::Type type = (Variant::Type)p_type;
|
|
const StringName method = *reinterpret_cast<const StringName *>(p_method);
|
|
const Variant **args = (const Variant **)p_args;
|
|
Callable::CallError error;
|
|
memnew_placement(r_return, Variant);
|
|
Variant *ret = reinterpret_cast<Variant *>(r_return);
|
|
Variant::call_static(type, method, args, p_argcount, *ret, error);
|
|
|
|
if (r_error) {
|
|
r_error->error = (GDExtensionCallErrorType)error.error;
|
|
r_error->argument = error.argument;
|
|
r_error->expected = error.expected;
|
|
}
|
|
}
|
|
|
|
static void gdextension_variant_evaluate(GDExtensionVariantOperator p_op, GDExtensionConstVariantPtr p_a, GDExtensionConstVariantPtr p_b, GDExtensionUninitializedVariantPtr r_return, GDExtensionBool *r_valid) {
|
|
Variant::Operator op = (Variant::Operator)p_op;
|
|
const Variant *a = (const Variant *)p_a;
|
|
const Variant *b = (const Variant *)p_b;
|
|
bool valid;
|
|
memnew_placement(r_return, Variant);
|
|
Variant *ret = reinterpret_cast<Variant *>(r_return);
|
|
Variant::evaluate(op, *a, *b, *ret, valid);
|
|
*r_valid = valid;
|
|
}
|
|
|
|
static void gdextension_variant_set(GDExtensionVariantPtr p_self, GDExtensionConstVariantPtr p_key, GDExtensionConstVariantPtr p_value, GDExtensionBool *r_valid) {
|
|
Variant *self = (Variant *)p_self;
|
|
const Variant *key = (const Variant *)p_key;
|
|
const Variant *value = (const Variant *)p_value;
|
|
|
|
bool valid;
|
|
self->set(*key, *value, &valid);
|
|
*r_valid = valid;
|
|
}
|
|
|
|
static void gdextension_variant_set_named(GDExtensionVariantPtr p_self, GDExtensionConstStringNamePtr p_key, GDExtensionConstVariantPtr p_value, GDExtensionBool *r_valid) {
|
|
Variant *self = (Variant *)p_self;
|
|
const StringName *key = (const StringName *)p_key;
|
|
const Variant *value = (const Variant *)p_value;
|
|
|
|
bool valid;
|
|
self->set_named(*key, *value, valid);
|
|
*r_valid = valid;
|
|
}
|
|
|
|
static void gdextension_variant_set_keyed(GDExtensionVariantPtr p_self, GDExtensionConstVariantPtr p_key, GDExtensionConstVariantPtr p_value, GDExtensionBool *r_valid) {
|
|
Variant *self = (Variant *)p_self;
|
|
const Variant *key = (const Variant *)p_key;
|
|
const Variant *value = (const Variant *)p_value;
|
|
|
|
bool valid;
|
|
self->set_keyed(*key, *value, valid);
|
|
*r_valid = valid;
|
|
}
|
|
|
|
static void gdextension_variant_set_indexed(GDExtensionVariantPtr p_self, GDExtensionInt p_index, GDExtensionConstVariantPtr p_value, GDExtensionBool *r_valid, GDExtensionBool *r_oob) {
|
|
Variant *self = (Variant *)p_self;
|
|
const Variant *value = (const Variant *)p_value;
|
|
|
|
bool valid;
|
|
bool oob;
|
|
self->set_indexed(p_index, *value, valid, oob);
|
|
*r_valid = valid;
|
|
*r_oob = oob;
|
|
}
|
|
|
|
static void gdextension_variant_get(GDExtensionConstVariantPtr p_self, GDExtensionConstVariantPtr p_key, GDExtensionUninitializedVariantPtr r_ret, GDExtensionBool *r_valid) {
|
|
const Variant *self = (const Variant *)p_self;
|
|
const Variant *key = (const Variant *)p_key;
|
|
|
|
bool valid;
|
|
memnew_placement(r_ret, Variant(self->get(*key, &valid)));
|
|
*r_valid = valid;
|
|
}
|
|
|
|
static void gdextension_variant_get_named(GDExtensionConstVariantPtr p_self, GDExtensionConstStringNamePtr p_key, GDExtensionUninitializedVariantPtr r_ret, GDExtensionBool *r_valid) {
|
|
const Variant *self = (const Variant *)p_self;
|
|
const StringName *key = (const StringName *)p_key;
|
|
|
|
bool valid;
|
|
memnew_placement(r_ret, Variant(self->get_named(*key, valid)));
|
|
*r_valid = valid;
|
|
}
|
|
|
|
static void gdextension_variant_get_keyed(GDExtensionConstVariantPtr p_self, GDExtensionConstVariantPtr p_key, GDExtensionUninitializedVariantPtr r_ret, GDExtensionBool *r_valid) {
|
|
const Variant *self = (const Variant *)p_self;
|
|
const Variant *key = (const Variant *)p_key;
|
|
|
|
bool valid;
|
|
memnew_placement(r_ret, Variant(self->get_keyed(*key, valid)));
|
|
*r_valid = valid;
|
|
}
|
|
|
|
static void gdextension_variant_get_indexed(GDExtensionConstVariantPtr p_self, GDExtensionInt p_index, GDExtensionUninitializedVariantPtr r_ret, GDExtensionBool *r_valid, GDExtensionBool *r_oob) {
|
|
const Variant *self = (const Variant *)p_self;
|
|
|
|
bool valid;
|
|
bool oob;
|
|
memnew_placement(r_ret, Variant(self->get_indexed(p_index, valid, oob)));
|
|
*r_valid = valid;
|
|
*r_oob = oob;
|
|
}
|
|
|
|
/// Iteration.
|
|
static GDExtensionBool gdextension_variant_iter_init(GDExtensionConstVariantPtr p_self, GDExtensionUninitializedVariantPtr r_iter, GDExtensionBool *r_valid) {
|
|
const Variant *self = (const Variant *)p_self;
|
|
memnew_placement(r_iter, Variant);
|
|
Variant *iter = reinterpret_cast<Variant *>(r_iter);
|
|
|
|
bool valid;
|
|
bool ret = self->iter_init(*iter, valid);
|
|
*r_valid = valid;
|
|
return ret;
|
|
}
|
|
|
|
static GDExtensionBool gdextension_variant_iter_next(GDExtensionConstVariantPtr p_self, GDExtensionVariantPtr r_iter, GDExtensionBool *r_valid) {
|
|
const Variant *self = (const Variant *)p_self;
|
|
Variant *iter = (Variant *)r_iter;
|
|
|
|
bool valid;
|
|
bool ret = self->iter_next(*iter, valid);
|
|
*r_valid = valid;
|
|
return ret;
|
|
}
|
|
|
|
static void gdextension_variant_iter_get(GDExtensionConstVariantPtr p_self, GDExtensionVariantPtr r_iter, GDExtensionUninitializedVariantPtr r_ret, GDExtensionBool *r_valid) {
|
|
const Variant *self = (const Variant *)p_self;
|
|
Variant *iter = (Variant *)r_iter;
|
|
|
|
bool valid;
|
|
memnew_placement(r_ret, Variant(self->iter_next(*iter, valid)));
|
|
*r_valid = valid;
|
|
}
|
|
|
|
/// Variant functions.
|
|
static GDExtensionInt gdextension_variant_hash(GDExtensionConstVariantPtr p_self) {
|
|
const Variant *self = (const Variant *)p_self;
|
|
return self->hash();
|
|
}
|
|
|
|
static GDExtensionInt gdextension_variant_recursive_hash(GDExtensionConstVariantPtr p_self, GDExtensionInt p_recursion_count) {
|
|
const Variant *self = (const Variant *)p_self;
|
|
return self->recursive_hash(p_recursion_count);
|
|
}
|
|
|
|
static GDExtensionBool gdextension_variant_hash_compare(GDExtensionConstVariantPtr p_self, GDExtensionConstVariantPtr p_other) {
|
|
const Variant *self = (const Variant *)p_self;
|
|
const Variant *other = (const Variant *)p_other;
|
|
return self->hash_compare(*other);
|
|
}
|
|
|
|
static GDExtensionBool gdextension_variant_booleanize(GDExtensionConstVariantPtr p_self) {
|
|
const Variant *self = (const Variant *)p_self;
|
|
return self->booleanize();
|
|
}
|
|
|
|
static void gdextension_variant_duplicate(GDExtensionConstVariantPtr p_self, GDExtensionUninitializedVariantPtr r_ret, GDExtensionBool p_deep) {
|
|
const Variant *self = (const Variant *)p_self;
|
|
memnew_placement(r_ret, Variant(self->duplicate(p_deep)));
|
|
}
|
|
|
|
static void gdextension_variant_stringify(GDExtensionConstVariantPtr p_self, GDExtensionUninitializedVariantPtr r_ret) {
|
|
const Variant *self = (const Variant *)p_self;
|
|
memnew_placement(r_ret, String(*self));
|
|
}
|
|
|
|
static GDExtensionVariantType gdextension_variant_get_type(GDExtensionConstVariantPtr p_self) {
|
|
const Variant *self = (const Variant *)p_self;
|
|
return (GDExtensionVariantType)self->get_type();
|
|
}
|
|
|
|
static GDExtensionBool gdextension_variant_has_method(GDExtensionConstVariantPtr p_self, GDExtensionConstStringNamePtr p_method) {
|
|
const Variant *self = (const Variant *)p_self;
|
|
const StringName *method = (const StringName *)p_method;
|
|
return self->has_method(*method);
|
|
}
|
|
|
|
static GDExtensionBool gdextension_variant_has_member(GDExtensionVariantType p_type, GDExtensionConstStringNamePtr p_member) {
|
|
return Variant::has_member((Variant::Type)p_type, *((const StringName *)p_member));
|
|
}
|
|
|
|
static GDExtensionBool gdextension_variant_has_key(GDExtensionConstVariantPtr p_self, GDExtensionConstVariantPtr p_key, GDExtensionBool *r_valid) {
|
|
const Variant *self = (const Variant *)p_self;
|
|
const Variant *key = (const Variant *)p_key;
|
|
bool valid;
|
|
bool ret = self->has_key(*key, valid);
|
|
*r_valid = valid;
|
|
return ret;
|
|
}
|
|
|
|
static void gdextension_variant_get_type_name(GDExtensionVariantType p_type, GDExtensionUninitializedVariantPtr r_ret) {
|
|
String name = Variant::get_type_name((Variant::Type)p_type);
|
|
memnew_placement(r_ret, String(name));
|
|
}
|
|
|
|
static GDExtensionBool gdextension_variant_can_convert(GDExtensionVariantType p_from, GDExtensionVariantType p_to) {
|
|
return Variant::can_convert((Variant::Type)p_from, (Variant::Type)p_to);
|
|
}
|
|
|
|
static GDExtensionBool gdextension_variant_can_convert_strict(GDExtensionVariantType p_from, GDExtensionVariantType p_to) {
|
|
return Variant::can_convert_strict((Variant::Type)p_from, (Variant::Type)p_to);
|
|
}
|
|
|
|
// Variant interaction.
|
|
static GDExtensionVariantFromTypeConstructorFunc gdextension_get_variant_from_type_constructor(GDExtensionVariantType p_type) {
|
|
switch (p_type) {
|
|
case GDEXTENSION_VARIANT_TYPE_BOOL:
|
|
return VariantTypeConstructor<bool>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_INT:
|
|
return VariantTypeConstructor<int64_t>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_FLOAT:
|
|
return VariantTypeConstructor<double>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_STRING:
|
|
return VariantTypeConstructor<String>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_VECTOR2:
|
|
return VariantTypeConstructor<Vector2>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_VECTOR2I:
|
|
return VariantTypeConstructor<Vector2i>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_RECT2:
|
|
return VariantTypeConstructor<Rect2>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_RECT2I:
|
|
return VariantTypeConstructor<Rect2i>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_VECTOR3:
|
|
return VariantTypeConstructor<Vector3>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_VECTOR3I:
|
|
return VariantTypeConstructor<Vector3i>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_TRANSFORM2D:
|
|
return VariantTypeConstructor<Transform2D>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_VECTOR4:
|
|
return VariantTypeConstructor<Vector4>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_VECTOR4I:
|
|
return VariantTypeConstructor<Vector4i>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_PLANE:
|
|
return VariantTypeConstructor<Plane>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_QUATERNION:
|
|
return VariantTypeConstructor<Quaternion>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_AABB:
|
|
return VariantTypeConstructor<AABB>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_BASIS:
|
|
return VariantTypeConstructor<Basis>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_TRANSFORM3D:
|
|
return VariantTypeConstructor<Transform3D>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_PROJECTION:
|
|
return VariantTypeConstructor<Projection>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_COLOR:
|
|
return VariantTypeConstructor<Color>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_STRING_NAME:
|
|
return VariantTypeConstructor<StringName>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_NODE_PATH:
|
|
return VariantTypeConstructor<NodePath>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_RID:
|
|
return VariantTypeConstructor<RID>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_OBJECT:
|
|
return VariantTypeConstructor<Object *>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_CALLABLE:
|
|
return VariantTypeConstructor<Callable>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_SIGNAL:
|
|
return VariantTypeConstructor<Signal>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_DICTIONARY:
|
|
return VariantTypeConstructor<Dictionary>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_ARRAY:
|
|
return VariantTypeConstructor<Array>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_BYTE_ARRAY:
|
|
return VariantTypeConstructor<PackedByteArray>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_INT32_ARRAY:
|
|
return VariantTypeConstructor<PackedInt32Array>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_INT64_ARRAY:
|
|
return VariantTypeConstructor<PackedInt64Array>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_FLOAT32_ARRAY:
|
|
return VariantTypeConstructor<PackedFloat32Array>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_FLOAT64_ARRAY:
|
|
return VariantTypeConstructor<PackedFloat64Array>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_STRING_ARRAY:
|
|
return VariantTypeConstructor<PackedStringArray>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_VECTOR2_ARRAY:
|
|
return VariantTypeConstructor<PackedVector2Array>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_VECTOR3_ARRAY:
|
|
return VariantTypeConstructor<PackedVector3Array>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_COLOR_ARRAY:
|
|
return VariantTypeConstructor<PackedColorArray>::variant_from_type;
|
|
case GDEXTENSION_VARIANT_TYPE_NIL:
|
|
case GDEXTENSION_VARIANT_TYPE_VARIANT_MAX:
|
|
ERR_FAIL_V_MSG(nullptr, "Getting Variant conversion function with invalid type");
|
|
}
|
|
ERR_FAIL_V_MSG(nullptr, "Getting Variant conversion function with invalid type");
|
|
}
|
|
|
|
static GDExtensionTypeFromVariantConstructorFunc gdextension_get_variant_to_type_constructor(GDExtensionVariantType p_type) {
|
|
switch (p_type) {
|
|
case GDEXTENSION_VARIANT_TYPE_BOOL:
|
|
return VariantTypeConstructor<bool>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_INT:
|
|
return VariantTypeConstructor<int64_t>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_FLOAT:
|
|
return VariantTypeConstructor<double>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_STRING:
|
|
return VariantTypeConstructor<String>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_VECTOR2:
|
|
return VariantTypeConstructor<Vector2>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_VECTOR2I:
|
|
return VariantTypeConstructor<Vector2i>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_RECT2:
|
|
return VariantTypeConstructor<Rect2>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_RECT2I:
|
|
return VariantTypeConstructor<Rect2i>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_VECTOR3:
|
|
return VariantTypeConstructor<Vector3>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_VECTOR3I:
|
|
return VariantTypeConstructor<Vector3i>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_TRANSFORM2D:
|
|
return VariantTypeConstructor<Transform2D>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_VECTOR4:
|
|
return VariantTypeConstructor<Vector4>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_VECTOR4I:
|
|
return VariantTypeConstructor<Vector4i>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_PLANE:
|
|
return VariantTypeConstructor<Plane>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_QUATERNION:
|
|
return VariantTypeConstructor<Quaternion>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_AABB:
|
|
return VariantTypeConstructor<AABB>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_BASIS:
|
|
return VariantTypeConstructor<Basis>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_TRANSFORM3D:
|
|
return VariantTypeConstructor<Transform3D>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_PROJECTION:
|
|
return VariantTypeConstructor<Projection>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_COLOR:
|
|
return VariantTypeConstructor<Color>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_STRING_NAME:
|
|
return VariantTypeConstructor<StringName>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_NODE_PATH:
|
|
return VariantTypeConstructor<NodePath>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_RID:
|
|
return VariantTypeConstructor<RID>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_OBJECT:
|
|
return VariantTypeConstructor<Object *>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_CALLABLE:
|
|
return VariantTypeConstructor<Callable>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_SIGNAL:
|
|
return VariantTypeConstructor<Signal>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_DICTIONARY:
|
|
return VariantTypeConstructor<Dictionary>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_ARRAY:
|
|
return VariantTypeConstructor<Array>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_BYTE_ARRAY:
|
|
return VariantTypeConstructor<PackedByteArray>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_INT32_ARRAY:
|
|
return VariantTypeConstructor<PackedInt32Array>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_INT64_ARRAY:
|
|
return VariantTypeConstructor<PackedInt64Array>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_FLOAT32_ARRAY:
|
|
return VariantTypeConstructor<PackedFloat32Array>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_FLOAT64_ARRAY:
|
|
return VariantTypeConstructor<PackedFloat64Array>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_STRING_ARRAY:
|
|
return VariantTypeConstructor<PackedStringArray>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_VECTOR2_ARRAY:
|
|
return VariantTypeConstructor<PackedVector2Array>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_VECTOR3_ARRAY:
|
|
return VariantTypeConstructor<PackedVector3Array>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_PACKED_COLOR_ARRAY:
|
|
return VariantTypeConstructor<PackedColorArray>::type_from_variant;
|
|
case GDEXTENSION_VARIANT_TYPE_NIL:
|
|
case GDEXTENSION_VARIANT_TYPE_VARIANT_MAX:
|
|
ERR_FAIL_V_MSG(nullptr, "Getting Variant conversion function with invalid type");
|
|
}
|
|
ERR_FAIL_V_MSG(nullptr, "Getting Variant conversion function with invalid type");
|
|
}
|
|
|
|
// ptrcalls
|
|
static GDExtensionPtrOperatorEvaluator gdextension_variant_get_ptr_operator_evaluator(GDExtensionVariantOperator p_operator, GDExtensionVariantType p_type_a, GDExtensionVariantType p_type_b) {
|
|
return (GDExtensionPtrOperatorEvaluator)Variant::get_ptr_operator_evaluator(Variant::Operator(p_operator), Variant::Type(p_type_a), Variant::Type(p_type_b));
|
|
}
|
|
static GDExtensionPtrBuiltInMethod gdextension_variant_get_ptr_builtin_method(GDExtensionVariantType p_type, GDExtensionConstStringNamePtr p_method, GDExtensionInt p_hash) {
|
|
const StringName method = *reinterpret_cast<const StringName *>(p_method);
|
|
uint32_t hash = Variant::get_builtin_method_hash(Variant::Type(p_type), method);
|
|
if (hash != p_hash) {
|
|
ERR_PRINT_ONCE("Error getting method " + method + ", hash mismatch.");
|
|
return nullptr;
|
|
}
|
|
|
|
return (GDExtensionPtrBuiltInMethod)Variant::get_ptr_builtin_method(Variant::Type(p_type), method);
|
|
}
|
|
static GDExtensionPtrConstructor gdextension_variant_get_ptr_constructor(GDExtensionVariantType p_type, int32_t p_constructor) {
|
|
return (GDExtensionPtrConstructor)Variant::get_ptr_constructor(Variant::Type(p_type), p_constructor);
|
|
}
|
|
static GDExtensionPtrDestructor gdextension_variant_get_ptr_destructor(GDExtensionVariantType p_type) {
|
|
return (GDExtensionPtrDestructor)Variant::get_ptr_destructor(Variant::Type(p_type));
|
|
}
|
|
static void gdextension_variant_construct(GDExtensionVariantType p_type, GDExtensionUninitializedVariantPtr r_base, const GDExtensionConstVariantPtr *p_args, int32_t p_argument_count, GDExtensionCallError *r_error) {
|
|
memnew_placement(r_base, Variant);
|
|
Variant *base = reinterpret_cast<Variant *>(r_base);
|
|
|
|
Callable::CallError error;
|
|
Variant::construct(Variant::Type(p_type), *base, (const Variant **)p_args, p_argument_count, error);
|
|
|
|
if (r_error) {
|
|
r_error->error = (GDExtensionCallErrorType)(error.error);
|
|
r_error->argument = error.argument;
|
|
r_error->expected = error.expected;
|
|
}
|
|
}
|
|
static GDExtensionPtrSetter gdextension_variant_get_ptr_setter(GDExtensionVariantType p_type, GDExtensionConstStringNamePtr p_member) {
|
|
const StringName member = *reinterpret_cast<const StringName *>(p_member);
|
|
return (GDExtensionPtrSetter)Variant::get_member_ptr_setter(Variant::Type(p_type), member);
|
|
}
|
|
static GDExtensionPtrGetter gdextension_variant_get_ptr_getter(GDExtensionVariantType p_type, GDExtensionConstStringNamePtr p_member) {
|
|
const StringName member = *reinterpret_cast<const StringName *>(p_member);
|
|
return (GDExtensionPtrGetter)Variant::get_member_ptr_getter(Variant::Type(p_type), member);
|
|
}
|
|
static GDExtensionPtrIndexedSetter gdextension_variant_get_ptr_indexed_setter(GDExtensionVariantType p_type) {
|
|
return (GDExtensionPtrIndexedSetter)Variant::get_member_ptr_indexed_setter(Variant::Type(p_type));
|
|
}
|
|
static GDExtensionPtrIndexedGetter gdextension_variant_get_ptr_indexed_getter(GDExtensionVariantType p_type) {
|
|
return (GDExtensionPtrIndexedGetter)Variant::get_member_ptr_indexed_getter(Variant::Type(p_type));
|
|
}
|
|
static GDExtensionPtrKeyedSetter gdextension_variant_get_ptr_keyed_setter(GDExtensionVariantType p_type) {
|
|
return (GDExtensionPtrKeyedSetter)Variant::get_member_ptr_keyed_setter(Variant::Type(p_type));
|
|
}
|
|
static GDExtensionPtrKeyedGetter gdextension_variant_get_ptr_keyed_getter(GDExtensionVariantType p_type) {
|
|
return (GDExtensionPtrKeyedGetter)Variant::get_member_ptr_keyed_getter(Variant::Type(p_type));
|
|
}
|
|
static GDExtensionPtrKeyedChecker gdextension_variant_get_ptr_keyed_checker(GDExtensionVariantType p_type) {
|
|
return (GDExtensionPtrKeyedChecker)Variant::get_member_ptr_keyed_checker(Variant::Type(p_type));
|
|
}
|
|
static void gdextension_variant_get_constant_value(GDExtensionVariantType p_type, GDExtensionConstStringNamePtr p_constant, GDExtensionUninitializedVariantPtr r_ret) {
|
|
StringName constant = *reinterpret_cast<const StringName *>(p_constant);
|
|
memnew_placement(r_ret, Variant(Variant::get_constant_value(Variant::Type(p_type), constant)));
|
|
}
|
|
static GDExtensionPtrUtilityFunction gdextension_variant_get_ptr_utility_function(GDExtensionConstStringNamePtr p_function, GDExtensionInt p_hash) {
|
|
StringName function = *reinterpret_cast<const StringName *>(p_function);
|
|
uint32_t hash = Variant::get_utility_function_hash(function);
|
|
if (hash != p_hash) {
|
|
ERR_PRINT_ONCE("Error getting utility function " + function + ", hash mismatch.");
|
|
return nullptr;
|
|
}
|
|
return (GDExtensionPtrUtilityFunction)Variant::get_ptr_utility_function(function);
|
|
}
|
|
|
|
//string helpers
|
|
|
|
static void gdextension_string_new_with_latin1_chars(GDExtensionUninitializedStringPtr r_dest, const char *p_contents) {
|
|
memnew_placement(r_dest, String(p_contents));
|
|
}
|
|
|
|
static void gdextension_string_new_with_utf8_chars(GDExtensionUninitializedStringPtr r_dest, const char *p_contents) {
|
|
memnew_placement(r_dest, String);
|
|
String *dest = reinterpret_cast<String *>(r_dest);
|
|
dest->parse_utf8(p_contents);
|
|
}
|
|
|
|
static void gdextension_string_new_with_utf16_chars(GDExtensionUninitializedStringPtr r_dest, const char16_t *p_contents) {
|
|
memnew_placement(r_dest, String);
|
|
String *dest = reinterpret_cast<String *>(r_dest);
|
|
dest->parse_utf16(p_contents);
|
|
}
|
|
|
|
static void gdextension_string_new_with_utf32_chars(GDExtensionUninitializedStringPtr r_dest, const char32_t *p_contents) {
|
|
memnew_placement(r_dest, String((const char32_t *)p_contents));
|
|
}
|
|
|
|
static void gdextension_string_new_with_wide_chars(GDExtensionUninitializedStringPtr r_dest, const wchar_t *p_contents) {
|
|
if constexpr (sizeof(wchar_t) == 2) {
|
|
// wchar_t is 16 bit, parse.
|
|
memnew_placement(r_dest, String);
|
|
String *dest = reinterpret_cast<String *>(r_dest);
|
|
dest->parse_utf16((const char16_t *)p_contents);
|
|
} else {
|
|
// wchar_t is 32 bit, copy.
|
|
memnew_placement(r_dest, String((const char32_t *)p_contents));
|
|
}
|
|
}
|
|
|
|
static void gdextension_string_new_with_latin1_chars_and_len(GDExtensionUninitializedStringPtr r_dest, const char *p_contents, GDExtensionInt p_size) {
|
|
memnew_placement(r_dest, String(p_contents, p_size));
|
|
}
|
|
|
|
static void gdextension_string_new_with_utf8_chars_and_len(GDExtensionUninitializedStringPtr r_dest, const char *p_contents, GDExtensionInt p_size) {
|
|
memnew_placement(r_dest, String);
|
|
String *dest = reinterpret_cast<String *>(r_dest);
|
|
dest->parse_utf8(p_contents, p_size);
|
|
}
|
|
|
|
static void gdextension_string_new_with_utf16_chars_and_len(GDExtensionUninitializedStringPtr r_dest, const char16_t *p_contents, GDExtensionInt p_size) {
|
|
memnew_placement(r_dest, String);
|
|
String *dest = reinterpret_cast<String *>(r_dest);
|
|
dest->parse_utf16(p_contents, p_size);
|
|
}
|
|
|
|
static void gdextension_string_new_with_utf32_chars_and_len(GDExtensionUninitializedStringPtr r_dest, const char32_t *p_contents, GDExtensionInt p_size) {
|
|
memnew_placement(r_dest, String((const char32_t *)p_contents, p_size));
|
|
}
|
|
|
|
static void gdextension_string_new_with_wide_chars_and_len(GDExtensionUninitializedStringPtr r_dest, const wchar_t *p_contents, GDExtensionInt p_size) {
|
|
if constexpr (sizeof(wchar_t) == 2) {
|
|
// wchar_t is 16 bit, parse.
|
|
memnew_placement(r_dest, String);
|
|
String *dest = reinterpret_cast<String *>(r_dest);
|
|
dest->parse_utf16((const char16_t *)p_contents, p_size);
|
|
} else {
|
|
// wchar_t is 32 bit, copy.
|
|
memnew_placement(r_dest, String((const char32_t *)p_contents, p_size));
|
|
}
|
|
}
|
|
|
|
static GDExtensionInt gdextension_string_to_latin1_chars(GDExtensionConstStringPtr p_self, char *r_text, GDExtensionInt p_max_write_length) {
|
|
String *self = (String *)p_self;
|
|
CharString cs = self->ascii(true);
|
|
GDExtensionInt len = cs.length();
|
|
if (r_text) {
|
|
const char *s_text = cs.ptr();
|
|
for (GDExtensionInt i = 0; i < MIN(len, p_max_write_length); i++) {
|
|
r_text[i] = s_text[i];
|
|
}
|
|
}
|
|
return len;
|
|
}
|
|
static GDExtensionInt gdextension_string_to_utf8_chars(GDExtensionConstStringPtr p_self, char *r_text, GDExtensionInt p_max_write_length) {
|
|
String *self = (String *)p_self;
|
|
CharString cs = self->utf8();
|
|
GDExtensionInt len = cs.length();
|
|
if (r_text) {
|
|
const char *s_text = cs.ptr();
|
|
for (GDExtensionInt i = 0; i < MIN(len, p_max_write_length); i++) {
|
|
r_text[i] = s_text[i];
|
|
}
|
|
}
|
|
return len;
|
|
}
|
|
static GDExtensionInt gdextension_string_to_utf16_chars(GDExtensionConstStringPtr p_self, char16_t *r_text, GDExtensionInt p_max_write_length) {
|
|
String *self = (String *)p_self;
|
|
Char16String cs = self->utf16();
|
|
GDExtensionInt len = cs.length();
|
|
if (r_text) {
|
|
const char16_t *s_text = cs.ptr();
|
|
for (GDExtensionInt i = 0; i < MIN(len, p_max_write_length); i++) {
|
|
r_text[i] = s_text[i];
|
|
}
|
|
}
|
|
return len;
|
|
}
|
|
static GDExtensionInt gdextension_string_to_utf32_chars(GDExtensionConstStringPtr p_self, char32_t *r_text, GDExtensionInt p_max_write_length) {
|
|
String *self = (String *)p_self;
|
|
GDExtensionInt len = self->length();
|
|
if (r_text) {
|
|
const char32_t *s_text = self->ptr();
|
|
for (GDExtensionInt i = 0; i < MIN(len, p_max_write_length); i++) {
|
|
r_text[i] = s_text[i];
|
|
}
|
|
}
|
|
return len;
|
|
}
|
|
static GDExtensionInt gdextension_string_to_wide_chars(GDExtensionConstStringPtr p_self, wchar_t *r_text, GDExtensionInt p_max_write_length) {
|
|
if constexpr (sizeof(wchar_t) == 4) {
|
|
return gdextension_string_to_utf32_chars(p_self, (char32_t *)r_text, p_max_write_length);
|
|
} else {
|
|
return gdextension_string_to_utf16_chars(p_self, (char16_t *)r_text, p_max_write_length);
|
|
}
|
|
}
|
|
|
|
static char32_t *gdextension_string_operator_index(GDExtensionStringPtr p_self, GDExtensionInt p_index) {
|
|
String *self = (String *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->length() + 1)) {
|
|
return nullptr;
|
|
}
|
|
return &self->ptrw()[p_index];
|
|
}
|
|
|
|
static const char32_t *gdextension_string_operator_index_const(GDExtensionConstStringPtr p_self, GDExtensionInt p_index) {
|
|
const String *self = (const String *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->length() + 1)) {
|
|
return nullptr;
|
|
}
|
|
return &self->ptr()[p_index];
|
|
}
|
|
|
|
static void gdextension_string_operator_plus_eq_string(GDExtensionStringPtr p_self, GDExtensionConstStringPtr p_b) {
|
|
String *self = (String *)p_self;
|
|
const String *b = (const String *)p_b;
|
|
*self += *b;
|
|
}
|
|
|
|
static void gdextension_string_operator_plus_eq_char(GDExtensionStringPtr p_self, char32_t p_b) {
|
|
String *self = (String *)p_self;
|
|
*self += p_b;
|
|
}
|
|
|
|
static void gdextension_string_operator_plus_eq_cstr(GDExtensionStringPtr p_self, const char *p_b) {
|
|
String *self = (String *)p_self;
|
|
*self += p_b;
|
|
}
|
|
|
|
static void gdextension_string_operator_plus_eq_wcstr(GDExtensionStringPtr p_self, const wchar_t *p_b) {
|
|
String *self = (String *)p_self;
|
|
*self += p_b;
|
|
}
|
|
|
|
static void gdextension_string_operator_plus_eq_c32str(GDExtensionStringPtr p_self, const char32_t *p_b) {
|
|
String *self = (String *)p_self;
|
|
*self += p_b;
|
|
}
|
|
|
|
static GDExtensionInt gdextension_xml_parser_open_buffer(GDExtensionObjectPtr p_instance, const uint8_t *p_buffer, size_t p_size) {
|
|
XMLParser *xml = (XMLParser *)p_instance;
|
|
return (GDExtensionInt)xml->_open_buffer(p_buffer, p_size);
|
|
}
|
|
|
|
static void gdextension_file_access_store_buffer(GDExtensionObjectPtr p_instance, const uint8_t *p_src, uint64_t p_length) {
|
|
FileAccess *fa = (FileAccess *)p_instance;
|
|
fa->store_buffer(p_src, p_length);
|
|
}
|
|
|
|
static uint64_t gdextension_file_access_get_buffer(GDExtensionConstObjectPtr p_instance, uint8_t *p_dst, uint64_t p_length) {
|
|
const FileAccess *fa = (FileAccess *)p_instance;
|
|
return fa->get_buffer(p_dst, p_length);
|
|
}
|
|
|
|
static int64_t gdextension_worker_thread_pool_add_native_group_task(GDExtensionObjectPtr p_instance, void (*p_func)(void *, uint32_t), void *p_userdata, int p_elements, int p_tasks, GDExtensionBool p_high_priority, GDExtensionConstStringPtr p_description) {
|
|
WorkerThreadPool *p = (WorkerThreadPool *)p_instance;
|
|
const String *description = (const String *)p_description;
|
|
return (int64_t)p->add_native_group_task(p_func, p_userdata, p_elements, p_tasks, static_cast<bool>(p_high_priority), *description);
|
|
}
|
|
|
|
static int64_t gdextension_worker_thread_pool_add_native_task(GDExtensionObjectPtr p_instance, void (*p_func)(void *), void *p_userdata, GDExtensionBool p_high_priority, GDExtensionConstStringPtr p_description) {
|
|
WorkerThreadPool *p = (WorkerThreadPool *)p_instance;
|
|
const String *description = (const String *)p_description;
|
|
return (int64_t)p->add_native_task(p_func, p_userdata, static_cast<bool>(p_high_priority), *description);
|
|
}
|
|
|
|
/* Packed array functions */
|
|
|
|
static uint8_t *gdextension_packed_byte_array_operator_index(GDExtensionTypePtr p_self, GDExtensionInt p_index) {
|
|
PackedByteArray *self = (PackedByteArray *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return &self->ptrw()[p_index];
|
|
}
|
|
|
|
static const uint8_t *gdextension_packed_byte_array_operator_index_const(GDExtensionConstTypePtr p_self, GDExtensionInt p_index) {
|
|
const PackedByteArray *self = (const PackedByteArray *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return &self->ptr()[p_index];
|
|
}
|
|
|
|
static GDExtensionTypePtr gdextension_packed_color_array_operator_index(GDExtensionTypePtr p_self, GDExtensionInt p_index) {
|
|
PackedColorArray *self = (PackedColorArray *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return (GDExtensionTypePtr)&self->ptrw()[p_index];
|
|
}
|
|
|
|
static GDExtensionTypePtr gdextension_packed_color_array_operator_index_const(GDExtensionConstTypePtr p_self, GDExtensionInt p_index) {
|
|
const PackedColorArray *self = (const PackedColorArray *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return (GDExtensionTypePtr)&self->ptr()[p_index];
|
|
}
|
|
|
|
static float *gdextension_packed_float32_array_operator_index(GDExtensionTypePtr p_self, GDExtensionInt p_index) {
|
|
PackedFloat32Array *self = (PackedFloat32Array *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return &self->ptrw()[p_index];
|
|
}
|
|
|
|
static const float *gdextension_packed_float32_array_operator_index_const(GDExtensionConstTypePtr p_self, GDExtensionInt p_index) {
|
|
const PackedFloat32Array *self = (const PackedFloat32Array *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return &self->ptr()[p_index];
|
|
}
|
|
|
|
static double *gdextension_packed_float64_array_operator_index(GDExtensionTypePtr p_self, GDExtensionInt p_index) {
|
|
PackedFloat64Array *self = (PackedFloat64Array *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return &self->ptrw()[p_index];
|
|
}
|
|
|
|
static const double *gdextension_packed_float64_array_operator_index_const(GDExtensionConstTypePtr p_self, GDExtensionInt p_index) {
|
|
const PackedFloat64Array *self = (const PackedFloat64Array *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return &self->ptr()[p_index];
|
|
}
|
|
|
|
static int32_t *gdextension_packed_int32_array_operator_index(GDExtensionTypePtr p_self, GDExtensionInt p_index) {
|
|
PackedInt32Array *self = (PackedInt32Array *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return &self->ptrw()[p_index];
|
|
}
|
|
|
|
static const int32_t *gdextension_packed_int32_array_operator_index_const(GDExtensionConstTypePtr p_self, GDExtensionInt p_index) {
|
|
const PackedInt32Array *self = (const PackedInt32Array *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return &self->ptr()[p_index];
|
|
}
|
|
|
|
static int64_t *gdextension_packed_int64_array_operator_index(GDExtensionTypePtr p_self, GDExtensionInt p_index) {
|
|
PackedInt64Array *self = (PackedInt64Array *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return &self->ptrw()[p_index];
|
|
}
|
|
|
|
static const int64_t *gdextension_packed_int64_array_operator_index_const(GDExtensionConstTypePtr p_self, GDExtensionInt p_index) {
|
|
const PackedInt64Array *self = (const PackedInt64Array *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return &self->ptr()[p_index];
|
|
}
|
|
|
|
static GDExtensionStringPtr gdextension_packed_string_array_operator_index(GDExtensionTypePtr p_self, GDExtensionInt p_index) {
|
|
PackedStringArray *self = (PackedStringArray *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return (GDExtensionStringPtr)&self->ptrw()[p_index];
|
|
}
|
|
|
|
static GDExtensionStringPtr gdextension_packed_string_array_operator_index_const(GDExtensionConstTypePtr p_self, GDExtensionInt p_index) {
|
|
const PackedStringArray *self = (const PackedStringArray *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return (GDExtensionStringPtr)&self->ptr()[p_index];
|
|
}
|
|
|
|
static GDExtensionTypePtr gdextension_packed_vector2_array_operator_index(GDExtensionTypePtr p_self, GDExtensionInt p_index) {
|
|
PackedVector2Array *self = (PackedVector2Array *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return (GDExtensionTypePtr)&self->ptrw()[p_index];
|
|
}
|
|
|
|
static GDExtensionTypePtr gdextension_packed_vector2_array_operator_index_const(GDExtensionConstTypePtr p_self, GDExtensionInt p_index) {
|
|
const PackedVector2Array *self = (const PackedVector2Array *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return (GDExtensionTypePtr)&self->ptr()[p_index];
|
|
}
|
|
|
|
static GDExtensionTypePtr gdextension_packed_vector3_array_operator_index(GDExtensionTypePtr p_self, GDExtensionInt p_index) {
|
|
PackedVector3Array *self = (PackedVector3Array *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return (GDExtensionTypePtr)&self->ptrw()[p_index];
|
|
}
|
|
|
|
static GDExtensionTypePtr gdextension_packed_vector3_array_operator_index_const(GDExtensionConstTypePtr p_self, GDExtensionInt p_index) {
|
|
const PackedVector3Array *self = (const PackedVector3Array *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return (GDExtensionTypePtr)&self->ptr()[p_index];
|
|
}
|
|
|
|
static GDExtensionVariantPtr gdextension_array_operator_index(GDExtensionTypePtr p_self, GDExtensionInt p_index) {
|
|
Array *self = (Array *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return (GDExtensionVariantPtr)&self->operator[](p_index);
|
|
}
|
|
|
|
static GDExtensionVariantPtr gdextension_array_operator_index_const(GDExtensionConstTypePtr p_self, GDExtensionInt p_index) {
|
|
const Array *self = (const Array *)p_self;
|
|
if (unlikely(p_index < 0 || p_index >= self->size())) {
|
|
return nullptr;
|
|
}
|
|
return (GDExtensionVariantPtr)&self->operator[](p_index);
|
|
}
|
|
|
|
void gdextension_array_ref(GDExtensionTypePtr p_self, GDExtensionConstTypePtr p_from) {
|
|
Array *self = (Array *)p_self;
|
|
const Array *from = (const Array *)p_from;
|
|
self->_ref(*from);
|
|
}
|
|
|
|
void gdextension_array_set_typed(GDExtensionTypePtr p_self, GDExtensionVariantType p_type, GDExtensionConstStringNamePtr p_class_name, GDExtensionConstVariantPtr p_script) {
|
|
Array *self = reinterpret_cast<Array *>(p_self);
|
|
const StringName *class_name = reinterpret_cast<const StringName *>(p_class_name);
|
|
const Variant *script = reinterpret_cast<const Variant *>(p_script);
|
|
self->set_typed((uint32_t)p_type, *class_name, *script);
|
|
}
|
|
|
|
/* Dictionary functions */
|
|
|
|
static GDExtensionVariantPtr gdextension_dictionary_operator_index(GDExtensionTypePtr p_self, GDExtensionConstVariantPtr p_key) {
|
|
Dictionary *self = (Dictionary *)p_self;
|
|
return (GDExtensionVariantPtr)&self->operator[](*(const Variant *)p_key);
|
|
}
|
|
|
|
static GDExtensionVariantPtr gdextension_dictionary_operator_index_const(GDExtensionConstTypePtr p_self, GDExtensionConstVariantPtr p_key) {
|
|
const Dictionary *self = (const Dictionary *)p_self;
|
|
return (GDExtensionVariantPtr)&self->operator[](*(const Variant *)p_key);
|
|
}
|
|
|
|
/* OBJECT API */
|
|
|
|
static void gdextension_object_method_bind_call(GDExtensionMethodBindPtr p_method_bind, GDExtensionObjectPtr p_instance, const GDExtensionConstVariantPtr *p_args, GDExtensionInt p_arg_count, GDExtensionUninitializedVariantPtr r_return, GDExtensionCallError *r_error) {
|
|
const MethodBind *mb = reinterpret_cast<const MethodBind *>(p_method_bind);
|
|
Object *o = (Object *)p_instance;
|
|
const Variant **args = (const Variant **)p_args;
|
|
Callable::CallError error;
|
|
|
|
memnew_placement(r_return, Variant(mb->call(o, args, p_arg_count, error)));
|
|
|
|
if (r_error) {
|
|
r_error->error = (GDExtensionCallErrorType)(error.error);
|
|
r_error->argument = error.argument;
|
|
r_error->expected = error.expected;
|
|
}
|
|
}
|
|
|
|
static void gdextension_object_method_bind_ptrcall(GDExtensionMethodBindPtr p_method_bind, GDExtensionObjectPtr p_instance, const GDExtensionConstTypePtr *p_args, GDExtensionTypePtr p_ret) {
|
|
const MethodBind *mb = reinterpret_cast<const MethodBind *>(p_method_bind);
|
|
Object *o = (Object *)p_instance;
|
|
mb->ptrcall(o, (const void **)p_args, p_ret);
|
|
}
|
|
|
|
static void gdextension_object_destroy(GDExtensionObjectPtr p_o) {
|
|
memdelete((Object *)p_o);
|
|
}
|
|
|
|
static GDExtensionObjectPtr gdextension_global_get_singleton(GDExtensionConstStringNamePtr p_name) {
|
|
const StringName name = *reinterpret_cast<const StringName *>(p_name);
|
|
return (GDExtensionObjectPtr)Engine::get_singleton()->get_singleton_object(name);
|
|
}
|
|
|
|
static void *gdextension_object_get_instance_binding(GDExtensionObjectPtr p_object, void *p_token, const GDExtensionInstanceBindingCallbacks *p_callbacks) {
|
|
Object *o = (Object *)p_object;
|
|
return o->get_instance_binding(p_token, p_callbacks);
|
|
}
|
|
|
|
static void gdextension_object_set_instance_binding(GDExtensionObjectPtr p_object, void *p_token, void *p_binding, const GDExtensionInstanceBindingCallbacks *p_callbacks) {
|
|
Object *o = (Object *)p_object;
|
|
o->set_instance_binding(p_token, p_binding, p_callbacks);
|
|
}
|
|
|
|
static void gdextension_object_set_instance(GDExtensionObjectPtr p_object, GDExtensionConstStringNamePtr p_classname, GDExtensionClassInstancePtr p_instance) {
|
|
const StringName classname = *reinterpret_cast<const StringName *>(p_classname);
|
|
Object *o = (Object *)p_object;
|
|
ClassDB::set_object_extension_instance(o, classname, p_instance);
|
|
}
|
|
|
|
static GDExtensionObjectPtr gdextension_object_get_instance_from_id(GDObjectInstanceID p_instance_id) {
|
|
return (GDExtensionObjectPtr)ObjectDB::get_instance(ObjectID(p_instance_id));
|
|
}
|
|
|
|
static GDExtensionBool gdextension_object_get_class_name(GDExtensionConstObjectPtr p_object, GDExtensionClassLibraryPtr p_library, GDExtensionUninitializedStringNamePtr r_class_name) {
|
|
if (!p_object) {
|
|
return false;
|
|
}
|
|
const Object *o = (const Object *)p_object;
|
|
|
|
memnew_placement(r_class_name, StringName);
|
|
StringName *class_name = reinterpret_cast<StringName *>(r_class_name);
|
|
*class_name = o->get_class_name_for_extension((GDExtension *)p_library);
|
|
|
|
return true;
|
|
}
|
|
|
|
static GDExtensionObjectPtr gdextension_object_cast_to(GDExtensionConstObjectPtr p_object, void *p_class_tag) {
|
|
if (!p_object) {
|
|
return nullptr;
|
|
}
|
|
Object *o = (Object *)p_object;
|
|
|
|
return o->is_class_ptr(p_class_tag) ? (GDExtensionObjectPtr)o : (GDExtensionObjectPtr) nullptr;
|
|
}
|
|
|
|
static GDObjectInstanceID gdextension_object_get_instance_id(GDExtensionConstObjectPtr p_object) {
|
|
const Object *o = (const Object *)p_object;
|
|
return (GDObjectInstanceID)o->get_instance_id();
|
|
}
|
|
|
|
static GDExtensionObjectPtr gdextension_ref_get_object(GDExtensionConstRefPtr p_ref) {
|
|
const Ref<RefCounted> *ref = (const Ref<RefCounted> *)p_ref;
|
|
if (ref == nullptr || ref->is_null()) {
|
|
return (GDExtensionObjectPtr) nullptr;
|
|
} else {
|
|
return (GDExtensionObjectPtr)ref->ptr();
|
|
}
|
|
}
|
|
|
|
static void gdextension_ref_set_object(GDExtensionRefPtr p_ref, GDExtensionObjectPtr p_object) {
|
|
Ref<RefCounted> *ref = (Ref<RefCounted> *)p_ref;
|
|
ERR_FAIL_NULL(ref);
|
|
|
|
Object *o = (RefCounted *)p_object;
|
|
ref->reference_ptr(o);
|
|
}
|
|
|
|
static GDExtensionScriptInstancePtr gdextension_script_instance_create(const GDExtensionScriptInstanceInfo *p_info, GDExtensionScriptInstanceDataPtr p_instance_data) {
|
|
ScriptInstanceExtension *script_instance_extension = memnew(ScriptInstanceExtension);
|
|
script_instance_extension->instance = p_instance_data;
|
|
script_instance_extension->native_info = p_info;
|
|
return reinterpret_cast<GDExtensionScriptInstancePtr>(script_instance_extension);
|
|
}
|
|
|
|
static GDExtensionMethodBindPtr gdextension_classdb_get_method_bind(GDExtensionConstStringNamePtr p_classname, GDExtensionConstStringNamePtr p_methodname, GDExtensionInt p_hash) {
|
|
const StringName classname = *reinterpret_cast<const StringName *>(p_classname);
|
|
const StringName methodname = *reinterpret_cast<const StringName *>(p_methodname);
|
|
bool exists = false;
|
|
MethodBind *mb = ClassDB::get_method_with_compatibility(classname, methodname, p_hash, &exists);
|
|
if (!mb && exists) {
|
|
ERR_PRINT("Method '" + classname + "." + methodname + "' has changed and no compatibility fallback has been provided. Please open an issue.");
|
|
return nullptr;
|
|
}
|
|
ERR_FAIL_COND_V(!mb, nullptr);
|
|
if (mb->get_hash() != p_hash) {
|
|
ERR_PRINT("Hash mismatch for method '" + classname + "." + methodname + "'.");
|
|
return nullptr;
|
|
}
|
|
return (GDExtensionMethodBindPtr)mb;
|
|
}
|
|
|
|
static GDExtensionObjectPtr gdextension_classdb_construct_object(GDExtensionConstStringNamePtr p_classname) {
|
|
const StringName classname = *reinterpret_cast<const StringName *>(p_classname);
|
|
return (GDExtensionObjectPtr)ClassDB::instantiate(classname);
|
|
}
|
|
|
|
static void *gdextension_classdb_get_class_tag(GDExtensionConstStringNamePtr p_classname) {
|
|
const StringName classname = *reinterpret_cast<const StringName *>(p_classname);
|
|
ClassDB::ClassInfo *class_info = ClassDB::classes.getptr(classname);
|
|
return class_info ? class_info->class_ptr : nullptr;
|
|
}
|
|
|
|
static void gdextension_editor_add_plugin(GDExtensionConstStringNamePtr p_classname) {
|
|
#ifdef TOOLS_ENABLED
|
|
const StringName classname = *reinterpret_cast<const StringName *>(p_classname);
|
|
GDExtensionEditorPlugins::add_extension_class(classname);
|
|
#endif
|
|
}
|
|
|
|
static void gdextension_editor_remove_plugin(GDExtensionConstStringNamePtr p_classname) {
|
|
#ifdef TOOLS_ENABLED
|
|
const StringName classname = *reinterpret_cast<const StringName *>(p_classname);
|
|
GDExtensionEditorPlugins::remove_extension_class(classname);
|
|
#endif
|
|
}
|
|
|
|
#define REGISTER_INTERFACE_FUNC(m_name) GDExtension::register_interface_function(#m_name, (GDExtensionInterfaceFunctionPtr)&gdextension_##m_name)
|
|
|
|
void gdextension_setup_interface() {
|
|
REGISTER_INTERFACE_FUNC(get_godot_version);
|
|
REGISTER_INTERFACE_FUNC(mem_alloc);
|
|
REGISTER_INTERFACE_FUNC(mem_realloc);
|
|
REGISTER_INTERFACE_FUNC(mem_free);
|
|
REGISTER_INTERFACE_FUNC(print_error);
|
|
REGISTER_INTERFACE_FUNC(print_error_with_message);
|
|
REGISTER_INTERFACE_FUNC(print_warning);
|
|
REGISTER_INTERFACE_FUNC(print_warning_with_message);
|
|
REGISTER_INTERFACE_FUNC(print_script_error);
|
|
REGISTER_INTERFACE_FUNC(print_script_error_with_message);
|
|
REGISTER_INTERFACE_FUNC(get_native_struct_size);
|
|
REGISTER_INTERFACE_FUNC(variant_new_copy);
|
|
REGISTER_INTERFACE_FUNC(variant_new_nil);
|
|
REGISTER_INTERFACE_FUNC(variant_destroy);
|
|
REGISTER_INTERFACE_FUNC(variant_call);
|
|
REGISTER_INTERFACE_FUNC(variant_call_static);
|
|
REGISTER_INTERFACE_FUNC(variant_evaluate);
|
|
REGISTER_INTERFACE_FUNC(variant_set);
|
|
REGISTER_INTERFACE_FUNC(variant_set_named);
|
|
REGISTER_INTERFACE_FUNC(variant_set_keyed);
|
|
REGISTER_INTERFACE_FUNC(variant_set_indexed);
|
|
REGISTER_INTERFACE_FUNC(variant_get);
|
|
REGISTER_INTERFACE_FUNC(variant_get_named);
|
|
REGISTER_INTERFACE_FUNC(variant_get_keyed);
|
|
REGISTER_INTERFACE_FUNC(variant_get_indexed);
|
|
REGISTER_INTERFACE_FUNC(variant_iter_init);
|
|
REGISTER_INTERFACE_FUNC(variant_iter_next);
|
|
REGISTER_INTERFACE_FUNC(variant_iter_get);
|
|
REGISTER_INTERFACE_FUNC(variant_hash);
|
|
REGISTER_INTERFACE_FUNC(variant_recursive_hash);
|
|
REGISTER_INTERFACE_FUNC(variant_hash_compare);
|
|
REGISTER_INTERFACE_FUNC(variant_booleanize);
|
|
REGISTER_INTERFACE_FUNC(variant_duplicate);
|
|
REGISTER_INTERFACE_FUNC(variant_stringify);
|
|
REGISTER_INTERFACE_FUNC(variant_get_type);
|
|
REGISTER_INTERFACE_FUNC(variant_has_method);
|
|
REGISTER_INTERFACE_FUNC(variant_has_member);
|
|
REGISTER_INTERFACE_FUNC(variant_has_key);
|
|
REGISTER_INTERFACE_FUNC(variant_get_type_name);
|
|
REGISTER_INTERFACE_FUNC(variant_can_convert);
|
|
REGISTER_INTERFACE_FUNC(variant_can_convert_strict);
|
|
REGISTER_INTERFACE_FUNC(get_variant_from_type_constructor);
|
|
REGISTER_INTERFACE_FUNC(get_variant_to_type_constructor);
|
|
REGISTER_INTERFACE_FUNC(variant_get_ptr_operator_evaluator);
|
|
REGISTER_INTERFACE_FUNC(variant_get_ptr_builtin_method);
|
|
REGISTER_INTERFACE_FUNC(variant_get_ptr_constructor);
|
|
REGISTER_INTERFACE_FUNC(variant_get_ptr_destructor);
|
|
REGISTER_INTERFACE_FUNC(variant_construct);
|
|
REGISTER_INTERFACE_FUNC(variant_get_ptr_setter);
|
|
REGISTER_INTERFACE_FUNC(variant_get_ptr_getter);
|
|
REGISTER_INTERFACE_FUNC(variant_get_ptr_indexed_setter);
|
|
REGISTER_INTERFACE_FUNC(variant_get_ptr_indexed_getter);
|
|
REGISTER_INTERFACE_FUNC(variant_get_ptr_keyed_setter);
|
|
REGISTER_INTERFACE_FUNC(variant_get_ptr_keyed_getter);
|
|
REGISTER_INTERFACE_FUNC(variant_get_ptr_keyed_checker);
|
|
REGISTER_INTERFACE_FUNC(variant_get_constant_value);
|
|
REGISTER_INTERFACE_FUNC(variant_get_ptr_utility_function);
|
|
REGISTER_INTERFACE_FUNC(string_new_with_latin1_chars);
|
|
REGISTER_INTERFACE_FUNC(string_new_with_utf8_chars);
|
|
REGISTER_INTERFACE_FUNC(string_new_with_utf16_chars);
|
|
REGISTER_INTERFACE_FUNC(string_new_with_utf32_chars);
|
|
REGISTER_INTERFACE_FUNC(string_new_with_wide_chars);
|
|
REGISTER_INTERFACE_FUNC(string_new_with_latin1_chars_and_len);
|
|
REGISTER_INTERFACE_FUNC(string_new_with_utf8_chars_and_len);
|
|
REGISTER_INTERFACE_FUNC(string_new_with_utf16_chars_and_len);
|
|
REGISTER_INTERFACE_FUNC(string_new_with_utf32_chars_and_len);
|
|
REGISTER_INTERFACE_FUNC(string_new_with_wide_chars_and_len);
|
|
REGISTER_INTERFACE_FUNC(string_to_latin1_chars);
|
|
REGISTER_INTERFACE_FUNC(string_to_utf8_chars);
|
|
REGISTER_INTERFACE_FUNC(string_to_utf16_chars);
|
|
REGISTER_INTERFACE_FUNC(string_to_utf32_chars);
|
|
REGISTER_INTERFACE_FUNC(string_to_wide_chars);
|
|
REGISTER_INTERFACE_FUNC(string_operator_index);
|
|
REGISTER_INTERFACE_FUNC(string_operator_index_const);
|
|
REGISTER_INTERFACE_FUNC(string_operator_plus_eq_string);
|
|
REGISTER_INTERFACE_FUNC(string_operator_plus_eq_char);
|
|
REGISTER_INTERFACE_FUNC(string_operator_plus_eq_cstr);
|
|
REGISTER_INTERFACE_FUNC(string_operator_plus_eq_wcstr);
|
|
REGISTER_INTERFACE_FUNC(string_operator_plus_eq_c32str);
|
|
REGISTER_INTERFACE_FUNC(xml_parser_open_buffer);
|
|
REGISTER_INTERFACE_FUNC(file_access_store_buffer);
|
|
REGISTER_INTERFACE_FUNC(file_access_get_buffer);
|
|
REGISTER_INTERFACE_FUNC(worker_thread_pool_add_native_group_task);
|
|
REGISTER_INTERFACE_FUNC(worker_thread_pool_add_native_task);
|
|
REGISTER_INTERFACE_FUNC(packed_byte_array_operator_index);
|
|
REGISTER_INTERFACE_FUNC(packed_byte_array_operator_index_const);
|
|
REGISTER_INTERFACE_FUNC(packed_color_array_operator_index);
|
|
REGISTER_INTERFACE_FUNC(packed_color_array_operator_index_const);
|
|
REGISTER_INTERFACE_FUNC(packed_float32_array_operator_index);
|
|
REGISTER_INTERFACE_FUNC(packed_float32_array_operator_index_const);
|
|
REGISTER_INTERFACE_FUNC(packed_float64_array_operator_index);
|
|
REGISTER_INTERFACE_FUNC(packed_float64_array_operator_index_const);
|
|
REGISTER_INTERFACE_FUNC(packed_int32_array_operator_index);
|
|
REGISTER_INTERFACE_FUNC(packed_int32_array_operator_index_const);
|
|
REGISTER_INTERFACE_FUNC(packed_int64_array_operator_index);
|
|
REGISTER_INTERFACE_FUNC(packed_int64_array_operator_index_const);
|
|
REGISTER_INTERFACE_FUNC(packed_string_array_operator_index);
|
|
REGISTER_INTERFACE_FUNC(packed_string_array_operator_index_const);
|
|
REGISTER_INTERFACE_FUNC(packed_vector2_array_operator_index);
|
|
REGISTER_INTERFACE_FUNC(packed_vector2_array_operator_index_const);
|
|
REGISTER_INTERFACE_FUNC(packed_vector3_array_operator_index);
|
|
REGISTER_INTERFACE_FUNC(packed_vector3_array_operator_index_const);
|
|
REGISTER_INTERFACE_FUNC(array_operator_index);
|
|
REGISTER_INTERFACE_FUNC(array_operator_index_const);
|
|
REGISTER_INTERFACE_FUNC(array_ref);
|
|
REGISTER_INTERFACE_FUNC(array_set_typed);
|
|
REGISTER_INTERFACE_FUNC(dictionary_operator_index);
|
|
REGISTER_INTERFACE_FUNC(dictionary_operator_index_const);
|
|
REGISTER_INTERFACE_FUNC(object_method_bind_call);
|
|
REGISTER_INTERFACE_FUNC(object_method_bind_ptrcall);
|
|
REGISTER_INTERFACE_FUNC(object_destroy);
|
|
REGISTER_INTERFACE_FUNC(global_get_singleton);
|
|
REGISTER_INTERFACE_FUNC(object_get_instance_binding);
|
|
REGISTER_INTERFACE_FUNC(object_set_instance_binding);
|
|
REGISTER_INTERFACE_FUNC(object_set_instance);
|
|
REGISTER_INTERFACE_FUNC(object_get_class_name);
|
|
REGISTER_INTERFACE_FUNC(object_cast_to);
|
|
REGISTER_INTERFACE_FUNC(object_get_instance_from_id);
|
|
REGISTER_INTERFACE_FUNC(object_get_instance_id);
|
|
REGISTER_INTERFACE_FUNC(ref_get_object);
|
|
REGISTER_INTERFACE_FUNC(ref_set_object);
|
|
REGISTER_INTERFACE_FUNC(script_instance_create);
|
|
REGISTER_INTERFACE_FUNC(classdb_construct_object);
|
|
REGISTER_INTERFACE_FUNC(classdb_get_method_bind);
|
|
REGISTER_INTERFACE_FUNC(classdb_get_class_tag);
|
|
REGISTER_INTERFACE_FUNC(editor_add_plugin);
|
|
REGISTER_INTERFACE_FUNC(editor_remove_plugin);
|
|
}
|
|
|
|
#undef REGISTER_INTERFACE_FUNCTION
|
|
|
|
/*
|
|
* Handle legacy GDExtension interface from Godot 4.0.
|
|
*/
|
|
|
|
typedef struct {
|
|
uint32_t version_major;
|
|
uint32_t version_minor;
|
|
uint32_t version_patch;
|
|
const char *version_string;
|
|
|
|
GDExtensionInterfaceMemAlloc mem_alloc;
|
|
GDExtensionInterfaceMemRealloc mem_realloc;
|
|
GDExtensionInterfaceMemFree mem_free;
|
|
|
|
GDExtensionInterfacePrintError print_error;
|
|
GDExtensionInterfacePrintErrorWithMessage print_error_with_message;
|
|
GDExtensionInterfacePrintWarning print_warning;
|
|
GDExtensionInterfacePrintWarningWithMessage print_warning_with_message;
|
|
GDExtensionInterfacePrintScriptError print_script_error;
|
|
GDExtensionInterfacePrintScriptErrorWithMessage print_script_error_with_message;
|
|
|
|
GDExtensionInterfaceGetNativeStructSize get_native_struct_size;
|
|
|
|
GDExtensionInterfaceVariantNewCopy variant_new_copy;
|
|
GDExtensionInterfaceVariantNewNil variant_new_nil;
|
|
GDExtensionInterfaceVariantDestroy variant_destroy;
|
|
|
|
GDExtensionInterfaceVariantCall variant_call;
|
|
GDExtensionInterfaceVariantCallStatic variant_call_static;
|
|
GDExtensionInterfaceVariantEvaluate variant_evaluate;
|
|
GDExtensionInterfaceVariantSet variant_set;
|
|
GDExtensionInterfaceVariantSetNamed variant_set_named;
|
|
GDExtensionInterfaceVariantSetKeyed variant_set_keyed;
|
|
GDExtensionInterfaceVariantSetIndexed variant_set_indexed;
|
|
GDExtensionInterfaceVariantGet variant_get;
|
|
GDExtensionInterfaceVariantGetNamed variant_get_named;
|
|
GDExtensionInterfaceVariantGetKeyed variant_get_keyed;
|
|
GDExtensionInterfaceVariantGetIndexed variant_get_indexed;
|
|
GDExtensionInterfaceVariantIterInit variant_iter_init;
|
|
GDExtensionInterfaceVariantIterNext variant_iter_next;
|
|
GDExtensionInterfaceVariantIterGet variant_iter_get;
|
|
GDExtensionInterfaceVariantHash variant_hash;
|
|
GDExtensionInterfaceVariantRecursiveHash variant_recursive_hash;
|
|
GDExtensionInterfaceVariantHashCompare variant_hash_compare;
|
|
GDExtensionInterfaceVariantBooleanize variant_booleanize;
|
|
GDExtensionInterfaceVariantDuplicate variant_duplicate;
|
|
GDExtensionInterfaceVariantStringify variant_stringify;
|
|
|
|
GDExtensionInterfaceVariantGetType variant_get_type;
|
|
GDExtensionInterfaceVariantHasMethod variant_has_method;
|
|
GDExtensionInterfaceVariantHasMember variant_has_member;
|
|
GDExtensionInterfaceVariantHasKey variant_has_key;
|
|
GDExtensionInterfaceVariantGetTypeName variant_get_type_name;
|
|
GDExtensionInterfaceVariantCanConvert variant_can_convert;
|
|
GDExtensionInterfaceVariantCanConvertStrict variant_can_convert_strict;
|
|
|
|
GDExtensionInterfaceGetVariantFromTypeConstructor get_variant_from_type_constructor;
|
|
GDExtensionInterfaceGetVariantToTypeConstructor get_variant_to_type_constructor;
|
|
GDExtensionInterfaceVariantGetPtrOperatorEvaluator variant_get_ptr_operator_evaluator;
|
|
GDExtensionInterfaceVariantGetPtrBuiltinMethod variant_get_ptr_builtin_method;
|
|
GDExtensionInterfaceVariantGetPtrConstructor variant_get_ptr_constructor;
|
|
GDExtensionInterfaceVariantGetPtrDestructor variant_get_ptr_destructor;
|
|
GDExtensionInterfaceVariantConstruct variant_construct;
|
|
GDExtensionInterfaceVariantGetPtrSetter variant_get_ptr_setter;
|
|
GDExtensionInterfaceVariantGetPtrGetter variant_get_ptr_getter;
|
|
GDExtensionInterfaceVariantGetPtrIndexedSetter variant_get_ptr_indexed_setter;
|
|
GDExtensionInterfaceVariantGetPtrIndexedGetter variant_get_ptr_indexed_getter;
|
|
GDExtensionInterfaceVariantGetPtrKeyedSetter variant_get_ptr_keyed_setter;
|
|
GDExtensionInterfaceVariantGetPtrKeyedGetter variant_get_ptr_keyed_getter;
|
|
GDExtensionInterfaceVariantGetPtrKeyedChecker variant_get_ptr_keyed_checker;
|
|
GDExtensionInterfaceVariantGetConstantValue variant_get_constant_value;
|
|
GDExtensionInterfaceVariantGetPtrUtilityFunction variant_get_ptr_utility_function;
|
|
|
|
GDExtensionInterfaceStringNewWithLatin1Chars string_new_with_latin1_chars;
|
|
GDExtensionInterfaceStringNewWithUtf8Chars string_new_with_utf8_chars;
|
|
GDExtensionInterfaceStringNewWithUtf16Chars string_new_with_utf16_chars;
|
|
GDExtensionInterfaceStringNewWithUtf32Chars string_new_with_utf32_chars;
|
|
GDExtensionInterfaceStringNewWithWideChars string_new_with_wide_chars;
|
|
GDExtensionInterfaceStringNewWithLatin1CharsAndLen string_new_with_latin1_chars_and_len;
|
|
GDExtensionInterfaceStringNewWithUtf8CharsAndLen string_new_with_utf8_chars_and_len;
|
|
GDExtensionInterfaceStringNewWithUtf16CharsAndLen string_new_with_utf16_chars_and_len;
|
|
GDExtensionInterfaceStringNewWithUtf32CharsAndLen string_new_with_utf32_chars_and_len;
|
|
GDExtensionInterfaceStringNewWithWideCharsAndLen string_new_with_wide_chars_and_len;
|
|
GDExtensionInterfaceStringToLatin1Chars string_to_latin1_chars;
|
|
GDExtensionInterfaceStringToUtf8Chars string_to_utf8_chars;
|
|
GDExtensionInterfaceStringToUtf16Chars string_to_utf16_chars;
|
|
GDExtensionInterfaceStringToUtf32Chars string_to_utf32_chars;
|
|
GDExtensionInterfaceStringToWideChars string_to_wide_chars;
|
|
GDExtensionInterfaceStringOperatorIndex string_operator_index;
|
|
GDExtensionInterfaceStringOperatorIndexConst string_operator_index_const;
|
|
|
|
GDExtensionInterfaceStringOperatorPlusEqString string_operator_plus_eq_string;
|
|
GDExtensionInterfaceStringOperatorPlusEqChar string_operator_plus_eq_char;
|
|
GDExtensionInterfaceStringOperatorPlusEqCstr string_operator_plus_eq_cstr;
|
|
GDExtensionInterfaceStringOperatorPlusEqWcstr string_operator_plus_eq_wcstr;
|
|
GDExtensionInterfaceStringOperatorPlusEqC32str string_operator_plus_eq_c32str;
|
|
|
|
GDExtensionInterfaceXmlParserOpenBuffer xml_parser_open_buffer;
|
|
|
|
GDExtensionInterfaceFileAccessStoreBuffer file_access_store_buffer;
|
|
GDExtensionInterfaceFileAccessGetBuffer file_access_get_buffer;
|
|
|
|
GDExtensionInterfaceWorkerThreadPoolAddNativeGroupTask worker_thread_pool_add_native_group_task;
|
|
GDExtensionInterfaceWorkerThreadPoolAddNativeTask worker_thread_pool_add_native_task;
|
|
|
|
GDExtensionInterfacePackedByteArrayOperatorIndex packed_byte_array_operator_index;
|
|
GDExtensionInterfacePackedByteArrayOperatorIndexConst packed_byte_array_operator_index_const;
|
|
GDExtensionInterfacePackedColorArrayOperatorIndex packed_color_array_operator_index;
|
|
GDExtensionInterfacePackedColorArrayOperatorIndexConst packed_color_array_operator_index_const;
|
|
GDExtensionInterfacePackedFloat32ArrayOperatorIndex packed_float32_array_operator_index;
|
|
GDExtensionInterfacePackedFloat32ArrayOperatorIndexConst packed_float32_array_operator_index_const;
|
|
GDExtensionInterfacePackedFloat64ArrayOperatorIndex packed_float64_array_operator_index;
|
|
GDExtensionInterfacePackedFloat64ArrayOperatorIndexConst packed_float64_array_operator_index_const;
|
|
GDExtensionInterfacePackedInt32ArrayOperatorIndex packed_int32_array_operator_index;
|
|
GDExtensionInterfacePackedInt32ArrayOperatorIndexConst packed_int32_array_operator_index_const;
|
|
GDExtensionInterfacePackedInt64ArrayOperatorIndex packed_int64_array_operator_index;
|
|
GDExtensionInterfacePackedInt64ArrayOperatorIndexConst packed_int64_array_operator_index_const;
|
|
GDExtensionInterfacePackedStringArrayOperatorIndex packed_string_array_operator_index;
|
|
GDExtensionInterfacePackedStringArrayOperatorIndexConst packed_string_array_operator_index_const;
|
|
GDExtensionInterfacePackedVector2ArrayOperatorIndex packed_vector2_array_operator_index;
|
|
GDExtensionInterfacePackedVector2ArrayOperatorIndexConst packed_vector2_array_operator_index_const;
|
|
GDExtensionInterfacePackedVector3ArrayOperatorIndex packed_vector3_array_operator_index;
|
|
GDExtensionInterfacePackedVector3ArrayOperatorIndexConst packed_vector3_array_operator_index_const;
|
|
GDExtensionInterfaceArrayOperatorIndex array_operator_index;
|
|
GDExtensionInterfaceArrayOperatorIndexConst array_operator_index_const;
|
|
GDExtensionInterfaceArrayRef array_ref;
|
|
GDExtensionInterfaceArraySetTyped array_set_typed;
|
|
|
|
GDExtensionInterfaceDictionaryOperatorIndex dictionary_operator_index;
|
|
GDExtensionInterfaceDictionaryOperatorIndexConst dictionary_operator_index_const;
|
|
|
|
GDExtensionInterfaceObjectMethodBindCall object_method_bind_call;
|
|
GDExtensionInterfaceObjectMethodBindPtrcall object_method_bind_ptrcall;
|
|
GDExtensionInterfaceObjectDestroy object_destroy;
|
|
GDExtensionInterfaceGlobalGetSingleton global_get_singleton;
|
|
GDExtensionInterfaceObjectGetInstanceBinding object_get_instance_binding;
|
|
GDExtensionInterfaceObjectSetInstanceBinding object_set_instance_binding;
|
|
GDExtensionInterfaceObjectSetInstance object_set_instance;
|
|
GDExtensionInterfaceObjectCastTo object_cast_to;
|
|
GDExtensionInterfaceObjectGetInstanceFromId object_get_instance_from_id;
|
|
GDExtensionInterfaceObjectGetInstanceId object_get_instance_id;
|
|
|
|
GDExtensionInterfaceRefGetObject ref_get_object;
|
|
GDExtensionInterfaceRefSetObject ref_set_object;
|
|
|
|
GDExtensionInterfaceScriptInstanceCreate script_instance_create;
|
|
|
|
GDExtensionInterfaceClassdbConstructObject classdb_construct_object;
|
|
GDExtensionInterfaceClassdbGetMethodBind classdb_get_method_bind;
|
|
GDExtensionInterfaceClassdbGetClassTag classdb_get_class_tag;
|
|
|
|
GDExtensionInterfaceClassdbRegisterExtensionClass classdb_register_extension_class;
|
|
GDExtensionInterfaceClassdbRegisterExtensionClassMethod classdb_register_extension_class_method;
|
|
GDExtensionInterfaceClassdbRegisterExtensionClassIntegerConstant classdb_register_extension_class_integer_constant;
|
|
GDExtensionInterfaceClassdbRegisterExtensionClassProperty classdb_register_extension_class_property;
|
|
GDExtensionInterfaceClassdbRegisterExtensionClassPropertyGroup classdb_register_extension_class_property_group;
|
|
GDExtensionInterfaceClassdbRegisterExtensionClassPropertySubgroup classdb_register_extension_class_property_subgroup;
|
|
GDExtensionInterfaceClassdbRegisterExtensionClassSignal classdb_register_extension_class_signal;
|
|
GDExtensionInterfaceClassdbUnregisterExtensionClass classdb_unregister_extension_class;
|
|
|
|
GDExtensionInterfaceGetLibraryPath get_library_path;
|
|
|
|
} LegacyGDExtensionInterface;
|
|
|
|
static LegacyGDExtensionInterface *legacy_gdextension_interface = nullptr;
|
|
|
|
#define SETUP_LEGACY_FUNC(m_name, m_type) legacy_gdextension_interface->m_name = (m_type)GDExtension::get_interface_function(#m_name)
|
|
|
|
void *gdextension_get_legacy_interface() {
|
|
if (legacy_gdextension_interface != nullptr) {
|
|
return legacy_gdextension_interface;
|
|
}
|
|
|
|
legacy_gdextension_interface = memnew(LegacyGDExtensionInterface);
|
|
|
|
// Force to 4.0.999 to make it easier to detect this structure.
|
|
legacy_gdextension_interface->version_major = 4;
|
|
legacy_gdextension_interface->version_minor = 0;
|
|
legacy_gdextension_interface->version_patch = 999;
|
|
legacy_gdextension_interface->version_string = "Godot Engine v4.0.999.stable.official [000000000]";
|
|
|
|
SETUP_LEGACY_FUNC(mem_alloc, GDExtensionInterfaceMemAlloc);
|
|
SETUP_LEGACY_FUNC(mem_realloc, GDExtensionInterfaceMemRealloc);
|
|
SETUP_LEGACY_FUNC(mem_free, GDExtensionInterfaceMemFree);
|
|
SETUP_LEGACY_FUNC(print_error, GDExtensionInterfacePrintError);
|
|
SETUP_LEGACY_FUNC(print_error_with_message, GDExtensionInterfacePrintErrorWithMessage);
|
|
SETUP_LEGACY_FUNC(print_warning, GDExtensionInterfacePrintWarning);
|
|
SETUP_LEGACY_FUNC(print_warning_with_message, GDExtensionInterfacePrintWarningWithMessage);
|
|
SETUP_LEGACY_FUNC(print_script_error, GDExtensionInterfacePrintScriptError);
|
|
SETUP_LEGACY_FUNC(print_script_error_with_message, GDExtensionInterfacePrintScriptErrorWithMessage);
|
|
SETUP_LEGACY_FUNC(get_native_struct_size, GDExtensionInterfaceGetNativeStructSize);
|
|
SETUP_LEGACY_FUNC(variant_new_copy, GDExtensionInterfaceVariantNewCopy);
|
|
SETUP_LEGACY_FUNC(variant_new_nil, GDExtensionInterfaceVariantNewNil);
|
|
SETUP_LEGACY_FUNC(variant_destroy, GDExtensionInterfaceVariantDestroy);
|
|
SETUP_LEGACY_FUNC(variant_call, GDExtensionInterfaceVariantCall);
|
|
SETUP_LEGACY_FUNC(variant_call_static, GDExtensionInterfaceVariantCallStatic);
|
|
SETUP_LEGACY_FUNC(variant_evaluate, GDExtensionInterfaceVariantEvaluate);
|
|
SETUP_LEGACY_FUNC(variant_set, GDExtensionInterfaceVariantSet);
|
|
SETUP_LEGACY_FUNC(variant_set_named, GDExtensionInterfaceVariantSetNamed);
|
|
SETUP_LEGACY_FUNC(variant_set_keyed, GDExtensionInterfaceVariantSetKeyed);
|
|
SETUP_LEGACY_FUNC(variant_set_indexed, GDExtensionInterfaceVariantSetIndexed);
|
|
SETUP_LEGACY_FUNC(variant_get, GDExtensionInterfaceVariantGet);
|
|
SETUP_LEGACY_FUNC(variant_get_named, GDExtensionInterfaceVariantGetNamed);
|
|
SETUP_LEGACY_FUNC(variant_get_keyed, GDExtensionInterfaceVariantGetKeyed);
|
|
SETUP_LEGACY_FUNC(variant_get_indexed, GDExtensionInterfaceVariantGetIndexed);
|
|
SETUP_LEGACY_FUNC(variant_iter_init, GDExtensionInterfaceVariantIterInit);
|
|
SETUP_LEGACY_FUNC(variant_iter_next, GDExtensionInterfaceVariantIterNext);
|
|
SETUP_LEGACY_FUNC(variant_iter_get, GDExtensionInterfaceVariantIterGet);
|
|
SETUP_LEGACY_FUNC(variant_hash, GDExtensionInterfaceVariantHash);
|
|
SETUP_LEGACY_FUNC(variant_recursive_hash, GDExtensionInterfaceVariantRecursiveHash);
|
|
SETUP_LEGACY_FUNC(variant_hash_compare, GDExtensionInterfaceVariantHashCompare);
|
|
SETUP_LEGACY_FUNC(variant_booleanize, GDExtensionInterfaceVariantBooleanize);
|
|
SETUP_LEGACY_FUNC(variant_duplicate, GDExtensionInterfaceVariantDuplicate);
|
|
SETUP_LEGACY_FUNC(variant_stringify, GDExtensionInterfaceVariantStringify);
|
|
SETUP_LEGACY_FUNC(variant_get_type, GDExtensionInterfaceVariantGetType);
|
|
SETUP_LEGACY_FUNC(variant_has_method, GDExtensionInterfaceVariantHasMethod);
|
|
SETUP_LEGACY_FUNC(variant_has_member, GDExtensionInterfaceVariantHasMember);
|
|
SETUP_LEGACY_FUNC(variant_has_key, GDExtensionInterfaceVariantHasKey);
|
|
SETUP_LEGACY_FUNC(variant_get_type_name, GDExtensionInterfaceVariantGetTypeName);
|
|
SETUP_LEGACY_FUNC(variant_can_convert, GDExtensionInterfaceVariantCanConvert);
|
|
SETUP_LEGACY_FUNC(variant_can_convert_strict, GDExtensionInterfaceVariantCanConvertStrict);
|
|
SETUP_LEGACY_FUNC(get_variant_from_type_constructor, GDExtensionInterfaceGetVariantFromTypeConstructor);
|
|
SETUP_LEGACY_FUNC(get_variant_to_type_constructor, GDExtensionInterfaceGetVariantToTypeConstructor);
|
|
SETUP_LEGACY_FUNC(variant_get_ptr_operator_evaluator, GDExtensionInterfaceVariantGetPtrOperatorEvaluator);
|
|
SETUP_LEGACY_FUNC(variant_get_ptr_builtin_method, GDExtensionInterfaceVariantGetPtrBuiltinMethod);
|
|
SETUP_LEGACY_FUNC(variant_get_ptr_constructor, GDExtensionInterfaceVariantGetPtrConstructor);
|
|
SETUP_LEGACY_FUNC(variant_get_ptr_destructor, GDExtensionInterfaceVariantGetPtrDestructor);
|
|
SETUP_LEGACY_FUNC(variant_construct, GDExtensionInterfaceVariantConstruct);
|
|
SETUP_LEGACY_FUNC(variant_get_ptr_setter, GDExtensionInterfaceVariantGetPtrSetter);
|
|
SETUP_LEGACY_FUNC(variant_get_ptr_getter, GDExtensionInterfaceVariantGetPtrGetter);
|
|
SETUP_LEGACY_FUNC(variant_get_ptr_indexed_setter, GDExtensionInterfaceVariantGetPtrIndexedSetter);
|
|
SETUP_LEGACY_FUNC(variant_get_ptr_indexed_getter, GDExtensionInterfaceVariantGetPtrIndexedGetter);
|
|
SETUP_LEGACY_FUNC(variant_get_ptr_keyed_setter, GDExtensionInterfaceVariantGetPtrKeyedSetter);
|
|
SETUP_LEGACY_FUNC(variant_get_ptr_keyed_getter, GDExtensionInterfaceVariantGetPtrKeyedGetter);
|
|
SETUP_LEGACY_FUNC(variant_get_ptr_keyed_checker, GDExtensionInterfaceVariantGetPtrKeyedChecker);
|
|
SETUP_LEGACY_FUNC(variant_get_constant_value, GDExtensionInterfaceVariantGetConstantValue);
|
|
SETUP_LEGACY_FUNC(variant_get_ptr_utility_function, GDExtensionInterfaceVariantGetPtrUtilityFunction);
|
|
SETUP_LEGACY_FUNC(string_new_with_latin1_chars, GDExtensionInterfaceStringNewWithLatin1Chars);
|
|
SETUP_LEGACY_FUNC(string_new_with_utf8_chars, GDExtensionInterfaceStringNewWithUtf8Chars);
|
|
SETUP_LEGACY_FUNC(string_new_with_utf16_chars, GDExtensionInterfaceStringNewWithUtf16Chars);
|
|
SETUP_LEGACY_FUNC(string_new_with_utf32_chars, GDExtensionInterfaceStringNewWithUtf32Chars);
|
|
SETUP_LEGACY_FUNC(string_new_with_wide_chars, GDExtensionInterfaceStringNewWithWideChars);
|
|
SETUP_LEGACY_FUNC(string_new_with_latin1_chars_and_len, GDExtensionInterfaceStringNewWithLatin1CharsAndLen);
|
|
SETUP_LEGACY_FUNC(string_new_with_utf8_chars_and_len, GDExtensionInterfaceStringNewWithUtf8CharsAndLen);
|
|
SETUP_LEGACY_FUNC(string_new_with_utf16_chars_and_len, GDExtensionInterfaceStringNewWithUtf16CharsAndLen);
|
|
SETUP_LEGACY_FUNC(string_new_with_utf32_chars_and_len, GDExtensionInterfaceStringNewWithUtf32CharsAndLen);
|
|
SETUP_LEGACY_FUNC(string_new_with_wide_chars_and_len, GDExtensionInterfaceStringNewWithWideCharsAndLen);
|
|
SETUP_LEGACY_FUNC(string_to_latin1_chars, GDExtensionInterfaceStringToLatin1Chars);
|
|
SETUP_LEGACY_FUNC(string_to_utf8_chars, GDExtensionInterfaceStringToUtf8Chars);
|
|
SETUP_LEGACY_FUNC(string_to_utf16_chars, GDExtensionInterfaceStringToUtf16Chars);
|
|
SETUP_LEGACY_FUNC(string_to_utf32_chars, GDExtensionInterfaceStringToUtf32Chars);
|
|
SETUP_LEGACY_FUNC(string_to_wide_chars, GDExtensionInterfaceStringToWideChars);
|
|
SETUP_LEGACY_FUNC(string_operator_index, GDExtensionInterfaceStringOperatorIndex);
|
|
SETUP_LEGACY_FUNC(string_operator_index_const, GDExtensionInterfaceStringOperatorIndexConst);
|
|
SETUP_LEGACY_FUNC(string_operator_plus_eq_string, GDExtensionInterfaceStringOperatorPlusEqString);
|
|
SETUP_LEGACY_FUNC(string_operator_plus_eq_char, GDExtensionInterfaceStringOperatorPlusEqChar);
|
|
SETUP_LEGACY_FUNC(string_operator_plus_eq_cstr, GDExtensionInterfaceStringOperatorPlusEqCstr);
|
|
SETUP_LEGACY_FUNC(string_operator_plus_eq_wcstr, GDExtensionInterfaceStringOperatorPlusEqWcstr);
|
|
SETUP_LEGACY_FUNC(string_operator_plus_eq_c32str, GDExtensionInterfaceStringOperatorPlusEqC32str);
|
|
SETUP_LEGACY_FUNC(xml_parser_open_buffer, GDExtensionInterfaceXmlParserOpenBuffer);
|
|
SETUP_LEGACY_FUNC(file_access_store_buffer, GDExtensionInterfaceFileAccessStoreBuffer);
|
|
SETUP_LEGACY_FUNC(file_access_get_buffer, GDExtensionInterfaceFileAccessGetBuffer);
|
|
SETUP_LEGACY_FUNC(worker_thread_pool_add_native_group_task, GDExtensionInterfaceWorkerThreadPoolAddNativeGroupTask);
|
|
SETUP_LEGACY_FUNC(worker_thread_pool_add_native_task, GDExtensionInterfaceWorkerThreadPoolAddNativeTask);
|
|
SETUP_LEGACY_FUNC(packed_byte_array_operator_index, GDExtensionInterfacePackedByteArrayOperatorIndex);
|
|
SETUP_LEGACY_FUNC(packed_byte_array_operator_index_const, GDExtensionInterfacePackedByteArrayOperatorIndexConst);
|
|
SETUP_LEGACY_FUNC(packed_color_array_operator_index, GDExtensionInterfacePackedColorArrayOperatorIndex);
|
|
SETUP_LEGACY_FUNC(packed_color_array_operator_index_const, GDExtensionInterfacePackedColorArrayOperatorIndexConst);
|
|
SETUP_LEGACY_FUNC(packed_float32_array_operator_index, GDExtensionInterfacePackedFloat32ArrayOperatorIndex);
|
|
SETUP_LEGACY_FUNC(packed_float32_array_operator_index_const, GDExtensionInterfacePackedFloat32ArrayOperatorIndexConst);
|
|
SETUP_LEGACY_FUNC(packed_float64_array_operator_index, GDExtensionInterfacePackedFloat64ArrayOperatorIndex);
|
|
SETUP_LEGACY_FUNC(packed_float64_array_operator_index_const, GDExtensionInterfacePackedFloat64ArrayOperatorIndexConst);
|
|
SETUP_LEGACY_FUNC(packed_int32_array_operator_index, GDExtensionInterfacePackedInt32ArrayOperatorIndex);
|
|
SETUP_LEGACY_FUNC(packed_int32_array_operator_index_const, GDExtensionInterfacePackedInt32ArrayOperatorIndexConst);
|
|
SETUP_LEGACY_FUNC(packed_int64_array_operator_index, GDExtensionInterfacePackedInt64ArrayOperatorIndex);
|
|
SETUP_LEGACY_FUNC(packed_int64_array_operator_index_const, GDExtensionInterfacePackedInt64ArrayOperatorIndexConst);
|
|
SETUP_LEGACY_FUNC(packed_string_array_operator_index, GDExtensionInterfacePackedStringArrayOperatorIndex);
|
|
SETUP_LEGACY_FUNC(packed_string_array_operator_index_const, GDExtensionInterfacePackedStringArrayOperatorIndexConst);
|
|
SETUP_LEGACY_FUNC(packed_vector2_array_operator_index, GDExtensionInterfacePackedVector2ArrayOperatorIndex);
|
|
SETUP_LEGACY_FUNC(packed_vector2_array_operator_index_const, GDExtensionInterfacePackedVector2ArrayOperatorIndexConst);
|
|
SETUP_LEGACY_FUNC(packed_vector3_array_operator_index, GDExtensionInterfacePackedVector3ArrayOperatorIndex);
|
|
SETUP_LEGACY_FUNC(packed_vector3_array_operator_index_const, GDExtensionInterfacePackedVector3ArrayOperatorIndexConst);
|
|
SETUP_LEGACY_FUNC(array_operator_index, GDExtensionInterfaceArrayOperatorIndex);
|
|
SETUP_LEGACY_FUNC(array_operator_index_const, GDExtensionInterfaceArrayOperatorIndexConst);
|
|
SETUP_LEGACY_FUNC(array_ref, GDExtensionInterfaceArrayRef);
|
|
SETUP_LEGACY_FUNC(array_set_typed, GDExtensionInterfaceArraySetTyped);
|
|
SETUP_LEGACY_FUNC(dictionary_operator_index, GDExtensionInterfaceDictionaryOperatorIndex);
|
|
SETUP_LEGACY_FUNC(dictionary_operator_index_const, GDExtensionInterfaceDictionaryOperatorIndexConst);
|
|
SETUP_LEGACY_FUNC(object_method_bind_call, GDExtensionInterfaceObjectMethodBindCall);
|
|
SETUP_LEGACY_FUNC(object_method_bind_ptrcall, GDExtensionInterfaceObjectMethodBindPtrcall);
|
|
SETUP_LEGACY_FUNC(object_destroy, GDExtensionInterfaceObjectDestroy);
|
|
SETUP_LEGACY_FUNC(global_get_singleton, GDExtensionInterfaceGlobalGetSingleton);
|
|
SETUP_LEGACY_FUNC(object_get_instance_binding, GDExtensionInterfaceObjectGetInstanceBinding);
|
|
SETUP_LEGACY_FUNC(object_set_instance_binding, GDExtensionInterfaceObjectSetInstanceBinding);
|
|
SETUP_LEGACY_FUNC(object_set_instance, GDExtensionInterfaceObjectSetInstance);
|
|
SETUP_LEGACY_FUNC(object_cast_to, GDExtensionInterfaceObjectCastTo);
|
|
SETUP_LEGACY_FUNC(object_get_instance_from_id, GDExtensionInterfaceObjectGetInstanceFromId);
|
|
SETUP_LEGACY_FUNC(object_get_instance_id, GDExtensionInterfaceObjectGetInstanceId);
|
|
SETUP_LEGACY_FUNC(ref_get_object, GDExtensionInterfaceRefGetObject);
|
|
SETUP_LEGACY_FUNC(ref_set_object, GDExtensionInterfaceRefSetObject);
|
|
SETUP_LEGACY_FUNC(script_instance_create, GDExtensionInterfaceScriptInstanceCreate);
|
|
SETUP_LEGACY_FUNC(classdb_construct_object, GDExtensionInterfaceClassdbConstructObject);
|
|
SETUP_LEGACY_FUNC(classdb_get_method_bind, GDExtensionInterfaceClassdbGetMethodBind);
|
|
SETUP_LEGACY_FUNC(classdb_get_class_tag, GDExtensionInterfaceClassdbGetClassTag);
|
|
SETUP_LEGACY_FUNC(classdb_register_extension_class, GDExtensionInterfaceClassdbRegisterExtensionClass);
|
|
SETUP_LEGACY_FUNC(classdb_register_extension_class_method, GDExtensionInterfaceClassdbRegisterExtensionClassMethod);
|
|
SETUP_LEGACY_FUNC(classdb_register_extension_class_integer_constant, GDExtensionInterfaceClassdbRegisterExtensionClassIntegerConstant);
|
|
SETUP_LEGACY_FUNC(classdb_register_extension_class_property, GDExtensionInterfaceClassdbRegisterExtensionClassProperty);
|
|
SETUP_LEGACY_FUNC(classdb_register_extension_class_property_group, GDExtensionInterfaceClassdbRegisterExtensionClassPropertyGroup);
|
|
SETUP_LEGACY_FUNC(classdb_register_extension_class_property_subgroup, GDExtensionInterfaceClassdbRegisterExtensionClassPropertySubgroup);
|
|
SETUP_LEGACY_FUNC(classdb_register_extension_class_signal, GDExtensionInterfaceClassdbRegisterExtensionClassSignal);
|
|
SETUP_LEGACY_FUNC(classdb_unregister_extension_class, GDExtensionInterfaceClassdbUnregisterExtensionClass);
|
|
SETUP_LEGACY_FUNC(get_library_path, GDExtensionInterfaceGetLibraryPath);
|
|
|
|
return legacy_gdextension_interface;
|
|
}
|
|
|
|
#undef SETUP_LEGACY_FUNC
|