Class SocialInteractionsScreen
java.lang.Object
net.minecraft.client.gui.DrawableHelper
net.minecraft.client.gui.AbstractParentElement
net.minecraft.client.gui.screen.Screen
net.minecraft.client.gui.screen.multiplayer.SocialInteractionsScreen
- All Implemented Interfaces:
Drawable,Element,ParentElement,TickableElement
@Environment(CLIENT) public class SocialInteractionsScreen extends Screen
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSocialInteractionsScreen.Tab -
Field Summary
Fields Modifier and Type Field Description private static TextALL_TAB_TITLEprivate ButtonWidgetallTabButtonprivate static TextBLOCKED_TAB_TITLEprivate ButtonWidgetblockedTabButtonprivate static TextBLOCKING_TEXTprivate ButtonWidgetblockingButtonprivate StringcurrentSearchprivate SocialInteractionsScreen.TabcurrentTabprivate static TextEMPTY_BLOCKED_TEXTprivate static TextEMPTY_HIDDEN_TEXTprivate static TextEMPTY_SEARCH_TEXTprivate static TextHIDDEN_TAB_TITLEprivate ButtonWidgethiddenTabButtonprivate booleaninitializedprivate RunnableonRenderedprivate intplayerCountprivate SocialInteractionsPlayerListWidgetplayerListprivate static TextSEARCH_TEXTprivate TextFieldWidgetsearchBoxprivate static TextSELECTED_ALL_TAB_TITLEprivate static TextSELECTED_BLOCKED_TAB_TITLEprivate static TextSELECTED_HIDDEN_TAB_TITLEprivate TextserverLabelprotected static IdentifierSOCIAL_INTERACTIONS_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 SocialInteractionsScreen() -
Method Summary
Modifier and Type Method Description StringgetNarrationMessage()protected voidinit()Called when a screen should be initialized.booleanisPauseScreen()booleankeyPressed(int keyCode, int scanCode, int modifiers)Callback for when a key down event has been captured.private intmethod_31359()private intmethod_31360()private intmethod_31361()private intmethod_31362()booleanmouseClicked(double mouseX, double mouseY, int button)Callback for when a mouse button down event has been captured.private voidonSearchChange(String currentSearch)voidremoved()voidrender(MatrixStack matrices, int mouseX, int mouseY, float delta)voidrenderBackground(MatrixStack matrices)Renders the background of this screen.private voidsetCurrentTab(SocialInteractionsScreen.Tab currentTab)voidsetOnRendered(Runnable onRendered)voidsetPlayerOffline(UUID uuid)voidsetPlayerOnline(PlayerListEntry player)voidtick()private voidupdateServerLabel(MinecraftClient client)Methods inherited from class net.minecraft.client.gui.screen.Screen
addButton, addChild, children, filesDragged, getTitle, getTooltipFromItem, handleTextClick, hasAltDown, hasControlDown, hasShiftDown, init, insertText, isCopy, isCut, isMouseOver, isPaste, isSelectAll, isValidCharacterForName, onClose, renderBackground, renderBackgroundTexture, renderOrderedTooltip, renderTextHoverEffect, renderTooltip, renderTooltip, renderTooltip, resize, sendMessage, sendMessage, shouldCloseOnEsc, 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, 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, mouseDragged, mouseReleased, mouseScrolled, setInitialFocus
-
Field Details
-
SOCIAL_INTERACTIONS_TEXTURE
-
ALL_TAB_TITLE
-
HIDDEN_TAB_TITLE
-
BLOCKED_TAB_TITLE
-
SELECTED_ALL_TAB_TITLE
-
SELECTED_HIDDEN_TAB_TITLE
-
SELECTED_BLOCKED_TAB_TITLE
-
SEARCH_TEXT
-
EMPTY_SEARCH_TEXT
-
EMPTY_HIDDEN_TEXT
-
EMPTY_BLOCKED_TEXT
-
BLOCKING_TEXT
-
playerList
-
searchBox
-
currentSearch
-
currentTab
-
allTabButton
-
blockedTabButton
-
blockingButton
-
serverLabel
-
playerCount
private int playerCount -
initialized
private boolean initialized -
onRendered
-
-
Constructor Details
-
SocialInteractionsScreen
public SocialInteractionsScreen()
-
-
Method Details
-
method_31359
private int method_31359() -
method_31360
private int method_31360() -
method_31361
private int method_31361() -
method_31362
private int method_31362() -
getNarrationMessage
- Overrides:
getNarrationMessagein classScreen
-
tick
public void tick()- Specified by:
tickin interfaceTickableElement- Overrides:
tickin classScreen
-
init
protected void init()Called when a screen should be initialized.This method is called when this screen is
openedor resized. -
setCurrentTab
-
removed
public void removed() -
renderBackground
Renders the background of this screen.If the client is in a world, renders the translucent background gradient. Otherwise renders the background texture.
- Overrides:
renderBackgroundin classScreen
-
render
-
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.- 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 {@linkplain https://www.glfw.org/docs/3.3/group__mods.html 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)
-
isPauseScreen
public boolean isPauseScreen()- Overrides:
isPauseScreenin classScreen
-
onSearchChange
-
updateServerLabel
-
setPlayerOnline
-
setPlayerOffline
-
setOnRendered
-