All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bukkit.craftbukkit.inventory.CraftMetaItem Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package org.bukkit.craftbukkit.inventory;

import com.google.common.base.Strings;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Sets;
import net.minecraft.server.*;
import org.apache.commons.codec.binary.Base64;
import org.apache.commons.lang.Validate;
import org.bukkit.Material;
import org.bukkit.configuration.serialization.ConfigurationSerializable;
import org.bukkit.configuration.serialization.DelegateDeserialization;
import org.bukkit.configuration.serialization.SerializableAs;
import org.bukkit.craftbukkit.Overridden;
import org.bukkit.craftbukkit.inventory.CraftMetaItem.ItemMetaKey.Specific;
import org.bukkit.enchantments.Enchantment;
import org.bukkit.inventory.ItemFlag;
import org.bukkit.inventory.meta.ItemMeta;
import org.bukkit.inventory.meta.Repairable;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.util.*;
import java.util.logging.Level;
import java.util.logging.Logger;

import static org.spigotmc.ValidateUtils.limit;
// Spigot end

/**
 * Children must include the following:
 *
 * 
  • Constructor(CraftMetaItem meta) *
  • Constructor(NBTTagCompound tag) *
  • Constructor(Map map) *

    *
  • void applyToItem(NBTTagCompound tag) *
  • boolean applicableTo(Material type) *

    *
  • boolean equalsCommon(CraftMetaItem meta) *
  • boolean notUncommon(CraftMetaItem meta) *

    *
  • boolean isEmpty() *
  • boolean is{Type}Empty() *

    *
  • int applyHash() *
  • public Class clone() *

    *
  • Builder serialize(Builder builder) *
  • SerializableMeta.Deserializers deserializer() */ @DelegateDeserialization(CraftMetaItem.SerializableMeta.class) class CraftMetaItem implements ItemMeta, Repairable { static final ItemMetaKey NAME = new ItemMetaKey("Name", "display-name"); @Specific(Specific.To.NBT) static final ItemMetaKey DISPLAY = new ItemMetaKey("display"); static final ItemMetaKey LORE = new ItemMetaKey("Lore", "lore"); static final ItemMetaKey ENCHANTMENTS = new ItemMetaKey("ench", "enchants"); @Specific(Specific.To.NBT) static final ItemMetaKey ENCHANTMENTS_ID = new ItemMetaKey("id"); @Specific(Specific.To.NBT) static final ItemMetaKey ENCHANTMENTS_LVL = new ItemMetaKey("lvl"); static final ItemMetaKey REPAIR = new ItemMetaKey("RepairCost", "repair-cost"); @Specific(Specific.To.NBT) static final ItemMetaKey ATTRIBUTES = new ItemMetaKey("AttributeModifiers"); @Specific(Specific.To.NBT) static final ItemMetaKey ATTRIBUTES_IDENTIFIER = new ItemMetaKey("AttributeName"); @Specific(Specific.To.NBT) static final ItemMetaKey ATTRIBUTES_NAME = new ItemMetaKey("Name"); @Specific(Specific.To.NBT) static final ItemMetaKey ATTRIBUTES_VALUE = new ItemMetaKey("Amount"); @Specific(Specific.To.NBT) static final ItemMetaKey ATTRIBUTES_TYPE = new ItemMetaKey("Operation"); @Specific(Specific.To.NBT) static final ItemMetaKey ATTRIBUTES_UUID_HIGH = new ItemMetaKey("UUIDMost"); @Specific(Specific.To.NBT) static final ItemMetaKey ATTRIBUTES_UUID_LOW = new ItemMetaKey("UUIDLeast"); @Specific(Specific.To.NBT) static final ItemMetaKey HIDEFLAGS = new ItemMetaKey("HideFlags", "ItemFlags"); @Specific(Specific.To.NBT) static final ItemMetaKey UNBREAKABLE = new ItemMetaKey("Unbreakable"); // Spigot private static final Set HANDLED_TAGS = Sets.newHashSet(); private final Map unhandledTags = new HashMap(); // Spigot start private final Spigot spigot = new Spigot() { private boolean unbreakable; @Override public boolean isUnbreakable() { return unbreakable; } @Override public void setUnbreakable(boolean setUnbreakable) { unbreakable = setUnbreakable; } }; private String displayName; private List lore; private Map enchantments; private int repairCost; private int hideFlag; CraftMetaItem(CraftMetaItem meta) { if (meta == null) { return; } this.displayName = meta.displayName; if (meta.hasLore()) { this.lore = new ArrayList(meta.lore); } if (meta.enchantments != null) { // Spigot this.enchantments = new HashMap(meta.enchantments); } this.repairCost = meta.repairCost; this.hideFlag = meta.hideFlag; this.unhandledTags.putAll(meta.unhandledTags); spigot.setUnbreakable(meta.spigot.isUnbreakable()); // Spigot } CraftMetaItem(NBTTagCompound tag) { if (tag.hasKey(DISPLAY.NBT)) { NBTTagCompound display = tag.getCompound(DISPLAY.NBT); if (display.hasKey(NAME.NBT)) { displayName = limit(display.getString(NAME.NBT), 1024); // Spigot } if (display.hasKey(LORE.NBT)) { NBTTagList list = display.getList(LORE.NBT, 8); lore = new ArrayList(list.size()); for (int index = 0; index < list.size(); index++) { String line = limit(list.getString(index), 1024); // Spigot lore.add(line); } } } this.enchantments = buildEnchantments(tag, ENCHANTMENTS); if (tag.hasKey(REPAIR.NBT)) { repairCost = tag.getInt(REPAIR.NBT); } if (tag.hasKey(HIDEFLAGS.NBT)) { hideFlag = tag.getInt(HIDEFLAGS.NBT); } if (tag.get(ATTRIBUTES.NBT) instanceof NBTTagList) { NBTTagList save = null; NBTTagList nbttaglist = tag.getList(ATTRIBUTES.NBT, 10); // Spigot start gnu.trove.map.hash.TObjectDoubleHashMap attributeTracker = new gnu.trove.map.hash.TObjectDoubleHashMap(); gnu.trove.map.hash.TObjectDoubleHashMap attributeTrackerX = new gnu.trove.map.hash.TObjectDoubleHashMap(); Map attributesByName = new HashMap(); attributeTracker.put("generic.maxHealth", 20.0); attributesByName.put("generic.maxHealth", GenericAttributes.maxHealth); attributeTracker.put("generic.followRange", 32.0); attributesByName.put("generic.followRange", GenericAttributes.FOLLOW_RANGE); attributeTracker.put("generic.knockbackResistance", 0.0); attributesByName.put("generic.knockbackResistance", GenericAttributes.c); attributeTracker.put("generic.movementSpeed", 0.7); attributesByName.put("generic.movementSpeed", GenericAttributes.MOVEMENT_SPEED); attributeTracker.put("generic.attackDamage", 1.0); attributesByName.put("generic.attackDamage", GenericAttributes.ATTACK_DAMAGE); NBTTagList oldList = nbttaglist; nbttaglist = new NBTTagList(); List op0 = new ArrayList(); List op1 = new ArrayList(); List op2 = new ArrayList(); for (int i = 0; i < oldList.size(); ++i) { NBTTagCompound nbttagcompound = oldList.get(i); if (nbttagcompound == null) continue; if (!nbttagcompound.hasKeyOfType(ATTRIBUTES_UUID_HIGH.NBT, 99)) { continue; } if (!nbttagcompound.hasKeyOfType(ATTRIBUTES_UUID_LOW.NBT, 99)) { continue; } if (!(nbttagcompound.get(ATTRIBUTES_IDENTIFIER.NBT) instanceof NBTTagString) || !CraftItemFactory.KNOWN_NBT_ATTRIBUTE_NAMES.contains(nbttagcompound.getString(ATTRIBUTES_IDENTIFIER.NBT))) { continue; } if (!(nbttagcompound.get(ATTRIBUTES_NAME.NBT) instanceof NBTTagString) || nbttagcompound.getString(ATTRIBUTES_NAME.NBT).isEmpty()) { continue; } if (!nbttagcompound.hasKeyOfType(ATTRIBUTES_VALUE.NBT, 99)) { continue; } if (!nbttagcompound.hasKeyOfType(ATTRIBUTES_TYPE.NBT, 99) || nbttagcompound.getInt(ATTRIBUTES_TYPE.NBT) < 0 || nbttagcompound.getInt(ATTRIBUTES_TYPE.NBT) > 2) { continue; } switch (nbttagcompound.getInt(ATTRIBUTES_TYPE.NBT)) { case 0: op0.add(nbttagcompound); break; case 1: op1.add(nbttagcompound); break; case 2: op2.add(nbttagcompound); break; } } for (NBTTagCompound nbtTagCompound : op0) { String name = nbtTagCompound.getString(ATTRIBUTES_IDENTIFIER.NBT); if (attributeTracker.containsKey(name)) { double val = attributeTracker.get(name); val += nbtTagCompound.getDouble(ATTRIBUTES_VALUE.NBT); if (val != attributesByName.get(name).a(val)) { continue; } attributeTracker.put(name, val); } nbttaglist.add(nbtTagCompound); } for (String name : attributeTracker.keySet()) { attributeTrackerX.put(name, attributeTracker.get(name)); } for (NBTTagCompound nbtTagCompound : op1) { String name = nbtTagCompound.getString(ATTRIBUTES_IDENTIFIER.NBT); if (attributeTracker.containsKey(name)) { double val = attributeTracker.get(name); double valX = attributeTrackerX.get(name); val += valX * nbtTagCompound.getDouble(ATTRIBUTES_VALUE.NBT); if (val != attributesByName.get(name).a(val)) { continue; } attributeTracker.put(name, val); } nbttaglist.add(nbtTagCompound); } for (NBTTagCompound nbtTagCompound : op2) { String name = nbtTagCompound.getString(ATTRIBUTES_IDENTIFIER.NBT); if (attributeTracker.containsKey(name)) { double val = attributeTracker.get(name); val += val * nbtTagCompound.getDouble(ATTRIBUTES_VALUE.NBT); if (val != attributesByName.get(name).a(val)) { continue; } attributeTracker.put(name, val); } nbttaglist.add(nbtTagCompound); } // Spigot end for (int i = 0; i < nbttaglist.size(); ++i) { if (!(nbttaglist.get(i) instanceof NBTTagCompound)) { continue; } NBTTagCompound nbttagcompound = nbttaglist.get(i); if (!nbttagcompound.hasKeyOfType(ATTRIBUTES_UUID_HIGH.NBT, 99)) { continue; } if (!nbttagcompound.hasKeyOfType(ATTRIBUTES_UUID_LOW.NBT, 99)) { continue; } if (!(nbttagcompound.get(ATTRIBUTES_IDENTIFIER.NBT) instanceof NBTTagString) || !CraftItemFactory.KNOWN_NBT_ATTRIBUTE_NAMES.contains(nbttagcompound.getString(ATTRIBUTES_IDENTIFIER.NBT))) { continue; } if (!(nbttagcompound.get(ATTRIBUTES_NAME.NBT) instanceof NBTTagString) || nbttagcompound.getString(ATTRIBUTES_NAME.NBT).isEmpty()) { continue; } if (!nbttagcompound.hasKeyOfType(ATTRIBUTES_VALUE.NBT, 99)) { continue; } if (!nbttagcompound.hasKeyOfType(ATTRIBUTES_TYPE.NBT, 99) || nbttagcompound.getInt(ATTRIBUTES_TYPE.NBT) < 0 || nbttagcompound.getInt(ATTRIBUTES_TYPE.NBT) > 2) { continue; } if (save == null) { save = new NBTTagList(); } NBTTagCompound entry = new NBTTagCompound(); entry.set(ATTRIBUTES_UUID_HIGH.NBT, nbttagcompound.get(ATTRIBUTES_UUID_HIGH.NBT)); entry.set(ATTRIBUTES_UUID_LOW.NBT, nbttagcompound.get(ATTRIBUTES_UUID_LOW.NBT)); entry.set(ATTRIBUTES_IDENTIFIER.NBT, nbttagcompound.get(ATTRIBUTES_IDENTIFIER.NBT)); entry.set(ATTRIBUTES_NAME.NBT, nbttagcompound.get(ATTRIBUTES_NAME.NBT)); entry.set(ATTRIBUTES_VALUE.NBT, nbttagcompound.get(ATTRIBUTES_VALUE.NBT)); entry.set(ATTRIBUTES_TYPE.NBT, nbttagcompound.get(ATTRIBUTES_TYPE.NBT)); save.add(entry); } unhandledTags.put(ATTRIBUTES.NBT, save); } Set keys = tag.c(); for (String key : keys) { if (!getHandledTags().contains(key)) { unhandledTags.put(key, tag.get(key)); } } // Spigot start if (tag.hasKey(UNBREAKABLE.NBT)) { spigot.setUnbreakable(tag.getBoolean(UNBREAKABLE.NBT)); } // Spigot end } CraftMetaItem(Map map) { setDisplayName(SerializableMeta.getString(map, NAME.BUKKIT, true)); Iterable lore = SerializableMeta.getObject(Iterable.class, map, LORE.BUKKIT, true); if (lore != null) { safelyAdd(lore, this.lore = new ArrayList(), Integer.MAX_VALUE); } enchantments = buildEnchantments(map, ENCHANTMENTS); Integer repairCost = SerializableMeta.getObject(Integer.class, map, REPAIR.BUKKIT, true); if (repairCost != null) { setRepairCost(repairCost); } Set hideFlags = SerializableMeta.getObject(Set.class, map, HIDEFLAGS.BUKKIT, true); if (hideFlags != null) { for (Object hideFlagObject : hideFlags) { String hideFlagString = (String) hideFlagObject; try { ItemFlag hideFlatEnum = ItemFlag.valueOf(hideFlagString); addItemFlags(hideFlatEnum); } catch (IllegalArgumentException ex) { // Ignore when we got a old String which does not map to a Enum value anymore } } } // Spigot start Boolean unbreakable = SerializableMeta.getObject(Boolean.class, map, UNBREAKABLE.BUKKIT, true); if (unbreakable != null) { spigot.setUnbreakable(unbreakable); } // Spigot end String internal = SerializableMeta.getString(map, "internal", true); if (internal != null) { ByteArrayInputStream buf = new ByteArrayInputStream(Base64.decodeBase64(internal)); try { NBTTagCompound tag = NBTCompressedStreamTools.a(buf); deserializeInternal(tag); Set keys = tag.c(); for (String key : keys) { if (!getHandledTags().contains(key)) { unhandledTags.put(key, tag.get(key)); } } } catch (IOException ex) { Logger.getLogger(CraftMetaItem.class.getName()).log(Level.SEVERE, null, ex); } } } static Map buildEnchantments(NBTTagCompound tag, ItemMetaKey key) { if (!tag.hasKey(key.NBT)) { return null; } NBTTagList ench = tag.getList(key.NBT, 10); Map enchantments = new HashMap(ench.size()); for (int i = 0; i < ench.size(); i++) { int id = 0xffff & ench.get(i).getShort(ENCHANTMENTS_ID.NBT); int level = 0xffff & ench.get(i).getShort(ENCHANTMENTS_LVL.NBT); // Spigot start - skip invalid enchantments Enchantment e = Enchantment.getById(id); if (e == null) continue; // Spigot end enchantments.put(e, level); } return enchantments; } static Map buildEnchantments(Map map, ItemMetaKey key) { Map ench = SerializableMeta.getObject(Map.class, map, key.BUKKIT, true); if (ench == null) { return null; } Map enchantments = new HashMap(ench.size()); for (Map.Entry entry : ench.entrySet()) { Enchantment enchantment = Enchantment.getByName(entry.getKey().toString()); if ((enchantment != null) && (entry.getValue() instanceof Integer)) { enchantments.put(enchantment, (Integer) entry.getValue()); } } return enchantments; } static NBTTagList createStringList(List list) { if (list == null || list.isEmpty()) { return null; } NBTTagList tagList = new NBTTagList(); for (String value : list) { tagList.add(new NBTTagString(value)); } return tagList; } static void applyEnchantments(Map enchantments, NBTTagCompound tag, ItemMetaKey key) { if (enchantments == null /*|| enchantments.size() == 0*/) { // Spigot - remove size check return; } NBTTagList list = new NBTTagList(); for (Map.Entry entry : enchantments.entrySet()) { NBTTagCompound subtag = new NBTTagCompound(); subtag.setShort(ENCHANTMENTS_ID.NBT, (short) entry.getKey().getId()); subtag.setShort(ENCHANTMENTS_LVL.NBT, entry.getValue().shortValue()); list.add(subtag); } tag.set(key.NBT, list); } static void serializeEnchantments(Map enchantments, ImmutableMap.Builder builder, ItemMetaKey key) { if (enchantments == null || enchantments.isEmpty()) { return; } ImmutableMap.Builder enchants = ImmutableMap.builder(); for (Map.Entry enchant : enchantments.entrySet()) { enchants.put(enchant.getKey().getName(), enchant.getValue()); } builder.put(key.BUKKIT, enchants.build()); } static void safelyAdd(Iterable addFrom, Collection addTo, int maxItemLength) { if (addFrom == null) { return; } for (Object object : addFrom) { if (!(object instanceof String)) { if (object != null) { throw new IllegalArgumentException(addFrom + " cannot contain non-string " + object.getClass().getName()); } addTo.add(""); } else { String page = object.toString(); if (page.length() > maxItemLength) { page = page.substring(0, maxItemLength); } addTo.add(page); } } } static boolean checkConflictingEnchants(Map enchantments, Enchantment ench) { if (enchantments == null || enchantments.isEmpty()) { return false; } for (Enchantment enchant : enchantments.keySet()) { if (enchant.conflictsWith(ench)) { return true; } } return false; } public static Set getHandledTags() { synchronized (HANDLED_TAGS) { if (HANDLED_TAGS.isEmpty()) { HANDLED_TAGS.addAll(Arrays.asList( UNBREAKABLE.NBT, // Spigot DISPLAY.NBT, REPAIR.NBT, ENCHANTMENTS.NBT, HIDEFLAGS.NBT, CraftMetaMap.MAP_SCALING.NBT, CraftMetaPotion.POTION_EFFECTS.NBT, CraftMetaSkull.SKULL_OWNER.NBT, CraftMetaSkull.SKULL_PROFILE.NBT, CraftMetaBlockState.BLOCK_ENTITY_TAG.NBT, CraftMetaBook.BOOK_TITLE.NBT, CraftMetaBook.BOOK_AUTHOR.NBT, CraftMetaBook.BOOK_PAGES.NBT, CraftMetaBook.RESOLVED.NBT, CraftMetaBook.GENERATION.NBT, CraftMetaFirework.FIREWORKS.NBT, CraftMetaEnchantedBook.STORED_ENCHANTMENTS.NBT, CraftMetaCharge.EXPLOSION.NBT, CraftMetaBlockState.BLOCK_ENTITY_TAG.NBT )); } return HANDLED_TAGS; } } void deserializeInternal(NBTTagCompound tag) { } @Overridden void applyToItem(NBTTagCompound itemTag) { if (hasDisplayName()) { setDisplayTag(itemTag, NAME.NBT, new NBTTagString(displayName)); } if (hasLore()) { setDisplayTag(itemTag, LORE.NBT, createStringList(lore)); } if (hideFlag != 0) { itemTag.setInt(HIDEFLAGS.NBT, hideFlag); } applyEnchantments(enchantments, itemTag, ENCHANTMENTS); // Spigot start if (spigot.isUnbreakable()) { itemTag.setBoolean(UNBREAKABLE.NBT, true); } // Spigot end if (hasRepairCost()) { itemTag.setInt(REPAIR.NBT, repairCost); } for (Map.Entry e : unhandledTags.entrySet()) { itemTag.set(e.getKey(), e.getValue()); } } void setDisplayTag(NBTTagCompound tag, String key, NBTBase value) { final NBTTagCompound display = tag.getCompound(DISPLAY.NBT); if (!tag.hasKey(DISPLAY.NBT)) { tag.set(DISPLAY.NBT, display); } display.set(key, value); } @Overridden boolean applicableTo(Material type) { return type != Material.AIR; } @Overridden boolean isEmpty() { return !(hasDisplayName() || hasEnchants() || hasLore() || hasRepairCost() || !unhandledTags.isEmpty() || hideFlag != 0 || spigot.isUnbreakable()); // Spigot } public String getDisplayName() { return displayName; } public final void setDisplayName(String name) { this.displayName = name; } public boolean hasDisplayName() { return !Strings.isNullOrEmpty(displayName); } public boolean hasLore() { return this.lore != null && !this.lore.isEmpty(); } public boolean hasRepairCost() { return repairCost > 0; } public boolean hasEnchant(Enchantment ench) { return hasEnchants() && enchantments.containsKey(ench); } public int getEnchantLevel(Enchantment ench) { Integer level = hasEnchants() ? enchantments.get(ench) : null; if (level == null) { return 0; } return level; } public Map getEnchants() { return hasEnchants() ? ImmutableMap.copyOf(enchantments) : ImmutableMap.of(); } public boolean addEnchant(Enchantment ench, int level, boolean ignoreRestrictions) { if (enchantments == null) { enchantments = new HashMap(4); } if (ignoreRestrictions || level >= ench.getStartLevel() && level <= ench.getMaxLevel()) { Integer old = enchantments.put(ench, level); return old == null || old != level; } return false; } public boolean removeEnchant(Enchantment ench) { // Spigot start boolean b = hasEnchants() && enchantments.remove(ench) != null; if (enchantments != null && enchantments.isEmpty()) { this.enchantments = null; } return b; // Spigot end } public boolean hasEnchants() { return !(enchantments == null || enchantments.isEmpty()); } public boolean hasConflictingEnchant(Enchantment ench) { return checkConflictingEnchants(enchantments, ench); } @Override public void addItemFlags(ItemFlag... hideFlags) { for (ItemFlag f : hideFlags) { this.hideFlag |= getBitModifier(f); } } @Override public void removeItemFlags(ItemFlag... hideFlags) { for (ItemFlag f : hideFlags) { this.hideFlag &= ~getBitModifier(f); } } @Override public Set getItemFlags() { Set currentFlags = EnumSet.noneOf(ItemFlag.class); for (ItemFlag f : ItemFlag.values()) { if (hasItemFlag(f)) { currentFlags.add(f); } } return currentFlags; } @Override public boolean hasItemFlag(ItemFlag flag) { int bitModifier = getBitModifier(flag); return (this.hideFlag & bitModifier) == bitModifier; } private byte getBitModifier(ItemFlag hideFlag) { return (byte) (1 << hideFlag.ordinal()); } public List getLore() { return this.lore == null ? null : new ArrayList(this.lore); } public void setLore(List lore) { // too tired to think if .clone is better if (lore == null) { this.lore = null; } else { if (this.lore == null) { safelyAdd(lore, this.lore = new ArrayList(lore.size()), Integer.MAX_VALUE); } else { this.lore.clear(); safelyAdd(lore, this.lore, Integer.MAX_VALUE); } } } public int getRepairCost() { return repairCost; } public void setRepairCost(int cost) { // TODO: Does this have limits? repairCost = cost; } @Override public final boolean equals(Object object) { if (object == null) { return false; } if (object == this) { return true; } if (!(object instanceof CraftMetaItem)) { return false; } return CraftItemFactory.instance().equals(this, (ItemMeta) object); } /** * This method is almost as weird as notUncommon. * Only return false if your common internals are unequal. * Checking your own internals is redundant if you are not common, as notUncommon is meant for checking those 'not common' variables. */ @Overridden boolean equalsCommon(CraftMetaItem that) { return ((this.hasDisplayName() ? that.hasDisplayName() && this.displayName.equals(that.displayName) : !that.hasDisplayName())) && (this.hasEnchants() ? that.hasEnchants() && this.enchantments.equals(that.enchantments) : !that.hasEnchants()) && (this.hasLore() ? that.hasLore() && this.lore.equals(that.lore) : !that.hasLore()) && (this.hasRepairCost() ? that.hasRepairCost() && this.repairCost == that.repairCost : !that.hasRepairCost()) && (this.unhandledTags.equals(that.unhandledTags)) && (this.hideFlag == that.hideFlag) && (this.spigot.isUnbreakable() == that.spigot.isUnbreakable()); // Spigot } /** * This method is a bit weird... * Return true if you are a common class OR your uncommon parts are empty. * Empty uncommon parts implies the NBT data would be equivalent if both were applied to an item */ @Overridden boolean notUncommon(CraftMetaItem meta) { return true; } @Override public final int hashCode() { return applyHash(); } @Overridden int applyHash() { int hash = 3; hash = 61 * hash + (hasDisplayName() ? this.displayName.hashCode() : 0); hash = 61 * hash + (hasLore() ? this.lore.hashCode() : 0); hash = 61 * hash + (hasEnchants() ? this.enchantments.hashCode() : 0); hash = 61 * hash + (hasRepairCost() ? this.repairCost : 0); hash = 61 * hash + unhandledTags.hashCode(); hash = 61 * hash + hideFlag; hash = 61 * hash + (spigot.isUnbreakable() ? 1231 : 1237); // Spigot return hash; } @Overridden @Override public CraftMetaItem clone() { try { CraftMetaItem clone = (CraftMetaItem) super.clone(); if (this.lore != null) { clone.lore = new ArrayList(this.lore); } if (this.enchantments != null) { clone.enchantments = new HashMap(this.enchantments); } clone.hideFlag = this.hideFlag; return clone; } catch (CloneNotSupportedException e) { throw new Error(e); } } public final Map serialize() { ImmutableMap.Builder map = ImmutableMap.builder(); map.put(SerializableMeta.TYPE_FIELD, SerializableMeta.classMap.get(getClass())); serialize(map); return map.build(); } @Overridden ImmutableMap.Builder serialize(ImmutableMap.Builder builder) { if (hasDisplayName()) { builder.put(NAME.BUKKIT, displayName); } if (hasLore()) { builder.put(LORE.BUKKIT, ImmutableList.copyOf(lore)); } serializeEnchantments(enchantments, builder, ENCHANTMENTS); if (hasRepairCost()) { builder.put(REPAIR.BUKKIT, repairCost); } // Spigot start if (spigot.isUnbreakable()) { builder.put(UNBREAKABLE.BUKKIT, true); } // Spigot end Set hideFlags = new HashSet(); for (ItemFlag hideFlagEnum : getItemFlags()) { hideFlags.add(hideFlagEnum.name()); } if (!hideFlags.isEmpty()) { builder.put(HIDEFLAGS.BUKKIT, hideFlags); } final Map internalTags = new HashMap(unhandledTags); serializeInternal(internalTags); if (!internalTags.isEmpty()) { NBTTagCompound internal = new NBTTagCompound(); for (Map.Entry e : internalTags.entrySet()) { internal.set(e.getKey(), e.getValue()); } try { ByteArrayOutputStream buf = new ByteArrayOutputStream(); NBTCompressedStreamTools.a(internal, buf); builder.put("internal", Base64.encodeBase64String(buf.toByteArray())); } catch (IOException ex) { Logger.getLogger(CraftMetaItem.class.getName()).log(Level.SEVERE, null, ex); } } return builder; } void serializeInternal(final Map unhandledTags) { } @Override public final String toString() { return SerializableMeta.classMap.get(getClass()) + "_META:" + serialize(); // TODO: cry } @Override public Spigot spigot() { return spigot; } static class ItemMetaKey { final String BUKKIT; final String NBT; ItemMetaKey(final String both) { this(both, both); } ItemMetaKey(final String nbt, final String bukkit) { this.NBT = nbt; this.BUKKIT = bukkit; } @Retention(RetentionPolicy.SOURCE) @Target(ElementType.FIELD) @interface Specific { To value(); enum To { BUKKIT, NBT, } } } @SerializableAs("ItemMeta") public static class SerializableMeta implements ConfigurationSerializable { static final String TYPE_FIELD = "meta-type"; static final ImmutableMap, String> classMap; static final ImmutableMap> constructorMap; static { classMap = ImmutableMap., String>builder() .put(CraftMetaBanner.class, "BANNER") .put(CraftMetaBlockState.class, "TILE_ENTITY") .put(CraftMetaBook.class, "BOOK") .put(CraftMetaBookSigned.class, "BOOK_SIGNED") .put(CraftMetaSkull.class, "SKULL") .put(CraftMetaLeatherArmor.class, "LEATHER_ARMOR") .put(CraftMetaMap.class, "MAP") .put(CraftMetaPotion.class, "POTION") .put(CraftMetaEnchantedBook.class, "ENCHANTED") .put(CraftMetaFirework.class, "FIREWORK") .put(CraftMetaCharge.class, "FIREWORK_EFFECT") .put(CraftMetaItem.class, "UNSPECIFIC") .build(); final ImmutableMap.Builder> classConstructorBuilder = ImmutableMap.builder(); for (Map.Entry, String> mapping : classMap.entrySet()) { try { classConstructorBuilder.put(mapping.getValue(), mapping.getKey().getDeclaredConstructor(Map.class)); } catch (NoSuchMethodException e) { throw new AssertionError(e); } } constructorMap = classConstructorBuilder.build(); } private SerializableMeta() { } public static ItemMeta deserialize(Map map) throws Throwable { Validate.notNull(map, "Cannot deserialize null map"); String type = getString(map, TYPE_FIELD, false); Constructor constructor = constructorMap.get(type); if (constructor == null) { throw new IllegalArgumentException(type + " is not a valid " + TYPE_FIELD); } try { return constructor.newInstance(map); } catch (final InstantiationException e) { throw new AssertionError(e); } catch (final IllegalAccessException e) { throw new AssertionError(e); } catch (final InvocationTargetException e) { throw e.getCause(); } } static String getString(Map map, Object field, boolean nullable) { return getObject(String.class, map, field, nullable); } static boolean getBoolean(Map map, Object field) { Boolean value = getObject(Boolean.class, map, field, true); return value != null && value; } static T getObject(Class clazz, Map map, Object field, boolean nullable) { final Object object = map.get(field); if (clazz.isInstance(object)) { return clazz.cast(object); } if (object == null) { if (!nullable) { throw new NoSuchElementException(map + " does not contain " + field); } return null; } throw new IllegalArgumentException(field + "(" + object + ") is not a valid " + clazz); } public Map serialize() { throw new AssertionError(); } } // Spigot end }




  • © 2015 - 2025 Weber Informatics LLC | Privacy Policy