Class StonecutterScreen
java.lang.Object
net.minecraft.client.gui.DrawableHelper
net.minecraft.client.gui.AbstractParentElement
net.minecraft.client.gui.screen.Screen
net.minecraft.client.gui.screen.ingame.HandledScreen<StonecutterScreenHandler>
net.minecraft.client.gui.screen.ingame.StonecutterScreen
- All Implemented Interfaces:
Drawable
,Element
,ParentElement
,ScreenHandlerProvider<StonecutterScreenHandler>
,TickableElement
@Environment(CLIENT) public class StonecutterScreen extends HandledScreen<StonecutterScreenHandler>
-
Field Summary
Fields Modifier and Type Field Description private boolean
canCraft
private boolean
mouseClicked
private float
scrollAmount
private int
scrollOffset
private static Identifier
TEXTURE
Fields inherited from class net.minecraft.client.gui.screen.ingame.HandledScreen
BACKGROUND_TEXTURE, backgroundHeight, backgroundWidth, cursorDragging, cursorDragSlots, focusedSlot, handler, playerInventory, playerInventoryTitleX, playerInventoryTitleY, titleX, titleY, x, y
Fields inherited from class net.minecraft.client.gui.screen.Screen
buttons, children, client, height, itemRenderer, passEvents, textRenderer, title, width
Fields inherited from class net.minecraft.client.gui.DrawableHelper
GUI_ICONS_TEXTURE, OPTIONS_BACKGROUND_TEXTURE, STATS_ICON_TEXTURE
-
Constructor Summary
Constructors Constructor Description StonecutterScreen(StonecutterScreenHandler handler, PlayerInventory inventory, Text title)
-
Method Summary
Modifier and Type Method Description protected void
drawBackground(MatrixStack matrices, float delta, int mouseX, int mouseY)
protected void
drawMouseoverTooltip(MatrixStack matrices, int x, int y)
protected int
getMaxScroll()
boolean
mouseClicked(double mouseX, double mouseY, int button)
Callback for when a mouse button down event has been captured.boolean
mouseDragged(double mouseX, double mouseY, int button, double deltaX, double deltaY)
Callback for when a mouse button drag event has been captured.boolean
mouseScrolled(double mouseX, double mouseY, double amount)
Callback for when a mouse button scroll event has been captured.private void
onInventoryChange()
void
render(MatrixStack matrices, int mouseX, int mouseY, float delta)
private void
renderRecipeBackground(MatrixStack matrixStack, int int2, int int3, int int4, int int5, int int6)
private void
renderRecipeIcons(int x, int y, int scrollOffset)
private boolean
shouldScroll()
Methods inherited from class net.minecraft.client.gui.screen.ingame.HandledScreen
drawForeground, getScreenHandler, handleHotbarKeyPressed, init, isClickOutsideBounds, isPauseScreen, isPointWithinBounds, keyPressed, method_33285, mouseReleased, onClose, onMouseClick, removed, tick
Methods inherited from class net.minecraft.client.gui.screen.Screen
addButton, addChild, children, filesDragged, getNarrationMessage, getTitle, getTooltipFromItem, handleTextClick, hasAltDown, hasControlDown, hasShiftDown, init, insertText, isCopy, isCut, isMouseOver, isPaste, isSelectAll, isValidCharacterForName, renderBackground, renderBackground, renderBackgroundTexture, renderOrderedTooltip, renderTextHoverEffect, renderTooltip, renderTooltip, renderTooltip, renderTooltip, resize, sendMessage, sendMessage, shouldCloseOnEsc, wrapScreenError
Methods inherited from class net.minecraft.client.gui.AbstractParentElement
getFocused, isDragging, setDragging, setFocused
Methods inherited from class net.minecraft.client.gui.DrawableHelper
drawCenteredString, drawCenteredText, drawHorizontalLine, drawSprite, drawStringWithShadow, drawTexture, drawTexture, drawTexture, drawTexture, drawTextWithShadow, drawVerticalLine, fill, fillGradient, fillGradient, getZOffset, method_29343, method_33284, setZOffset
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.minecraft.client.gui.Element
mouseMoved
Methods inherited from interface net.minecraft.client.gui.ParentElement
changeFocus, charTyped, focusOn, hoveredElement, keyReleased, setInitialFocus
-
Field Details
-
TEXTURE
-
scrollAmount
private float scrollAmount -
mouseClicked
private boolean mouseClicked -
scrollOffset
private int scrollOffset -
canCraft
private boolean canCraft
-
-
Constructor Details
-
StonecutterScreen
-
-
Method Details
-
render
- Specified by:
render
in interfaceDrawable
- Overrides:
render
in classHandledScreen<StonecutterScreenHandler>
-
drawBackground
- Specified by:
drawBackground
in classHandledScreen<StonecutterScreenHandler>
-
drawMouseoverTooltip
- Overrides:
drawMouseoverTooltip
in classHandledScreen<StonecutterScreenHandler>
-
renderRecipeBackground
private void renderRecipeBackground(MatrixStack matrixStack, int int2, int int3, int int4, int int5, int int6) -
renderRecipeIcons
private void renderRecipeIcons(int x, int y, int scrollOffset) -
mouseClicked
public boolean mouseClicked(double mouseX, double mouseY, int button)Callback for when a mouse button down event has been captured. The button number is identified by the constants inGLFW
class.- Specified by:
mouseClicked
in interfaceElement
- Specified by:
mouseClicked
in interfaceParentElement
- Overrides:
mouseClicked
in classHandledScreen<StonecutterScreenHandler>
- Parameters:
mouseX
- the X coordinate of the mousemouseY
- the Y coordinate of the mousebutton
- the mouse button number- Returns:
true
to indicate that the event handling is successful/valid- See Also:
Mouse.onMouseButton(long, int, int, int)
,GLFW.GLFW_MOUSE_BUTTON_1
-
mouseDragged
public boolean mouseDragged(double mouseX, double mouseY, int button, double deltaX, double deltaY)Callback for when a mouse button drag event has been captured. The button number is identified by the constants inGLFW
class.- Specified by:
mouseDragged
in interfaceElement
- Specified by:
mouseDragged
in interfaceParentElement
- Overrides:
mouseDragged
in classHandledScreen<StonecutterScreenHandler>
- Parameters:
mouseX
- the current X coordinate of the mousemouseY
- the current Y coordinate of the mousebutton
- the mouse button numberdeltaX
- the difference of the current X with the previous X coordinatedeltaY
- the difference of the current Y with the previous Y coordinate- Returns:
true
to indicate that the event handling is successful/valid- See Also:
Mouse.onCursorPos(long, double, double)
,GLFW.GLFW_MOUSE_BUTTON_1
-
mouseScrolled
public boolean mouseScrolled(double mouseX, double mouseY, double amount)Callback for when a mouse button scroll event has been captured.- Parameters:
mouseX
- the X coordinate of the mousemouseY
- the Y coordinate of the mouseamount
- value is> 1
if scrolled down,< 1
if scrolled up- Returns:
true
to indicate that the event handling is successful/valid- See Also:
Mouse.onMouseScroll(long, double, double)
-
shouldScroll
private boolean shouldScroll() -
getMaxScroll
protected int getMaxScroll() -
onInventoryChange
private void onInventoryChange()
-