Class AdvancementsScreen
java.lang.Object
net.minecraft.client.gui.DrawableHelper
net.minecraft.client.gui.AbstractParentElement
net.minecraft.client.gui.screen.Screen
net.minecraft.client.gui.screen.advancement.AdvancementsScreen
- All Implemented Interfaces:
AdvancementManager.Listener,Drawable,Element,ParentElement,TickableElement,ClientAdvancementManager.Listener
@Environment(CLIENT) public class AdvancementsScreen extends Screen implements ClientAdvancementManager.Listener
-
Field Summary
Fields Modifier and Type Field Description private ClientAdvancementManageradvancementHandlerprivate static TextADVANCEMENTS_TEXTprivate static TextEMPTY_TEXTprivate booleanmovingTabprivate static TextSAD_LABEL_TEXTprivate AdvancementTabselectedTabprivate Map<Advancement,AdvancementTab>tabsprivate static IdentifierTABS_TEXTUREprivate static IdentifierWINDOW_TEXTUREFields inherited from class net.minecraft.client.gui.screen.Screen
buttons, children, client, height, itemRenderer, passEvents, textRenderer, title, widthFields inherited from class net.minecraft.client.gui.DrawableHelper
GUI_ICONS_TEXTURE, OPTIONS_BACKGROUND_TEXTURE, STATS_ICON_TEXTURE -
Constructor Summary
Constructors Constructor Description AdvancementsScreen(ClientAdvancementManager advancementHandler) -
Method Summary
Modifier and Type Method Description private voiddrawAdvancementTree(MatrixStack matrixStack, int mouseY, int int2, int int3, int int4)voiddrawWidgets(MatrixStack matrixStack, int int2, int int3)private voiddrawWidgetTooltip(MatrixStack matrixStack, int int2, int int3, int int4, int int5)AdvancementWidgetgetAdvancementWidget(Advancement advancement)private AdvancementTabgetTab(Advancement advancement)protected voidinit()Called when a screen should be initialized.booleankeyPressed(int keyCode, int scanCode, int modifiers)Callback for when a key down event has been captured.booleanmouseClicked(double mouseX, double mouseY, int button)Callback for when a mouse button down event has been captured.booleanmouseDragged(double mouseX, double mouseY, int button, double deltaX, double deltaY)Callback for when a mouse button drag event has been captured.voidonClear()voidonDependentAdded(Advancement dependent)voidonDependentRemoved(Advancement dependent)voidonRootAdded(Advancement root)voidonRootRemoved(Advancement root)voidremoved()voidrender(MatrixStack matrices, int mouseX, int mouseY, float delta)voidselectTab(Advancement advancement)voidsetProgress(Advancement advancement, AdvancementProgress progress)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, isPauseScreen, isSelectAll, isValidCharacterForName, onClose, renderBackground, renderBackground, renderBackgroundTexture, renderOrderedTooltip, renderTextHoverEffect, renderTooltip, renderTooltip, renderTooltip, renderTooltip, resize, sendMessage, sendMessage, shouldCloseOnEsc, tick, wrapScreenErrorMethods inherited from class net.minecraft.client.gui.AbstractParentElement
getFocused, isDragging, setDragging, setFocusedMethods 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, setZOffsetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.minecraft.client.gui.Element
mouseMovedMethods inherited from interface net.minecraft.client.gui.ParentElement
changeFocus, charTyped, focusOn, hoveredElement, keyReleased, mouseReleased, mouseScrolled, setInitialFocus
-
Field Details
-
WINDOW_TEXTURE
-
TABS_TEXTURE
-
SAD_LABEL_TEXT
-
EMPTY_TEXT
-
ADVANCEMENTS_TEXT
-
advancementHandler
-
tabs
-
selectedTab
-
movingTab
private boolean movingTab
-
-
Constructor Details
-
AdvancementsScreen
-
-
Method Details
-
init
protected void init()Called when a screen should be initialized.This method is called when this screen is opened or resized.
-
removed
public void removed() -
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 inGLFWclass.- Specified by:
mouseClickedin interfaceElement- Specified by:
mouseClickedin interfaceParentElement- Parameters:
mouseX- the X coordinate of the mousemouseY- the Y coordinate of the mousebutton- the mouse button number- Returns:
trueto indicate that the event handling is successful/valid- See Also:
Mouse.onMouseButton(long, int, int, int),GLFW.GLFW_MOUSE_BUTTON_1
-
keyPressed
public boolean keyPressed(int keyCode, int scanCode, int modifiers)Callback for when a key down event has been captured. The key code is identified by the constants inGLFWclass.- Specified by:
keyPressedin interfaceElement- Specified by:
keyPressedin interfaceParentElement- Overrides:
keyPressedin classScreen- Parameters:
keyCode- the named key code of the event as described in theGLFWclassscanCode- the unique/platform-specific scan code of the keyboard inputmodifiers- a GLFW bitfield describing the modifier keys that are held down (see GLFW Modifier key flags)- Returns:
trueto indicate that the event handling is successful/valid- See Also:
Keyboard.onKey(long, int, int, int, int),GLFW.GLFW_KEY_Q,GLFWKeyCallbackI.invoke(long, int, int, int, int)
-
render
-
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 inGLFWclass.- Specified by:
mouseDraggedin interfaceElement- Specified by:
mouseDraggedin interfaceParentElement- 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:
trueto indicate that the event handling is successful/valid- See Also:
Mouse.onCursorPos(long, double, double),GLFW.GLFW_MOUSE_BUTTON_1
-
drawAdvancementTree
private void drawAdvancementTree(MatrixStack matrixStack, int mouseY, int int2, int int3, int int4) -
drawWidgets
-
drawWidgetTooltip
-
onRootAdded
- Specified by:
onRootAddedin interfaceAdvancementManager.Listener
-
onRootRemoved
- Specified by:
onRootRemovedin interfaceAdvancementManager.Listener
-
onDependentAdded
- Specified by:
onDependentAddedin interfaceAdvancementManager.Listener
-
onDependentRemoved
- Specified by:
onDependentRemovedin interfaceAdvancementManager.Listener
-
setProgress
- Specified by:
setProgressin interfaceClientAdvancementManager.Listener
-
selectTab
- Specified by:
selectTabin interfaceClientAdvancementManager.Listener
-
onClear
public void onClear()- Specified by:
onClearin interfaceAdvancementManager.Listener
-
getAdvancementWidget
-
getTab
-