summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/zproject/Board.java
blob: b7e20b8d51751ebc36411b68248727804c316135 (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
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 Board implements Disposable, Touchable
{
    private final Texture map;

    public Board(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("Board", 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);
    }
}