Class StructureBlockScreen
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.StructureBlockScreen
- All Implemented Interfaces:
Drawable
,Element
,ParentElement
,TickableElement
@Environment(CLIENT) public class StructureBlockScreen extends Screen
-
Field Summary
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 StructureBlockScreen(StructureBlockBlockEntity structureBlock)
-
Method Summary
Modifier and Type Method Description private void
cancel()
private void
done()
protected void
init()
Called when a screen should be initialized.boolean
isPauseScreen()
boolean
keyPressed(int keyCode, int scanCode, int modifiers)
Callback for when a key down event has been captured.private boolean
method_2516(StructureBlockBlockEntity.Action action)
private void
method_32650(StructureBlockMode structureBlockMode)
void
onClose()
private float
parseFloat(String string)
private int
parseInt(String string)
private long
parseLong(String string)
void
removed()
void
render(MatrixStack matrices, int mouseX, int mouseY, float delta)
void
resize(MinecraftClient client, int width, int height)
void
tick()
private void
updateRotationButton()
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, 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
-
STRUCTURE_NAME_TEXT
-
POSITION_TEXT
-
SIZE_TEXT
-
INTEGRITY_TEXT
-
CUSTOM_DATA_TEXT
-
INCLUDE_ENTITIES_TEXT
-
DETECT_SIZE_TEXT
-
SHOW_AIR_TEXT
-
SHOW_BOUNDING_BOX_TEXT
-
field_27993
-
field_27994
-
structureBlock
-
mirror
-
rotation
-
mode
-
ignoreEntities
private boolean ignoreEntities -
showAir
private boolean showAir -
showBoundingBox
private boolean showBoundingBox -
inputName
-
inputPosX
-
inputPosY
-
inputPosZ
-
inputSizeX
-
inputSizeY
-
inputSizeZ
-
inputIntegrity
-
inputSeed
-
inputMetadata
-
buttonSave
-
buttonLoad
-
buttonRotate0
-
buttonRotate90
-
buttonRotate180
-
buttonRotate270
-
buttonDetect
-
buttonEntities
-
buttonMirror
-
buttonShowAir
-
buttonShowBoundingBox
-
decimalFormat
-
-
Constructor Details
-
StructureBlockScreen
-
-
Method Details
-
tick
public void tick()- Specified by:
tick
in interfaceTickableElement
- Overrides:
tick
in classScreen
-
done
private void done() -
cancel
private void cancel() -
init
protected void init()Called when a screen should be initialized.This method is called when this screen is opened or resized.
-
resize
-
removed
public void removed() -
updateRotationButton
private void updateRotationButton() -
method_32650
-
method_2516
-
parseLong
-
parseFloat
-
parseInt
-
onClose
public void onClose() -
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)
-
render
-
isPauseScreen
public boolean isPauseScreen()- Overrides:
isPauseScreen
in classScreen
-