|
| 1 | +package me.adrigamer2950.adriapi.api.serializer.boostedyaml; |
| 2 | + |
| 3 | +import dev.dejvokep.boostedyaml.serialization.standard.TypeAdapter; |
| 4 | +import net.kyori.adventure.text.Component; |
| 5 | +import net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializer; |
| 6 | +import org.bukkit.Material; |
| 7 | +import org.bukkit.NamespacedKey; |
| 8 | +import org.bukkit.attribute.Attribute; |
| 9 | +import org.bukkit.attribute.AttributeModifier; |
| 10 | +import org.bukkit.enchantments.Enchantment; |
| 11 | +import org.bukkit.inventory.ItemFlag; |
| 12 | +import org.bukkit.inventory.ItemStack; |
| 13 | +import org.bukkit.inventory.meta.ItemMeta; |
| 14 | +import org.jetbrains.annotations.NotNull; |
| 15 | + |
| 16 | +import java.util.*; |
| 17 | + |
| 18 | +@SuppressWarnings("unused") |
| 19 | +public class ItemStackSerializer implements TypeAdapter<ItemStack> { |
| 20 | + |
| 21 | + @SuppressWarnings("DataFlowIssue") |
| 22 | + @Override |
| 23 | + public @NotNull Map<Object, Object> serialize(@NotNull ItemStack itemStack) { |
| 24 | + Map<Object, Object> map = new LinkedHashMap<>(); |
| 25 | + |
| 26 | + map.put("material", itemStack.getType().name()); |
| 27 | + map.put("count", itemStack.getAmount()); |
| 28 | + |
| 29 | + if (itemStack.getItemMeta().hasDisplayName()) |
| 30 | + map.put("name", |
| 31 | + LegacyComponentSerializer.legacyAmpersand().serialize(itemStack.getItemMeta().displayName()) |
| 32 | + ); |
| 33 | + |
| 34 | + if (itemStack.getItemMeta().hasLore()) |
| 35 | + map.put("lore", itemStack.getItemMeta().lore() |
| 36 | + .stream().map(LegacyComponentSerializer.legacyAmpersand()::serialize)); |
| 37 | + |
| 38 | + if (itemStack.getItemMeta().hasCustomModelData()) |
| 39 | + map.put("custom_model_data", itemStack.getItemMeta().getCustomModelData()); |
| 40 | + |
| 41 | + if (!itemStack.getEnchantments().isEmpty()) { |
| 42 | + Map<Object, Object> enchantments = new LinkedHashMap<>(); |
| 43 | + |
| 44 | + for (Enchantment ench : itemStack.getEnchantments().keySet()) { |
| 45 | + int level = itemStack.getEnchantments().get(ench); |
| 46 | + |
| 47 | + enchantments.put(ench.getKey().getKey(), level); |
| 48 | + } |
| 49 | + |
| 50 | + map.put("enchantments", enchantments); |
| 51 | + } |
| 52 | + |
| 53 | + if (!itemStack.getItemFlags().isEmpty()) { |
| 54 | + map.put("flags", itemStack.getItemFlags() |
| 55 | + .stream().map(ItemFlag::name) |
| 56 | + .toList() |
| 57 | + ); |
| 58 | + } |
| 59 | + |
| 60 | + if (itemStack.getItemMeta().hasAttributeModifiers()) { |
| 61 | + List<Map<Object, Object>> attributes = new LinkedList<>(); |
| 62 | + |
| 63 | + for (Attribute key : itemStack.getItemMeta().getAttributeModifiers().keySet()) { |
| 64 | + Map<Object, Object> attribute = new LinkedHashMap<>(); |
| 65 | + |
| 66 | + Collection<AttributeModifier> modifiers = itemStack.getItemMeta().getAttributeModifiers().get(key); |
| 67 | + |
| 68 | + for (AttributeModifier modifier : modifiers) { |
| 69 | + Map<Object, Object> modifierMap = new LinkedHashMap<>(); |
| 70 | + |
| 71 | + modifierMap.put("name", modifier.getName()); |
| 72 | + modifierMap.put("operation", modifier.getOperation().name()); |
| 73 | + modifierMap.put("amount", modifier.getAmount()); |
| 74 | + |
| 75 | + attribute.put(key.name(), modifierMap); |
| 76 | + } |
| 77 | + |
| 78 | + attributes.add(attribute); |
| 79 | + } |
| 80 | + |
| 81 | + map.put("attributes", attributes); |
| 82 | + } |
| 83 | + |
| 84 | + if (itemStack.getItemMeta().isUnbreakable()) |
| 85 | + map.put("unbreakable", true); |
| 86 | + |
| 87 | + return map; |
| 88 | + } |
| 89 | + |
| 90 | + @SuppressWarnings("unchecked") |
| 91 | + @Override |
| 92 | + public @NotNull ItemStack deserialize(@NotNull Map<Object, Object> map) { |
| 93 | + Material mat = Material.getMaterial((String) map.get("material")); |
| 94 | + |
| 95 | + if (mat == null) |
| 96 | + throw new IllegalArgumentException("Material does not exist!"); |
| 97 | + |
| 98 | + if (!map.containsKey("count")) |
| 99 | + throw new IllegalArgumentException("Count variable isn't set!"); |
| 100 | + |
| 101 | + int count = (int) map.get("count"); |
| 102 | + |
| 103 | + ItemStack stack = new ItemStack(mat, count); |
| 104 | + ItemMeta meta = stack.getItemMeta(); |
| 105 | + |
| 106 | + if (map.containsKey("name")) |
| 107 | + meta.displayName( |
| 108 | + LegacyComponentSerializer.legacyAmpersand().deserialize((String) map.get("name")) |
| 109 | + ); |
| 110 | + |
| 111 | + if (map.containsKey("lore")) |
| 112 | + meta.lore( |
| 113 | + ((List<String>) map.get("lore")).stream() |
| 114 | + .map(s -> (Component) LegacyComponentSerializer.legacyAmpersand().deserialize(s)) |
| 115 | + .toList() |
| 116 | + ); |
| 117 | + |
| 118 | + if (map.containsKey("custom_model_data")) |
| 119 | + meta.setCustomModelData(Integer.parseInt(map.get("custom_model_data").toString())); |
| 120 | + |
| 121 | + if (map.containsKey("enchantments")) { |
| 122 | + Map<String, Integer> enchantments = (Map<String, Integer>) map.get("enchantments"); |
| 123 | + |
| 124 | + for (String key : enchantments.keySet()) { |
| 125 | + int level = enchantments.get(key); |
| 126 | + |
| 127 | + meta.addEnchant(Objects.requireNonNull(Enchantment.getByKey(NamespacedKey.minecraft(key))), level, true); |
| 128 | + } |
| 129 | + } |
| 130 | + |
| 131 | + if (map.containsKey("flags")) |
| 132 | + for (String key : (List<String>) map.get("flags")) |
| 133 | + meta.addItemFlags(ItemFlag.valueOf(key)); |
| 134 | + |
| 135 | + if (map.containsKey("attributes")) { |
| 136 | + List<Map<String, Map<String, Object>>> attributes = (List<Map<String, Map<String, Object>>>) map.get("attributes"); |
| 137 | + |
| 138 | + for (Map<String, Map<String, Object>> attribute : attributes) { |
| 139 | + for (String key : attribute.keySet()) { |
| 140 | + Map<String, Object> modifierMap = attribute.get(key); |
| 141 | + |
| 142 | + String name = (String) modifierMap.get("name"); |
| 143 | + AttributeModifier.Operation operation = AttributeModifier.Operation.valueOf((String) modifierMap.get("operation")); |
| 144 | + double amount = (Double) modifierMap.get("amount"); |
| 145 | + |
| 146 | + AttributeModifier modifier = new AttributeModifier(name, amount, operation); |
| 147 | + Attribute attr = Attribute.valueOf(key); |
| 148 | + |
| 149 | + meta.addAttributeModifier(attr, modifier); |
| 150 | + } |
| 151 | + } |
| 152 | + } |
| 153 | + |
| 154 | + if (map.containsKey("unbreakable")) { |
| 155 | + meta.setUnbreakable((Boolean) map.get("unbreakable")); |
| 156 | + } |
| 157 | + |
| 158 | + stack.setItemMeta(meta); |
| 159 | + |
| 160 | + return stack; |
| 161 | + } |
| 162 | +} |
0 commit comments