#include "equipment_data.h" #include "item_instance.h" #include "item_template.h" #include "../../singletons/ess.h" Ref EquipmentData::get_slot(int index) { ERR_FAIL_INDEX_V(index, _entries.size(), Ref()); return _entries[index]; } void EquipmentData::set_slot(int index, Ref entry) { ERR_FAIL_INDEX(index, _entries.size()); _entries.write[index] = entry; } Ref EquipmentData::get_item(int index) { ERR_FAIL_INDEX_V(index, _entries.size(), Ref()); Ref ede = _entries[index]; if (!ede.is_valid()) return Ref(); return ede->create_item_instance(); } EquipmentData::EquipmentData() { if (ESS::get_singleton()) { _entries.resize(ESS::get_singleton()->equip_slot_get_count()); } } EquipmentData::~EquipmentData() { _entries.clear(); } bool EquipmentData::_set(const StringName &p_name, const Variant &p_value) { ERR_FAIL_COND_V(!ESS::get_singleton(), false); String name = p_name; if (name.get_slicec('/', 0) == "slot") { StringName prop = name.get_slicec('/', 1); if (ESS::get_singleton()->equip_slot_is_property(prop)) { int id = ESS::get_singleton()->equip_slot_get_property_id(prop); if (_entries.size() < id) { return false; } _entries.set(id, p_value); return true; } else { return false; } } else { return false; } return true; } bool EquipmentData::_get(const StringName &p_name, Variant &r_ret) const { ERR_FAIL_COND_V(!ESS::get_singleton(), false); String name = p_name; if (name.get_slicec('/', 0) == "slot") { StringName prop = name.get_slicec('/', 1); if (ESS::get_singleton()->equip_slot_is_property(prop)) { int id = ESS::get_singleton()->equip_slot_get_property_id(prop); if (_entries.size() < id) { return false; } r_ret = _entries[id]; return true; } else { return false; } } else { return false; } return true; } void EquipmentData::_get_property_list(List *p_list) const { ERR_FAIL_COND(!ESS::get_singleton()); for (int i = 0; i < ESS::get_singleton()->equip_slot_get_count(); ++i) { p_list->push_back(PropertyInfo(Variant::OBJECT, "slot/" + ESS::get_singleton()->equip_slot_get_property_name(i), PROPERTY_HINT_RESOURCE_TYPE, "ItemTemplate")); } } void EquipmentData::_bind_methods() { ClassDB::bind_method(D_METHOD("get_slot", "index"), &EquipmentData::get_slot); ClassDB::bind_method(D_METHOD("set_slot", "index", "entry"), &EquipmentData::set_slot); }