Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-16 04:50:05 +01:00
SPIGOT-581: Allow for unhandled nbt tags to be serialized to yaml
Dieser Commit ist enthalten in:
Ursprung
ea28011f10
Commit
8e5e4c189b
@ -47,7 +47,7 @@ public class CraftMetaBlockState extends CraftMetaItem implements BlockStateMeta
|
|||||||
static final ItemMetaKey BLOCK_ENTITY_TAG = new ItemMetaKey("BlockEntityTag");
|
static final ItemMetaKey BLOCK_ENTITY_TAG = new ItemMetaKey("BlockEntityTag");
|
||||||
|
|
||||||
final Material material;
|
final Material material;
|
||||||
private NBTTagCompound blockEntityTag;
|
NBTTagCompound blockEntityTag;
|
||||||
|
|
||||||
CraftMetaBlockState(CraftMetaItem meta, Material material) {
|
CraftMetaBlockState(CraftMetaItem meta, Material material) {
|
||||||
super(meta);
|
super(meta);
|
||||||
@ -78,9 +78,13 @@ public class CraftMetaBlockState extends CraftMetaItem implements BlockStateMeta
|
|||||||
|
|
||||||
CraftMetaBlockState(Map<String, Object> map) {
|
CraftMetaBlockState(Map<String, Object> map) {
|
||||||
super(map);
|
super(map);
|
||||||
material = Material.AIR; // TODO
|
String matName = SerializableMeta.getString(map, "blockMaterial", true);
|
||||||
|
Material m = Material.getMaterial(matName);
|
||||||
blockEntityTag = null;
|
if (m != null) {
|
||||||
|
material = m;
|
||||||
|
} else {
|
||||||
|
material = Material.AIR;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -95,6 +99,7 @@ public class CraftMetaBlockState extends CraftMetaItem implements BlockStateMeta
|
|||||||
@Override
|
@Override
|
||||||
ImmutableMap.Builder<String, Object> serialize(ImmutableMap.Builder<String, Object> builder) {
|
ImmutableMap.Builder<String, Object> serialize(ImmutableMap.Builder<String, Object> builder) {
|
||||||
super.serialize(builder);
|
super.serialize(builder);
|
||||||
|
builder.put("blockMaterial", material.name());
|
||||||
return builder;
|
return builder;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,10 +15,7 @@ import java.util.NoSuchElementException;
|
|||||||
|
|
||||||
import net.minecraft.server.NBTBase;
|
import net.minecraft.server.NBTBase;
|
||||||
import net.minecraft.server.NBTTagCompound;
|
import net.minecraft.server.NBTTagCompound;
|
||||||
import net.minecraft.server.NBTTagDouble;
|
|
||||||
import net.minecraft.server.NBTTagInt;
|
|
||||||
import net.minecraft.server.NBTTagList;
|
import net.minecraft.server.NBTTagList;
|
||||||
import net.minecraft.server.NBTTagLong;
|
|
||||||
import net.minecraft.server.NBTTagString;
|
import net.minecraft.server.NBTTagString;
|
||||||
|
|
||||||
import org.apache.commons.lang.Validate;
|
import org.apache.commons.lang.Validate;
|
||||||
@ -37,11 +34,18 @@ import com.google.common.base.Strings;
|
|||||||
import com.google.common.collect.ImmutableList;
|
import com.google.common.collect.ImmutableList;
|
||||||
import com.google.common.collect.ImmutableMap;
|
import com.google.common.collect.ImmutableMap;
|
||||||
import com.google.common.collect.Sets;
|
import com.google.common.collect.Sets;
|
||||||
|
import java.io.ByteArrayInputStream;
|
||||||
|
import java.io.ByteArrayOutputStream;
|
||||||
|
import java.io.IOException;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.EnumSet;
|
import java.util.EnumSet;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
|
import java.util.Iterator;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import org.bukkit.block.BlockState;
|
import java.util.logging.Level;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
import net.minecraft.server.NBTCompressedStreamTools;
|
||||||
|
import org.apache.commons.codec.binary.Base64;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Children must include the following:
|
* Children must include the following:
|
||||||
@ -213,7 +217,6 @@ class CraftMetaItem implements ItemMeta, Repairable {
|
|||||||
private Map<Enchantment, Integer> enchantments;
|
private Map<Enchantment, Integer> enchantments;
|
||||||
private int repairCost;
|
private int repairCost;
|
||||||
private int hideFlag;
|
private int hideFlag;
|
||||||
private final NBTTagList attributes;
|
|
||||||
|
|
||||||
private static final Set<String> HANDLED_TAGS = Sets.newHashSet();
|
private static final Set<String> HANDLED_TAGS = Sets.newHashSet();
|
||||||
|
|
||||||
@ -221,7 +224,6 @@ class CraftMetaItem implements ItemMeta, Repairable {
|
|||||||
|
|
||||||
CraftMetaItem(CraftMetaItem meta) {
|
CraftMetaItem(CraftMetaItem meta) {
|
||||||
if (meta == null) {
|
if (meta == null) {
|
||||||
attributes = null;
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -236,7 +238,6 @@ class CraftMetaItem implements ItemMeta, Repairable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.repairCost = meta.repairCost;
|
this.repairCost = meta.repairCost;
|
||||||
this.attributes = meta.attributes;
|
|
||||||
this.hideFlag = meta.hideFlag;
|
this.hideFlag = meta.hideFlag;
|
||||||
this.unhandledTags.putAll(meta.unhandledTags);
|
this.unhandledTags.putAll(meta.unhandledTags);
|
||||||
}
|
}
|
||||||
@ -313,9 +314,7 @@ class CraftMetaItem implements ItemMeta, Repairable {
|
|||||||
save.add(entry);
|
save.add(entry);
|
||||||
}
|
}
|
||||||
|
|
||||||
attributes = save;
|
unhandledTags.put(ATTRIBUTES.NBT, save);
|
||||||
} else {
|
|
||||||
attributes = null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Set<String> keys = tag.c();
|
Set<String> keys = tag.c();
|
||||||
@ -359,8 +358,6 @@ class CraftMetaItem implements ItemMeta, Repairable {
|
|||||||
setRepairCost(repairCost);
|
setRepairCost(repairCost);
|
||||||
}
|
}
|
||||||
|
|
||||||
attributes = null;
|
|
||||||
|
|
||||||
Set hideFlags = SerializableMeta.getObject(Set.class, map, HIDEFLAGS.BUKKIT, true);
|
Set hideFlags = SerializableMeta.getObject(Set.class, map, HIDEFLAGS.BUKKIT, true);
|
||||||
if (hideFlags != null) {
|
if (hideFlags != null) {
|
||||||
for (Object hideFlagObject : hideFlags) {
|
for (Object hideFlagObject : hideFlags) {
|
||||||
@ -373,6 +370,27 @@ class CraftMetaItem implements ItemMeta, Repairable {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String internal = SerializableMeta.getString(map, "internal", true);
|
||||||
|
if (internal != null) {
|
||||||
|
ByteArrayInputStream buf = new ByteArrayInputStream(Base64.decodeBase64(internal));
|
||||||
|
try {
|
||||||
|
NBTTagCompound tag = NBTCompressedStreamTools.a(buf);
|
||||||
|
Set<String> keys = tag.c();
|
||||||
|
for (String key : keys) {
|
||||||
|
if (!getHandledTags().contains(key)) {
|
||||||
|
unhandledTags.put(key, tag.get(key));
|
||||||
|
}
|
||||||
|
if (key.equals(CraftMetaBlockState.BLOCK_ENTITY_TAG.NBT) && this instanceof CraftMetaBlockState) {
|
||||||
|
if (tag.hasKeyOfType(key, 10)) {
|
||||||
|
((CraftMetaBlockState) this).blockEntityTag = tag.getCompound(key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (IOException ex) {
|
||||||
|
Logger.getLogger(CraftMetaItem.class.getName()).log(Level.SEVERE, null, ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static Map<Enchantment, Integer> buildEnchantments(Map<String, Object> map, ItemMetaKey key) {
|
static Map<Enchantment, Integer> buildEnchantments(Map<String, Object> map, ItemMetaKey key) {
|
||||||
@ -413,10 +431,6 @@ class CraftMetaItem implements ItemMeta, Repairable {
|
|||||||
itemTag.setInt(REPAIR.NBT, repairCost);
|
itemTag.setInt(REPAIR.NBT, repairCost);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (attributes != null) {
|
|
||||||
itemTag.set(ATTRIBUTES.NBT, attributes);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (Map.Entry<String, NBTBase> e : unhandledTags.entrySet()) {
|
for (Map.Entry<String, NBTBase> e : unhandledTags.entrySet()) {
|
||||||
itemTag.set(e.getKey(), e.getValue());
|
itemTag.set(e.getKey(), e.getValue());
|
||||||
}
|
}
|
||||||
@ -471,7 +485,7 @@ class CraftMetaItem implements ItemMeta, Repairable {
|
|||||||
|
|
||||||
@Overridden
|
@Overridden
|
||||||
boolean isEmpty() {
|
boolean isEmpty() {
|
||||||
return !(hasDisplayName() || hasEnchants() || hasLore() || hasAttributes() || hasRepairCost() || !unhandledTags.isEmpty() || hideFlag != 0);
|
return !(hasDisplayName() || hasEnchants() || hasLore() || hasRepairCost() || !unhandledTags.isEmpty() || hideFlag != 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getDisplayName() {
|
public String getDisplayName() {
|
||||||
@ -490,10 +504,6 @@ class CraftMetaItem implements ItemMeta, Repairable {
|
|||||||
return this.lore != null && !this.lore.isEmpty();
|
return this.lore != null && !this.lore.isEmpty();
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean hasAttributes() {
|
|
||||||
return this.attributes != null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean hasRepairCost() {
|
public boolean hasRepairCost() {
|
||||||
return repairCost > 0;
|
return repairCost > 0;
|
||||||
}
|
}
|
||||||
@ -624,7 +634,6 @@ class CraftMetaItem implements ItemMeta, Repairable {
|
|||||||
return ((this.hasDisplayName() ? that.hasDisplayName() && this.displayName.equals(that.displayName) : !that.hasDisplayName()))
|
return ((this.hasDisplayName() ? that.hasDisplayName() && this.displayName.equals(that.displayName) : !that.hasDisplayName()))
|
||||||
&& (this.hasEnchants() ? that.hasEnchants() && this.enchantments.equals(that.enchantments) : !that.hasEnchants())
|
&& (this.hasEnchants() ? that.hasEnchants() && this.enchantments.equals(that.enchantments) : !that.hasEnchants())
|
||||||
&& (this.hasLore() ? that.hasLore() && this.lore.equals(that.lore) : !that.hasLore())
|
&& (this.hasLore() ? that.hasLore() && this.lore.equals(that.lore) : !that.hasLore())
|
||||||
&& (this.hasAttributes() ? that.hasAttributes() && this.attributes.equals(that.attributes) : !that.hasAttributes())
|
|
||||||
&& (this.hasRepairCost() ? that.hasRepairCost() && this.repairCost == that.repairCost : !that.hasRepairCost())
|
&& (this.hasRepairCost() ? that.hasRepairCost() && this.repairCost == that.repairCost : !that.hasRepairCost())
|
||||||
&& (this.unhandledTags.equals(that.unhandledTags))
|
&& (this.unhandledTags.equals(that.unhandledTags))
|
||||||
&& (this.hideFlag == that.hideFlag);
|
&& (this.hideFlag == that.hideFlag);
|
||||||
@ -651,7 +660,6 @@ class CraftMetaItem implements ItemMeta, Repairable {
|
|||||||
hash = 61 * hash + (hasDisplayName() ? this.displayName.hashCode() : 0);
|
hash = 61 * hash + (hasDisplayName() ? this.displayName.hashCode() : 0);
|
||||||
hash = 61 * hash + (hasLore() ? this.lore.hashCode() : 0);
|
hash = 61 * hash + (hasLore() ? this.lore.hashCode() : 0);
|
||||||
hash = 61 * hash + (hasEnchants() ? this.enchantments.hashCode() : 0);
|
hash = 61 * hash + (hasEnchants() ? this.enchantments.hashCode() : 0);
|
||||||
hash = 61 * hash + (hasAttributes() ? this.attributes.hashCode() : 0);
|
|
||||||
hash = 61 * hash + (hasRepairCost() ? this.repairCost : 0);
|
hash = 61 * hash + (hasRepairCost() ? this.repairCost : 0);
|
||||||
hash = 61 * hash + unhandledTags.hashCode();
|
hash = 61 * hash + unhandledTags.hashCode();
|
||||||
hash = 61 * hash + hideFlag;
|
hash = 61 * hash + hideFlag;
|
||||||
@ -707,6 +715,26 @@ class CraftMetaItem implements ItemMeta, Repairable {
|
|||||||
builder.put(HIDEFLAGS.BUKKIT, hideFlags);
|
builder.put(HIDEFLAGS.BUKKIT, hideFlags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!unhandledTags.isEmpty() || this instanceof CraftMetaBlockState) {
|
||||||
|
NBTTagCompound internal = new NBTTagCompound();
|
||||||
|
for (Map.Entry<String, NBTBase> e : unhandledTags.entrySet()) {
|
||||||
|
internal.set(e.getKey(), e.getValue());
|
||||||
|
}
|
||||||
|
if (this instanceof CraftMetaBlockState) {
|
||||||
|
CraftMetaBlockState bs = ((CraftMetaBlockState) this);
|
||||||
|
if (bs.blockEntityTag != null) {
|
||||||
|
internal.set(CraftMetaBlockState.BLOCK_ENTITY_TAG.NBT, bs.blockEntityTag);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
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;
|
return builder;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -772,7 +800,6 @@ class CraftMetaItem implements ItemMeta, Repairable {
|
|||||||
HANDLED_TAGS.addAll(Arrays.asList(
|
HANDLED_TAGS.addAll(Arrays.asList(
|
||||||
DISPLAY.NBT,
|
DISPLAY.NBT,
|
||||||
REPAIR.NBT,
|
REPAIR.NBT,
|
||||||
ATTRIBUTES.NBT,
|
|
||||||
ENCHANTMENTS.NBT,
|
ENCHANTMENTS.NBT,
|
||||||
CraftMetaMap.MAP_SCALING.NBT,
|
CraftMetaMap.MAP_SCALING.NBT,
|
||||||
CraftMetaPotion.POTION_EFFECTS.NBT,
|
CraftMetaPotion.POTION_EFFECTS.NBT,
|
||||||
@ -785,7 +812,8 @@ class CraftMetaItem implements ItemMeta, Repairable {
|
|||||||
CraftMetaBook.GENERATION.NBT,
|
CraftMetaBook.GENERATION.NBT,
|
||||||
CraftMetaFirework.FIREWORKS.NBT,
|
CraftMetaFirework.FIREWORKS.NBT,
|
||||||
CraftMetaEnchantedBook.STORED_ENCHANTMENTS.NBT,
|
CraftMetaEnchantedBook.STORED_ENCHANTMENTS.NBT,
|
||||||
CraftMetaCharge.EXPLOSION.NBT
|
CraftMetaCharge.EXPLOSION.NBT,
|
||||||
|
CraftMetaBlockState.BLOCK_ENTITY_TAG.NBT
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
return HANDLED_TAGS;
|
return HANDLED_TAGS;
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren