blob: dda03076fa7d3b55cabea6d4930b0d4677f3b43d (
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
|
package ch.asynk.gdx.boardgame;
import com.badlogic.gdx.graphics.g2d.Batch;
import com.badlogic.gdx.graphics.g2d.TextureAtlas;
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 + "]";
}
}
|