blob: 454f839c119d4ad898a4cc84b0eaa478c65fe99c (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
 | 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) {
            setOverlay(defaultOverlay);
        }
    }
    public boolean overlaysEnabled()
    {
        if (overlays != null) {
            return overlays.isEnabled();
        }
        return false;
    }
    public void setOverlay(TextureAtlas textureAtlas)
    {
            this.overlays = new Overlays(textureAtlas);
            this.overlays.centerOn(x, y);
    }
    public void enableOverlay(int i, boolean enable)
    {
        if (overlays != null) {
            overlays.enable(i, enable);
        }
    }
    public void enableOverlay(int i, Orientation o)
    {
        if (overlays != null) {
            overlays.setRotation(i, o.r());
            overlays.enable(i, true);
        }
    }
    @Override public String toString()
    {
        return "[" + x + ", " + y + "]";
    }
    @Override public void draw(Batch batch)
    {
        if (overlays != null) {
            overlays.draw(batch);
        }
    }
    @Override public void drawDebug(ShapeRenderer shapeRenderer)
    {
        if (overlays != null) {
            overlays.drawDebug(shapeRenderer);
        }
    }
}
 |