Package dev.kyzel.game.world.tile
Class AnimatedTile
java.lang.Object
dev.kyzel.game.world.tile.Tile
dev.kyzel.game.world.tile.AnimatedTile
The Animated Tile class.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate int
The max value of sprite counter, which will invoke a texture change if thespriteCounter
reaches this value.private int
The max index that can be used as a tile's texture.private int
The sprite counter, which is used for animation.private Color
The color to used on theMinimap
private int
The current index to use as a tile's texture. -
Constructor Summary
ConstructorsConstructorDescriptionAnimatedTile
(Renderer render, int x, int y, String tileName, int maxTileIndex, boolean isSolid, Color tileColor) Creates a new animated tile. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Updates the tile.Gets the tile's color.int
increaseTileIndex
(int currentIndex, int maxIndex) Increases the tile index so that it will always be in range.void
Updates the tile image if the requirement is met.Methods inherited from class dev.kyzel.game.world.tile.Tile
getTileImage, getTileName, getX, getY, isSolid, setTileImage, setTileName, setX, setY
-
Field Details
-
tileIndex
private int tileIndexThe current index to use as a tile's texture. -
maxTileIndex
private int maxTileIndexThe max index that can be used as a tile's texture. -
spriteCounter
private int spriteCounterThe sprite counter, which is used for animation. -
maxSpriteCounter
private int maxSpriteCounterThe max value of sprite counter, which will invoke a texture change if thespriteCounter
reaches this value. -
tileColor
The color to used on theMinimap
-
-
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
- theRenderer
where the tile will be drawn onx
- the x coordinate of the tiley
- the y coordinate of the tiletileName
- the tile's namemaxTileIndex
- the max index of the tileisSolid
- is the tile solidtileColor
- 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 indexmaxIndex
- the max index- Returns:
- the new index
-
updateTileImage
public void updateTileImage()Updates the tile image if the requirement is met. -
draw
Updates the tile. Draws the tile. -
getTileColor
Gets the tile's color.- Returns:
- the tile's color
-