summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/tankontank/game/Hud.java
blob: 68847eb7e4cb04aa011c1d41f4f79fa4d995104e (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
package ch.asynk.tankontank.game;

import com.badlogic.gdx.Gdx;

import com.badlogic.gdx.utils.Disposable;

import com.badlogic.gdx.graphics.g2d.Batch;
import com.badlogic.gdx.graphics.g2d.TextureAtlas;
import com.badlogic.gdx.graphics.g2d.TextureRegion;
import com.badlogic.gdx.math.Vector2;
import com.badlogic.gdx.math.Rectangle;

import ch.asynk.tankontank.engine.gfx.Image;

import ch.asynk.tankontank.TankOnTank;

class Button implements Disposable
{

    public int idx;
    public boolean visible;
    private Image images [];
    private Image image;
    private Rectangle rect;

    private static final int OFF = 0;
    private static final int ON = 1;
    private static final int DOWN = 2;

    public Button(TextureAtlas atlas, String base)
    {
        this.idx = OFF;
        this.visible = false;
        this.images = new Image[3];
        this.images[OFF] = new Image(atlas.findRegion(base + "-off"));
        this.images[ON] = new Image(atlas.findRegion(base + "-on"));
        this.images[DOWN] = new Image(atlas.findRegion(base + "-down"));

        this.rect = new Rectangle(getX(), getY(), getWidth(), getHeight());
    }

    @Override
    public void dispose()
    {
        for (Image image : images)
            image.dispose();
    }

    public void hide()
    {
        idx = OFF;
        visible = false;
    }

    public void setOff()
    {
        idx = OFF;
    }

    public void setOn()
    {
        idx = ON;
    }

    public void setDown()
    {
        idx = DOWN;
    }

    public boolean isOn()
    {
        return (idx == ON);
    }

    public boolean isOff()
    {
        return (idx == OFF);
    }

    public boolean isDisabled()
    {
        return (idx == DOWN);
    }

    public Image getImage()
    {
        return images[idx];
    }

    public void setPosition(float x, float y)
    {
        for (Image image : images)
            image.setPosition(x, y);
        rect.set(x, y, getWidth(), getHeight());
    }

    public boolean hit(float x, float y)
    {
        if (!visible) return false;
        return rect.contains(x,y);
    }

    public float getX() { return images[0].getX(); }
    public float getY() { return images[0].getY(); }
    public float getWidth() { return images[0].getWidth(); }
    public float getHeight() { return images[0].getHeight(); }
}

public class Hud implements Disposable
{
    private static final float OFFSET = 15f;

    private final TankOnTank game;
    private final GameCtrl ctrl;

    private Image usFlag;
    private Image geFlag;
    private Image flag;

    private Button moveBtn;
    private Button rotateBtn;
    private Button attackBtn;
    private Button checkBtn;
    private Button cancelBtn;

    private Button btn;

    private Rectangle infoRect;
    private Rectangle buttonsRect;
    private float elapsed;
    private Vector2 bottomLeft;

    public Hud(final GameCtrl ctrl, final TankOnTank game)
    {
        this.game = game;
        this.ctrl = ctrl;
        this.bottomLeft = new Vector2((Gdx.graphics.getWidth() - OFFSET), OFFSET);

        TextureAtlas atlas = game.manager.get("data/assets.atlas", TextureAtlas.class);

        usFlag = new Image(atlas.findRegion("us-flag"));
        geFlag = new Image(atlas.findRegion("ge-flag"));
        moveBtn = new Button(atlas, "btn-move");
        rotateBtn = new Button(atlas, "btn-rotate");
        attackBtn = new Button(atlas, "btn-attack");
        checkBtn = new Button(atlas, "btn-check");
        cancelBtn = new Button(atlas, "btn-cancel");

        flag = usFlag;

        usFlag.setPosition(OFFSET, (Gdx.graphics.getHeight() - flag.getHeight() - OFFSET));
        geFlag.setPosition(flag.getX(), flag.getY());
        // TODO add counters for
        //  - Action Points
        //  - Turn

        infoRect = new Rectangle(flag.getX(), flag.getY(), flag.getWidth(), flag.getHeight());
        buttonsRect = new Rectangle(0, 0, 0, 0);

        elapsed = 0f;
    }

    @Override
    public void dispose()
    {
        usFlag.dispose();
        geFlag.dispose();
        moveBtn.dispose();
        rotateBtn.dispose();
        attackBtn.dispose();
        checkBtn.dispose();
        cancelBtn.dispose();
    }

    public void animate(float delta)
    {
        elapsed += delta;
        if (elapsed > 5f) {
            elapsed = 0f;
            flag = ((flag == usFlag) ? geFlag : usFlag);
        }
    }

    public void draw(Batch batch)
    {
        flag.draw(batch);
        if (moveBtn.visible) moveBtn.getImage().draw(batch);
        if (rotateBtn.visible) rotateBtn.getImage().draw(batch);
        if (attackBtn.visible) attackBtn.getImage().draw(batch);
        if (checkBtn.visible) checkBtn.getImage().draw(batch);
        if (cancelBtn.visible) cancelBtn.getImage().draw(batch);
    }

    private float setButton(Button btn, float x, float y)
    {
        // btn.setOff();
        btn.visible = true;
        btn.setPosition(x, y);
        return (y + btn.getHeight() + OFFSET);
    }

    public void show(boolean rotate, boolean move, boolean attack, boolean check, boolean cancel)
    {
        float x =  (bottomLeft.x - checkBtn.getWidth());
        float y =  bottomLeft.y;

        if (rotate) y = setButton(rotateBtn, x, y);
        else rotateBtn.hide();
        if (move)   y = setButton(moveBtn, x, y);
        else moveBtn.hide();
        if (attack) y = setButton(attackBtn, x, y);
        else attackBtn.hide();
        if (cancel) y = setButton(cancelBtn, x, y);
        else cancelBtn.hide();
        if (check)  y = setButton(checkBtn, x, y);
        else checkBtn.hide();

        buttonsRect.set(x, bottomLeft.y, checkBtn.getWidth(), (y - bottomLeft.y));
    }

    public void hide()
    {
        moveBtn.hide();
        rotateBtn.hide();
        attackBtn.hide();
        checkBtn.hide();
        cancelBtn.hide();
    }

    public boolean touchDown(float x, float y)
    {
        if (infoRect.contains(x,y)) return true;
        if (!buttonsRect.contains(x,y)) return false;

        btn = null;

        if (!ctrl.isInAction()) {
            if (moveBtn.hit(x, y))
                btn = moveBtn;
            else if (rotateBtn.hit(x, y))
                btn = rotateBtn;
            else if (attackBtn.hit(x, y))
                btn = attackBtn;
        }

        if (checkBtn.hit(x, y))
            btn = checkBtn;
        else if (cancelBtn.hit(x, y))
            btn = cancelBtn;

        if (btn != null)
            btn.setDown();

        return true;
    }

    public boolean touchUp(float x, float y)
    {
        if (btn != null)
            btn.setOn();

        if (infoRect.contains(x,y)) return true;
        if (!buttonsRect.contains(x,y)) return false;

        if (btn == moveBtn)
            ctrl.setState(GameState.State.MOVE);
        else if (btn == rotateBtn)
            ctrl.setState(GameState.State.ROTATE);
        // else if (btn == attackBtn)
            // ctrl.setState(GameState.State.ATTACK);
        // else if (btn == checkBtn)
        else if (btn == cancelBtn)
            ctrl.abort();

        btn = null;

        return true;
    }
}