-
Notifications
You must be signed in to change notification settings - Fork 18
/
cursorscene.ts
135 lines (122 loc) · 3.91 KB
/
cursorscene.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
namespace microcode {
export class CursorScene extends Scene {
navigator: INavigator
public cursor: Cursor
public picker: Picker
constructor(app: App) {
super(app, "scene")
this.color = 11
}
protected moveCursor(dir: CursorDir) {
try {
this.moveTo(this.cursor.move(dir))
} catch (e) {
if (dir === CursorDir.Up && e.kind === BACK_BUTTON_ERROR_KIND)
this.back()
else if (
dir === CursorDir.Down &&
e.kind === FORWARD_BUTTON_ERROR_KIND
)
return
else throw e
}
}
protected moveTo(target: Button) {
if (!target) return
this.cursor.moveTo(
target.xfrm.worldPos,
target.ariaId,
target.bounds
)
}
/* override */ startup() {
super.startup()
control.onEvent(
ControllerButtonEvent.Pressed,
controller.right.id,
() => this.moveCursor(CursorDir.Right)
)
control.onEvent(
ControllerButtonEvent.Pressed,
controller.up.id,
() => this.moveCursor(CursorDir.Up)
)
control.onEvent(
ControllerButtonEvent.Pressed,
controller.down.id,
() => this.moveCursor(CursorDir.Down)
)
control.onEvent(
ControllerButtonEvent.Pressed,
controller.left.id,
() => this.moveCursor(CursorDir.Left)
)
// click
const click = () => this.cursor.click()
control.onEvent(
ControllerButtonEvent.Pressed,
controller.A.id,
click
)
control.onEvent(
ControllerButtonEvent.Pressed,
controller.A.id + keymap.PLAYER_OFFSET,
click
)
control.onEvent(
ControllerButtonEvent.Pressed,
controller.B.id,
() => this.back()
)
this.cursor = new Cursor()
this.picker = new Picker(this.cursor)
this.navigator = new RowNavigator()
this.cursor.navigator = this.navigator
}
back() {
if (!this.cursor.cancel()) this.moveCursor(CursorDir.Back)
}
protected handleClick(x: number, y: number) {
const target = this.cursor.navigator.screenToButton(
x - Screen.HALF_WIDTH,
y - Screen.HALF_HEIGHT
)
if (target) {
this.moveTo(target)
target.click()
} else if (this.picker.visible) {
this.picker.hide()
}
}
protected handleMove(x: number, y: number) {
const btn = this.cursor.navigator.screenToButton(
x - Screen.HALF_WIDTH,
y - Screen.HALF_HEIGHT
)
if (btn) {
const w = btn.xfrm.worldPos
this.cursor.snapTo(w.x, w.y, btn.ariaId, btn.bounds)
btn.reportAria(true)
}
}
/* override */ shutdown() {
this.navigator.clear()
}
/* override */ activate() {
super.activate()
const btn = this.navigator.initialCursor(0, 0)
if (btn) {
const w = btn.xfrm.worldPos
this.cursor.snapTo(w.x, w.y, btn.ariaId, btn.bounds)
btn.reportAria(true)
}
}
/* override */ update() {
this.cursor.update()
}
/* override */ draw() {
this.picker.draw()
this.cursor.draw()
}
}
}