2024-02-10 02:12:50 +01:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Yannick Lamprecht <yannicklamprecht@live.de>
|
|
|
|
Date: Mon, 22 Jan 2024 13:27:18 +0100
|
|
|
|
Subject: [PATCH] ItemStack Tooltip API
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/io/papermc/paper/inventory/tooltip/TooltipContext.java b/src/main/java/io/papermc/paper/inventory/tooltip/TooltipContext.java
|
|
|
|
new file mode 100644
|
2024-09-30 20:44:36 +02:00
|
|
|
index 0000000000000000000000000000000000000000..7e16f2645e956cbac8d0fc75ba8209f67fd1835c
|
2024-02-10 02:12:50 +01:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/io/papermc/paper/inventory/tooltip/TooltipContext.java
|
2024-09-30 20:44:36 +02:00
|
|
|
@@ -0,0 +1,76 @@
|
2024-02-10 02:12:50 +01:00
|
|
|
+package io.papermc.paper.inventory.tooltip;
|
|
|
|
+
|
|
|
|
+import org.bukkit.entity.Player;
|
|
|
|
+import org.jetbrains.annotations.Contract;
|
2024-09-30 20:44:36 +02:00
|
|
|
+import org.jspecify.annotations.NullMarked;
|
2024-02-10 02:12:50 +01:00
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * Context for computing itemstack tooltips via
|
|
|
|
+ * {@link org.bukkit.inventory.ItemStack#computeTooltipLines(TooltipContext, Player)}
|
|
|
|
+ */
|
2024-09-30 20:44:36 +02:00
|
|
|
+@NullMarked
|
2024-02-10 02:12:50 +01:00
|
|
|
+public interface TooltipContext {
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Creates a new context with the given advanced and creative
|
|
|
|
+ * mode settings.
|
|
|
|
+ *
|
|
|
|
+ * @param advanced whether the context is for advanced tooltips
|
|
|
|
+ * @param creative whether the context is for the creative inventory
|
|
|
|
+ * @return a new context
|
|
|
|
+ */
|
|
|
|
+ @Contract("_, _ -> new")
|
2024-09-30 20:44:36 +02:00
|
|
|
+ static TooltipContext create(final boolean advanced, final boolean creative) {
|
2024-02-10 02:12:50 +01:00
|
|
|
+ return new TooltipContextImpl(advanced, creative);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Creates a new context that is neither advanced nor creative.
|
|
|
|
+ *
|
|
|
|
+ * @return a new context
|
|
|
|
+ */
|
|
|
|
+ @Contract("-> new")
|
2024-09-30 20:44:36 +02:00
|
|
|
+ static TooltipContext create() {
|
2024-02-10 02:12:50 +01:00
|
|
|
+ return new TooltipContextImpl(false, false);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Returns whether the context is for advanced
|
|
|
|
+ * tooltips.
|
|
|
|
+ * <p>
|
|
|
|
+ * Advanced tooltips are shown by default
|
|
|
|
+ * when a player has {@code F3+H} enabled.
|
|
|
|
+ *
|
|
|
|
+ * @return true if for advanced tooltips
|
|
|
|
+ */
|
|
|
|
+ boolean isAdvanced();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Returns whether the context is for the creative
|
|
|
|
+ * mode inventory.
|
|
|
|
+ * <p>
|
|
|
|
+ * Creative tooltips are shown by default when a player is
|
|
|
|
+ * in the creative inventory.
|
|
|
|
+ *
|
|
|
|
+ * @return true if for creative mode inventory
|
|
|
|
+ */
|
|
|
|
+ boolean isCreative();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Returns a new context with {@link #isAdvanced()}
|
|
|
|
+ * set to true.
|
|
|
|
+ *
|
|
|
|
+ * @return a new context
|
|
|
|
+ */
|
|
|
|
+ @Contract("-> new")
|
2024-09-30 20:44:36 +02:00
|
|
|
+ TooltipContext asAdvanced();
|
2024-02-10 02:12:50 +01:00
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Returns a new context with {@link #isCreative()}
|
|
|
|
+ * set to true.
|
|
|
|
+ *
|
|
|
|
+ * @return a new context
|
|
|
|
+ */
|
|
|
|
+ @Contract("-> new")
|
2024-09-30 20:44:36 +02:00
|
|
|
+ TooltipContext asCreative();
|
2024-02-10 02:12:50 +01:00
|
|
|
+}
|
|
|
|
diff --git a/src/main/java/io/papermc/paper/inventory/tooltip/TooltipContextImpl.java b/src/main/java/io/papermc/paper/inventory/tooltip/TooltipContextImpl.java
|
|
|
|
new file mode 100644
|
2024-09-30 20:44:36 +02:00
|
|
|
index 0000000000000000000000000000000000000000..a649b90dfac6000c01579a48234a11383c731439
|
2024-02-10 02:12:50 +01:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/io/papermc/paper/inventory/tooltip/TooltipContextImpl.java
|
2024-09-30 20:44:36 +02:00
|
|
|
@@ -0,0 +1,17 @@
|
2024-02-10 02:12:50 +01:00
|
|
|
+package io.papermc.paper.inventory.tooltip;
|
|
|
|
+
|
2024-09-30 20:44:36 +02:00
|
|
|
+import org.jspecify.annotations.NullMarked;
|
2024-02-10 02:12:50 +01:00
|
|
|
+
|
2024-09-30 20:44:36 +02:00
|
|
|
+@NullMarked
|
2024-08-14 14:39:45 +02:00
|
|
|
+record TooltipContextImpl(boolean isAdvanced, boolean isCreative) implements TooltipContext {
|
2024-02-10 02:12:50 +01:00
|
|
|
+
|
|
|
|
+ @Override
|
2024-09-30 20:44:36 +02:00
|
|
|
+ public TooltipContext asCreative() {
|
2024-08-14 14:39:45 +02:00
|
|
|
+ return new TooltipContextImpl(this.isAdvanced, true);
|
2024-02-10 02:12:50 +01:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
2024-09-30 20:44:36 +02:00
|
|
|
+ public TooltipContext asAdvanced() {
|
2024-08-14 14:39:45 +02:00
|
|
|
+ return new TooltipContextImpl(true, this.isCreative);
|
2024-02-10 02:12:50 +01:00
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
diff --git a/src/main/java/org/bukkit/UnsafeValues.java b/src/main/java/org/bukkit/UnsafeValues.java
|
2024-10-27 18:11:15 +01:00
|
|
|
index 81b1c024e27a7021982336b94fc1e1ba33308f6c..e5144471056e69586c1693a9264a3995387de3cc 100644
|
2024-02-10 02:12:50 +01:00
|
|
|
--- a/src/main/java/org/bukkit/UnsafeValues.java
|
|
|
|
+++ b/src/main/java/org/bukkit/UnsafeValues.java
|
2024-10-27 18:11:15 +01:00
|
|
|
@@ -270,4 +270,6 @@ public interface UnsafeValues {
|
2024-02-10 02:12:50 +01:00
|
|
|
@org.jetbrains.annotations.ApiStatus.Internal
|
|
|
|
io.papermc.paper.plugin.lifecycle.event.LifecycleEventManager<org.bukkit.plugin.Plugin> createPluginLifecycleEventManager(final org.bukkit.plugin.java.JavaPlugin plugin, final java.util.function.BooleanSupplier registrationCheck);
|
|
|
|
// Paper end - lifecycle event API
|
|
|
|
+
|
|
|
|
+ @NotNull java.util.List<net.kyori.adventure.text.Component> computeTooltipLines(@NotNull ItemStack itemStack, @NotNull io.papermc.paper.inventory.tooltip.TooltipContext tooltipContext, @Nullable org.bukkit.entity.Player player); // Paper - expose itemstack tooltip lines
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/org/bukkit/inventory/ItemStack.java b/src/main/java/org/bukkit/inventory/ItemStack.java
|
2024-09-30 20:44:36 +02:00
|
|
|
index e6c69a54e0c1dc511fe5769f869dcecb13e04ed3..49390979cc0c68b8e719f2a2ce9e7d193c747959 100644
|
2024-02-10 02:12:50 +01:00
|
|
|
--- a/src/main/java/org/bukkit/inventory/ItemStack.java
|
|
|
|
+++ b/src/main/java/org/bukkit/inventory/ItemStack.java
|
2024-09-22 21:02:06 +02:00
|
|
|
@@ -1124,4 +1124,21 @@ public class ItemStack implements Cloneable, ConfigurationSerializable, Translat
|
2024-02-10 02:12:50 +01:00
|
|
|
return type.isAir() || amount <= 0;
|
|
|
|
}
|
|
|
|
// Paper end
|
|
|
|
+ // Paper start - expose itemstack tooltip lines
|
|
|
|
+ /**
|
|
|
|
+ * Computes the tooltip lines for this stack.
|
|
|
|
+ * <p>
|
|
|
|
+ * <b>Disclaimer:</b>
|
|
|
|
+ * Tooltip contents are not guaranteed to be consistent across different
|
|
|
|
+ * Minecraft versions.
|
|
|
|
+ *
|
|
|
|
+ * @param tooltipContext the tooltip context
|
|
|
|
+ * @param player a player for player-specific tooltip lines
|
|
|
|
+ * @return an immutable list of components (can be empty)
|
|
|
|
+ */
|
|
|
|
+ @SuppressWarnings("deprecation") // abusing unsafe as a bridge
|
2024-05-11 23:48:37 +02:00
|
|
|
+ public java.util.@NotNull @org.jetbrains.annotations.Unmodifiable List<net.kyori.adventure.text.Component> computeTooltipLines(final @NotNull io.papermc.paper.inventory.tooltip.TooltipContext tooltipContext, final @Nullable org.bukkit.entity.Player player) {
|
2024-02-10 02:12:50 +01:00
|
|
|
+ return Bukkit.getUnsafe().computeTooltipLines(this, tooltipContext, player);
|
|
|
|
+ }
|
|
|
|
+ // Paper end - expose itemstack tooltip lines
|
|
|
|
}
|