Package dev.kyzel.game.entity.animal
Class Animal
java.lang.Object
dev.kyzel.game.entity.Entity
dev.kyzel.game.entity.animal.Animal
- All Implemented Interfaces:
IAttackable
The animal super class.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate int
The counter to see when the animal should do a different action (e.g.protected BufferedImage
The current animal's sprite.protected double
The hostile probability of the animal.protected int
The current index to use as the animal's sprite.private final int
The max counter for action change.Fields inherited from class dev.kyzel.game.entity.Entity
attackValue, basedSpeed, currentHealthValue, direction, game, healingCounter, hitTick, invincibleCounter, isCursed, knockbackCounter, maxHealingCounter, maxHealthValue, maxHitTick, maxInvincibleCounter, maxKnockbackCounter, previousDirection, render, solidArea, solidAreaDefaultX, solidAreaDefaultY, speed, spriteCounter, state, x, y
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Draws the entity.void
Draws the health bar of the entity.getAnimalDirection
(double num) Gets aDirection
to move in depends on the given number from 0 to 1.abstract int
getPoint()
Gets the points of the animal.void
move
(TileManager tileManager) Attempts to do an action with the animal (including moving, attacking something in the currentDirection
).abstract void
Set the current animal's sprite.void
update()
Updates the entity.Methods inherited from class dev.kyzel.game.entity.Entity
collideWithEntity, collideWithPlayer, collideWithTile, cursed, getAttackValue, getDirection, getGame, getHealthValue, getInvincibleCounter, getKnockbackCounter, getMaxHealthValue, getPreviousDirection, getRender, getSolidArea, getSolidAreaDefaultX, getSolidAreaDefaultY, getSpeed, getSwimmingSpeed, getX, getY, healing, increaseImageIndex, inflictDamage, initTexture, isAlive, isCursed, isDead, isInRange, knockback, setAttackValue, setDirection, setHealthValue, setInvincibleCounter, setKnockbackCounter, setMaxHealthValue, setPreviousDirection, setRender, setSpeed, setX, setY
-
Field Details
-
animalImage
The current animal's sprite. -
imageIndex
protected int imageIndexThe current index to use as the animal's sprite. -
hostileProb
protected double hostileProbThe hostile probability of the animal. -
actionCounter
private int actionCounterThe counter to see when the animal should do a different action (e.g. move in a different direction). -
maxActionCount
private final int maxActionCountThe max counter for action change.- See Also:
-
-
Constructor Details
-
Animal
Creates a new Animal. Construction of a new, plain Animal is not allowed. Construction has to be explicitly typed (e.g. Zombie, Slime,...).
-
-
Method Details
-
getAnimalDirection
Gets aDirection
to move in depends on the given number from 0 to 1.- Parameters:
num
- the given number- Returns:
- the
Direction
to move in
-
move
Attempts to do an action with the animal (including moving, attacking something in the currentDirection
).- Parameters:
tileManager
- theTileManager
of the game
-
update
public void update()Description copied from class:Entity
Updates the 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
Description copied from class:Entity
Draws the health bar of the entity.- Specified by:
drawHealthBar
in classEntity
- Parameters:
g
- theGraphics
which is used to draw
-
draw
Description copied from class:Entity
Draws the entity.
-