Package net.minecraft.client.gui.screen
Class DirectConnectScreen
java.lang.Object
net.minecraft.client.gui.DrawableHelper
net.minecraft.client.gui.AbstractParentElement
net.minecraft.client.gui.screen.Screen
net.minecraft.client.gui.screen.DirectConnectScreen
- All Implemented Interfaces:
Drawable
,Element
,ParentElement
,TickableElement
@Environment(CLIENT) public class DirectConnectScreen extends Screen
- Mappings:
Namespace Name official duk
intermediary net/minecraft/class_420
named net/minecraft/client/gui/screen/DirectConnectScreen
-
Field Summary
Fields Modifier and Type Field Description private TextFieldWidget
addressField
private BooleanConsumer
callback
private static Text
ENTER_IP_TEXT
private Screen
parent
private ButtonWidget
selectServerButton
private ServerInfo
serverEntry
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 DirectConnectScreen(Screen parent, BooleanConsumer callback, ServerInfo server)
-
Method Summary
Modifier and Type Method Description protected void
init()
Called when a screen should be initialized.boolean
keyPressed(int keyCode, int scanCode, int modifiers)
Callback for when a key down event has been captured.private void
onAddressFieldChanged()
void
onClose()
void
removed()
void
render(MatrixStack matrices, int mouseX, int mouseY, float delta)
void
resize(MinecraftClient client, int width, int height)
private void
saveAndClose()
void
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, isPauseScreen, isSelectAll, isValidCharacterForName, renderBackground, renderBackground, renderBackgroundTexture, renderOrderedTooltip, renderTextHoverEffect, renderTooltip, renderTooltip, renderTooltip, renderTooltip, 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, mouseClicked, mouseDragged, mouseReleased, mouseScrolled, setInitialFocus
-
Field Details
-
ENTER_IP_TEXT
- Mappings:
Namespace Name Mixin selector official a
Lduk;a:Loi;
intermediary field_26540
Lnet/minecraft/class_420;field_26540:Lnet/minecraft/class_2561;
named ENTER_IP_TEXT
Lnet/minecraft/client/gui/screen/DirectConnectScreen;ENTER_IP_TEXT:Lnet/minecraft/text/Text;
-
selectServerButton
- Mappings:
Namespace Name Mixin selector official b
Lduk;b:Ldru;
intermediary field_2462
Lnet/minecraft/class_420;field_2462:Lnet/minecraft/class_4185;
named selectServerButton
Lnet/minecraft/client/gui/screen/DirectConnectScreen;selectServerButton:Lnet/minecraft/client/gui/widget/ButtonWidget;
-
serverEntry
- Mappings:
Namespace Name Mixin selector official c
Lduk;c:Leee;
intermediary field_2460
Lnet/minecraft/class_420;field_2460:Lnet/minecraft/class_642;
named serverEntry
Lnet/minecraft/client/gui/screen/DirectConnectScreen;serverEntry:Lnet/minecraft/client/network/ServerInfo;
-
addressField
- Mappings:
Namespace Name Mixin selector official p
Lduk;p:Ldsc;
intermediary field_2463
Lnet/minecraft/class_420;field_2463:Lnet/minecraft/class_342;
named addressField
Lnet/minecraft/client/gui/screen/DirectConnectScreen;addressField:Lnet/minecraft/client/gui/widget/TextFieldWidget;
-
callback
- Mappings:
Namespace Name Mixin selector official q
Lduk;q:Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;
intermediary field_19235
Lnet/minecraft/class_420;field_19235:Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;
named callback
Lnet/minecraft/client/gui/screen/DirectConnectScreen;callback:Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;
-
parent
- Mappings:
Namespace Name Mixin selector official r
Lduk;r:Ldve;
intermediary field_21790
Lnet/minecraft/class_420;field_21790:Lnet/minecraft/class_437;
named parent
Lnet/minecraft/client/gui/screen/DirectConnectScreen;parent:Lnet/minecraft/client/gui/screen/Screen;
-
-
Constructor Details
-
DirectConnectScreen
- Mappings:
Namespace Name Mixin selector official <init>
Lduk;<init>(Ldve;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Leee;)V
intermediary <init>
Lnet/minecraft/class_420;<init>(Lnet/minecraft/class_437;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/class_642;)V
named <init>
Lnet/minecraft/client/gui/screen/DirectConnectScreen;<init>(Lnet/minecraft/client/gui/screen/Screen;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/client/network/ServerInfo;)V
-
-
Method Details
-
tick
public void tick()- Specified by:
tick
in interfaceTickableElement
- Overrides:
tick
in classScreen
- Mappings:
Namespace Name Mixin selector official d
Ldsn;d()V
intermediary method_25393
Lnet/minecraft/class_4893;method_25393()V
named tick
Lnet/minecraft/client/gui/screen/TickableElement;tick()V
-
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 inGLFW
class.- Specified by:
keyPressed
in interfaceElement
- Specified by:
keyPressed
in interfaceParentElement
- Overrides:
keyPressed
in classScreen
- Parameters:
keyCode
- the named key code of the event as described in theGLFW
classscanCode
- 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:
true
to 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)
- Mappings:
Namespace Name Mixin selector official a
Ldst;a(III)Z
intermediary method_25404
Lnet/minecraft/class_364;method_25404(III)Z
named keyPressed
Lnet/minecraft/client/gui/Element;keyPressed(III)Z
-
init
protected void init()Called when a screen should be initialized.This method is called when this screen is opened or resized.
-
resize
-
saveAndClose
private void saveAndClose()- Mappings:
Namespace Name Mixin selector official h
Lduk;h()V
intermediary method_2167
Lnet/minecraft/class_420;method_2167()V
named saveAndClose
Lnet/minecraft/client/gui/screen/DirectConnectScreen;saveAndClose()V
-
onClose
public void onClose() -
removed
public void removed() -
onAddressFieldChanged
private void onAddressFieldChanged()- Mappings:
Namespace Name Mixin selector official i
Lduk;i()V
intermediary method_2169
Lnet/minecraft/class_420;method_2169()V
named onAddressFieldChanged
Lnet/minecraft/client/gui/screen/DirectConnectScreen;onAddressFieldChanged()V
-
render
- Specified by:
render
in interfaceDrawable
- Overrides:
render
in classScreen
- Mappings:
Namespace Name Mixin selector official a
Ldsq;a(Ldlr;IIF)V
intermediary method_25394
Lnet/minecraft/class_4068;method_25394(Lnet/minecraft/class_4587;IIF)V
named render
Lnet/minecraft/client/gui/Drawable;render(Lnet/minecraft/client/util/math/MatrixStack;IIF)V
-