2021-03-15 23:00:00 +01:00
--- a/net/minecraft/world/item/crafting/CraftingManager.java
+++ b/net/minecraft/world/item/crafting/CraftingManager.java
2022-06-07 18:00:00 +02:00
@@ -34,11 +34,13 @@
2022-02-28 16:00:00 +01:00
import net.minecraft.world.level.World;
import org.slf4j.Logger;
2019-06-21 12:00:00 +02:00
+import it.unimi.dsi.fastutil.objects.Object2ObjectLinkedOpenHashMap; // CraftBukkit
+
public class CraftingManager extends ResourceDataJson {
2021-06-11 07:00:00 +02:00
private static final Gson GSON = (new GsonBuilder()).setPrettyPrinting().disableHtmlEscaping().create();
2022-02-28 16:00:00 +01:00
private static final Logger LOGGER = LogUtils.getLogger();
2019-06-21 12:00:00 +02:00
- public Map<Recipes<?>, Map<MinecraftKey, IRecipe<?>>> recipes = ImmutableMap.of();
+ public Map<Recipes<?>, Object2ObjectLinkedOpenHashMap<MinecraftKey, IRecipe<?>>> recipes = ImmutableMap.of(); // CraftBukkit
2021-11-24 22:00:00 +01:00
private Map<MinecraftKey, IRecipe<?>> byName = ImmutableMap.of();
2021-06-11 07:00:00 +02:00
private boolean hasErrors;
2019-02-26 01:17:42 +01:00
2022-06-07 18:00:00 +02:00
@@ -48,7 +50,12 @@
2019-04-23 04:00:00 +02:00
2021-11-21 23:00:00 +01:00
protected void apply(Map<MinecraftKey, JsonElement> map, IResourceManager iresourcemanager, GameProfilerFiller gameprofilerfiller) {
2021-06-11 07:00:00 +02:00
this.hasErrors = false;
2019-06-21 12:00:00 +02:00
- Map<Recipes<?>, Builder<MinecraftKey, IRecipe<?>>> map1 = Maps.newHashMap();
2020-04-10 02:56:00 +02:00
+ // 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-24 22:00:00 +01:00
Builder<MinecraftKey, IRecipe<?>> builder = ImmutableMap.builder();
2019-06-21 12:00:00 +02:00
Iterator iterator = map.entrySet().iterator();
2019-04-23 04:00:00 +02:00
2022-06-07 18:00:00 +02:00
@@ -59,8 +66,10 @@
2019-06-21 12:00:00 +02:00
try {
2021-11-21 23:00:00 +01:00
IRecipe<?> irecipe = fromJson(minecraftkey, ChatDeserializer.convertToJsonObject((JsonElement) entry.getValue(), "top element"));
2019-06-21 12:00:00 +02:00
2021-11-21 23:00:00 +01:00
- ((Builder) map1.computeIfAbsent(irecipe.getType(), (recipes) -> {
2019-06-21 12:00:00 +02:00
- return ImmutableMap.builder();
2021-06-13 09:59:01 +02:00
+ // CraftBukkit start
2021-11-21 23:00:00 +01:00
+ (map1.computeIfAbsent(irecipe.getType(), (recipes) -> {
2019-06-21 12:00:00 +02:00
+ return new Object2ObjectLinkedOpenHashMap<>();
2021-06-13 09:59:01 +02:00
+ // CraftBukkit end
})).put(minecraftkey, irecipe);
2021-11-24 22:00:00 +01:00
builder.put(minecraftkey, irecipe);
2019-06-21 12:00:00 +02:00
} catch (IllegalArgumentException | JsonParseException jsonparseexception) {
2022-06-07 18:00:00 +02:00
@@ -69,27 +78,44 @@
2019-02-26 01:17:42 +01:00
}
2019-06-21 12:00:00 +02:00
this.recipes = (Map) map1.entrySet().stream().collect(ImmutableMap.toImmutableMap(Entry::getKey, (entry1) -> {
- return ((Builder) entry1.getValue()).build();
+ return (entry1.getValue()); // CraftBukkit
}));
2021-11-24 22:00:00 +01:00
- this.byName = builder.build();
+ this.byName = Maps.newHashMap(builder.build()); // CraftBukkit
2019-06-21 12:00:00 +02:00
CraftingManager.LOGGER.info("Loaded {} recipes", map1.size());
2019-02-26 01:17:42 +01:00
}
2019-06-21 12:00:00 +02:00
+ // CraftBukkit start
+ public void addRecipe(IRecipe<?> irecipe) {
2021-11-21 23:00:00 +01:00
+ Object2ObjectLinkedOpenHashMap<MinecraftKey, IRecipe<?>> map = this.recipes.get(irecipe.getType()); // CraftBukkit
2019-06-21 12:00:00 +02:00
+
2021-11-24 22:00:00 +01:00
+ if (byName.containsKey(irecipe.getId()) || map.containsKey(irecipe.getId())) {
2021-11-21 23:00:00 +01:00
+ throw new IllegalStateException("Duplicate recipe ignored with ID " + irecipe.getId());
2019-06-21 12:00:00 +02:00
+ } else {
2021-11-21 23:00:00 +01:00
+ map.putAndMoveToFirst(irecipe.getId(), irecipe); // CraftBukkit - SPIGOT-4638: last recipe gets priority
2021-11-24 22:00:00 +01:00
+ byName.put(irecipe.getId(), irecipe);
2019-06-21 12:00:00 +02:00
+ }
+ }
+ // CraftBukkit end
+
2021-11-21 23:00:00 +01:00
public boolean hadErrorsLoading() {
2021-06-11 07:00:00 +02:00
return this.hasErrors;
}
2021-11-21 23:00:00 +01:00
public <C extends IInventory, T extends IRecipe<C>> Optional<T> getRecipeFor(Recipes<T> recipes, C c0, World world) {
2022-06-07 18:00:00 +02:00
- return this.byType(recipes).values().stream().filter((irecipe) -> {
2019-04-23 04:00:00 +02:00
+ // CraftBukkit start
2022-06-07 18:00:00 +02:00
+ Optional<T> recipe = this.byType(recipes).values().stream().filter((irecipe) -> {
return irecipe.matches(c0, world);
2019-04-23 04:00:00 +02:00
}).findFirst();
+ c0.setCurrentRecipe(recipe.orElse(null)); // CraftBukkit - Clear recipe when no recipe is found
+ // CraftBukkit end
+ return recipe;
}
2014-11-25 22:32:16 +01:00
2022-06-07 18:00:00 +02:00
public <C extends IInventory, T extends IRecipe<C>> Optional<Pair<MinecraftKey, T>> getRecipeFor(Recipes<T> recipes, C c0, World world, @Nullable MinecraftKey minecraftkey) {
Map<MinecraftKey, T> map = this.byType(recipes);
if (minecraftkey != null) {
- T t0 = (IRecipe) map.get(minecraftkey);
+ T t0 = map.get(minecraftkey); // CraftBukkit - decompile error
if (t0 != null && t0.matches(c0, world)) {
return Optional.of(Pair.of(minecraftkey, t0));
@@ -99,7 +125,7 @@
return map.entrySet().stream().filter((entry) -> {
return ((IRecipe) entry.getValue()).matches(c0, world);
}).findFirst().map((entry) -> {
- return Pair.of((MinecraftKey) entry.getKey(), (IRecipe) entry.getValue());
+ return Pair.of((MinecraftKey) entry.getKey(), entry.getValue()); // CraftBukkit - decompile error
});
}
@@ -116,7 +142,7 @@
2019-04-23 04:00:00 +02:00
}
2014-11-25 22:32:16 +01:00
2022-06-07 18:00:00 +02:00
private <C extends IInventory, T extends IRecipe<C>> Map<MinecraftKey, T> byType(Recipes<T> recipes) {
2019-06-21 12:00:00 +02:00
- return (Map) this.recipes.getOrDefault(recipes, Collections.emptyMap());
+ return (Map) this.recipes.getOrDefault(recipes, new Object2ObjectLinkedOpenHashMap<>()); // CraftBukkit
2019-04-23 04:00:00 +02:00
}
2015-02-26 23:41:06 +01:00
2021-11-21 23:00:00 +01:00
public <C extends IInventory, T extends IRecipe<C>> NonNullList<ItemStack> getRemainingItemsFor(Recipes<T> recipes, C c0, World world) {
2022-06-07 18:00:00 +02:00
@@ -136,7 +162,7 @@
2021-11-24 22:00:00 +01:00
}
2019-04-23 04:00:00 +02:00
2021-11-21 23:00:00 +01:00
public Optional<? extends IRecipe<?>> byKey(MinecraftKey minecraftkey) {
2021-11-24 22:00:00 +01:00
- return Optional.ofNullable((IRecipe) this.byName.get(minecraftkey));
+ return Optional.ofNullable(this.byName.get(minecraftkey)); // CraftBukkit - decompile error
2017-05-14 04:00:00 +02:00
}
2021-11-24 22:00:00 +01:00
public Collection<IRecipe<?>> getRecipes() {
2022-06-07 18:00:00 +02:00
@@ -161,12 +187,12 @@
2021-06-11 07:00:00 +02:00
2021-11-21 23:00:00 +01:00
public void replaceRecipes(Iterable<IRecipe<?>> iterable) {
2021-06-11 07:00:00 +02:00
this.hasErrors = false;
- Map<Recipes<?>, Map<MinecraftKey, IRecipe<?>>> map = Maps.newHashMap();
+ Map<Recipes<?>, Object2ObjectLinkedOpenHashMap<MinecraftKey, IRecipe<?>>> map = Maps.newHashMap(); // CraftBukkit
2021-11-24 22:00:00 +01:00
Builder<MinecraftKey, IRecipe<?>> builder = ImmutableMap.builder();
2021-06-11 07:00:00 +02:00
iterable.forEach((irecipe) -> {
2021-11-21 23:00:00 +01:00
Map<MinecraftKey, IRecipe<?>> map1 = (Map) map.computeIfAbsent(irecipe.getType(), (recipes) -> {
2021-06-11 07:00:00 +02:00
- return Maps.newHashMap();
+ return new Object2ObjectLinkedOpenHashMap<>(); // CraftBukkit
});
2021-11-24 22:00:00 +01:00
MinecraftKey minecraftkey = irecipe.getId();
IRecipe<?> irecipe1 = (IRecipe) map1.put(minecraftkey, irecipe);
2022-06-07 18:00:00 +02:00
@@ -177,8 +203,28 @@
2021-11-24 22:00:00 +01:00
}
2021-06-11 07:00:00 +02:00
});
this.recipes = ImmutableMap.copyOf(map);
2021-11-24 22:00:00 +01:00
- this.byName = builder.build();
+ this.byName = Maps.newHashMap(builder.build()); // CraftBukkit
+ }
2019-06-21 12:00:00 +02:00
+
+ // CraftBukkit start
2021-12-13 01:25:22 +01:00
+ public boolean removeRecipe(MinecraftKey mcKey) {
+ for (Object2ObjectLinkedOpenHashMap<MinecraftKey, IRecipe<?>> recipes : recipes.values()) {
+ recipes.remove(mcKey);
+ }
+
+ return byName.remove(mcKey) != null;
+ }
+
2019-06-22 10:24:23 +02:00
+ public void clearRecipes() {
+ this.recipes = Maps.newHashMap();
2019-06-21 12:00:00 +02:00
+
2019-06-22 10:24:23 +02:00
+ for (Recipes<?> recipeType : IRegistry.RECIPE_TYPE) {
+ this.recipes.put(recipeType, new Object2ObjectLinkedOpenHashMap<>());
2019-06-21 12:00:00 +02:00
+ }
2021-11-24 22:00:00 +01:00
+
+ this.byName = Maps.newHashMap();
}
2019-06-21 12:00:00 +02:00
+ // CraftBukkit end
2022-06-07 18:00:00 +02:00
public static <C extends IInventory, T extends IRecipe<C>> CraftingManager.a<C, T> createCheck(final Recipes<T> recipes) {
return new CraftingManager.a<C, T>() {
@@ -194,7 +240,7 @@
Pair<MinecraftKey, T> pair = (Pair) optional.get();
this.lastRecipe = (MinecraftKey) pair.getFirst();
- return Optional.of((IRecipe) pair.getSecond());
+ return Optional.of(pair.getSecond()); // CraftBukkit - decompile error
} else {
return Optional.empty();
}