blob: d051ceffe74ee42866763ccc8220c7a255448164 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
package ch.asynk.gdx.boardgame;
import com.badlogic.gdx.graphics.g2d.Batch;
import com.badlogic.gdx.graphics.g2d.TextureAtlas;
import com.badlogic.gdx.graphics.glutils.ShapeRenderer;
import ch.asynk.gdx.boardgame.Overlays;
public class Tile implements Drawable
{
public static TextureAtlas defaultOverlay = null;
public float x;
public float y;
private Overlays overlays;
public Tile(float x, float y)
{
this.x = x;
this.y = y;
if (defaultOverlay != null) {
this.overlays = new Overlays(defaultOverlay);
this.overlays.centerOn(x, y);
}
}
@Override public void draw(Batch batch)
{
if (overlays != null) {
overlays.draw(batch);
}
}
public void enableOverlay(int i, boolean enable)
{
if (overlays != null) {
overlays.enable(i, enable);
}
}
@Override public String toString()
{
return "[" + x + ", " + y + "]";
}
@Override public void drawDebug(ShapeRenderer shapeRenderer)
{
if (overlays != null) {
overlays.drawDebug(shapeRenderer);
}
}
}
|