2020-07-17 18:05:50 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2020-08-06 19:18:29 +02:00
|
|
|
From: tr7zw <tr7zw@live.de>
|
2020-08-03 18:48:42 +02:00
|
|
|
Date: Sat, 1 Aug 2020 15:55:15 -0500
|
2020-08-15 06:37:52 +02:00
|
|
|
Subject: [PATCH] Add NBT API as a first-class lib
|
2020-04-02 18:50:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
diff --git a/pom.xml b/pom.xml
|
2020-12-02 07:35:11 +01:00
|
|
|
index 31aba885d940acf0a9df5d4e83dfec69030b2a37..afe3477c9a577a5fa1ef6c7dfd5a221fd3ca9f6b 100644
|
2020-04-02 18:50:49 +02:00
|
|
|
--- a/pom.xml
|
|
|
|
+++ b/pom.xml
|
2020-09-09 16:18:52 +02:00
|
|
|
@@ -56,6 +56,11 @@
|
2020-04-02 18:50:49 +02:00
|
|
|
<id>mojang</id>
|
|
|
|
<url>https://libraries.minecraft.net/</url>
|
|
|
|
</repository>
|
|
|
|
+ <!-- CodeMC -->
|
|
|
|
+ <repository>
|
|
|
|
+ <id>codemc-repo</id>
|
|
|
|
+ <url>https://repo.codemc.org/repository/maven-public/</url>
|
|
|
|
+ </repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<pluginRepositories>
|
2020-09-09 16:18:52 +02:00
|
|
|
@@ -170,6 +175,11 @@
|
2020-04-02 18:50:49 +02:00
|
|
|
<artifactId>asm-commons</artifactId>
|
2020-05-07 16:59:29 +02:00
|
|
|
<version>8.0.1</version>
|
2020-04-02 18:50:49 +02:00
|
|
|
</dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>de.tr7zw</groupId>
|
|
|
|
+ <artifactId>item-nbt-api</artifactId>
|
2020-11-07 11:20:28 +01:00
|
|
|
+ <version>2.6.0</version>
|
2020-04-02 18:50:49 +02:00
|
|
|
+ </dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2020-09-09 16:18:52 +02:00
|
|
|
@@ -245,6 +255,12 @@
|
2020-04-02 18:50:49 +02:00
|
|
|
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
|
|
|
|
<!-- when downloading via Maven we can pull depends individually -->
|
|
|
|
<shadedArtifactAttached>true</shadedArtifactAttached>
|
|
|
|
+ <relocations>
|
|
|
|
+ <relocation>
|
|
|
|
+ <pattern>de.tr7zw.changeme.nbtapi</pattern>
|
|
|
|
+ <shadedPattern>de.tr7zw.nbtapi</shadedPattern>
|
|
|
|
+ </relocation>
|
|
|
|
+ </relocations>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-07-05 16:50:40 +02:00
|
|
|
<plugin>
|
2020-04-02 18:50:49 +02:00
|
|
|
diff --git a/src/main/java/org/bukkit/block/TileState.java b/src/main/java/org/bukkit/block/TileState.java
|
2020-08-04 01:08:18 +02:00
|
|
|
index 3b10fcc13893403b29f0260b8605144679e89b82..1e9a96d8b08cc396acf73dc42083009354e89d8a 100644
|
2020-04-02 18:50:49 +02:00
|
|
|
--- a/src/main/java/org/bukkit/block/TileState.java
|
|
|
|
+++ b/src/main/java/org/bukkit/block/TileState.java
|
2020-08-04 01:08:18 +02:00
|
|
|
@@ -36,4 +36,26 @@ public interface TileState extends BlockState, PersistentDataHolder {
|
2020-04-02 18:50:49 +02:00
|
|
|
@NotNull
|
|
|
|
@Override
|
|
|
|
PersistentDataContainer getPersistentDataContainer();
|
2020-08-03 18:48:42 +02:00
|
|
|
+
|
|
|
|
+ // Yatopia start
|
2020-08-04 01:08:18 +02:00
|
|
|
+ /**
|
|
|
|
+ * Returns NBT representation of this tile entity.
|
|
|
|
+ *
|
|
|
|
+ * @return vanilla NBT tags container
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ default de.tr7zw.changeme.nbtapi.NBTTileEntity getNBT() {
|
|
|
|
+ return new de.tr7zw.changeme.nbtapi.NBTTileEntity(this);
|
2020-04-02 18:50:49 +02:00
|
|
|
+ }
|
2020-08-03 18:48:42 +02:00
|
|
|
+
|
2020-08-04 01:08:18 +02:00
|
|
|
+ /**
|
|
|
|
+ * Returns a custom tag container of this tile entity.
|
|
|
|
+ *
|
|
|
|
+ * @return custom NBT tags container
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ default de.tr7zw.changeme.nbtapi.NBTCompound getNBTC() {
|
|
|
|
+ return getNBT().getPersistentDataContainer();
|
|
|
|
+ }
|
2020-08-03 18:48:42 +02:00
|
|
|
+ // Yatopia end
|
2020-04-02 18:50:49 +02:00
|
|
|
}
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Entity.java b/src/main/java/org/bukkit/entity/Entity.java
|
2020-12-22 15:01:31 +01:00
|
|
|
index 76e857c364fe79e20cf9bde54b65e5b7108174fd..dc7e9983b89726625acce95026b45695b3f387b6 100644
|
2020-04-02 18:50:49 +02:00
|
|
|
--- a/src/main/java/org/bukkit/entity/Entity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/Entity.java
|
2020-12-22 15:01:31 +01:00
|
|
|
@@ -698,4 +698,26 @@ public interface Entity extends Metadatable, CommandSender, Nameable, Persistent
|
2020-07-05 16:50:40 +02:00
|
|
|
*/
|
2020-10-04 11:00:34 +02:00
|
|
|
public boolean isTicking();
|
2020-04-02 18:50:49 +02:00
|
|
|
// Paper end
|
2020-08-03 18:48:42 +02:00
|
|
|
+
|
|
|
|
+ // Yatopia start
|
2020-08-04 01:08:18 +02:00
|
|
|
+ /**
|
|
|
|
+ * Returns NBT representation of this entity.
|
|
|
|
+ *
|
|
|
|
+ * @return vanilla NBT tags container
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ default de.tr7zw.changeme.nbtapi.NBTEntity getNBT() {
|
2020-10-04 11:00:34 +02:00
|
|
|
+ return new de.tr7zw.changeme.nbtapi.NBTEntity(this);
|
2020-04-02 18:50:49 +02:00
|
|
|
+ }
|
2020-08-03 18:48:42 +02:00
|
|
|
+
|
2020-08-04 01:08:18 +02:00
|
|
|
+ /**
|
|
|
|
+ * Returns a custom tag container of this entity.
|
|
|
|
+ *
|
|
|
|
+ * @return custom NBT tags container
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ default de.tr7zw.changeme.nbtapi.NBTCompound getNBTC() {
|
2020-10-04 11:00:34 +02:00
|
|
|
+ return getNBT().getPersistentDataContainer();
|
2020-07-25 20:07:48 +02:00
|
|
|
+ }
|
2020-08-03 18:48:42 +02:00
|
|
|
+ // Yatopia end
|
2020-04-02 18:50:49 +02:00
|
|
|
}
|
|
|
|
diff --git a/src/main/java/org/bukkit/inventory/ItemStack.java b/src/main/java/org/bukkit/inventory/ItemStack.java
|
2020-11-07 11:20:28 +01:00
|
|
|
index ccd81fca25233c2a9c2a8c3f4dda3053d7b2e723..5ad9dfb7856b2f86947b12b5444b2f8147f72bbf 100644
|
2020-04-02 18:50:49 +02:00
|
|
|
--- a/src/main/java/org/bukkit/inventory/ItemStack.java
|
|
|
|
+++ b/src/main/java/org/bukkit/inventory/ItemStack.java
|
2020-11-07 11:20:28 +01:00
|
|
|
@@ -791,4 +791,42 @@ public class ItemStack implements Cloneable, ConfigurationSerializable {
|
2020-04-02 18:50:49 +02:00
|
|
|
return itemMeta.hasItemFlag(flag);
|
|
|
|
}
|
|
|
|
// Paper end
|
2020-08-03 18:48:42 +02:00
|
|
|
+
|
|
|
|
+ // Yatopia start
|
2020-08-04 01:08:18 +02:00
|
|
|
+ /**
|
2020-11-07 11:20:28 +01:00
|
|
|
+ * Returns NBT representation of this item. The ItemStack will be cloned!
|
2020-08-04 01:08:18 +02:00
|
|
|
+ *
|
|
|
|
+ * @return item's NBT tags container
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ public de.tr7zw.changeme.nbtapi.NBTItem getNBT() {
|
2020-11-07 11:20:28 +01:00
|
|
|
+ return getNBT(false);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Returns NBT representation of this item. If directApply is true,
|
|
|
|
+ * all changes will be mapped to the original item. Changes to the NBTItem will
|
|
|
|
+ * overwrite changes done to the original item in that case.
|
|
|
|
+ *
|
|
|
|
+ * @param directApply if true, changes to NBTItem will affect this ItemStack
|
|
|
|
+ * @return item's NBT tags container
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ public de.tr7zw.changeme.nbtapi.NBTItem getNBT(boolean directApply) {
|
|
|
|
+ return new de.tr7zw.changeme.nbtapi.NBTItem(this, directApply);
|
2020-04-02 18:50:49 +02:00
|
|
|
+ }
|
2020-08-03 18:48:42 +02:00
|
|
|
+
|
2020-08-04 01:08:18 +02:00
|
|
|
+ /**
|
|
|
|
+ * Applies NBT data from the provided NBT item.
|
|
|
|
+ *
|
|
|
|
+ * @param nbt ItemStack's NBT container
|
|
|
|
+ */
|
|
|
|
+ public void setNBT(@NotNull de.tr7zw.changeme.nbtapi.NBTItem nbt) {
|
|
|
|
+ ItemStack nbtItem = nbt.getItem();
|
|
|
|
+ setType(nbtItem.getType());
|
|
|
|
+ setAmount(nbtItem.getAmount());
|
|
|
|
+ setData(nbtItem.getData());
|
|
|
|
+ setItemMeta(nbtItem.getItemMeta());
|
2020-04-02 18:50:49 +02:00
|
|
|
+ }
|
2020-08-03 18:48:42 +02:00
|
|
|
+ // Yatopia end
|
2020-04-02 18:50:49 +02:00
|
|
|
}
|