-
Notifications
You must be signed in to change notification settings - Fork 18
/
button.ts
274 lines (242 loc) · 7.05 KB
/
button.ts
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
namespace microcode {
export class Borders {
constructor(
public top: number,
public bottom: number,
public left: number,
public right: number
) {}
}
export class ButtonStyle {
constructor(
public fill: number,
public borders: Borders,
public shadow: boolean
) {}
}
export namespace ButtonStyles {
export const ShadowedWhite = new ButtonStyle(
1,
new Borders(1, 12, 1, 1),
true
)
export const LightShadowedWhite = new ButtonStyle(
1,
new Borders(1, 11, 1, 1),
true
)
export const FlatWhite = new ButtonStyle(
1,
new Borders(1, 1, 1, 1),
false
)
/*
export const RectangleWhite = new ButtonStyle(
1,
new Borders(0, 0, 0, 0),
false
)
*/
export const BorderedPurple = new ButtonStyle(
11,
new Borders(12, 12, 12, 12),
false
)
export const RedBorderedWhite = new ButtonStyle(
1,
new Borders(2, 2, 2, 2),
false
)
export const Transparent = new ButtonStyle(
0,
new Borders(0, 0, 0, 0),
false
)
}
export function borderLeft(style: ButtonStyle) {
return style.borders.left ? 1 : 0
}
export function borderTop(style: ButtonStyle) {
return style.borders.top ? 1 : 0
}
export function borderRight(style: ButtonStyle) {
return style.borders.right ? 1 : 0
}
export function borderBottom(style: ButtonStyle) {
return style.borders.bottom ? 1 : 0
}
export function borderWidth(style: ButtonStyle) {
return borderLeft(style) + borderRight(style)
}
export function borderHeight(style: ButtonStyle) {
return borderTop(style) + borderBottom(style)
}
export class ButtonBase implements IComponent, ISizable, IPlaceable {
public icon: Sprite
private xfrm_: Affine
private style: ButtonStyle
constructor(x: number, y: number, style: ButtonStyle, parent: Affine) {
this.xfrm_ = new Affine()
this.xfrm.localPos.x = x
this.xfrm.localPos.y = y
this.style = style
this.xfrm.parent = parent
}
public get xfrm() {
return this.xfrm_
}
public get width() {
return this.bounds.width
}
public get height() {
return this.bounds.height
}
public get bounds() {
// Returns bounds in local space
return Bounds.GrowXY(
this.icon.bounds,
borderLeft(this.style),
borderTop(this.style)
)
}
public get rootXfrm(): Affine {
let xfrm = this.xfrm
while (xfrm.parent) {
xfrm = xfrm.parent
}
return xfrm
}
public buildSprite(img: Image) {
this.icon = new Sprite({
parent: this,
img,
})
this.icon.xfrm.parent = this.xfrm
}
public getImage() {
return this.icon.image
}
public occlusions(bounds: Bounds) {
return this.icon.occlusions(bounds)
}
public setVisible(visible: boolean) {
this.icon.invisible = !visible
if (!visible) {
this.hover(false)
}
}
public visible() {
return !this.icon.invisible
}
public hover(hov: boolean) {}
public update() {}
isOffScreenX(): boolean {
return this.icon.isOffScreenX()
}
draw() {
control.enablePerfCounter()
this.drawStyle()
this.drawIcon()
}
private drawIcon() {
control.enablePerfCounter()
this.icon.draw()
}
private drawStyle() {
control.enablePerfCounter()
if (this.style.fill)
Screen.fillBoundsXfrm(
this.xfrm,
this.icon.bounds,
this.style.fill
)
if (this.style.borders)
Screen.outlineBoundsXfrm4(
this.xfrm,
this.icon.bounds,
1,
this.style.borders
)
if (this.style.shadow) {
Screen.setPixelXfrm(
this.xfrm,
this.icon.bounds.left - 1,
this.icon.bounds.bottom,
this.style.borders.bottom
)
Screen.setPixelXfrm(
this.xfrm,
this.icon.bounds.right + 1,
this.icon.bounds.bottom,
this.style.borders.bottom
)
}
}
}
export class Button extends ButtonBase {
private iconId: string | Image
private _ariaId: string
public onClick?: (button: Button) => void
public get ariaId(): string {
return (
this._ariaId ||
(typeof this.iconId === "string" ? <string>this.iconId : "")
)
}
public set ariaId(value: string) {
this._ariaId = value
}
reportAria(force = false) {
const msg: accessibility.TileAccessibilityMessage = {
type: "tile",
value: this.ariaId,
force,
}
accessibility.setLiveContent(msg)
}
constructor(opts: {
parent?: IPlaceable
style?: ButtonStyle
icon: string | Image
ariaId?: string
x: number
y: number
onClick?: (button: Button) => void
}) {
super(
opts.x,
opts.y,
opts.style || ButtonStyles.Transparent,
opts.parent && opts.parent.xfrm
)
this.iconId = opts.icon
this._ariaId = opts.ariaId
this.onClick = opts.onClick
this.buildSprite(this.image_())
}
public getIcon() {
return this.iconId
}
private image_() {
return typeof this.iconId == "string"
? icons.get(this.iconId)
: this.iconId
}
public setIcon(iconId: string, img?: Image) {
this.iconId = iconId
if (img) this.icon.setImage(img)
else this.buildSprite(this.image_())
}
public clickable() {
return this.visible() && this.onClick != null
}
public click() {
if (!this.visible()) {
return
}
if (this.onClick) {
this.onClick(this)
}
}
}
}