diff options
| author | shedaniel <daniel@shedaniel.me> | 2020-12-20 19:59:49 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2020-12-20 19:59:49 +0800 |
| commit | 67171a5ff24ed77e6c4cc889543e8dfb543e8fe5 (patch) | |
| tree | 02909ac26d2b74ebf08f5c463f1b9a60483468df /RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server | |
| parent | 9784e9f7228fc0aa3ca814e3830dbd81996a3693 (diff) | |
| download | RoughlyEnoughItems-67171a5ff24ed77e6c4cc889543e8dfb543e8fe5.tar.gz RoughlyEnoughItems-67171a5ff24ed77e6c4cc889543e8dfb543e8fe5.tar.bz2 RoughlyEnoughItems-67171a5ff24ed77e6c4cc889543e8dfb543e8fe5.zip | |
wip more
Signed-off-by: shedaniel <daniel@shedaniel.me>
Diffstat (limited to 'RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server')
12 files changed, 0 insertions, 908 deletions
diff --git a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/ContainerContext.java b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/ContainerContext.java deleted file mode 100644 index 805166dc8..000000000 --- a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/ContainerContext.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * This file is licensed under the MIT License, part of Roughly Enough Items. - * Copyright (c) 2018, 2019, 2020 shedaniel - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ - -package me.shedaniel.rei.server; - -import net.minecraft.world.entity.player.Player; -import net.minecraft.world.inventory.AbstractContainerMenu; - -public interface ContainerContext<T extends AbstractContainerMenu> { - T getContainer(); - - Player getPlayerEntity(); - - ContainerInfo<T> getContainerInfo(); - - default StackAccessor getStack(int slotIndex) { - return getContainerInfo().getStack(this, slotIndex); - } -} diff --git a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/ContainerInfo.java b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/ContainerInfo.java deleted file mode 100644 index 79da344ce..000000000 --- a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/ContainerInfo.java +++ /dev/null @@ -1,118 +0,0 @@ -/* - * This file is licensed under the MIT License, part of Roughly Enough Items. - * Copyright (c) 2018, 2019, 2020 shedaniel - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ - -package me.shedaniel.rei.server; - -import net.minecraft.core.NonNullList; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.entity.player.Inventory; -import net.minecraft.world.inventory.AbstractContainerMenu; -import net.minecraft.world.inventory.Slot; -import net.minecraft.world.item.ItemStack; - -import java.util.List; -import java.util.stream.Collectors; -import java.util.stream.IntStream; - -public interface ContainerInfo<T extends AbstractContainerMenu> { - Class<? extends AbstractContainerMenu> getContainerClass(); - - default StackAccessor getStack(ContainerContext<T> context, int slotIndex) { - return new SlotStackAccessor(context.getContainer().getSlot(slotIndex)); - } - - default GridCleanHandler<T> getGridCleanHandler() { - return context -> { - T container = context.getContainer(); - for (StackAccessor gridStack : getGridStacks(context)) { - GridCleanHandler.returnSlotToPlayerInventory(context, gridStack); - } - - clearCraftingSlots(container); - }; - } - - default DumpHandler<T> getDumpHandler() { - return (context, stackToInsert) -> { - List<StackAccessor> inventoryStacks = context.getContainerInfo().getInventoryStacks(context); - - StackAccessor nextSlot = DumpHandler.getOccupiedSlotWithRoomForStack(stackToInsert, inventoryStacks); - if (nextSlot == null) { - nextSlot = DumpHandler.getEmptySlot(inventoryStacks); - } - if (nextSlot == null) { - return false; - } - - ItemStack stack = stackToInsert.copy(); - stack.setCount(nextSlot.getItemStack().getCount() + stack.getCount()); - nextSlot.setItemStack(stack); - return true; - }; - } - - default RecipeFinderPopulator<T> getRecipeFinderPopulator() { - return context -> recipeFinder -> { - for (StackAccessor inventoryStack : getInventoryStacks(context)) { - recipeFinder.addNormalItem(inventoryStack.getItemStack()); - } - populateRecipeFinder(context.getContainer(), recipeFinder); - }; - } - - default List<StackAccessor> getGridStacks(ContainerContext<T> context) { - return IntStream.range(0, getCraftingWidth(context.getContainer()) * getCraftingHeight(context.getContainer()) + 1) - .filter(value -> value != getCraftingResultSlotIndex(context.getContainer())) - .mapToObj(context::getStack) - .collect(Collectors.toList()); - } - - default List<StackAccessor> getInventoryStacks(ContainerContext<T> context) { - Inventory inventory = context.getPlayerEntity().getInventory(); - return IntStream.range(0, inventory.items.size()) - .mapToObj(index -> (StackAccessor) new InventoryStackAccessor(inventory, index)) - .collect(Collectors.toList()); - } - - default void markDirty(ContainerContext<T> context) { - context.getPlayerEntity().getInventory().setChanged(); - context.getContainer().broadcastChanges(); - - NonNullList<ItemStack> defaultedList = NonNullList.create(); - for (Slot slot : context.getPlayerEntity().containerMenu.slots) { - defaultedList.add(slot.getItem()); - } - - ((ServerPlayer) context.getPlayerEntity()).refreshContainer(context.getPlayerEntity().containerMenu, defaultedList); - } - - int getCraftingResultSlotIndex(T container); - - int getCraftingWidth(T container); - - int getCraftingHeight(T container); - - default void clearCraftingSlots(T container) {} - - default void populateRecipeFinder(T container, RecipeFinder var1) {} -} diff --git a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/ContainerInfoHandler.java b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/ContainerInfoHandler.java deleted file mode 100644 index a1149f5e1..000000000 --- a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/ContainerInfoHandler.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * This file is licensed under the MIT License, part of Roughly Enough Items. - * Copyright (c) 2018, 2019, 2020 shedaniel - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ - -package me.shedaniel.rei.server; - -import com.google.common.collect.Maps; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.world.inventory.AbstractContainerMenu; - -import java.util.Map; - -public class ContainerInfoHandler { - private static final Map<String, Map<Class<? extends AbstractContainerMenu>, ContainerInfo<? extends AbstractContainerMenu>>> containerInfoMap = Maps.newLinkedHashMap(); - - public static void registerContainerInfo(ResourceLocation category, ContainerInfo<? extends AbstractContainerMenu> containerInfo) { - if (!containerInfoMap.containsKey(category.toString())) - containerInfoMap.put(category.toString(), Maps.newLinkedHashMap()); - containerInfoMap.get(category.toString()).put(containerInfo.getContainerClass(), containerInfo); - } - - public static boolean isCategoryHandled(ResourceLocation category) { - return containerInfoMap.containsKey(category.toString()) && !containerInfoMap.get(category.toString()).isEmpty(); - } - - public static ContainerInfo<? extends AbstractContainerMenu> getContainerInfo(ResourceLocation category, Class<?> containerClass) { - if (!isCategoryHandled(category)) - return null; - Map<Class<? extends AbstractContainerMenu>, ContainerInfo<? extends AbstractContainerMenu>> infoMap = containerInfoMap.get(category.toString()); - if (infoMap.containsKey(containerClass)) - return infoMap.get(containerClass); - for (Map.Entry<Class<? extends AbstractContainerMenu>, ContainerInfo<? extends AbstractContainerMenu>> entry : infoMap.entrySet()) - if (entry.getKey().isAssignableFrom(containerClass)) - return entry.getValue(); - return null; - } -} diff --git a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/DumpHandler.java b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/DumpHandler.java deleted file mode 100644 index 9db906ee3..000000000 --- a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/DumpHandler.java +++ /dev/null @@ -1,58 +0,0 @@ -/* - * This file is licensed under the MIT License, part of Roughly Enough Items. - * Copyright (c) 2018, 2019, 2020 shedaniel - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ - -package me.shedaniel.rei.server; - -import net.minecraft.world.inventory.AbstractContainerMenu; -import net.minecraft.world.item.ItemStack; - -import java.util.List; - -@FunctionalInterface -public interface DumpHandler<T extends AbstractContainerMenu> { - boolean dump(ContainerContext<T> context, ItemStack stackToInsert); - - static StackAccessor getOccupiedSlotWithRoomForStack(ItemStack stack, List<StackAccessor> inventoryStacks) { - for (StackAccessor inventoryStack : inventoryStacks) { - if (canStackAddMore(inventoryStack.getItemStack(), stack)) { - return inventoryStack; - } - } - - return null; - } - - static StackAccessor getEmptySlot(List<StackAccessor> inventoryStacks) { - for (StackAccessor inventoryStack : inventoryStacks) { - if (inventoryStack.getItemStack().isEmpty()) { - return inventoryStack; - } - } - - return null; - } - - static boolean canStackAddMore(ItemStack existingStack, ItemStack stack) { - return !existingStack.isEmpty() && ItemStack.isSameIgnoreDurability(existingStack, stack) && existingStack.isStackable() && existingStack.getCount() + stack.getCount() <= existingStack.getMaxStackSize(); - } -} diff --git a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/GridCleanHandler.java b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/GridCleanHandler.java deleted file mode 100644 index 6eab52a53..000000000 --- a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/GridCleanHandler.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * This file is licensed under the MIT License, part of Roughly Enough Items. - * Copyright (c) 2018, 2019, 2020 shedaniel - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ - -package me.shedaniel.rei.server; - -import net.minecraft.world.inventory.AbstractContainerMenu; -import net.minecraft.world.item.ItemStack; - -@FunctionalInterface -public interface GridCleanHandler<T extends AbstractContainerMenu> { - void clean(ContainerContext<T> context); - - static void error(String translationKey) { - throw new IllegalStateException(translationKey); - } - - static <T extends AbstractContainerMenu> void returnSlotToPlayerInventory(ContainerContext<T> context, StackAccessor stackAccessor) { - DumpHandler<T> dumpHandler = context.getContainerInfo().getDumpHandler(); - ItemStack stackToReturn = stackAccessor.getItemStack(); - if (!stackToReturn.isEmpty()) { - for (; stackToReturn.getCount() > 0; stackAccessor.takeStack(1)) { - ItemStack stackToInsert = stackToReturn.copy(); - stackToInsert.setCount(1); - if (!dumpHandler.dump(context, stackToInsert)) { - error("rei.rei.no.slot.in.inv"); - } - } - } - } -} diff --git a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/GridStacksProvider.java b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/GridStacksProvider.java deleted file mode 100644 index aabdea6be..000000000 --- a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/GridStacksProvider.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * This file is licensed under the MIT License, part of Roughly Enough Items. - * Copyright (c) 2018, 2019, 2020 shedaniel - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ - -package me.shedaniel.rei.server; - -import net.minecraft.world.inventory.AbstractContainerMenu; - -@FunctionalInterface -public interface GridStacksProvider<T extends AbstractContainerMenu> { - Iterable<StackAccessor> getStacks(ContainerContext<T> context); -} diff --git a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/InventoryStackAccessor.java b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/InventoryStackAccessor.java deleted file mode 100644 index 750c7de39..000000000 --- a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/InventoryStackAccessor.java +++ /dev/null @@ -1,52 +0,0 @@ -/* - * This file is licensed under the MIT License, part of Roughly Enough Items. - * Copyright (c) 2018, 2019, 2020 shedaniel - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ - -package me.shedaniel.rei.server; - -import net.minecraft.world.Container; -import net.minecraft.world.item.ItemStack; - -public class InventoryStackAccessor implements StackAccessor { - protected Container inventory; - protected int index; - - public InventoryStackAccessor(Container inventory, int index) { - this.inventory = inventory; - this.index = index; - } - - @Override - public ItemStack getItemStack() { - return inventory.getItem(index); - } - - @Override - public void setItemStack(ItemStack stack) { - this.inventory.setItem(index, stack); - } - - @Override - public ItemStack takeStack(int amount) { - return this.inventory.removeItem(index, amount); - } -} diff --git a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/RecipeFinder.java b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/RecipeFinder.java deleted file mode 100644 index 5fa12c775..000000000 --- a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/server/RecipeFinder.java +++ /dev/null @@ -1,341 +0,0 @@ -/* - * This file is licensed under the MIT License, part of Roughly Enough Items. - * Copyright (c) 2018, 2019, 2020 shedaniel - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ - -package me.shedaniel.rei.server; - -import com.google.common.collect.Lists; -import it.unimi.dsi.fastutil.ints.*; -import net.minecraft.core.NonNullList; -import net.minecraft.core.Registry; -import net.minecraft.world.item.Item; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.item.crafting.Ingredient; -import org.jetbrains.annotations.ApiStatus; -import org.jetbrains.annotations.Nullable; - -import java.util.ArrayList; -import java.util.BitSet; -import java.util.List; - -@ApiStatus.Internal -public class RecipeFinder { - public final Int2IntMap idToAmountMap = new Int2IntOpenHashMap(); - - public static int getItemId(ItemStack itemStack_1) { - return Registry.ITEM.getId(itemStack_1.getItem()); - } - - public static ItemStack getStackFromId(int int_1) { - return int_1 == 0 ? ItemStack.EMPTY : new ItemStack(Item.byId(int_1)); - } - - public void addNormalItem(ItemStack itemStack_1) { - if (!itemStack_1.isDamaged() && !itemStack_1.isEnchanted() && !itemStack_1.hasCustomHoverName()) { - this.addItem(itemStack_1); - } - - } - - public void addItem(ItemStack itemStack_1) { - this.addItem(itemStack_1, 64); - } - - public void addItem(ItemStack itemStack_1, int int_1) { - if (!itemStack_1.isEmpty()) { - int itemId = getItemId(itemStack_1); - int itemCount = Math.min(int_1, itemStack_1.getCount()); - this.addItem(itemId, itemCount); - } - - } - - public boolean contains(int itemId) { - return this.idToAmountMap.get(itemId) > 0; - } - - /** - * Takes an amount from the finder - * - * @return the amount taken - */ - public int take(int itemId, int amount) { - int mapAmount = this.idToAmountMap.get(itemId); - if (mapAmount >= amount) { - this.idToAmountMap.put(itemId, mapAmount - amount); - return itemId; - } else { - return 0; - } - } - - private void addItem(int itemId, int itemCount) { - this.idToAmountMap.put(itemId, this.idToAmountMap.get(itemId) + itemCount); - } - - public boolean findRecipe(NonNullList<Ingredient> ingredients, @Nullable IntList intList_1) { - return this.findRecipe(ingredients, intList_1, 1); - } - - public boolean findRecipe(NonNullList<Ingredient> ingredients, @Nullable IntList intList_1, int int_1) { - return (new RecipeFinder.Filter(ingredients)).find(int_1, intList_1); - } - - public int countRecipeCrafts(NonNullList<Ingredient> ingredients, @Nullable IntList intList_1) { - return this.countRecipeCrafts(ingredients, Integer.MAX_VALUE, intList_1); - } - - public int countRecipeCrafts(NonNullList<Ingredient> ingredients, int int_1, @Nullable IntList intList_1) { - return (new RecipeFinder.Filter(ingredients)).countCrafts(int_1, intList_1); - } - - public void clear() { - this.idToAmountMap.clear(); - } - - class Filter { - private final List<Ingredient> ingredients = Lists.newArrayList(); - private final int ingredientCount; - private final int[] usableIngredientItemIds; - private final int usableIngredientSize; - private final BitSet bitSet; - private final IntList field_7557 = new IntArrayList(); - private final NonNullList<Ingredient> ingredientsInput; - - public Filter(NonNullList<Ingredient> ingredientsInput) { - this.ingredientsInput = ingredientsInput; - this.ingredients.addAll(new ArrayList<>(ingredientsInput)); - this.ingredients.removeIf(Ingredient::isEmpty); - this.ingredientCount = this.ingredients.size(); - this.usableIngredientItemIds = this.getUsableIngredientItemIds(); - this.usableIngredientSize = this.usableIngredientItemIds.length; - this.bitSet = new BitSet(this.ingredientCount + this.usableIngredientSize + this.ingredientCount + this.ingredientCount * this.usableIngredientSize); - - for (int ingredientIndex = 0; ingredientIndex < this.ingredients.size(); ++ingredientIndex) { - IntList possibleStacks = this.ingredients.get(ingredientIndex).getStackingIds(); - - // Loops over usable ingredients - for (int usableIngredientIndex = 0; usableIngredientIndex < this.usableIngredientSize; ++usableIngredientIndex) { - if (possibleStacks.contains(this.usableIngredientItemIds[usableIngredientIndex])) { - this.bitSet.set(this.method_7420(true, usableIngredientIndex, ingredientIndex)); - } - } - } - - } - - @SuppressWarnings("deprecation") - public boolean find(int int_1, @Nullable IntList intList_1) { - if (int_1 <= 0) { - return true; - } else { - int int_2; - for (int_2 = 0; this.method_7423(int_1); ++int_2) { - RecipeFinder.this.take(this.usableIngredientItemIds[this.field_7557.getInt(0)], int_1); - int int_3 = this.field_7557.size() - 1; - this.method_7421(this.field_7557.getInt(int_3)); - - for (int int_4 = 0; int_4 < int_3; ++int_4) { - this.method_7414((int_4 & 1) == 0, this.field_7557.get(int_4), this.field_7557.get(int_4 + 1)); - } - - this.field_7557.clear(); - this.bitSet.clear(0, this.ingredientCount + this.usableIngredientSize); - } - - boolean boolean_1 = int_2 == this.ingredientCount; - boolean boolean_2 = boolean_1 && intList_1 != null; - if (boolean_2) { - intList_1.clear(); - } - - this.bitSet.clear(0, this.ingredientCount + this.usableIngredientSize + this.ingredientCount); - int int_5 = 0; - List<Ingredient> list_1 = new ArrayList<>(ingredientsInput); - - for (Ingredient ingredient : list_1) { - if (boolean_2 && ingredient.isEmpty()) { - intList_1.add(0); - } else { - for (int int_7 = 0; int_7 < this.usableIngredientSize; ++int_7) { - if (this.method_7425(false, int_5, int_7)) { - this.method_7414(true, int_7, int_5); - RecipeFinder.this.addItem(this.usableIngredientItemIds[int_7], int_1); - if (boolean_2) { - intList_1.add(this.usableIngredientItemIds[int_7]); - } - } - } - - ++int_5; - } - } - - return boolean_1; - } - } - - private int[] getUsableIngredientItemIds() { - IntCollection intCollection_1 = new IntAVLTreeSet(); - - for (Ingredient ingredient_1 : this.ingredients) { - intCollection_1.addAll(ingredient_1.getStackingIds()); - } - - IntIterator intIterator_1 = intCollection_1.iterator(); - - while (intIterator_1.hasNext()) { - if (!RecipeFinder.this.contains(intIterator_1.nextInt())) { - intIterator_1.remove(); - } - } - - return intCollection_1.toIntArray(); - } - - private boolean method_7423(int int_1) { - int usableIngredientSize = this.usableIngredientSize; - - for (int int_3 = 0; int_3 < usableIngredientSize; ++int_3) { - if (RecipeFinder.this.idToAmountMap.get(this.usableIngredientItemIds[int_3]) >= int_1) { - this.method_7413(false, int_3); - - while (!this.field_7557.isEmpty()) { - int int_4 = this.field_7557.size(); - boolean boolean_1 = (int_4 & 1) == 1; - int int_5 = this.field_7557.getInt(int_4 - 1); - if (!boolean_1 && !this.method_7416(int_5)) { - break; - } - - int int_6 = boolean_1 ? this.ingredientCount : usableIngredientSize; - - int int_8; - for (int_8 = 0; int_8 < int_6; ++int_8) { - if (!this.method_7426(boolean_1, int_8) && this.method_7418(boolean_1, int_5, int_8) && this.method_7425(boolean_1, int_5, int_8)) { - this.method_7413(boolean_1, int_8); - break; - } - } - - int_8 = this.field_7557.size(); - if (int_8 == int_4) { - this.field_7557.removeInt(int_8 - 1); - } - } - - if (!this.field_7557.isEmpty()) { - return true; - } - } - } - - return false; - } - - private boolean |
