Class Animal

java.lang.Object
dev.kyzel.game.entity.Entity
dev.kyzel.game.entity.animal.Animal
All Implemented Interfaces:
IAttackable
Direct Known Subclasses:
Ghost, Slime, Zombie

public abstract class Animal extends Entity
The animal super class.
  • Field Details

    • animalImage

      protected BufferedImage animalImage
      The current animal's sprite.
    • imageIndex

      protected int imageIndex
      The current index to use as the animal's sprite.
    • hostileProb

      protected double hostileProb
      The hostile probability of the animal.
    • actionCounter

      private int actionCounter
      The counter to see when the animal should do a different action (e.g. move in a different direction).
    • maxActionCount

      private final int maxActionCount
      The max counter for action change.
      See Also:
  • Constructor Details

    • Animal

      public Animal(Renderer render, Game game, int x, int y, int speed)
      Creates a new Animal. Construction of a new, plain Animal is not allowed. Construction has to be explicitly typed (e.g. Zombie, Slime,...).
      Parameters:
      render - the Renderer where the animal will be drawn on
      game - the Game where the animal interacts
      x - the x coordinate
      y - the y coordinate
      speed - the speed of the animal
  • Method Details

    • getAnimalDirection

      public Direction getAnimalDirection(double num)
      Gets a Direction to move in depends on the given number from 0 to 1.
      Parameters:
      num - the given number
      Returns:
      the Direction to move in
    • move

      public void move(TileManager tileManager)
      Attempts to do an action with the animal (including moving, attacking something in the current Direction).
      Parameters:
      tileManager - the TileManager of the game
    • update

      public void update()
      Description copied from class: Entity
      Updates the entity.
      Overrides:
      update in class Entity
    • setCurrentAnimalImage

      public abstract void setCurrentAnimalImage()
      Set the current animal's sprite.
    • getPoint

      public abstract int getPoint()
      Gets the points of the animal.
      Returns:
      the points of the animal
    • drawHealthBar

      public void drawHealthBar(Graphics g)
      Description copied from class: Entity
      Draws the health bar of the entity.
      Specified by:
      drawHealthBar in class Entity
      Parameters:
      g - the Graphics which is used to draw
    • draw

      public void draw(Graphics g)
      Description copied from class: Entity
      Draws the entity.
      Specified by:
      draw in class Entity
      Parameters:
      g - the Graphics which is used to draw