2022-02-23 04:09:15 +01:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
|
|
Date: Thu, 7 Oct 2021 14:34:59 -0700
|
|
|
|
Subject: [PATCH] Custom Potion Mixes
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/io/papermc/paper/potion/PotionMix.java b/src/main/java/io/papermc/paper/potion/PotionMix.java
|
|
|
|
new file mode 100644
|
2024-09-30 20:44:36 +02:00
|
|
|
index 0000000000000000000000000000000000000000..01b2a7c7a6bf328b3f7c30db3be0bfb8156ebc89
|
2022-02-23 04:09:15 +01:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/io/papermc/paper/potion/PotionMix.java
|
2024-09-30 20:44:36 +02:00
|
|
|
@@ -0,0 +1,103 @@
|
2022-02-23 04:09:15 +01:00
|
|
|
+package io.papermc.paper.potion;
|
|
|
|
+
|
2024-09-30 20:44:36 +02:00
|
|
|
+import java.util.Objects;
|
2023-10-11 01:07:21 +02:00
|
|
|
+import java.util.function.Predicate;
|
2022-02-23 04:09:15 +01:00
|
|
|
+import org.bukkit.Keyed;
|
|
|
|
+import org.bukkit.NamespacedKey;
|
|
|
|
+import org.bukkit.inventory.ItemStack;
|
|
|
|
+import org.bukkit.inventory.RecipeChoice;
|
2023-10-11 01:07:21 +02:00
|
|
|
+import org.jetbrains.annotations.Contract;
|
2024-09-30 20:44:36 +02:00
|
|
|
+import org.jspecify.annotations.NullMarked;
|
2022-02-23 04:09:15 +01:00
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * Represents a potion mix made in a Brewing Stand.
|
|
|
|
+ */
|
2024-09-30 20:44:36 +02:00
|
|
|
+@NullMarked
|
|
|
|
+public final class PotionMix implements Keyed {
|
2022-02-23 04:09:15 +01:00
|
|
|
+
|
|
|
|
+ private final NamespacedKey key;
|
|
|
|
+ private final ItemStack result;
|
|
|
|
+ private final RecipeChoice input;
|
|
|
|
+ private final RecipeChoice ingredient;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Creates a new potion mix. Add it to the server with {@link org.bukkit.potion.PotionBrewer#addPotionMix(PotionMix)}.
|
|
|
|
+ *
|
|
|
|
+ * @param key a unique key for the mix
|
|
|
|
+ * @param result the resulting itemstack that will appear in the 3 bottom slots
|
|
|
|
+ * @param input the input placed into the bottom 3 slots
|
|
|
|
+ * @param ingredient the ingredient placed into the top slot
|
|
|
|
+ */
|
2024-09-30 20:44:36 +02:00
|
|
|
+ public PotionMix(final NamespacedKey key, final ItemStack result, final RecipeChoice input, final RecipeChoice ingredient) {
|
2022-02-23 04:09:15 +01:00
|
|
|
+ this.key = key;
|
|
|
|
+ this.result = result;
|
|
|
|
+ this.input = input;
|
|
|
|
+ this.ingredient = ingredient;
|
|
|
|
+ }
|
|
|
|
+
|
2023-11-26 00:03:02 +01:00
|
|
|
+ /**
|
|
|
|
+ * Create a {@link RecipeChoice} based on a Predicate. These RecipeChoices are only
|
|
|
|
+ * valid for {@link PotionMix}, not anywhere else RecipeChoices may be used.
|
|
|
|
+ *
|
|
|
|
+ * @param stackPredicate a predicate for an itemstack.
|
|
|
|
+ * @return a new RecipeChoice
|
|
|
|
+ */
|
|
|
|
+ @Contract(value = "_ -> new", pure = true)
|
2024-09-30 20:44:36 +02:00
|
|
|
+ public static RecipeChoice createPredicateChoice(final Predicate<? super ItemStack> stackPredicate) {
|
2023-11-26 00:03:02 +01:00
|
|
|
+ return new PredicateRecipeChoice(stackPredicate);
|
|
|
|
+ }
|
|
|
|
+
|
2022-02-23 04:09:15 +01:00
|
|
|
+ @Override
|
2024-09-30 20:44:36 +02:00
|
|
|
+ public NamespacedKey getKey() {
|
2022-02-23 04:09:15 +01:00
|
|
|
+ return this.key;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets the resulting itemstack after the brew has finished.
|
|
|
|
+ *
|
|
|
|
+ * @return the result itemstack
|
|
|
|
+ */
|
2024-09-30 20:44:36 +02:00
|
|
|
+ public ItemStack getResult() {
|
2022-02-23 04:09:15 +01:00
|
|
|
+ return this.result;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets the input for the bottom 3 slots in the brewing stand.
|
|
|
|
+ *
|
|
|
|
+ * @return the bottom 3 slot ingredients
|
|
|
|
+ */
|
2024-09-30 20:44:36 +02:00
|
|
|
+ public RecipeChoice getInput() {
|
2022-02-23 04:09:15 +01:00
|
|
|
+ return this.input;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets the ingredient in the top slot of the brewing stand.
|
|
|
|
+ *
|
|
|
|
+ * @return the top slot input
|
|
|
|
+ */
|
2024-09-30 20:44:36 +02:00
|
|
|
+ public RecipeChoice getIngredient() {
|
2022-02-23 04:09:15 +01:00
|
|
|
+ return this.ingredient;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public String toString() {
|
|
|
|
+ return "PotionMix{" +
|
|
|
|
+ "result=" + this.result +
|
|
|
|
+ ", base=" + this.input +
|
|
|
|
+ ", addition=" + this.ingredient +
|
|
|
|
+ '}';
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
2023-11-26 00:03:02 +01:00
|
|
|
+ public boolean equals(final Object o) {
|
2022-02-23 04:09:15 +01:00
|
|
|
+ if (this == o) return true;
|
2023-11-26 00:03:02 +01:00
|
|
|
+ if (o == null || this.getClass() != o.getClass()) return false;
|
|
|
|
+ final PotionMix potionMix = (PotionMix) o;
|
2022-02-23 04:09:15 +01:00
|
|
|
+ return this.key.equals(potionMix.key) && this.result.equals(potionMix.result) && this.input.equals(potionMix.input) && this.ingredient.equals(potionMix.ingredient);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public int hashCode() {
|
|
|
|
+ return Objects.hash(this.key, this.result, this.input, this.ingredient);
|
|
|
|
+ }
|
|
|
|
+}
|
2023-10-11 01:07:21 +02:00
|
|
|
diff --git a/src/main/java/io/papermc/paper/potion/PredicateRecipeChoice.java b/src/main/java/io/papermc/paper/potion/PredicateRecipeChoice.java
|
|
|
|
new file mode 100644
|
2024-09-30 20:44:36 +02:00
|
|
|
index 0000000000000000000000000000000000000000..c252b432a9df5fd7da71a5eecba37a8844820700
|
2023-10-11 01:07:21 +02:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/io/papermc/paper/potion/PredicateRecipeChoice.java
|
2024-09-30 20:44:36 +02:00
|
|
|
@@ -0,0 +1,32 @@
|
2023-10-11 01:07:21 +02:00
|
|
|
+package io.papermc.paper.potion;
|
|
|
|
+
|
|
|
|
+import java.util.function.Predicate;
|
|
|
|
+import org.bukkit.inventory.ItemStack;
|
|
|
|
+import org.bukkit.inventory.RecipeChoice;
|
|
|
|
+import org.jetbrains.annotations.ApiStatus;
|
2024-09-30 20:44:36 +02:00
|
|
|
+import org.jspecify.annotations.NullMarked;
|
2023-10-11 01:07:21 +02:00
|
|
|
+
|
|
|
|
+@ApiStatus.Internal
|
2024-09-30 20:44:36 +02:00
|
|
|
+@NullMarked
|
2023-11-26 00:03:02 +01:00
|
|
|
+record PredicateRecipeChoice(Predicate<? super ItemStack> itemStackPredicate) implements RecipeChoice, Cloneable {
|
2023-10-11 01:07:21 +02:00
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ @Deprecated
|
|
|
|
+ public ItemStack getItemStack() {
|
|
|
|
+ throw new UnsupportedOperationException("PredicateRecipeChoice does not support this");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public RecipeChoice clone() {
|
|
|
|
+ try {
|
|
|
|
+ return (PredicateRecipeChoice) super.clone();
|
2023-11-26 00:03:02 +01:00
|
|
|
+ } catch (final CloneNotSupportedException ex) {
|
2023-10-11 01:07:21 +02:00
|
|
|
+ throw new AssertionError(ex);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public boolean test(final ItemStack itemStack) {
|
|
|
|
+ return this.itemStackPredicate.test(itemStack);
|
|
|
|
+ }
|
|
|
|
+}
|
2022-02-23 04:09:15 +01:00
|
|
|
diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java
|
2024-11-09 17:01:35 +01:00
|
|
|
index 391088f214f21d23c2cbd81d3406a41d21f7665a..a7c42a10aee3d71203d25f522a1d304ccffd168b 100644
|
2022-02-23 04:09:15 +01:00
|
|
|
--- a/src/main/java/org/bukkit/Bukkit.java
|
|
|
|
+++ b/src/main/java/org/bukkit/Bukkit.java
|
2024-11-09 17:01:35 +01:00
|
|
|
@@ -2665,6 +2665,15 @@ public final class Bukkit {
|
2022-02-23 04:09:15 +01:00
|
|
|
public static io.papermc.paper.datapack.DatapackManager getDatapackManager() {
|
|
|
|
return server.getDatapackManager();
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets the potion brewer.
|
|
|
|
+ *
|
|
|
|
+ * @return the potion brewer
|
|
|
|
+ */
|
|
|
|
+ public static @NotNull org.bukkit.potion.PotionBrewer getPotionBrewer() {
|
|
|
|
+ return server.getPotionBrewer();
|
|
|
|
+ }
|
|
|
|
// Paper end
|
|
|
|
|
|
|
|
@NotNull
|
|
|
|
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
|
2024-11-09 17:01:35 +01:00
|
|
|
index 372be75058eb39ee9123e53462af4586a4b512f2..9a9f7ff35d3958c3156d66bc5f3906c65b0696d9 100644
|
2022-02-23 04:09:15 +01:00
|
|
|
--- a/src/main/java/org/bukkit/Server.java
|
|
|
|
+++ b/src/main/java/org/bukkit/Server.java
|
2024-11-09 17:01:35 +01:00
|
|
|
@@ -2322,5 +2322,12 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
|
2022-02-23 04:09:15 +01:00
|
|
|
*/
|
|
|
|
@NotNull
|
|
|
|
io.papermc.paper.datapack.DatapackManager getDatapackManager();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets the potion brewer.
|
|
|
|
+ *
|
|
|
|
+ * @return the potion brewer
|
|
|
|
+ */
|
|
|
|
+ @NotNull org.bukkit.potion.PotionBrewer getPotionBrewer();
|
|
|
|
// Paper end
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/org/bukkit/potion/PotionBrewer.java b/src/main/java/org/bukkit/potion/PotionBrewer.java
|
2024-04-27 01:17:13 +02:00
|
|
|
index 2072f048e10eba829cef047d854b5a22c8f055a3..c1bcbeef9cb634e6cb8c4b58bf06883c37cc028b 100644
|
2022-02-23 04:09:15 +01:00
|
|
|
--- a/src/main/java/org/bukkit/potion/PotionBrewer.java
|
|
|
|
+++ b/src/main/java/org/bukkit/potion/PotionBrewer.java
|
2024-04-27 01:17:13 +02:00
|
|
|
@@ -4,10 +4,31 @@ import java.util.Collection;
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
|
|
|
|
/**
|
|
|
|
- * Represents a brewer that can create {@link PotionEffect}s.
|
|
|
|
+ * Used to manage custom {@link io.papermc.paper.potion.PotionMix}s.
|
2024-04-25 19:42:24 +02:00
|
|
|
*/
|
|
|
|
public interface PotionBrewer {
|
2024-04-27 01:17:13 +02:00
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ /**
|
|
|
|
+ * Adds a new potion mix recipe.
|
|
|
|
+ *
|
|
|
|
+ * @param potionMix the potion mix to add
|
|
|
|
+ */
|
|
|
|
+ void addPotionMix(@NotNull io.papermc.paper.potion.PotionMix potionMix);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Removes a potion mix recipe.
|
|
|
|
+ *
|
|
|
|
+ * @param key the key of the mix to remove
|
|
|
|
+ */
|
|
|
|
+ void removePotionMix(@NotNull org.bukkit.NamespacedKey key);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Resets potion mixes to their default, removing all custom ones.
|
|
|
|
+ */
|
|
|
|
+ void resetPotionMixes();
|
|
|
|
+ // Paper end
|
|
|
|
+
|
2024-04-25 19:42:24 +02:00
|
|
|
/**
|
|
|
|
* Creates a {@link PotionEffect} from the given {@link PotionEffectType},
|
|
|
|
* applying duration modifiers and checks.
|
2024-04-27 01:17:13 +02:00
|
|
|
@@ -16,9 +37,15 @@ public interface PotionBrewer {
|
2024-04-25 19:42:24 +02:00
|
|
|
* @param duration The duration in ticks
|
|
|
|
* @param amplifier The amplifier of the effect
|
|
|
|
* @return The resulting potion effect
|
|
|
|
+ * @deprecated use {@link PotionEffectType#createEffect(int, int)} instead.
|
|
|
|
*/
|
2024-04-27 01:17:13 +02:00
|
|
|
+ @Deprecated(forRemoval = true, since = "1.20.5") // Paper
|
2024-04-25 19:42:24 +02:00
|
|
|
@NotNull
|
|
|
|
- public PotionEffect createEffect(@NotNull PotionEffectType potion, int duration, int amplifier);
|
2024-04-27 01:17:13 +02:00
|
|
|
+ // Paper start - make default
|
2024-04-25 19:42:24 +02:00
|
|
|
+ default PotionEffect createEffect(@NotNull PotionEffectType potion, int duration, int amplifier) {
|
|
|
|
+ return potion.createEffect(duration, amplifier);
|
|
|
|
+ }
|
2024-04-27 01:17:13 +02:00
|
|
|
+ // Paper end
|
2024-04-25 19:42:24 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a collection of {@link PotionEffect} that would be applied from
|
2024-04-27 01:17:13 +02:00
|
|
|
@@ -28,9 +55,13 @@ public interface PotionBrewer {
|
2024-04-25 19:42:24 +02:00
|
|
|
* @return The list of effects
|
|
|
|
* @deprecated Non-Functional
|
|
|
|
*/
|
|
|
|
- @Deprecated
|
2024-04-27 01:17:13 +02:00
|
|
|
+ @Deprecated(forRemoval = true, since = "1.20.5") // Paper
|
2024-04-25 19:42:24 +02:00
|
|
|
@NotNull
|
|
|
|
- public Collection<PotionEffect> getEffectsFromDamage(int damage);
|
2024-04-27 01:17:13 +02:00
|
|
|
+ // Paper start - make default
|
2024-04-25 19:42:24 +02:00
|
|
|
+ default Collection<PotionEffect> getEffectsFromDamage(final int damage) {
|
|
|
|
+ return new java.util.ArrayList<>();
|
|
|
|
+ }
|
2024-04-27 01:17:13 +02:00
|
|
|
+ // Paper end
|
2024-04-25 19:42:24 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a collection of {@link PotionEffect} that would be applied from
|
2024-04-27 01:17:13 +02:00
|
|
|
@@ -43,6 +74,6 @@ public interface PotionBrewer {
|
2024-04-25 19:42:24 +02:00
|
|
|
* @deprecated Upgraded / extended potions are now their own {@link PotionType} use {@link PotionType#getPotionEffects()} instead
|
|
|
|
*/
|
2022-02-23 04:09:15 +01:00
|
|
|
@NotNull
|
2024-04-25 19:42:24 +02:00
|
|
|
- @Deprecated
|
2024-04-27 01:17:13 +02:00
|
|
|
+ @Deprecated(forRemoval = true, since = "1.20.5") // Paper
|
2022-02-23 04:09:15 +01:00
|
|
|
public Collection<PotionEffect> getEffects(@NotNull PotionType type, boolean upgraded, boolean extended);
|
|
|
|
}
|