forked from espruino/BangleApps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
more_pickers.js
231 lines (214 loc) · 7.3 KB
/
more_pickers.js
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
/* see more_pickers.md for more information */
exports.doublePicker = function (options) {
var menuIcon = "\0\f\f\x81\0\xFF\xFF\xFF\0\0\0\0\x0F\xFF\xFF\xF0\0\0\0\0\xFF\xFF\xFF";
var R = Bangle.appRect;
g.reset().clearRect(R);
g.setFont("12x20").setFontAlign(0, 0).drawString(menuIcon + " " + options.title, R.x + R.w / 2, R.y + 12);
var v_1 = options.value_1;
var v_2 = options.value_2;
function draw1() {
var txt_1 = options.format_1 ? options.format_1(v_1) : v_1;
g.setColor(g.theme.bg2)
.fillRect(14, 60, 81, 166)
.setColor(g.theme.fg2)
.fillPoly([47.5, 68, 62.5, 83, 32.5, 83])
.fillPoly([47.5, 158, 62.5, 143, 32.5, 143])
.setFontAlign(0, 0)
.setFontVector(Math.min(30, (R.w - 110) * 100 / g.setFontVector(100).stringWidth(txt_1)))
.drawString(txt_1, 47.5, 113);
}
function draw2() {
var txt_2 = options.format_2 ? options.format_2(v_2) : v_2;
g.setColor(g.theme.bg2)
.fillRect(95, 60, 162, 166)
.setColor(g.theme.fg2)
.fillPoly([128.5, 68, 143.5, 83, 113.5, 83])
.fillPoly([128.5, 158, 143.5, 143, 113.5, 143])
.setFontAlign(0, 0)
.setFontVector(Math.min(30, (R.w - 110) * 100 / g.setFontVector(100).stringWidth(txt_2)))
.drawString(txt_2, 128.5, 113);
}
function drawSeparator(){
g.setFontVector(30).drawString(options.separator ?? "", 88, 110);
}
function drawAll() {
draw1();
draw2();
drawSeparator()
}
function cb(dir, x_part) {
if (dir) {
if (x_part == -1) {
v_1 -= (dir || 1) * (options.step_1 || 1);
if (options.min_1 !== undefined && v_1 < options.min_1) v_1 = options.wrap_1 ? options.max_1 : options.min_1;
if (options.max_1 !== undefined && v_1 > options.max_1) v_1 = options.wrap_1 ? options.min_1 : options.max_1;
draw1();
} else {
v_2 -= (dir || 1) * (options.step_2 || 1);
if (options.min_2 !== undefined && v_2 < options.min_2) v_2 = options.wrap_2 ? options.max_2 : options.min_2;
if (options.max_2 !== undefined && v_2 > options.max_2) v_2 = options.wrap_2 ? options.min_2 : options.max_2;
draw2();
}
drawSeparator();
} else { // actually selected
options.value_1 = v_1;
options.value_2 = v_2;
if (options.onchange) options.onchange(options.value_1, options.value_2);
options.back(); // redraw original menu
}
}
drawAll();
var dy = 0;
Bangle.setUI({
mode: "custom",
back: options.back,
remove: options.remove,
redraw: drawAll,
drag: e => {
dy += e.dy; // after a certain amount of dragging up/down fire cb
if (!e.b) dy = 0;
var x_part;
if (e.x <= 88) {
x_part = -1;
} else {
x_part = 1;
}
while (Math.abs(dy) > 32) {
if (dy > 0) { dy -= 32; cb(1, x_part); }
else { dy += 32; cb(-1, x_part); }
Bangle.buzz(20);
}
},
touch: (_, e) => {
Bangle.buzz(20);
var x_part;
if (e.x <= 88) {
x_part = -1;
} else {
x_part = 1;
}
if (e.y < 82) cb(-1, x_part); // top third
else if (e.y > 142) cb(1, x_part); // bottom third
else cb(); // middle = accept
}
});
}
exports.triplePicker = function (options) {
var menuIcon = "\0\f\f\x81\0\xFF\xFF\xFF\0\0\0\0\x0F\xFF\xFF\xF0\0\0\0\0\xFF\xFF\xFF";
var R = Bangle.appRect;
g.reset().clearRect(R);
g.setFont("12x20").setFontAlign(0, 0).drawString(menuIcon + " " + options.title, R.x + R.w / 2, R.y + 12);
var v_1 = options.value_1;
var v_2 = options.value_2;
var v_3 = options.value_3;
function draw1() {
var txt_1 = options.format_1 ? options.format_1(v_1) : v_1;
g.setColor(g.theme.bg2)
.fillRect(8, 60, 56, 166)
.setColor(g.theme.fg2)
.fillPoly([32, 68, 47, 83, 17, 83])
.fillPoly([32, 158, 47, 143, 17, 143])
.setFontAlign(0, 0)
.setFontVector(Math.min(30, (R.w - 130) * 100 / g.setFontVector(100).stringWidth(txt_1)))
.drawString(txt_1, 32, 113);
}
function draw2() {
var txt_2 = options.format_2 ? options.format_2(v_2) : v_2;
g.setColor(g.theme.bg2)
.fillRect(64, 60, 112, 166)
.setColor(g.theme.fg2)
.fillPoly([88, 68, 103, 83, 73, 83])
.fillPoly([88, 158, 103, 143, 73, 143])
.setFontAlign(0, 0)
.setFontVector(Math.min(30, (R.w - 130) * 100 / g.setFontVector(100).stringWidth(txt_2)))
.drawString(txt_2, 88, 113);
}
function draw3() {
var txt_3 = options.format_3 ? options.format_3(v_3) : v_3;
g.setColor(g.theme.bg2)
.fillRect(120, 60, 168, 166)
.setColor(g.theme.fg2)
.fillPoly([144, 68, 159, 83, 129, 83])
.fillPoly([144, 158, 159, 143, 129, 143])
.setFontAlign(0, 0)
.setFontVector(Math.min(30, (R.w - 130) * 100 / g.setFontVector(100).stringWidth(txt_3)))
.drawString(txt_3, 144, 113);
}
function drawSeparators(){
g.setFontVector(30)
.drawString(options.separator_1 ?? "", 60, 113)
.drawString(options.separator_2 ?? "", 116, 113);
}
function drawAll() {
draw1();
draw2();
draw3();
drawSeparators();
}
function cb(dir, x_part) {
if (dir) {
if (x_part == -1) {
v_1 -= (dir || 1) * (options.step_1 || 1);
if (options.min_1 !== undefined && v_1 < options.min_1) v_1 = options.wrap_1 ? options.max_1 : options.min_1;
if (options.max_1 !== undefined && v_1 > options.max_1) v_1 = options.wrap_1 ? options.min_1 : options.max_1;
draw1();
} else if (x_part == 0) {
v_2 -= (dir || 1) * (options.step_2 || 1);
if (options.min_2 !== undefined && v_2 < options.min_2) v_2 = options.wrap_2 ? options.max_2 : options.min_3;
if (options.max_2 !== undefined && v_2 > options.max_2) v_2 = options.wrap_2 ? options.min_2 : options.max_3;
draw2();
} else {
v_3 -= (dir || 1) * (options.step_3 || 1);
if (options.min_3 !== undefined && v_3 < options.min_3) v_3 = options.wrap_3 ? options.max_3 : options.min_3;
if (options.max_3 !== undefined && v_3 > options.max_3) v_3 = options.wrap_3 ? options.min_3 : options.max_3;
draw3();
}
drawSeparators();
} else { // actually selected
options.value_1 = v_1;
options.value_2 = v_2;
options.value_3 = v_3;
if (options.onchange) options.onchange(options.value_1, options.value_2, options.value_3);
options.back(); // redraw original menu
}
}
drawAll();
var dy = 0;
Bangle.setUI({
mode: "custom",
back: options.back,
remove: options.remove,
redraw: drawAll,
drag: e => {
dy += e.dy; // after a certain amount of dragging up/down fire cb
if (!e.b) dy = 0;
var x_part;
if (e.x <= 58) {
x_part = -1;
} else if (58 < e.x && e.x <= 116) {
x_part = 0;
} else {
x_part = 1;
}
while (Math.abs(dy) > 32) {
if (dy > 0) { dy -= 32; cb(1, x_part); }
else { dy += 32; cb(-1, x_part); }
Bangle.buzz(20);
}
},
touch: (_, e) => {
Bangle.buzz(20);
var x_part;
if (e.x <= 58) {
x_part = -1;
} else if (58 < e.x && e.x <= 116) {
x_part = 0;
} else {
x_part = 1;
}
if (e.y < 82) cb(-1, x_part); // top third
else if (e.y > 142) cb(1, x_part); // bottom third
else cb(); // middle = accept
}
});
}