summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/zproject/GameBoard.java
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2018-09-11 20:02:44 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2018-09-11 20:02:44 +0200
commit5b89e9ad75e72016a4ec5c7d7c59e5ed557e60e7 (patch)
treedd076e372c1cefe92630791c5d014a45db7c8572 /core/src/ch/asynk/zproject/GameBoard.java
parentde8b651b8d3b8f22d8bbad1a968d2e2a2ca14f36 (diff)
downloadgdx-boardgame-5b89e9ad75e72016a4ec5c7d7c59e5ed557e60e7.zip
gdx-boardgame-5b89e9ad75e72016a4ec5c7d7c59e5ed557e60e7.tar.gz
Hud -> GameHud, Board -> GameBoard
Diffstat (limited to 'core/src/ch/asynk/zproject/GameBoard.java')
-rw-r--r--core/src/ch/asynk/zproject/GameBoard.java43
1 files changed, 43 insertions, 0 deletions
diff --git a/core/src/ch/asynk/zproject/GameBoard.java b/core/src/ch/asynk/zproject/GameBoard.java
new file mode 100644
index 0000000..d1181ad
--- /dev/null
+++ b/core/src/ch/asynk/zproject/GameBoard.java
@@ -0,0 +1,43 @@
+package ch.asynk.zproject;
+
+import com.badlogic.gdx.graphics.g2d.Batch;
+import com.badlogic.gdx.graphics.Texture;
+import com.badlogic.gdx.utils.Disposable;
+
+import ch.asynk.zproject.engine.Touchable;
+
+public class GameBoard implements Disposable, Touchable
+{
+ private final Texture map;
+
+ public GameBoard(final Assets assets)
+ {
+ this.map = assets.getTexture(assets.MAP_00);
+ }
+
+ @Override public void dispose()
+ {
+ map.dispose();
+ }
+
+ @Override public boolean touch(float x, float y)
+ {
+ ZProject.debug("GameBoard", String.format("touchDown : %f %f", x, y));
+ return true;
+ }
+
+ public int getWidth()
+ {
+ return map.getWidth();
+ }
+
+ public int getHeight()
+ {
+ return map.getHeight();
+ }
+
+ public void draw(Batch batch)
+ {
+ batch.draw(map, 0, 0);
+ }
+}