2023-08-06 03:11:22 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
|
|
Date: Sat, 21 Aug 2021 17:25:38 -0700
|
|
|
|
Subject: [PATCH] API for updating recipes on clients
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/players/PlayerList.java b/src/main/java/net/minecraft/server/players/PlayerList.java
|
2024-12-03 22:56:26 +01:00
|
|
|
index 8b54fab09699dec0cb0fb6063accb04e48a36b6e..bd097ae6edfc0ad810d41ed8bbc7fab34d255610 100644
|
2023-08-06 03:11:22 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/players/PlayerList.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/players/PlayerList.java
|
2024-12-03 22:56:26 +01:00
|
|
|
@@ -1449,6 +1449,13 @@ public abstract class PlayerList {
|
2023-08-06 03:11:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void reloadResources() {
|
2024-01-14 16:31:39 +01:00
|
|
|
+ // Paper start - API for updating recipes on clients
|
2023-08-06 03:11:22 +02:00
|
|
|
+ this.reloadAdvancementData();
|
|
|
|
+ this.reloadTagData();
|
2024-11-04 18:42:38 +01:00
|
|
|
+ this.reloadRecipes();
|
2023-08-06 03:11:22 +02:00
|
|
|
+ }
|
|
|
|
+ public void reloadAdvancementData() {
|
2024-01-14 16:31:39 +01:00
|
|
|
+ // Paper end - API for updating recipes on clients
|
2023-08-06 03:11:22 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
/*Iterator iterator = this.advancements.values().iterator();
|
|
|
|
|
2024-12-03 22:56:26 +01:00
|
|
|
@@ -1464,9 +1471,13 @@ public abstract class PlayerList {
|
2023-08-06 03:11:22 +02:00
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2024-01-14 16:31:39 +01:00
|
|
|
+ // Paper start - API for updating recipes on clients
|
2023-08-06 03:11:22 +02:00
|
|
|
+ }
|
|
|
|
+ public void reloadTagData() {
|
|
|
|
this.broadcastAll(new ClientboundUpdateTagsPacket(TagNetworkSerialization.serializeTagsToNetwork(this.registries)));
|
2024-11-04 18:42:38 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
- this.reloadRecipes();
|
|
|
|
+ // this.reloadRecipes(); // Paper - do not reload recipes just because tag data was reloaded
|
2024-01-14 16:31:39 +01:00
|
|
|
+ // Paper end - API for updating recipes on clients
|
2024-11-04 18:42:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void reloadRecipes() {
|
2023-08-06 03:11:22 +02:00
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2024-11-25 19:43:28 +01:00
|
|
|
index 54b5dee7cfd19ad58e376eee80d3827f1a80cfcd..a755137d8d4b266a648cb2a4f41a5ed00262f121 100644
|
2023-08-06 03:11:22 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2024-11-25 19:43:28 +01:00
|
|
|
@@ -1190,6 +1190,18 @@ public final class CraftServer implements Server {
|
2023-10-27 01:34:58 +02:00
|
|
|
ReloadCommand.reload(this.console);
|
2023-08-06 03:11:22 +02:00
|
|
|
}
|
|
|
|
|
2024-01-14 16:31:39 +01:00
|
|
|
+ // Paper start - API for updating recipes on clients
|
2023-08-06 03:11:22 +02:00
|
|
|
+ @Override
|
|
|
|
+ public void updateResources() {
|
|
|
|
+ this.playerList.reloadResources();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void updateRecipes() {
|
2024-11-04 18:42:38 +01:00
|
|
|
+ this.playerList.reloadRecipes();
|
2023-08-06 03:11:22 +02:00
|
|
|
+ }
|
2024-01-14 16:31:39 +01:00
|
|
|
+ // Paper end - API for updating recipes on clients
|
2023-08-06 03:11:22 +02:00
|
|
|
+
|
|
|
|
private void loadIcon() {
|
|
|
|
this.icon = new CraftIconCache(null);
|
|
|
|
try {
|
2024-11-25 19:43:28 +01:00
|
|
|
@@ -1569,6 +1581,13 @@ public final class CraftServer implements Server {
|
2023-08-06 03:11:22 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean addRecipe(Recipe recipe) {
|
2024-01-14 16:31:39 +01:00
|
|
|
+ // Paper start - API for updating recipes on clients
|
2023-08-06 03:11:22 +02:00
|
|
|
+ return this.addRecipe(recipe, false);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public boolean addRecipe(Recipe recipe, boolean resendRecipes) {
|
2024-01-14 16:31:39 +01:00
|
|
|
+ // Paper end - API for updating recipes on clients
|
2023-08-06 03:11:22 +02:00
|
|
|
CraftRecipe toAdd;
|
|
|
|
if (recipe instanceof CraftRecipe) {
|
|
|
|
toAdd = (CraftRecipe) recipe;
|
2024-11-25 19:43:28 +01:00
|
|
|
@@ -1600,6 +1619,11 @@ public final class CraftServer implements Server {
|
2023-08-06 03:11:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
toAdd.addToCraftingManager();
|
2024-01-14 16:31:39 +01:00
|
|
|
+ // Paper start - API for updating recipes on clients
|
2024-10-27 09:43:00 +01:00
|
|
|
+ if (true || resendRecipes) { // Always needs to be resent now... TODO
|
2024-11-04 18:42:38 +01:00
|
|
|
+ this.playerList.reloadRecipes();
|
2023-08-06 03:11:22 +02:00
|
|
|
+ }
|
2024-01-14 16:31:39 +01:00
|
|
|
+ // Paper end - API for updating recipes on clients
|
2023-08-06 03:11:22 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2024-11-25 19:43:28 +01:00
|
|
|
@@ -1780,9 +1804,23 @@ public final class CraftServer implements Server {
|
2023-08-06 03:11:22 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean removeRecipe(NamespacedKey recipeKey) {
|
2024-01-14 16:31:39 +01:00
|
|
|
+ // Paper start - API for updating recipes on clients
|
2023-08-06 03:11:22 +02:00
|
|
|
+ return this.removeRecipe(recipeKey, false);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public boolean removeRecipe(NamespacedKey recipeKey, boolean resendRecipes) {
|
2024-01-14 16:31:39 +01:00
|
|
|
+ // Paper end - API for updating recipes on clients
|
2023-08-06 03:11:22 +02:00
|
|
|
Preconditions.checkArgument(recipeKey != null, "recipeKey == null");
|
|
|
|
|
2024-10-27 09:43:00 +01:00
|
|
|
- return this.getServer().getRecipeManager().removeRecipe(CraftRecipe.toMinecraft(recipeKey));
|
2023-08-06 03:11:22 +02:00
|
|
|
+ // Paper start - resend recipes on successful removal
|
2024-10-27 09:43:00 +01:00
|
|
|
+ final ResourceKey<net.minecraft.world.item.crafting.Recipe<?>> minecraftKey = CraftRecipe.toMinecraft(recipeKey);
|
|
|
|
+ final boolean removed = this.getServer().getRecipeManager().removeRecipe(minecraftKey);
|
|
|
|
+ if (removed/* && resendRecipes*/) { // TODO Always need to resend them rn - deprecate this method?
|
2024-11-04 18:42:38 +01:00
|
|
|
+ this.playerList.reloadRecipes();
|
2023-08-06 03:11:22 +02:00
|
|
|
+ }
|
|
|
|
+ return removed;
|
2024-10-27 09:43:00 +01:00
|
|
|
+ // Paper end - resend recipes on successful removal
|
2023-08-06 03:11:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|