Skip to content
Snippets Groups Projects
Commit b1ad7108 authored by Scherbaum Maximilian's avatar Scherbaum Maximilian
Browse files

add: TileType.java, update: implementation of tile creation #10

parent 9992e998
No related branches found
No related tags found
4 merge requests!74V1,!73Initial commit,!71Merge DataBase into Development,!1Merge: map into development
package de.hdm_stuttgart.battlearena.Model.Map;
import javafx.scene.image.Image;
import org.apache.logging.log4j.Logger;
import org.apache.logging.log4j.LogManager;
public class BackgroundTile implements ITile{
class BackgroundTile implements ITile{
private static final Logger log = LogManager.getLogger(BackgroundTile.class);
}
private Image tileSprite;
private final boolean isWalkable;
public BackgroundTile(Image tileSprite, boolean isWalkable) {
this.tileSprite = tileSprite;
this.isWalkable = isWalkable;
}
@Override
public boolean getCollision() {
return isWalkable;
}
}
\ No newline at end of file
package de.hdm_stuttgart.battlearena.Model.Map;
public interface ITile {
}
boolean getCollision();
}
\ No newline at end of file
package de.hdm_stuttgart.battlearena.Model.Map;
import javafx.scene.canvas.GraphicsContext;
import javafx.scene.image.Image;
import org.apache.logging.log4j.Logger;
import org.apache.logging.log4j.LogManager;
import java.util.Objects;
public class TileManager {
private static final Logger log = LogManager.getLogger(TileManager.class);
}
private final GraphicsContext graphicsContext2D;
private final ITile[] tileSet;
private final int[][] tileMap;
public TileManager(GraphicsContext graphicsContext2D, int diffTileCount,
int horizontalTileCount, int verticalTileCount, String mapString) {
this.graphicsContext2D = graphicsContext2D;
tileSet = new BackgroundTile[diffTileCount];
tileMap = new int[horizontalTileCount][verticalTileCount];
createTiles();
generateMap(mapString, horizontalTileCount, verticalTileCount);
}
private void createTiles() {
try {
tileSet[0] = TileFactory.createTile(TileType.WALKABLE,
new Image(Objects.requireNonNull(getClass().getResourceAsStream("/textures/map/mapPlaceholder.png"))));
tileSet[1] = TileFactory.createTile(TileType.NON_WALKABLE,
new Image(Objects.requireNonNull(getClass().getResourceAsStream("/textures/map/stoneExampleTexture.png"))));
} catch (Exception e) {
log.error(e);
}
}
private void generateMap(String mapString, int horizontalTileCount, int verticalTileCount) {
String[] tileSet = mapString.split(" ");
int stringIndex = 0;
for (int row = 0; row < horizontalTileCount; row++) {
for (int colum = 0; colum < verticalTileCount; colum++) {
tileMap[row][colum] = Integer.parseInt(tileSet[stringIndex]);
stringIndex++;
}
}
}
public void renderMap(GraphicsContext graphicsContext2D) {
}
}
\ No newline at end of file
package de.hdm_stuttgart.battlearena.Model.Map;
public enum TileType {
WALKABLE,
NON_WALKABLE
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment