Class ChattableCameraScreen

java.lang.Object
net.minecraft.client.gui.components.events.AbstractContainerEventHandler
net.minecraft.client.gui.screens.Screen
com.pixelmonmod.pixelmon.client.camera.CameraScreen
com.pixelmonmod.pixelmon.client.camera.ChattableCameraScreen
All Implemented Interfaces:
net.minecraft.client.gui.components.events.ContainerEventHandler, net.minecraft.client.gui.components.events.GuiEventListener, net.minecraft.client.gui.components.Renderable, net.minecraft.client.gui.components.TabOrderedElement
Direct Known Subclasses:
BattleScreen

public class ChattableCameraScreen extends CameraScreen
Handles chat during battle.
  • Nested Class Summary

    Nested classes/interfaces inherited from class net.minecraft.client.gui.screens.Screen

    net.minecraft.client.gui.screens.Screen.NarratableSearchResult
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    The chat component in the GUI.

    Fields inherited from class com.pixelmonmod.pixelmon.client.camera.CameraScreen

    allowUserInput, mouseDown

    Fields inherited from class net.minecraft.client.gui.screens.Screen

    BACKGROUND_LOCATION, children, font, height, minecraft, renderables, screenExecutor, title, width

    Fields inherited from interface net.minecraft.client.gui.components.events.GuiEventListener

    DOUBLE_CLICK_THRESHOLD_MS
  • Constructor Summary

    Constructors
    Constructor
    Description
    Initializes chat with the default location.
    Initializes chat with a specified x coordinate.
    ChattableCameraScreen(int posX, int posY)
    Initializes chat at a specified location.
    ChattableCameraScreen(int posX, int posY, int width)
    Initializes chat at a specified location and width.
    ChattableCameraScreen(CameraEntity cam, int posX, int posY, int width)
    Initializes chat at a specified location and width.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    charTyped(char typedChar, int keyCode)
     
    void
     
    boolean
    keyPressed(int keyCode, int scanCode, int modifiers)
     
    boolean
    mouseClicked(double mouseX, double mouseY, int button)
     
    boolean
    mouseDragged(double mouseX, double mouseY, int button, double dragX, double dragY)
     
    void
    mouseMoved(double mouseX, double mouseY)
     
    boolean
    mouseReleased(double mouseX, double mouseY, int button)
     
    boolean
    mouseScrolled(double mouseX, double mouseY, double deltaX, double deltaY)
     
    void
     
    void
    render(net.minecraft.client.gui.GuiGraphics p_281549_, int p_281550_, int p_282878_, float p_282465_)
     
    void
     

    Methods inherited from class com.pixelmonmod.pixelmon.client.camera.CameraScreen

    getCamera, isPauseScreen, renderBackground, renderDirtBackground

    Methods inherited from class net.minecraft.client.gui.screens.Screen

    added, addEventWidget, addRenderableOnly, addRenderableWidget, addWidget, afterKeyboardAction, afterMouseAction, afterMouseMove, changeFocus, children, clearFocus, clearWidgets, confirmLink, createArrowEvent, createTabEvent, findNarratableWidget, getBackgroundMusic, getMinecraft, getNarrationMessage, getRectangle, getTitle, getTooltipFromItem, getUsageNarration, handleComponentClicked, handleDelayedNarration, hasAltDown, hasControlDown, hasShiftDown, hideWidgets, init, insertText, isCopy, isCut, isMouseOver, isPaste, isSelectAll, isValidCharacterForName, narrationEnabled, onClose, onFilesDrop, openLink, rebuildWidgets, removeWidget, renderTransparentBackground, renderWithTooltip, repositionElements, resize, runNarration, scheduleNarration, setInitialFocus, setTooltipForNextRenderPass, setTooltipForNextRenderPass, setTooltipForNextRenderPass, setTooltipForNextRenderPass, shouldCloseOnEsc, shouldNarrateNavigation, shouldRunNarration, suppressNarration, triggerImmediateNarration, updateNarratedWidget, updateNarrationState, wrapScreenError

    Methods inherited from class net.minecraft.client.gui.components.events.AbstractContainerEventHandler

    getFocused, isDragging, setDragging, setFocused

    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.components.events.ContainerEventHandler

    getChildAt, getCurrentFocusPath, isFocused, keyReleased, magicalSpecialHackyFocus, nextFocusPath, setFocused

    Methods inherited from interface net.minecraft.client.gui.components.TabOrderedElement

    getTabOrderGroup
  • Field Details

  • Constructor Details

    • ChattableCameraScreen

      public ChattableCameraScreen()
      Initializes chat with the default location.
    • ChattableCameraScreen

      public ChattableCameraScreen(int posX)
      Initializes chat with a specified x coordinate.
      Parameters:
      posX - The x coordinate of the chatbox.
    • ChattableCameraScreen

      public ChattableCameraScreen(int posX, int posY)
      Initializes chat at a specified location.
      Parameters:
      posX - The x coordinate of the chatbox.
      posY - The y coordinate of the chatbox.
    • ChattableCameraScreen

      public ChattableCameraScreen(int posX, int posY, int width)
      Initializes chat at a specified location and width.
      Parameters:
      posX - The x coordinate of the chatbox.
      posY - The y coordinate of the chatbox.
      width - The width of the chatbox.
    • ChattableCameraScreen

      public ChattableCameraScreen(CameraEntity cam, int posX, int posY, int width)
      Initializes chat at a specified location and width.
      Parameters:
      cam - The player's camera.
      posX - The x coordinate of the chatbox.
      posY - The y coordinate of the chatbox.
      width - The width of the chatbox.
  • Method Details

    • keyPressed

      public boolean keyPressed(int keyCode, int scanCode, int modifiers)
      Specified by:
      keyPressed in interface net.minecraft.client.gui.components.events.ContainerEventHandler
      Specified by:
      keyPressed in interface net.minecraft.client.gui.components.events.GuiEventListener
      Overrides:
      keyPressed in class CameraScreen
    • charTyped

      public boolean charTyped(char typedChar, int keyCode)
    • init

      public void init()
      Overrides:
      init in class CameraScreen
    • removed

      public void removed()
      Overrides:
      removed in class CameraScreen
    • tick

      public void tick()
      Overrides:
      tick in class net.minecraft.client.gui.screens.Screen
    • render

      public void render(net.minecraft.client.gui.GuiGraphics p_281549_, int p_281550_, int p_282878_, float p_282465_)
      Specified by:
      render in interface net.minecraft.client.gui.components.Renderable
      Overrides:
      render in class net.minecraft.client.gui.screens.Screen
    • mouseDragged

      public boolean mouseDragged(double mouseX, double mouseY, int button, double dragX, double dragY)
      Specified by:
      mouseDragged in interface net.minecraft.client.gui.components.events.ContainerEventHandler
      Specified by:
      mouseDragged in interface net.minecraft.client.gui.components.events.GuiEventListener
      Overrides:
      mouseDragged in class CameraScreen
    • mouseScrolled

      public boolean mouseScrolled(double mouseX, double mouseY, double deltaX, double deltaY)
      Specified by:
      mouseScrolled in interface net.minecraft.client.gui.components.events.ContainerEventHandler
      Specified by:
      mouseScrolled in interface net.minecraft.client.gui.components.events.GuiEventListener
      Overrides:
      mouseScrolled in class CameraScreen
    • mouseClicked

      public boolean mouseClicked(double mouseX, double mouseY, int button)
    • mouseReleased

      public boolean mouseReleased(double mouseX, double mouseY, int button)
    • mouseMoved

      public void mouseMoved(double mouseX, double mouseY)