craftbukkit/nms-patches/net/minecraft/world/item/crafting/CraftingManager.patch

147 lines
6.6 KiB
Diff
Raw Normal View History

2021-03-16 09:00:00 +11:00
--- a/net/minecraft/world/item/crafting/CraftingManager.java
+++ b/net/minecraft/world/item/crafting/CraftingManager.java
2022-03-01 02:00:00 +11:00
@@ -32,11 +32,13 @@
import net.minecraft.world.level.World;
import org.slf4j.Logger;
2019-06-21 20:00:00 +10:00
+import it.unimi.dsi.fastutil.objects.Object2ObjectLinkedOpenHashMap; // CraftBukkit
+
public class CraftingManager extends ResourceDataJson {
2021-06-11 15:00:00 +10:00
private static final Gson GSON = (new GsonBuilder()).setPrettyPrinting().disableHtmlEscaping().create();
2022-03-01 02:00:00 +11:00
private static final Logger LOGGER = LogUtils.getLogger();
2019-06-21 20:00:00 +10:00
- public Map<Recipes<?>, Map<MinecraftKey, IRecipe<?>>> recipes = ImmutableMap.of();
+ public Map<Recipes<?>, Object2ObjectLinkedOpenHashMap<MinecraftKey, IRecipe<?>>> recipes = ImmutableMap.of(); // CraftBukkit
2021-11-25 08:00:00 +11:00
private Map<MinecraftKey, IRecipe<?>> byName = ImmutableMap.of();
2021-06-11 15:00:00 +10:00
private boolean hasErrors;
2022-03-01 02:00:00 +11:00
@@ -46,7 +48,12 @@
2019-04-23 12:00:00 +10:00
2021-11-22 09:00:00 +11:00
protected void apply(Map<MinecraftKey, JsonElement> map, IResourceManager iresourcemanager, GameProfilerFiller gameprofilerfiller) {
2021-06-11 15:00:00 +10:00
this.hasErrors = false;
2019-06-21 20:00:00 +10:00
- Map<Recipes<?>, Builder<MinecraftKey, IRecipe<?>>> map1 = Maps.newHashMap();
+ // CraftBukkit start - SPIGOT-5667 make sure all types are populated and mutable
+ Map<Recipes<?>, Object2ObjectLinkedOpenHashMap<MinecraftKey, IRecipe<?>>> map1 = Maps.newHashMap();
+ for (Recipes<?> recipeType : IRegistry.RECIPE_TYPE) {
+ map1.put(recipeType, new Object2ObjectLinkedOpenHashMap<>());
+ }
+ // CraftBukkit end
2021-11-25 08:00:00 +11:00
Builder<MinecraftKey, IRecipe<?>> builder = ImmutableMap.builder();
2019-06-21 20:00:00 +10:00
Iterator iterator = map.entrySet().iterator();
2019-04-23 12:00:00 +10:00
2022-03-01 02:00:00 +11:00
@@ -57,8 +64,10 @@
2019-06-21 20:00:00 +10:00
try {
2021-11-22 09:00:00 +11:00
IRecipe<?> irecipe = fromJson(minecraftkey, ChatDeserializer.convertToJsonObject((JsonElement) entry.getValue(), "top element"));
2019-06-21 20:00:00 +10:00
2021-11-22 09:00:00 +11:00
- ((Builder) map1.computeIfAbsent(irecipe.getType(), (recipes) -> {
2019-06-21 20:00:00 +10:00
- return ImmutableMap.builder();
+ // CraftBukkit start
2021-11-22 09:00:00 +11:00
+ (map1.computeIfAbsent(irecipe.getType(), (recipes) -> {
2019-06-21 20:00:00 +10:00
+ return new Object2ObjectLinkedOpenHashMap<>();
+ // CraftBukkit end
})).put(minecraftkey, irecipe);
2021-11-25 08:00:00 +11:00
builder.put(minecraftkey, irecipe);
2019-06-21 20:00:00 +10:00
} catch (IllegalArgumentException | JsonParseException jsonparseexception) {
2022-03-01 02:00:00 +11:00
@@ -67,20 +76,37 @@
}
2019-06-21 20:00:00 +10:00
this.recipes = (Map) map1.entrySet().stream().collect(ImmutableMap.toImmutableMap(Entry::getKey, (entry1) -> {
- return ((Builder) entry1.getValue()).build();
+ return (entry1.getValue()); // CraftBukkit
}));
2021-11-25 08:00:00 +11:00
- this.byName = builder.build();
+ this.byName = Maps.newHashMap(builder.build()); // CraftBukkit
2019-06-21 20:00:00 +10:00
CraftingManager.LOGGER.info("Loaded {} recipes", map1.size());
}
2019-06-21 20:00:00 +10:00
+ // CraftBukkit start
+ public void addRecipe(IRecipe<?> irecipe) {
2021-11-22 09:00:00 +11:00
+ Object2ObjectLinkedOpenHashMap<MinecraftKey, IRecipe<?>> map = this.recipes.get(irecipe.getType()); // CraftBukkit
2019-06-21 20:00:00 +10:00
+
2021-11-25 08:00:00 +11:00
+ if (byName.containsKey(irecipe.getId()) || map.containsKey(irecipe.getId())) {
2021-11-22 09:00:00 +11:00
+ throw new IllegalStateException("Duplicate recipe ignored with ID " + irecipe.getId());
2019-06-21 20:00:00 +10:00
+ } else {
2021-11-22 09:00:00 +11:00
+ map.putAndMoveToFirst(irecipe.getId(), irecipe); // CraftBukkit - SPIGOT-4638: last recipe gets priority
2021-11-25 08:00:00 +11:00
+ byName.put(irecipe.getId(), irecipe);
2019-06-21 20:00:00 +10:00
+ }
+ }
+ // CraftBukkit end
+
2021-11-22 09:00:00 +11:00
public boolean hadErrorsLoading() {
2021-06-11 15:00:00 +10:00
return this.hasErrors;
}
2021-11-22 09:00:00 +11:00
public <C extends IInventory, T extends IRecipe<C>> Optional<T> getRecipeFor(Recipes<T> recipes, C c0, World world) {
- return this.byType(recipes).values().stream().flatMap((irecipe) -> {
2019-04-23 12:00:00 +10:00
+ // CraftBukkit start
2021-11-22 09:00:00 +11:00
+ Optional<T> recipe = this.byType(recipes).values().stream().flatMap((irecipe) -> {
2022-03-01 02:00:00 +11:00
return recipes.tryMatch(irecipe, world, c0).stream();
2019-04-23 12:00:00 +10:00
}).findFirst();
+ c0.setCurrentRecipe(recipe.orElse(null)); // CraftBukkit - Clear recipe when no recipe is found
+ // CraftBukkit end
+ return recipe;
}
2021-11-22 09:00:00 +11:00
public <C extends IInventory, T extends IRecipe<C>> List<T> getAllRecipesFor(Recipes<T> recipes) {
2022-03-01 02:00:00 +11:00
@@ -98,7 +124,7 @@
2019-04-23 12:00:00 +10:00
}
2021-11-22 09:00:00 +11:00
private <C extends IInventory, T extends IRecipe<C>> Map<MinecraftKey, IRecipe<C>> byType(Recipes<T> recipes) {
2019-06-21 20:00:00 +10:00
- return (Map) this.recipes.getOrDefault(recipes, Collections.emptyMap());
+ return (Map) this.recipes.getOrDefault(recipes, new Object2ObjectLinkedOpenHashMap<>()); // CraftBukkit
2019-04-23 12:00:00 +10:00
}
2015-02-26 22:41:06 +00:00
2021-11-22 09:00:00 +11:00
public <C extends IInventory, T extends IRecipe<C>> NonNullList<ItemStack> getRemainingItemsFor(Recipes<T> recipes, C c0, World world) {
2022-03-01 02:00:00 +11:00
@@ -118,7 +144,7 @@
2021-11-25 08:00:00 +11:00
}
2019-04-23 12:00:00 +10:00
2021-11-22 09:00:00 +11:00
public Optional<? extends IRecipe<?>> byKey(MinecraftKey minecraftkey) {
2021-11-25 08:00:00 +11:00
- return Optional.ofNullable((IRecipe) this.byName.get(minecraftkey));
+ return Optional.ofNullable(this.byName.get(minecraftkey)); // CraftBukkit - decompile error
2017-05-14 12:00:00 +10:00
}
2021-11-25 08:00:00 +11:00
public Collection<IRecipe<?>> getRecipes() {
2022-03-01 02:00:00 +11:00
@@ -143,12 +169,12 @@
2021-06-11 15:00:00 +10:00
2021-11-22 09:00:00 +11:00
public void replaceRecipes(Iterable<IRecipe<?>> iterable) {
2021-06-11 15:00:00 +10:00
this.hasErrors = false;
- Map<Recipes<?>, Map<MinecraftKey, IRecipe<?>>> map = Maps.newHashMap();
+ Map<Recipes<?>, Object2ObjectLinkedOpenHashMap<MinecraftKey, IRecipe<?>>> map = Maps.newHashMap(); // CraftBukkit
2021-11-25 08:00:00 +11:00
Builder<MinecraftKey, IRecipe<?>> builder = ImmutableMap.builder();
2021-06-11 15:00:00 +10:00
iterable.forEach((irecipe) -> {
2021-11-22 09:00:00 +11:00
Map<MinecraftKey, IRecipe<?>> map1 = (Map) map.computeIfAbsent(irecipe.getType(), (recipes) -> {
2021-06-11 15:00:00 +10:00
- return Maps.newHashMap();
+ return new Object2ObjectLinkedOpenHashMap<>(); // CraftBukkit
});
2021-11-25 08:00:00 +11:00
MinecraftKey minecraftkey = irecipe.getId();
IRecipe<?> irecipe1 = (IRecipe) map1.put(minecraftkey, irecipe);
2022-03-01 02:00:00 +11:00
@@ -159,6 +185,26 @@
2021-11-25 08:00:00 +11:00
}
2021-06-11 15:00:00 +10:00
});
this.recipes = ImmutableMap.copyOf(map);
2021-11-25 08:00:00 +11:00
- this.byName = builder.build();
+ this.byName = Maps.newHashMap(builder.build()); // CraftBukkit
+ }
2019-06-21 20:00:00 +10:00
+
+ // CraftBukkit start
+ public boolean removeRecipe(MinecraftKey mcKey) {
+ for (Object2ObjectLinkedOpenHashMap<MinecraftKey, IRecipe<?>> recipes : recipes.values()) {
+ recipes.remove(mcKey);
+ }
+
+ return byName.remove(mcKey) != null;
+ }
+
+ public void clearRecipes() {
+ this.recipes = Maps.newHashMap();
2019-06-21 20:00:00 +10:00
+
+ for (Recipes<?> recipeType : IRegistry.RECIPE_TYPE) {
+ this.recipes.put(recipeType, new Object2ObjectLinkedOpenHashMap<>());
2019-06-21 20:00:00 +10:00
+ }
2021-11-25 08:00:00 +11:00
+
+ this.byName = Maps.newHashMap();
}
2019-06-21 20:00:00 +10:00
+ // CraftBukkit end
}