123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- /*
- * 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.RoughlyEnoughItemsCore;
- import me.shedaniel.rei.gui.config.DisplayPanelLocation;
- import me.shedaniel.rei.gui.config.SearchFieldLocation;
- import net.fabricmc.api.EnvType;
- import net.fabricmc.api.Environment;
- import net.minecraft.util.ActionResult;
- import org.jetbrains.annotations.ApiStatus;
- import org.jetbrains.annotations.NotNull;
- import java.util.List;
- import java.util.function.Supplier;
- import static net.minecraft.util.ActionResult.PASS;
- @Environment(EnvType.CLIENT)
- public interface DisplayHelper {
-
- /**
- * @return the api instance of {@link me.shedaniel.rei.impl.DisplayHelperImpl}
- */
- @NotNull
- static DisplayHelper getInstance() {
- return RoughlyEnoughItemsCore.getDisplayHelper();
- }
-
- /**
- * Gets the sorted version of all responsible bounds handlers
- *
- * @param screenClass the class for checking responsible bounds handlers
- * @return the sorted list of responsible bounds handlers
- * @see DisplayHelper#getResponsibleBoundsHandler(Class) for the unsorted version
- */
- @Deprecated
- @ApiStatus.ScheduledForRemoval
- List<DisplayBoundsHandler<?>> getSortedBoundsHandlers(Class<?> screenClass);
-
- List<OverlayDecider> getSortedOverlayDeciders(Class<?> screenClass);
-
- /**
- * Gets all registered overlay deciders
- *
- * @return the list of registered overlay deciders
- */
- List<OverlayDecider> getAllOverlayDeciders();
-
- /**
- * Gets the responsible bounds handlers
- *
- * @param screenClass the class for checking responsible bounds handlers
- * @return the the list of responsible bounds handlers
- * @see DisplayHelper#getSortedBoundsHandlers(Class) for the sorted version
- */
- @Deprecated
- @ApiStatus.ScheduledForRemoval
- DisplayBoundsHandler<?> getResponsibleBoundsHandler(Class<?> screenClass);
-
- /**
- * Registers a bounds decider
- *
- * @param decider the decider to register
- */
- void registerHandler(OverlayDecider decider);
-
- default <T> void registerProvider(DisplayBoundsProvider<T> provider) {
- registerHandler(provider);
- }
-
- /**
- * Gets the left bounds of the overlay
- *
- * @param screen the current screen
- * @return the left bounds
- */
- <T> Rectangle getOverlayBounds(DisplayPanelLocation location, T screen);
-
- @ApiStatus.Experimental
- void resetCache();
-
- interface DisplayBoundsProvider<T> extends OverlayDecider {
- /**
- * @param screen the screen
- * @return the boundary of the base container panel.
- */
- Rectangle getScreenBounds(T screen);
-
- /**
- * Gets the base supported class for the bounds handler
- *
- * @return the base class
- */
- Class<?> getBaseSupportedClass();
-
- @Override
- default boolean isHandingScreen(Class<?> screen) {
- return getBaseSupportedClass().isAssignableFrom(screen);
- }
- }
-
- @Deprecated
- @ApiStatus.ScheduledForRemoval
- interface DisplayBoundsHandler<T> extends OverlayDecider {
- /**
- * Gets the base supported class for the bounds handler
- *
- * @return the base class
- */
- Class<?> getBaseSupportedClass();
-
- @Override
- default boolean isHandingScreen(Class<?> screen) {
- return getBaseSupportedClass().isAssignableFrom(screen);
- }
-
- /**
- * Gets the left bounds of the overlay
- *
- * @param screen the current screen
- * @return the left bounds
- */
- Rectangle getLeftBounds(T screen);
-
- /**
- * Gets the right bounds of the overlay
- *
- * @param screen the current screen
- * @return the right bounds
- */
- Rectangle getRightBounds(T screen);
-
- /**
- * Checks if item slot can fit the screen
- *
- * @param left the left x coordinates of the stack
- * @param top the top y coordinates for the stack
- * @param screen the current screen
- * @param fullBounds the current bounds
- * @return whether the item slot can fit
- * @see BaseBoundsHandler#registerExclusionZones(Class, Supplier) for easier api
- */
- default ActionResult canItemSlotWidgetFit(int left, int top, T screen, Rectangle fullBounds) {
- ActionResult fit = isInZone(left, top);
- if (fit == ActionResult.FAIL)
- return ActionResult.FAIL;
- ActionResult fit2 = isInZone(left + 18, top + 18);
- if (fit2 == ActionResult.FAIL)
- return ActionResult.FAIL;
- if (fit == ActionResult.SUCCESS && fit2 == ActionResult.SUCCESS)
- return ActionResult.SUCCESS;
- return PASS;
- }
-
- @Override
- default ActionResult isInZone(double mouseX, double mouseY) {
- return OverlayDecider.super.isInZone(mouseX, mouseY);
- }
-
- /**
- * Gets the item list bounds by the overlay bounds
- *
- * @param rectangle the overlay bounds
- * @return the item list bounds
- */
- default Rectangle getItemListArea(Rectangle rectangle) {
- return new Rectangle(rectangle.x + 1, rectangle.y + 2 + (ConfigObject.getInstance().getSearchFieldLocation() == SearchFieldLocation.TOP_SIDE ? 24 : 0) + (ConfigObject.getInstance().isEntryListWidgetScrolled() ? 0 : 22), rectangle.width - 2, rectangle.height - (ConfigObject.getInstance().getSearchFieldLocation() != SearchFieldLocation.CENTER ? 27 + 22 : 27) + (!ConfigObject.getInstance().isEntryListWidgetScrolled() ? 0 : 22));
- }
-
- default Rectangle getFavoritesListArea(Rectangle rectangle) {
- int offset = 31 + (ConfigObject.getInstance().doesShowUtilsButtons() ? 25 : 0);
- return new Rectangle(rectangle.x + 1, rectangle.y + 2 + offset, rectangle.width - 2, rectangle.height - 5 - offset);
- }
-
- @Deprecated
- @ApiStatus.ScheduledForRemoval
- default boolean shouldRecalculateArea(boolean isOnRightSide, Rectangle rectangle) {
- return false;
- }
-
- @Override
- default boolean shouldRecalculateArea(DisplayPanelLocation location, Rectangle rectangle) {
- return shouldRecalculateArea(location == DisplayPanelLocation.RIGHT, rectangle);
- }
-
- /**
- * Gets the priority of the handler, the higher it is, the earlier it is called.
- *
- * @return the priority in float
- */
- @Override
- float getPriority();
- }
-
- }
|