123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 |
- /*
- * 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.api;
- import me.shedaniel.math.Rectangle;
- import me.shedaniel.rei.impl.Internals;
- import net.fabricmc.api.EnvType;
- import net.fabricmc.api.Environment;
- import net.minecraft.client.gui.screens.Screen;
- import net.minecraft.client.gui.screens.inventory.AbstractContainerScreen;
- import net.minecraft.resources.ResourceLocation;
- import net.minecraft.world.item.crafting.Recipe;
- import net.minecraft.world.item.crafting.RecipeManager;
- import org.jetbrains.annotations.ApiStatus;
- import org.jetbrains.annotations.NotNull;
- import org.jetbrains.annotations.Nullable;
- import java.util.List;
- import java.util.Map;
- import java.util.Optional;
- import java.util.function.Function;
- import java.util.function.Predicate;
- @Environment(EnvType.CLIENT)
- public interface RecipeHelper {
-
- /**
- * @return the instance of {@link me.shedaniel.rei.api.RecipeHelper}
- */
- @NotNull
- static RecipeHelper getInstance() {
- return Internals.getRecipeHelper();
- }
-
- AutoTransferHandler registerAutoCraftingHandler(AutoTransferHandler handler);
-
- void registerFocusedStackProvider(FocusedStackProvider provider);
-
- @Nullable
- @ApiStatus.Internal
- EntryStack getScreenFocusedStack(Screen screen);
-
- List<AutoTransferHandler> getSortedAutoCraftingHandler();
-
- /**
- * Gets the total recipe count registered
- *
- * @return the recipe count
- */
- int getRecipeCount();
-
- /**
- * @return a list of sorted recipes
- */
- List<Recipe> getAllSortedRecipes();
-
- /**
- * Gets all craftable items from materials.
- *
- * @param inventoryItems the materials
- * @return the list of craftable entries
- */
- List<EntryStack> findCraftableEntriesByItems(Iterable<EntryStack> inventoryItems);
-
- /**
- * Gets all craftable items from materials.
- *
- * @param inventoryItems the materials
- * @return the list of craftable entries
- */
- default List<EntryStack> findCraftableEntriesByItems(List<EntryStack> inventoryItems) {
- return findCraftableEntriesByItems((Iterable<EntryStack>) inventoryItems);
- }
-
- /**
- * Registers a category
- *
- * @param category the category to register
- */
- void registerCategory(RecipeCategory<?> category);
-
- default void registerCategories(Iterable<RecipeCategory<?>> categories) {
- for (RecipeCategory<?> category : categories) {
- registerCategory(category);
- }
- }
-
- default void registerCategories(RecipeCategory<?>... categories) {
- for (RecipeCategory<?> category : categories) {
- registerCategory(category);
- }
- }
-
- /**
- * Registers the working stations of a category
- *
- * @param category the category
- * @param workingStations the working stations
- */
- void registerWorkingStations(ResourceLocation category, List<EntryStack>... workingStations);
-
- /**
- * Registers the working stations of a category
- *
- * @param category the category
- * @param workingStations the working stations
- */
- void registerWorkingStations(ResourceLocation category, EntryStack... workingStations);
-
- List<List<EntryStack>> getWorkingStations(ResourceLocation category);
-
- /**
- * Registers a recipe display.
- *
- * @param display the recipe display
- */
- void registerDisplay(RecipeDisplay display);
-
- /**
- * Registers a recipe display.
- *
- * @param categoryIdentifier the category to display in
- * @param display the recipe display
- * @deprecated Use {@link RecipeHelper#registerDisplay(RecipeDisplay)}
- */
- @ApiStatus.ScheduledForRemoval
- @Deprecated
- default void registerDisplay(ResourceLocation categoryIdentifier, RecipeDisplay display) {
- registerDisplay(display);
- }
-
- Map<RecipeCategory<?>, List<RecipeDisplay>> buildMapFor(ClientHelper.ViewSearchBuilder builder);
-
- /**
- * Gets a map of recipes for an entry
- *
- * @param stack the stack to be crafted
- * @return the map of recipes
- */
- Map<RecipeCategory<?>, List<RecipeDisplay>> getRecipesFor(EntryStack stack);
-
- RecipeCategory<?> getCategory(ResourceLocation identifier);
-
- /**
- * Gets the vanilla recipe manager
- *
- * @return the recipe manager
- */
- RecipeManager getRecipeManager();
-
- /**
- * Gets all registered categories
- *
- * @return the list of categories
- */
- List<RecipeCategory<?>> getAllCategories();
-
- /**
- * Gets a map of usages for an entry
- *
- * @param stack the stack to be used
- * @return the map of recipes
- */
- Map<RecipeCategory<?>, List<RecipeDisplay>> getUsagesFor(EntryStack stack);
-
- /**
- * Gets the optional of the auto crafting button area from a category
- *
- * @param category the category of the display
- * @return the optional of auto crafting button area
- */
- Optional<ButtonAreaSupplier> getAutoCraftButtonArea(RecipeCategory<?> category);
-
- /**
- * Registers a auto crafting button area
- *
- * @param category the category of the button area
- * @param rectangle the button area
- */
- void registerAutoCraftButtonArea(ResourceLocation category, ButtonAreaSupplier rectangle);
-
- /**
- * Removes the auto crafting button
- *
- * @param category the category of the button
- */
- default void removeAutoCraftButton(ResourceLocation category) {
- registerAutoCraftButtonArea(category, bounds -> null);
- }
-
- /**
- * Gets the map of all recipes visible to the player
- *
- * @return the map of recipes
- */
- Map<RecipeCategory<?>, List<RecipeDisplay>> getAllRecipes();
-
- Map<RecipeCategory<?>, List<RecipeDisplay>> getAllRecipesNoHandlers();
-
- List<RecipeDisplay> getAllRecipesFromCategory(RecipeCategory<?> category);
-
- /**
- * Registers a recipe visibility handler
- *
- * @param visibilityHandler the handler to be registered
- */
- void registerRecipeVisibilityHandler(DisplayVisibilityHandler visibilityHandler);
-
- /**
- * Unregisters a recipe visibility handler
- *
- * @param visibilityHandler the handler to be unregistered
- */
- void unregisterRecipeVisibilityHandler(DisplayVisibilityHandler visibilityHandler);
-
- /**
- * Gets an unmodifiable list of recipe visibility handlers
- *
- * @return the unmodifiable list of handlers
- */
- List<DisplayVisibilityHandler> getDisplayVisibilityHandlers();
-
- boolean isDisplayNotVisible(RecipeDisplay display);
-
- /**
- * Checks if the display is visible by asking recipe visibility handlers
- *
- * @param display the display to be checked
- * @return whether the display should be visible
- */
- boolean isDisplayVisible(RecipeDisplay display);
-
- <T extends Recipe<?>> void registerRecipes(ResourceLocation category, Predicate<Recipe> recipeFilter, Function<T, RecipeDisplay> mappingFunction);
-
- /**
- * Registers a live recipe generator.
- *
- * @param liveRecipeGenerator the generator to register
- * @apiNote Still work in progress
- */
- void registerLiveRecipeGenerator(LiveRecipeGenerator<?> liveRecipeGenerator);
-
- /**
- * @deprecated Use {@link #registerContainerClickArea(Rectangle, Class, ResourceLocation...)} for the same result.
- */
- @Deprecated
- @ApiStatus.ScheduledForRemoval
- default void registerScreenClickArea(Rectangle rectangle, Class<? extends AbstractContainerScreen<?>> screenClass, ResourceLocation... categories) {
- registerContainerClickArea(rectangle, screenClass, categories);
- }
-
- /**
- * Registers a click area for a container screen.
- *
- * @param rectangle The click area that is offset to the container screen's top left corner.
- * @param screenClass The class of the screen.
- * @param categories The categories of result.
- * @param <T> The screen type to be registered to.
- */
- default <T extends AbstractContainerScreen<?>> void registerContainerClickArea(Rectangle rectangle, Class<T> screenClass, ResourceLocation... categories) {
- registerContainerClickArea(screen -> rectangle, screenClass, categories);
- }
-
- /**
- * Registers a click area for a container screen.
- *
- * @param rectangleSupplier The click area supplier that is offset to the container screen's top left corner.
- * @param screenClass The class of the screen.
- * @param categories The categories of result.
- * @param <T> The screen type to be registered to.
- */
- <T extends AbstractContainerScreen<?>> void registerContainerClickArea(ScreenClickAreaProvider<T> rectangleSupplier, Class<T> screenClass, ResourceLocation... categories);
-
- /**
- * Registers a click area for a screen.
- *
- * @param rectangleSupplier The click area supplier that is offset to the window's top left corner.
- * @param screenClass The class of the screen.
- * @param categories The categories of result.
- * @param <T> The screen type to be registered to.
- */
- <T extends Screen> void registerClickArea(ScreenClickAreaProvider<T> rectangleSupplier, Class<T> screenClass, ResourceLocation... categories);
-
- <T extends Recipe<?>> void registerRecipes(ResourceLocation category, Class<T> recipeClass, Function<T, RecipeDisplay> mappingFunction);
-
- <T extends Recipe<?>> void registerRecipes(ResourceLocation category, Function<Recipe, Boolean> recipeFilter, Function<T, RecipeDisplay> mappingFunction);
-
- @ApiStatus.Internal
- List<RecipeHelper.ScreenClickArea> getScreenClickAreas();
-
- @ApiStatus.Internal
- boolean arePluginsLoading();
-
- @ApiStatus.Internal
- interface ScreenClickArea {
- Class<? extends Screen> getScreenClass();
-
- Rectangle getRectangle();
-
- ResourceLocation[] getCategories();
- }
-
- }
|