Merge pull request #55223 from bruvzg/gde_dict_index
This commit is contained in:
commit
1e71cab797
2 changed files with 22 additions and 0 deletions
|
@ -783,6 +783,18 @@ static GDNativeVariantPtr gdnative_array_operator_index_const(const GDNativeType
|
||||||
return (GDNativeVariantPtr)&self->operator[](p_index);
|
return (GDNativeVariantPtr)&self->operator[](p_index);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Dictionary functions */
|
||||||
|
|
||||||
|
static GDNativeVariantPtr gdnative_dictionary_operator_index(GDNativeTypePtr p_self, const GDNativeVariantPtr p_key) {
|
||||||
|
Dictionary *self = (Dictionary *)p_self;
|
||||||
|
return (GDNativeVariantPtr)&self->operator[](*(const Variant *)p_key);
|
||||||
|
}
|
||||||
|
|
||||||
|
static GDNativeVariantPtr gdnative_dictionary_operator_index_const(const GDNativeTypePtr p_self, const GDNativeVariantPtr p_key) {
|
||||||
|
const Dictionary *self = (const Dictionary *)p_self;
|
||||||
|
return (GDNativeVariantPtr)&self->operator[](*(const Variant *)p_key);
|
||||||
|
}
|
||||||
|
|
||||||
/* OBJECT API */
|
/* OBJECT API */
|
||||||
|
|
||||||
static void gdnative_object_method_bind_call(const GDNativeMethodBindPtr p_method_bind, GDNativeObjectPtr p_instance, const GDNativeVariantPtr *p_args, GDNativeInt p_arg_count, GDNativeVariantPtr r_return, GDNativeCallError *r_error) {
|
static void gdnative_object_method_bind_call(const GDNativeMethodBindPtr p_method_bind, GDNativeObjectPtr p_instance, const GDNativeVariantPtr *p_args, GDNativeInt p_arg_count, GDNativeVariantPtr r_return, GDNativeCallError *r_error) {
|
||||||
|
@ -1001,6 +1013,11 @@ void gdnative_setup_interface(GDNativeInterface *p_interface) {
|
||||||
gdni.array_operator_index = gdnative_array_operator_index;
|
gdni.array_operator_index = gdnative_array_operator_index;
|
||||||
gdni.array_operator_index_const = gdnative_array_operator_index_const;
|
gdni.array_operator_index_const = gdnative_array_operator_index_const;
|
||||||
|
|
||||||
|
/* Dictionary functions */
|
||||||
|
|
||||||
|
gdni.dictionary_operator_index = gdnative_dictionary_operator_index;
|
||||||
|
gdni.dictionary_operator_index_const = gdnative_dictionary_operator_index_const;
|
||||||
|
|
||||||
/* OBJECT */
|
/* OBJECT */
|
||||||
|
|
||||||
gdni.object_method_bind_call = gdnative_object_method_bind_call;
|
gdni.object_method_bind_call = gdnative_object_method_bind_call;
|
||||||
|
|
|
@ -417,6 +417,11 @@ typedef struct {
|
||||||
GDNativeVariantPtr (*array_operator_index)(GDNativeTypePtr p_self, GDNativeInt p_index); // p_self should be an Array ptr
|
GDNativeVariantPtr (*array_operator_index)(GDNativeTypePtr p_self, GDNativeInt p_index); // p_self should be an Array ptr
|
||||||
GDNativeVariantPtr (*array_operator_index_const)(const GDNativeTypePtr p_self, GDNativeInt p_index); // p_self should be an Array ptr
|
GDNativeVariantPtr (*array_operator_index_const)(const GDNativeTypePtr p_self, GDNativeInt p_index); // p_self should be an Array ptr
|
||||||
|
|
||||||
|
/* Dictionary functions */
|
||||||
|
|
||||||
|
GDNativeVariantPtr (*dictionary_operator_index)(GDNativeTypePtr p_self, const GDNativeVariantPtr p_key); // p_self should be an Dictionary ptr
|
||||||
|
GDNativeVariantPtr (*dictionary_operator_index_const)(const GDNativeTypePtr p_self, const GDNativeVariantPtr p_key); // p_self should be an Dictionary ptr
|
||||||
|
|
||||||
/* OBJECT */
|
/* OBJECT */
|
||||||
|
|
||||||
void (*object_method_bind_call)(const GDNativeMethodBindPtr p_method_bind, GDNativeObjectPtr p_instance, const GDNativeVariantPtr *p_args, GDNativeInt p_arg_count, GDNativeVariantPtr r_ret, GDNativeCallError *r_error);
|
void (*object_method_bind_call)(const GDNativeMethodBindPtr p_method_bind, GDNativeObjectPtr p_instance, const GDNativeVariantPtr *p_args, GDNativeInt p_arg_count, GDNativeVariantPtr r_ret, GDNativeCallError *r_error);
|
||||||
|
|
Loading…
Reference in a new issue