forked from cgwood/ArdustationMega
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pageSettings.ino
380 lines (331 loc) · 8.62 KB
/
pageSettings.ino
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
/*
* pageSettings.ino
*
* Created on: 20 Oct 2013
* Author: Colin
*/
////////////////////////////////////////////////////////////////////////////////
// Settings page
////////////////////////////////////////////////////////////////////////////////
PageSettings::PageSettings() {
uint8_t i;
/// Copy the header and types to internal storage
_scale = (uint8_t*) SettingScales;
_decPos = (uint8_t*) SettingDPs;
_settingsCount = ASM_SETTINGS_COUNT;
// Ensure we're at the top of the page not editing anything to start with
_state = 0;
_stateFirstVal = 0;
}
uint8_t PageSettings::_enter(void) {
_drawLocal();
}
uint8_t PageSettings::_forceUpdate(uint8_t reason) {
return 0;
}
uint8_t PageSettings::_redefine(void) {
}
uint8_t PageSettings::_refresh_med() {
return 0;
}
uint8_t PageSettings::_refresh_slow() {
return 0;
}
void PageSettings::_drawLocal(void) {
uint8_t c;
uint8_t i;
uint8_t j;
uint8_t k;
uint8_t lineno;
char decBuf[20 - PARAMNAMEFIELDWIDTH];
uint32_t value;
float value_local;
lcd.ClearArea();
// Write the value names down the left hand side
i = 0;
for (j = 0; j < _stateFirstVal + LINECOUNT; j++) { //Need to go from zero to read through the string
// If there are less settings than available lines, quit at end of list
if (j >= _settingsCount)
break;
if (j >= _stateFirstVal)
lcd.CursorTo(0, j - _stateFirstVal);
k = 0;
for (;;) {
c = pgm_read_byte_near(SettingNames + i++);
if (0 == c)
break;
if ('\n' == c)
break;
else {
if (j >= _stateFirstVal && k++ < PARAMNAMEFIELDWIDTH)
lcd.write(c);
}
}
}
// Write the values
for (lineno = 0; lineno < LINECOUNT; lineno++) {
lcd.CursorTo(PARAMNAMEFIELDWIDTH + 2, lineno);
i = _stateFirstVal + lineno;
if (i >= _settingsCount)
break;
// Load the value, either editing or live val
if (i == (_state - 101))
value = _value_temp;
else {
nvram.load_setting(&i,&value_local);
value = (uint32_t) floor(value_local + 0.5);
}
char text_value[7];
nvram.load_setting_text(&i, -32768, text_value);
GLCD.CursorTo(PARAMNAMEFIELDWIDTH + 2, lineno);
GLCD.print(text_value);
}
}
/// Draw the "choosing" marker
void PageSettings::_paintMarker(void) {
if (_state > 0 && _state < 100) {
lcd.CursorTo(PARAMNAMEFIELDWIDTH, _state - 1 - _stateFirstVal);
lcd.write('>');
} else if (_state > 100 && _state < 200) {
lcd.CursorTo(PARAMNAMEFIELDWIDTH, _state - 101 - _stateFirstVal);
lcd.write('#');
}
}
/// remove the "choosing" marker
void PageSettings::_clearMarker(void) {
if (_state > 0 && _state < 200) {
if (_state > 100)
lcd.CursorTo(PARAMNAMEFIELDWIDTH, _state - 101 - _stateFirstVal);
else
lcd.CursorTo(PARAMNAMEFIELDWIDTH, _state - 1 - _stateFirstVal);
lcd.write(' ');
}
}
void PageSettings::_alterLocal(float alterMag) {
/// Bounds on values
int16_t min,max;
uint8_t j;
j = _state - 101;
nvram.get_setting_bounds(&j,&min,&max);
// if (_value_temp + alterMag < min)
// _value_temp = 0;
// else if (_value_temp + alterMag > max)
// _value_temp = max;
// else
// _value_temp += alterMag;
_value_temp = constrain(_value_temp+alterMag,min,max);
// Keep the encoder value updated
if (_scale[_state - 101] == 99 && 99 == _decPos[_state - 101]) {
_value_encoder = (int) (_value_temp);
} else {
_value_encoder = (int) (_value_temp
/ (pow(10, _scale[_state - 101] - _decPos[_state - 101]))); // * 100;
}
// kick the update function
_updated = true;
}
void PageSettings::_redrawLocal(void) {
// uint8_t c;
uint8_t i;
uint8_t j;
// uint8_t lineno;
char decBuf[PIDFIELDWIDTH];
uint32_t value;
float value_local;
uint8_t lineno;
// Check that the state is not in confirmation mode and a value is being pointed at
if (_state < 200 && _state > 0) {
if (_state > 100) {
value_local = _value_temp;
i = _state - 101;
} else {
i = _state - 1;
}
// Find the text version of the value
char text_value[7];
nvram.load_setting_text(&i, (int16_t)value_local, text_value);
// Write the value
lineno = i - _stateFirstVal;
GLCD.CursorTo(PARAMNAMEFIELDWIDTH + 2, lineno);
GLCD.print(text_value);
}
}
void PageSettings::_voidLocal(void) {
// Reset the variable and redraw
uint8_t j = (_state % 100) - 1;
nvram.load_setting(&j,&_value_temp);
_redrawLocal();
// Reset _state
_state = 0;
// Will also have to redraw the value to its original
// kick the update function
_updated = true;
}
void PageSettings::_writeChanges(void) {
uint8_t j;
// Make the changes
j = _state - 101;
nvram.write_setting(&j,&_value_temp);
// Reset _state
_state = 0;
}
uint8_t PageSettings::_interact(uint8_t buttonid) {
_clearMarker();
switch (buttonid) {
case B_UP:
// Navigation
if (_state == 0) {
if (_stateFirstVal > 0) {
_stateFirstVal--;
_drawLocal();
}
} else if (_state > 1 && _state < 100) {
if (_state == (_stateFirstVal + 1)) {
_stateFirstVal--;
_drawLocal();
}
_state--;
}
// Editing
else if (_state > 100 && _state < 200) {
if (_scale[_state - 101] == 99 && 99 == _decPos[_state - 101]) {
if (_value_temp == 0)
_alterLocal(1);
} else {
_alterLocal(1 * pow(10, _scale[_state - 101] - _decPos[_state - 101]));
}
_redrawLocal();
}
// Confirming
else if (_state > 200)
return 0;
break;
case B_DOWN:
// Navigation
if (_state == 0) {
if (_stateFirstVal < _settingsCount - LINECOUNT) {
_stateFirstVal++;
_drawLocal();
}
} else if (_state > 0 && _state < _settingsCount) {
if (_state == (_stateFirstVal + LINECOUNT)) {
_stateFirstVal++;
_drawLocal();
}
_state++;
}
// Editing
else if (_state > 100 && _state < 200) {
if (_scale[_state - 101] == 99 && 99 == _decPos[_state - 101]) {
if (_value_temp == 1)
_alterLocal(-1);
} else {
_alterLocal(-1 * pow(10, _scale[_state - 101] - _decPos[_state - 101]));
}
_redrawLocal();
}
// Confirming
else if (_state > 200)
return 0;
break;
case B_OK:
if (_state == 0) {
// Allow selection if the value is available
if (1)
_state = _stateFirstVal + 1;
} else if (_state < 100) {
// Allow editing if the value is available
if (1) {
uint8_t j;
j = _state - 1;
nvram.load_setting(&j,&_value_temp);
// Configure the encoder
if (_scale[_state - 1] == 99 && 99 == _decPos[_state - 1]) {
_value_encoder = (int) (_value_temp);
rotary.configure(&_value_encoder, 1, 0, -4);
} else {
_value_encoder = (int) (_value_temp / (pow(10, _scale[_state - 1] - _decPos[_state - 1])));
/// Bounds on values
int16_t min,max;
nvram.get_setting_bounds(&j,&min,&max);
rotary.configure(&_value_encoder, max, min, -4);
}
// Copy the value to temp for editing
// memcpy(&_value_temp, _value_live[_state-1], sizeof(_value_temp));
//_value_temp.valueID = _value_live[_state-1].valueID;
//_value_temp.value = _value_live[_state-1].value;
// Update the state
_state += 100;
}
} else if (_state > 100 && _state < 200) {
// Save the value
//_leave(OK);
_writeChanges();
// _state += 100;
return 0; // Leave before we draw the marker again
} else if (_state > 200) { // Should never happen...
// Save the value
//_leave(OK);
_writeChanges();
return 0; // Leave before we draw the marker again
}
break;
case B_LEFT:
// Navigation
if (_state == 0)
Pages::move(-1);
// Editing
else if (_state > 100 && _state < 200
&& !(_scale[_state - 101] == 99 && 99 == _decPos[_state - 101])) {
_alterLocal(-10 * pow(10, _scale[_state - 101] - _decPos[_state - 101]));
_redrawLocal();
}
// Confirming
else if (_state > 200)
return 0;
break;
case B_RIGHT:
// Navigation
if (_state == 0)
Pages::move(1);
// Editing
else if (_state > 100 && _state < 200
&& !(_scale[_state - 101] == 99 && 99 == _decPos[_state - 101])) {
_alterLocal(10 * pow(10, _scale[_state - 101] - _decPos[_state - 101]));
_redrawLocal();
}
// Confirming
else if (_state > 200)
return 0;
break;
case B_CANCEL:
if (_state == 0) {
Pages::move(0);
return 0; // avoid drawing the cursor
} else {
if (_state > 200) {
_drawLocal();
_state = 0;
} else if (_state > 100)
// Don't save the changes to local variable
_voidLocal();
else
_state = 0;
}
break;
case B_ENCODER:
if (_state > 100 && _state < 200) {
if (_scale[_state - 101] == 99 && 99 == _decPos[_state - 101]) {
_value_temp = _value_encoder;
} else {
_value_temp = _value_encoder
* pow(10, _scale[_state - 101] - _decPos[_state - 101]);
}
_redrawLocal();
// Serial.println(_value_encoder);
// Serial.println(_value_temp);
}
break;
}
_paintMarker();
}