2021-03-15 23:00:00 +01:00
|
|
|
--- a/net/minecraft/world/item/crafting/CraftingManager.java
|
|
|
|
+++ b/net/minecraft/world/item/crafting/CraftingManager.java
|
2021-11-24 22:00:00 +01:00
|
|
|
@@ -33,11 +33,13 @@
|
2019-06-21 12:00:00 +02:00
|
|
|
import org.apache.logging.log4j.LogManager;
|
|
|
|
import org.apache.logging.log4j.Logger;
|
|
|
|
|
|
|
|
+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();
|
2019-04-25 04:00:00 +02:00
|
|
|
private static final Logger LOGGER = LogManager.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
|
|
|
|
2021-03-15 23:00:00 +01:00
|
|
|
@@ -47,7 +49,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
|
|
|
|
2021-11-24 22:00:00 +01:00
|
|
|
@@ -58,8 +65,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) {
|
2021-11-24 22:00:00 +01:00
|
|
|
@@ -68,20 +77,37 @@
|
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) {
|
|
|
|
- return this.byType(recipes).values().stream().flatMap((irecipe) -> {
|
2019-04-23 04:00:00 +02:00
|
|
|
+ // CraftBukkit start
|
2021-11-21 23:00:00 +01:00
|
|
|
+ Optional<T> recipe = this.byType(recipes).values().stream().flatMap((irecipe) -> {
|
|
|
|
return SystemUtils.toStream(recipes.tryMatch(irecipe, world, c0));
|
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
|
|
|
|
2021-11-21 23:00:00 +01:00
|
|
|
public <C extends IInventory, T extends IRecipe<C>> List<T> getAllRecipesFor(Recipes<T> recipes) {
|
2021-11-24 22:00:00 +01:00
|
|
|
@@ -99,7 +125,7 @@
|
2019-04-23 04:00:00 +02:00
|
|
|
}
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2021-11-21 23:00:00 +01:00
|
|
|
private <C extends IInventory, T extends IRecipe<C>> Map<MinecraftKey, IRecipe<C>> 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) {
|
2021-11-24 22:00:00 +01:00
|
|
|
@@ -119,7 +145,7 @@
|
|
|
|
}
|
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() {
|
|
|
|
@@ -144,12 +170,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);
|
2021-12-13 01:25:22 +01:00
|
|
|
@@ -160,6 +186,26 @@
|
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
|
|
|
|
}
|