summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/rustanddust/ui/Position.java
blob: d8c6096650e23b3a3c8469d5149563331a816998 (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
package ch.asynk.rustanddust.ui;

import com.badlogic.gdx.Gdx;
import ch.asynk.rustanddust.game.Hud;

public enum Position
{
    TOP_LEFT,
    TOP_RIGHT,
    TOP_CENTER,
    MIDDLE_LEFT,
    MIDDLE_RIGHT,
    MIDDLE_CENTER,
    BOTTOM_LEFT,
    BOTTOM_RIGHT,
    BOTTOM_CENTER;

    public Position verticalMirror()
    {
        Position p = this;
        switch(this) {
            case TOP_LEFT:
                p = TOP_RIGHT;
                break;
            case MIDDLE_LEFT:
                p = MIDDLE_RIGHT;
                break;
            case BOTTOM_LEFT:
                p = BOTTOM_RIGHT;
                break;
            case TOP_RIGHT:
                p = TOP_LEFT;
                break;
            case MIDDLE_RIGHT:
                p = MIDDLE_LEFT;
                break;
            case BOTTOM_RIGHT:
                p = BOTTOM_LEFT;
                break;
        }
        return p;
    }

    public Position horizontalMirror()
    {
        Position p = this;
        switch(this) {
            case TOP_LEFT:
                p = BOTTOM_LEFT;
                break;
            case TOP_CENTER:
                p = BOTTOM_CENTER;
                break;
            case TOP_RIGHT:
                p = BOTTOM_RIGHT;
                break;
            case BOTTOM_LEFT:
                p = TOP_LEFT;
                break;
            case BOTTOM_CENTER:
                p = TOP_CENTER;
                break;
            case BOTTOM_RIGHT:
                p = TOP_RIGHT;
                break;
        }
        return p;
    }

    public boolean isLeft()
    {
        boolean r = false;
        switch(this) {
            case TOP_LEFT:
            case MIDDLE_LEFT:
            case BOTTOM_LEFT:
                r = true;
                break;
            default:
                r = false;
                break;
        }
        return r;
    }

    public boolean isRight()
    {
        boolean r = false;
        switch(this) {
            case TOP_RIGHT:
            case MIDDLE_RIGHT:
            case BOTTOM_RIGHT:
                r = true;
                break;
            default:
                r = false;
                break;
        }
        return r;
    }

    public boolean isCenter()
    {
        boolean r = false;
        switch(this) {
            case TOP_CENTER:
            case MIDDLE_CENTER:
            case BOTTOM_CENTER:
                r = true;
                break;
            default:
                r = false;
                break;
        }
        return r;
    }

    private static int hudLeft = 0;
    private static int hudBottom = 0;
    private static int hudWidth = Gdx.graphics.getWidth();
    private static int hudHeight = Gdx.graphics.getHeight();

    public static void update(int width, int height)
    {
        update(0, 0, width, height);
    }

    public static void update(int left, int bottom, int width, int height)
    {
        hudLeft = left;
        hudBottom = bottom;
        hudWidth = width;
        hudHeight = height;
    }

    public float getX(float width)
    {
        float x = hudLeft;
        switch(this) {
            case TOP_LEFT:
            case MIDDLE_LEFT:
            case BOTTOM_LEFT:
                x += Hud.OFFSET;
                break;
            case TOP_CENTER:
            case MIDDLE_CENTER:
            case BOTTOM_CENTER:
                x += ((hudWidth - width) / 2);
                break;
            case TOP_RIGHT:
            case MIDDLE_RIGHT:
            case BOTTOM_RIGHT:
                x += (hudWidth - width - Hud.OFFSET);
                break;
            default:
                x += ((hudWidth - width) / 2);
                break;
        }
        return x;
    }

    public float getY(float height)
    {
        float y = hudBottom;
        switch(this) {
            case TOP_LEFT:
            case TOP_CENTER:
            case TOP_RIGHT:
                y += (hudHeight - height - Hud.OFFSET);
                break;
            case MIDDLE_LEFT:
            case MIDDLE_CENTER:
            case MIDDLE_RIGHT:
                y += ((hudHeight - height) / 2);
                break;
            case BOTTOM_LEFT:
            case BOTTOM_CENTER:
            case BOTTOM_RIGHT:
                y += Hud.OFFSET;
                break;
            default:
                y += ((hudHeight - height) / 2);
                break;
        }
        return y;
    }

    public float getX(Widget widget, float width)
    {
        float x = 0;
        switch(this) {
            case TOP_LEFT:
            case MIDDLE_LEFT:
            case BOTTOM_LEFT:
                x = widget.getX();
                break;
            case TOP_CENTER:
            case MIDDLE_CENTER:
            case BOTTOM_CENTER:
                x = (widget.getX() + ((widget.getWidth() - width) / 2));
                break;
            case TOP_RIGHT:
            case MIDDLE_RIGHT:
            case BOTTOM_RIGHT:
                x = (widget.getX() + widget.getWidth() - width);
                break;
            default:
                x = (widget.getX() + ((widget.getWidth() - width) / 2));
                break;
        }
        return x;
    }

    public float getY(Widget widget, float height)
    {
        float y = 0;
        switch(this) {
            case TOP_LEFT:
            case TOP_CENTER:
            case TOP_RIGHT:
                y = (widget.getY() + widget.getHeight() - height);
                break;
            case MIDDLE_LEFT:
            case MIDDLE_CENTER:
            case MIDDLE_RIGHT:
                y = (widget.getY() + ((widget.getHeight() - height) / 2));
                break;
            case BOTTOM_LEFT:
            case BOTTOM_CENTER:
            case BOTTOM_RIGHT:
                y = widget.getY();
                break;
            default:
                y = (widget.getY() + ((widget.getHeight() - height) / 2));
                break;
        }
        return y;
    }
}