@Environment(value=CLIENT) public abstract class AbstractCommandBlockScreen extends Screen
Modifier and Type | Field and Description |
---|---|
protected ButtonWidget |
cancelButton |
private CommandSuggestor |
commandSuggestor |
protected TextFieldWidget |
consoleCommandTextField |
protected ButtonWidget |
doneButton |
private static Text |
field_26556 |
private static Text |
field_26557 |
private static Text |
field_26558 |
protected TextFieldWidget |
previousOutputTextField |
protected ButtonWidget |
toggleTrackingOutputButton |
protected boolean |
trackingOutput |
buttons, children, client, height, itemRenderer, passEvents, textRenderer, title, width
GUI_ICONS_TEXTURE, OPTIONS_BACKGROUND_TEXTURE, STATS_ICON_TEXTURE
Constructor and Description |
---|
AbstractCommandBlockScreen() |
Modifier and Type | Method and Description |
---|---|
protected void |
commitAndClose() |
(package private) abstract CommandBlockExecutor |
getCommandExecutor() |
(package private) abstract int |
getTrackOutputButtonHeight() |
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.
|
boolean |
mouseClicked(double mouseX,
double mouseY,
int button)
Callback for when a mouse button down event
has been captured.
|
boolean |
mouseScrolled(double mouseX,
double mouseY,
double amount)
Callback for when a mouse button scroll event
has been captured.
|
void |
onClose() |
private void |
onCommandChanged(String text) |
void |
removed() |
void |
render(MatrixStack matrices,
int mouseX,
int mouseY,
float delta) |
void |
resize(MinecraftClient client,
int width,
int height) |
protected abstract void |
syncSettingsToServer(CommandBlockExecutor commandExecutor) |
void |
tick() |
protected void |
updateTrackedOutput() |
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, sendMessage, sendMessage, shouldCloseOnEsc, wrapScreenError
getFocused, isDragging, setDragging, setFocused
drawCenteredString, drawCenteredText, drawHorizontalLine, drawSprite, drawStringWithShadow, drawTexture, drawTexture, drawTexture, drawTexture, drawTextWithShadow, drawVerticalLine, fill, fillGradient, fillGradient, getZOffset, method_29343, setZOffset
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
changeFocus, charTyped, focusOn, hoveredElement, keyReleased, mouseDragged, mouseReleased, setInitialFocus
mouseMoved
private static final Text field_26556
private static final Text field_26557
private static final Text field_26558
protected TextFieldWidget consoleCommandTextField
protected TextFieldWidget previousOutputTextField
protected ButtonWidget doneButton
protected ButtonWidget cancelButton
protected ButtonWidget toggleTrackingOutputButton
protected boolean trackingOutput
private CommandSuggestor commandSuggestor
public void tick()
tick
in interface TickableElement
tick
in class Screen
abstract CommandBlockExecutor getCommandExecutor()
abstract int getTrackOutputButtonHeight()
protected void init()
This method is called when this screen is opened
or resized.
public void resize(MinecraftClient client, int width, int height)
protected void updateTrackedOutput()
protected void commitAndClose()
protected abstract void syncSettingsToServer(CommandBlockExecutor commandExecutor)
private void onCommandChanged(String text)
public boolean keyPressed(int keyCode, int scanCode, int modifiers)
GLFW
class.keyPressed
in interface Element
keyPressed
in interface ParentElement
keyPressed
in class Screen
keyCode
- the named key code of the event as described in the GLFW
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)true
to indicate that the event handling is successful/validKeyboard.onKey(long, int, int, int, int)
,
GLFW.GLFW_KEY_Q
,
GLFWKeyCallbackI.invoke(long, int, int, int, int)
public boolean mouseScrolled(double mouseX, double mouseY, double amount)
mouseX
- the X coordinate of the mousemouseY
- the Y coordinate of the mouseamount
- value is > 1
if scrolled down, < 1
if scrolled uptrue
to indicate that the event handling is successful/validMouse.onMouseScroll(long, double, double)
public boolean mouseClicked(double mouseX, double mouseY, int button)
GLFW
class.mouseX
- the X coordinate of the mousemouseY
- the Y coordinate of the mousebutton
- the mouse button numbertrue
to indicate that the event handling is successful/validMouse.onMouseButton(long, int, int, int)
,
GLFW.GLFW_MOUSE_BUTTON_1
public void render(MatrixStack matrices, int mouseX, int mouseY, float delta)