2021-06-14 03:06:38 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Mariell Hoversholm <proximyst@proximyst.com>
|
|
|
|
Date: Thu, 30 Apr 2020 16:56:54 +0200
|
|
|
|
Subject: [PATCH] Add Raw Byte ItemStack Serialization
|
|
|
|
|
|
|
|
Serializes using NBT which is safer for server data migrations than bukkits format.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/util/CraftMagicNumbers.java b/src/main/java/org/bukkit/craftbukkit/util/CraftMagicNumbers.java
|
2023-10-22 21:12:00 +02:00
|
|
|
index f967975d641fadce813a34a9344f6294368b797c..a78c6610be6e89dd89881867b8b91ed9cece7562 100644
|
2021-06-14 03:06:38 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/util/CraftMagicNumbers.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/util/CraftMagicNumbers.java
|
2023-10-22 21:12:00 +02:00
|
|
|
@@ -461,6 +461,52 @@ public final class CraftMagicNumbers implements UnsafeValues {
|
2023-02-19 15:57:10 +01:00
|
|
|
public com.destroystokyo.paper.util.VersionFetcher getVersionFetcher() {
|
|
|
|
return new com.destroystokyo.paper.PaperVersionFetcher();
|
2021-06-14 03:06:38 +02:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public byte[] serializeItem(ItemStack item) {
|
|
|
|
+ Preconditions.checkNotNull(item, "null cannot be serialized");
|
|
|
|
+ Preconditions.checkArgument(item.getType() != Material.AIR, "air cannot be serialized");
|
|
|
|
+
|
2021-11-11 03:53:27 +01:00
|
|
|
+ return serializeNbtToBytes((item instanceof CraftItemStack ? ((CraftItemStack) item).handle : CraftItemStack.asNMSCopy(item)).save(new CompoundTag()));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public ItemStack deserializeItem(byte[] data) {
|
|
|
|
+ Preconditions.checkNotNull(data, "null cannot be deserialized");
|
|
|
|
+ Preconditions.checkArgument(data.length > 0, "cannot deserialize nothing");
|
|
|
|
+
|
|
|
|
+ CompoundTag compound = deserializeNbtFromBytes(data);
|
|
|
|
+ int dataVersion = compound.getInt("DataVersion");
|
2023-01-24 15:30:51 +01:00
|
|
|
+ return CraftItemStack.asCraftMirror(net.minecraft.world.item.ItemStack.of(ca.spottedleaf.dataconverter.minecraft.MCDataConverter.convertTag(ca.spottedleaf.dataconverter.minecraft.datatypes.MCTypeRegistry.ITEM_STACK, compound, dataVersion, getDataVersion())));
|
2021-11-11 03:53:27 +01:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private byte[] serializeNbtToBytes(CompoundTag compound) {
|
2021-06-14 03:06:38 +02:00
|
|
|
+ compound.putInt("DataVersion", getDataVersion());
|
2021-11-11 03:53:27 +01:00
|
|
|
+ java.io.ByteArrayOutputStream outputStream = new java.io.ByteArrayOutputStream();
|
2021-06-14 03:06:38 +02:00
|
|
|
+ try {
|
|
|
|
+ net.minecraft.nbt.NbtIo.writeCompressed(
|
|
|
|
+ compound,
|
|
|
|
+ outputStream
|
|
|
|
+ );
|
|
|
|
+ } catch (IOException ex) {
|
|
|
|
+ throw new RuntimeException(ex);
|
|
|
|
+ }
|
|
|
|
+ return outputStream.toByteArray();
|
|
|
|
+ }
|
|
|
|
+
|
2021-11-11 03:53:27 +01:00
|
|
|
+ private CompoundTag deserializeNbtFromBytes(byte[] data) {
|
|
|
|
+ CompoundTag compound;
|
2021-06-14 03:06:38 +02:00
|
|
|
+ try {
|
2021-11-11 03:53:27 +01:00
|
|
|
+ compound = net.minecraft.nbt.NbtIo.readCompressed(
|
2021-06-14 03:06:38 +02:00
|
|
|
+ new java.io.ByteArrayInputStream(data)
|
|
|
|
+ );
|
|
|
|
+ } catch (IOException ex) {
|
2021-11-11 03:53:27 +01:00
|
|
|
+ throw new RuntimeException(ex);
|
2021-06-14 03:06:38 +02:00
|
|
|
+ }
|
2021-11-11 03:53:27 +01:00
|
|
|
+ int dataVersion = compound.getInt("DataVersion");
|
|
|
|
+ Preconditions.checkArgument(dataVersion <= getDataVersion(), "Newer version! Server downgrades are not supported!");
|
|
|
|
+ return compound;
|
2021-06-14 03:06:38 +02:00
|
|
|
+ }
|
|
|
|
// Paper end
|
|
|
|
|
|
|
|
/**
|