Class MenuItem

    • Constructor Detail

      • MenuItem

        public MenuItem​(int index,
                        java.lang.String action,
                        java.lang.String target,
                        int opcode,
                        int identifier,
                        int arg0,
                        int arg1)
      • MenuItem

        @Deprecated
        public MenuItem​(int index,
                        java.lang.String action,
                        java.lang.String target,
                        int opcode,
                        int identifier,
                        int arg0,
                        int arg1,
                        boolean rs3)
        Deprecated.
      • MenuItem

        public MenuItem​(com.runemate.client.game.open.OpenMenuItem item)
    • Method Detail

      • render

        public void render​(java.awt.Graphics2D g2d)
        Description copied from interface: Renderable
        Renders this entity onto the given Graphics2D, use is discouraged
        Specified by:
        render in interface Renderable
      • render

        public void render​(javafx.scene.canvas.GraphicsContext gc)
        Description copied from interface: Renderable
        Renders this entity onto the given GraphicsContext
        Specified by:
        render in interface Renderable
      • targets

        public boolean targets​(Interactable desiredTarget)
      • targets

        public boolean targets​(Interactable entity,
                               java.util.regex.Pattern action,
                               java.util.regex.Pattern target)
      • getVisibility

        public double getVisibility()
        Description copied from interface: Interactable
        Returns a rough estimate of how visible this entity is as a percent (0 to 100)
        Specified by:
        getVisibility in interface Interactable
      • click

        public boolean click()
        Description copied from interface: Interactable
        Clicks this entity in an interactable point
        Specified by:
        click in interface Interactable
        Returns:
        true if successfully clicked
      • isVisible

        public boolean isVisible()
        Description copied from interface: Interactable
        Whether the entity is visible
        Specified by:
        isVisible in interface Interactable
        Returns:
        true if visible, and false if not visible
      • getInteractionPoint

        public InteractablePoint getInteractionPoint​(java.awt.Point origin)
        Description copied from interface: Interactable
        Gets a point within the entity that can be interacted with. Takes into account the direction of movement from the origin point.
        Specified by:
        getInteractionPoint in interface Interactable
      • contains

        public boolean contains​(java.awt.Point point)
        Description copied from interface: Interactable
        Checks if the projected bounds of this entity contains the Point provided.
        Specified by:
        contains in interface Interactable
        Returns:
      • click

        public boolean click​(Interactable interactable)
      • interact

        public boolean interact​(java.util.regex.Pattern action,
                                java.util.regex.Pattern target)
        Description copied from interface: Interactable
        Attempts to match action and target using Matcher.find() and then interacts with the appropriate menu item
        Specified by:
        interact in interface Interactable
        Parameters:
        action - The pattern to match the action with, if null it's ignored
        target - The pattern to match the target with, if null it's ignored
      • getAction

        @NonNull
        public @NonNull java.lang.String getAction()
      • getTarget

        @Nullable
        public @Nullable java.lang.String getTarget()
      • getIndex

        public int getIndex()
      • getOpcode

        public int getOpcode()
      • getArg0

        public int getArg0()
      • getArg1

        public int getArg1()
      • getIdentifier

        public int getIdentifier()
      • getArg2

        @Deprecated
        public int getArg2()
        Deprecated.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • getTargetEntity

        @Nullable
        public @Nullable Interactable getTargetEntity()
      • getTargetType

        @Nullable
        public @Nullable MenuItem.Type getTargetType()