#pragma once
#include "core/object/method_bind.h"
#include "core/object/object.h"
class PropertyListHelper {
struct Property {
PropertyInfo info;
Variant default_value;
MethodBind *setter = nullptr;
MethodBind *getter = nullptr;
};
static Vector<PropertyListHelper *> base_helpers;
String prefix;
MethodBind *array_length_getter = nullptr;
MethodBind *property_filter = nullptr;
HashMap<String, Property> property_list;
Object *object = nullptr;
bool allow_oob_assign = false;
const Property *_get_property(const String &p_property, int *r_index, bool p_allow_oob = false) const;
void _call_setter(const MethodBind *p_setter, int p_index, const Variant &p_value) const;
Variant _call_getter(const Property *p_property, int p_index) const;
int _call_array_length_getter() const;
public:
static void clear_base_helpers();
static void register_base_helper(PropertyListHelper *p_helper);
void set_prefix(const String &p_prefix);
template <typename G>
void set_array_length_getter(G p_array_length_getter) {
array_length_getter = create_method_bind(p_array_length_getter);
}
template <typename F>
void set_property_filter(F p_property_filter) {
property_filter = create_method_bind(p_property_filter);
}
void register_property(const PropertyInfo &p_info, const Variant &p_default);
template <typename S, typename G>
void register_property(const PropertyInfo &p_info, const Variant &p_default, S p_setter, G p_getter) {
Property property;
property.info = p_info;
property.default_value = p_default;
property.setter = create_method_bind(p_setter);
property.getter = create_method_bind(p_getter);
property_list[p_info.name] = property;
}
bool is_initialized() const;
void setup_for_instance(const PropertyListHelper &p_base, Object *p_object);
bool is_property_valid(const String &p_property, int *r_index = nullptr) const;
void get_property_list(List<PropertyInfo> *p_list) const;
bool property_get_value(const String &p_property, Variant &r_ret) const;
bool property_set_value(const String &p_property, const Variant &p_value) const;
bool property_can_revert(const String &p_property) const;
bool property_get_revert(const String &p_property, Variant &r_value) const;
void enable_out_of_bounds_assign() { allow_oob_assign = true; }
void clear();
};