Class AnimatedTile

java.lang.Object
dev.kyzel.game.world.tile.Tile
dev.kyzel.game.world.tile.AnimatedTile

public class AnimatedTile extends Tile
The Animated Tile class.
  • Field Details

    • tileIndex

      private int tileIndex
      The current index to use as a tile's texture.
    • maxTileIndex

      private int maxTileIndex
      The max index that can be used as a tile's texture.
    • spriteCounter

      private int spriteCounter
      The sprite counter, which is used for animation.
    • maxSpriteCounter

      private int maxSpriteCounter
      The max value of sprite counter, which will invoke a texture change if the spriteCounter reaches this value.
    • tileColor

      private Color tileColor
      The color to used on the Minimap
  • Constructor Details

    • AnimatedTile

      public AnimatedTile(Renderer render, int x, int y, String tileName, int maxTileIndex, boolean isSolid, Color tileColor)
      Creates a new animated tile.
      Parameters:
      render - the Renderer where the tile will be drawn on
      x - the x coordinate of the tile
      y - the y coordinate of the tile
      tileName - the tile's name
      maxTileIndex - the max index of the tile
      isSolid - is the tile solid
      tileColor - the color of the tile
  • Method Details

    • increaseTileIndex

      public int increaseTileIndex(int currentIndex, int maxIndex)
      Increases the tile index so that it will always be in range.
      Parameters:
      currentIndex - the current index
      maxIndex - the max index
      Returns:
      the new index
    • updateTileImage

      public void updateTileImage()
      Updates the tile image if the requirement is met.
    • draw

      public void draw(Graphics g)
      Updates the tile. Draws the tile.
      Overrides:
      draw in class Tile
      Parameters:
      g - the Graphics which is used to draw
    • getTileColor

      public Color getTileColor()
      Gets the tile's color.
      Returns:
      the tile's color