forked from MagicBane/Server
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
229 lines
10 KiB
229 lines
10 KiB
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . |
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· |
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ |
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ |
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ |
|
// Magicbane Emulator Project © 2013 - 2022 |
|
// www.magicbane.com |
|
|
|
package engine.objects; |
|
|
|
import engine.Enum; |
|
import engine.math.Vector3fImmutable; |
|
import org.json.simple.JSONArray; |
|
import org.json.simple.JSONObject; |
|
import org.pmw.tinylog.Logger; |
|
|
|
import java.util.EnumSet; |
|
import java.util.HashMap; |
|
|
|
public class ItemTemplate { |
|
|
|
// Global template lookup |
|
public static HashMap<Integer, ItemTemplate> itemTemplates = new HashMap<>(); |
|
|
|
// Template Properties |
|
public String obj_name; |
|
public Vector3fImmutable obj_scale; |
|
public int obj_render_object; |
|
public int obj_icon; |
|
public float combat_health_current; |
|
public float combat_health_full; |
|
public HashMap<String, Float> combat_attack_resist = new HashMap<>(); |
|
public Enum.ItemType item_type; |
|
public int item_eq_slots_value; |
|
public boolean item_eq_slots_type; |
|
public EnumSet<Enum.ItemEquipSlotType> item_eq_slots_or = EnumSet.noneOf(Enum.ItemEquipSlotType.class); |
|
public EnumSet<Enum.ItemEquipSlotType> item_eq_slots_and = EnumSet.noneOf(Enum.ItemEquipSlotType.class); |
|
public int item_value; |
|
public int item_wt; |
|
public float item_passive_defense_mod; |
|
public String item_base_name; |
|
public String item_dsc; |
|
public int item_render_object_female; |
|
public float item_health_full; |
|
public int item_parry_anim_id; |
|
public EnumSet<Enum.CharacterSkills> item_skill_used = EnumSet.noneOf(Enum.CharacterSkills.class); |
|
public EnumSet<Enum.CharacterSkills> item_skill_mastery_used = EnumSet.noneOf(Enum.CharacterSkills.class); |
|
public float item_bulk_factor; |
|
public float item_defense_rating; |
|
public EnumSet<Enum.ItemFlags> item_flags = EnumSet.noneOf(Enum.ItemFlags.class); |
|
public EnumSet<Enum.ItemUseFlags> item_use_flags = EnumSet.noneOf(Enum.ItemUseFlags.class); |
|
public int item_initial_charges; |
|
public HashMap<Enum.CharacterSkills, Integer> item_skill_required = new HashMap<>(); |
|
public EnumSet<Enum.MonsterType> item_race_req = EnumSet.noneOf(Enum.MonsterType.class); |
|
public EnumSet<Enum.MonsterType> item_race_res = EnumSet.noneOf(Enum.MonsterType.class); |
|
|
|
public EnumSet<Enum.ClassType> item_class_req = EnumSet.noneOf(Enum.ClassType.class); |
|
public EnumSet<Enum.ClassType> item_class_res = EnumSet.noneOf(Enum.ClassType.class); |
|
public EnumSet<Enum.DisciplineType> item_disc_req = EnumSet.noneOf(Enum.DisciplineType.class); |
|
public EnumSet<Enum.DisciplineType> item_disc_res = EnumSet.noneOf(Enum.DisciplineType.class); |
|
|
|
public ItemTemplate(JSONObject jsonObject) { |
|
|
|
try { |
|
// Reading a String |
|
|
|
obj_name = (String) jsonObject.get("obj_name"); |
|
|
|
// Reading floats from an array |
|
|
|
JSONArray scaleData = (JSONArray) jsonObject.get("obj_scale"); |
|
obj_scale = new Vector3fImmutable(((Double) scaleData.get(0)).floatValue(), ((Double) scaleData.get(1)).floatValue(), |
|
((Double) scaleData.get(2)).floatValue()); |
|
|
|
// Reading an integer value |
|
|
|
obj_render_object = ((Long) jsonObject.get("obj_render_object")).intValue(); |
|
obj_icon = ((Long) jsonObject.get("obj_icon")).intValue(); |
|
|
|
// Reading float values |
|
|
|
combat_health_current = ((Double) jsonObject.get("combat_health_current")).floatValue(); |
|
combat_health_full = ((Double) jsonObject.get("combat_health_full")).floatValue(); |
|
|
|
// Reading a hashmap of floats |
|
|
|
JSONObject resist_json = (JSONObject) jsonObject.get("combat_attack_resist"); |
|
|
|
for (Object key : resist_json.keySet()) { |
|
float resist = ((Double) resist_json.get(key)).floatValue(); |
|
combat_attack_resist.put((String) key, resist); |
|
} |
|
|
|
// Parsing an enum |
|
|
|
item_type = Enum.ItemType.valueOf((String) jsonObject.get("item_type")); |
|
item_eq_slots_value = ((Long) jsonObject.get("item_eq_slots_value")).intValue(); |
|
item_eq_slots_type = (boolean) jsonObject.get("item_eq_slots_type"); |
|
|
|
// Parsing an enumset |
|
|
|
JSONArray eq_slots_or = (JSONArray) jsonObject.get("item_eq_slots_or"); |
|
|
|
if (eq_slots_or.isEmpty() == false) |
|
for (Object o : eq_slots_or) |
|
item_eq_slots_or.add(Enum.ItemEquipSlotType.valueOf((String) o)); |
|
|
|
JSONArray eq_slots_and = (JSONArray) jsonObject.get("item_eq_slots_and"); |
|
|
|
if (eq_slots_and.isEmpty() == false) |
|
for (Object o : eq_slots_and) |
|
item_eq_slots_and.add(Enum.ItemEquipSlotType.valueOf((String) o)); |
|
|
|
item_value = ((Long) jsonObject.get("item_value")).intValue(); |
|
item_wt = ((Long) jsonObject.get("item_wt")).intValue(); |
|
item_passive_defense_mod = ((Double) jsonObject.get("item_passive_defense_mod")).floatValue(); |
|
item_base_name = (String) jsonObject.get("item_base_name"); |
|
item_dsc = (String) jsonObject.get("item_dsc"); |
|
item_render_object_female = ((Long) jsonObject.get("item_render_object_female")).intValue(); |
|
item_health_full = ((Double) jsonObject.get("item_health_full")).floatValue(); |
|
|
|
Object skills_used = jsonObject.get("item_skill_used"); |
|
|
|
if (skills_used instanceof String) { |
|
String skilString = (String) skills_used; |
|
skilString = skilString.replaceAll("\\s", ""); |
|
skilString = skilString.replaceAll(",", ""); |
|
item_skill_used.add(Enum.CharacterSkills.valueOf(skilString)); |
|
} |
|
|
|
Object mastery_used = jsonObject.get("item_skill_mastery_used"); |
|
|
|
if (mastery_used instanceof String) { |
|
String masteryString = (String) mastery_used; |
|
masteryString = masteryString.replaceAll("\\s", ""); |
|
masteryString = masteryString.replaceAll(",", ""); |
|
item_skill_mastery_used.add(Enum.CharacterSkills.valueOf(masteryString)); |
|
} |
|
|
|
item_parry_anim_id = ((Long) jsonObject.get("item_parry_anim_id")).intValue(); |
|
|
|
// Item Type == ARMOR? |
|
|
|
if (jsonObject.containsValue("item_bulk_factor")) |
|
item_bulk_factor = ((Double) jsonObject.get("item_bulk_factor")).floatValue(); |
|
|
|
if (jsonObject.containsValue("item_defense_rating")) |
|
item_defense_rating = ((Double) jsonObject.get("item_defense_rating")).floatValue(); |
|
|
|
JSONArray itemflags = (JSONArray) jsonObject.get("item_flags"); |
|
|
|
if (itemflags.isEmpty() == false) |
|
for (Object o : itemflags) { |
|
String flag = (String) o; |
|
if (flag.equals("None") == false) |
|
item_flags.add(Enum.ItemFlags.valueOf((String) o)); |
|
} |
|
|
|
JSONArray itemUseflags = (JSONArray) jsonObject.get("item_use_flags"); |
|
|
|
if (itemUseflags.isEmpty() == false) |
|
for (Object o : itemUseflags) |
|
item_use_flags.add(Enum.ItemUseFlags.valueOf((String) o)); |
|
|
|
item_initial_charges = ((Long) jsonObject.get("item_initial_charges")).intValue(); |
|
|
|
JSONArray skill_required = (JSONArray) jsonObject.get("item_skill_req"); |
|
|
|
for (Object o : skill_required) { |
|
JSONObject skill_req = (JSONObject) o; |
|
String skill_type = (String) skill_req.get("skill_type"); |
|
skill_type = skill_type.replaceAll("\\s", ""); |
|
skill_type = skill_type.replaceAll(",", ""); |
|
int skill_level = ((Long) skill_req.get("skill_level")).intValue(); |
|
item_skill_required.put(Enum.CharacterSkills.valueOf(skill_type), skill_level); |
|
} |
|
|
|
JSONObject race_required = (JSONObject) jsonObject.get("item_race_req"); |
|
boolean restrict = ((Boolean) race_required.get("restrict")); |
|
JSONArray races = (JSONArray) race_required.get("races"); |
|
|
|
for (Object o : races) { |
|
String race = (String) o; |
|
race = race.replaceAll("\\s", ""); |
|
race = race.replaceAll(",", ""); |
|
|
|
if (restrict) |
|
item_race_res.add(Enum.MonsterType.valueOf(race)); |
|
else |
|
item_race_req.add(Enum.MonsterType.valueOf(race)); |
|
} |
|
|
|
JSONObject class_required = (JSONObject) jsonObject.get("item_class_req"); |
|
restrict = ((Boolean) class_required.get("restrict")); |
|
JSONArray classes = (JSONArray) class_required.get("classes"); |
|
|
|
for (Object o : classes) { |
|
String classEntry = (String) o; |
|
classEntry = classEntry.replaceAll("\\s", ""); |
|
classEntry = classEntry.replaceAll(",", ""); |
|
|
|
if (restrict) |
|
item_class_res.add(Enum.ClassType.valueOf(classEntry)); |
|
else |
|
item_class_req.add(Enum.ClassType.valueOf(classEntry)); |
|
} |
|
|
|
JSONObject disc_required = (JSONObject) jsonObject.get("item_disc_req"); |
|
restrict = ((Boolean) disc_required.get("restrict")); |
|
JSONArray discs = (JSONArray) disc_required.get("discs"); |
|
|
|
for (Object o : discs) { |
|
String disc = (String) o; |
|
disc = disc.replaceAll("\\s", ""); |
|
disc = disc.replaceAll(",", ""); |
|
|
|
if (restrict) |
|
item_disc_res.add(Enum.DisciplineType.valueOf(disc)); |
|
else |
|
item_disc_req.add(Enum.DisciplineType.valueOf(disc)); |
|
} |
|
|
|
} catch (Exception e) { |
|
Logger.error(e); |
|
} |
|
|
|
} |
|
|
|
}
|
|
|