Class InteractableShape

    • Constructor Summary

      Constructors 
      Constructor Description
      InteractableShape​(java.awt.Shape shape)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean click()
      Clicks this entity in an interactable point
      boolean contains​(double x, double y)  
      boolean contains​(double x, double y, double w, double h)  
      boolean contains​(java.awt.geom.Point2D p)  
      boolean contains​(java.awt.geom.Rectangle2D rectangle)  
      boolean contains​(java.awt.Point point)
      Checks if the projected bounds of this entity contains the Point provided.
      java.awt.Rectangle getBounds()  
      java.awt.geom.Rectangle2D getBounds2D()  
      InteractablePoint getInteractionPoint​(java.awt.Point origin)
      Gets a point within the entity that can be interacted with.
      java.awt.geom.PathIterator getPathIterator​(java.awt.geom.AffineTransform at)  
      java.awt.geom.PathIterator getPathIterator​(java.awt.geom.AffineTransform at, double flatness)  
      double getVisibility()
      Returns a rough estimate of how visible this entity is as a percent (0 to 100)
      boolean hasDynamicBounds()  
      boolean interact​(java.lang.String action)  
      boolean interact​(java.lang.String action, java.util.regex.Pattern target)  
      boolean interact​(java.util.regex.Pattern action)  
      boolean interact​(java.util.regex.Pattern action, java.lang.String target)  
      boolean interact​(java.util.regex.Pattern action, java.util.regex.Pattern target)
      Attempts to match action and target using Matcher.find() and then interacts with the appropriate menu item
      boolean intersects​(double x, double y, double w, double h)  
      boolean intersects​(java.awt.geom.Rectangle2D r)  
      boolean isVisible()
      Whether the entity is visible
      void render​(java.awt.Graphics2D g2d)
      Renders this entity onto the given Graphics2D, use is discouraged
      void render​(javafx.scene.canvas.GraphicsContext gc)
      Renders this entity onto the given GraphicsContext
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • InteractableShape

        public InteractableShape​(java.awt.Shape shape)
    • Method Detail

      • 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
      • 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
      • 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:
      • contains

        public boolean contains​(java.awt.geom.Rectangle2D rectangle)
        Specified by:
        contains in interface java.awt.Shape
      • 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
      • interact

        public final boolean interact​(java.lang.String action)
        Specified by:
        interact in interface Interactable
      • interact

        public boolean interact​(java.util.regex.Pattern action)
        Specified by:
        interact in interface Interactable
      • interact

        public final 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
      • interact

        public boolean interact​(java.util.regex.Pattern action,
                                java.lang.String target)
        Specified by:
        interact in interface Interactable
      • interact

        public boolean interact​(java.lang.String action,
                                java.util.regex.Pattern target)
        Specified by:
        interact in interface Interactable
      • toString

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

        public java.awt.Rectangle getBounds()
        Specified by:
        getBounds in interface java.awt.Shape
      • getBounds2D

        public java.awt.geom.Rectangle2D getBounds2D()
        Specified by:
        getBounds2D in interface java.awt.Shape
      • contains

        public boolean contains​(double x,
                                double y)
        Specified by:
        contains in interface java.awt.Shape
      • contains

        public boolean contains​(java.awt.geom.Point2D p)
        Specified by:
        contains in interface java.awt.Shape
      • intersects

        public boolean intersects​(double x,
                                  double y,
                                  double w,
                                  double h)
        Specified by:
        intersects in interface java.awt.Shape
      • intersects

        public boolean intersects​(java.awt.geom.Rectangle2D r)
        Specified by:
        intersects in interface java.awt.Shape
      • contains

        public boolean contains​(double x,
                                double y,
                                double w,
                                double h)
        Specified by:
        contains in interface java.awt.Shape
      • getPathIterator

        public java.awt.geom.PathIterator getPathIterator​(java.awt.geom.AffineTransform at)
        Specified by:
        getPathIterator in interface java.awt.Shape
      • getPathIterator

        public java.awt.geom.PathIterator getPathIterator​(java.awt.geom.AffineTransform at,
                                                          double flatness)
        Specified by:
        getPathIterator in interface java.awt.Shape
      • 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