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
|
package ch.asynk.rustanddust.ui;
import com.badlogic.gdx.utils.Disposable;
import com.badlogic.gdx.math.Rectangle;
import com.badlogic.gdx.graphics.glutils.ShapeRenderer;
import ch.asynk.rustanddust.engine.gfx.Drawable;
public abstract class Widget implements Disposable, Drawable
{
public boolean blocked;
public boolean visible;
protected float padding;
protected Rectangle rect;
protected Position position;
protected Widget parent;
protected Widget()
{
this.parent = null;
this.blocked = false;
this.visible = true;
this.padding = 0f;
this.rect = new Rectangle(0, 0, 0, 0);
this.position = Position.MIDDLE_CENTER;
}
public float getX() { return rect.x; }
public float getY() { return rect.y; }
public float getWidth() { return rect.width; }
public float getHeight() { return rect.height; }
public float getTop() { return rect.y + rect.height; }
public void translate(float dx, float dy)
{
rect.x += dx;
rect.y += dy;
}
public void setPosition(Rectangle r)
{
rect.set(r.x, r.x, r.width, r.height);
}
public void setPosition(float x, float y)
{
setPosition(x, y, rect.width, rect.height);
}
// override this if needed
public void setPosition(float x, float y, float w, float h)
{
rect.set(x, y, w, h);
}
public void setPosition(Position position)
{
setPosition(position, this.parent);
}
public void setPosition(Position position, Widget parent)
{
this.position = position;
setParent(parent);
}
public void setParent(Widget parent)
{
float x, y;
this.parent = parent;
if (parent == null) {
x = position.getX(rect.width);
y = position.getY(rect.height);
} else {
x = position.getX(parent, rect.width);
y = position.getY(parent, rect.height);
}
setPosition(x, y);
}
public void setTopRight(Widget btn)
{
btn.setPosition((getX() + getWidth() - (btn.getWidth() * 0.666f)), (getTop() - (btn.getHeight() * 0.666f)));
}
public void setTopLeft(Widget btn)
{
btn.setPosition((getX() - (btn.getWidth() * 0.333f)), (getTop() - (btn.getHeight() * 0.666f)));
}
public void setBottomRight(Widget btn)
{
btn.setPosition((getX() + getWidth() - (btn.getWidth() * 0.666f)), (getY() - (btn.getHeight() * 0.333f)));
}
public void setBottomLeft(Widget btn)
{
btn.setPosition((getX() - (btn.getWidth() * 0.333f)), (getY() - (btn.getHeight() * 0.333f)));
}
public boolean hit(float x, float y)
{
if (blocked || !visible) return false;
return rect.contains(x, y);
}
@Override
public void drawDebug(ShapeRenderer shapes)
{
if (!visible) return;
shapes.rect(rect.x, rect.y, rect.width, rect.height);
}
}
|