-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInputLine.cpp
More file actions
558 lines (499 loc) · 12.9 KB
/
Copy pathInputLine.cpp
File metadata and controls
558 lines (499 loc) · 12.9 KB
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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
#include <InputLine.h>
/* alphanumeric key mapping */
/* [1] [2] [3]*/
/* [4] [5] [6]*/
/* [7] [8] [9]*/
char alphaNumeric[9][3] = {
{'a','b','c'},{'d','e','f'},{'g','h','i'},
{'j','k','l'},{'m','n','o'},{'p','q','r'},
{'s','t','u'},{'v','w','x'},{'y','z','-'},
};
// <<constructor>> Allows input line on selected row, cyclic rotation, lcd object ref, keypad reference
InputLine::InputLine(int inputRow, bool cyclicRotationChoice, LiquidCrystal *lcdRef, Keypad_I2C *kpdRef) {
row = inputRow;
lcd = lcdRef;
kpd = kpdRef;
cyclicRotation = cyclicRotationChoice;
for(int i = 0; i < SCREENCOLUMNSIZE; i++){
inputLine[i] = ' ';
}
for(int i = 0; i < SCREENCOLUMNSIZE; i++){
avaliable[i] = true;
}
keyCount = 0;
noOfInputFields = 0;
cursorWait = CURSORBLINKRATE;
lastChar = '>';
charCount = 0;
inputActive = true;
cursorActive = true;
cursorMove = false;
cursorMoveTimer = CURSORMOVETIME;
inputs = (InputField*)malloc(sizeof(InputField));
inputs->next = NULL;
active = (InputField*)malloc(sizeof(InputField));
active->next = NULL;
}
void InputLine::lcdSetCursor(int col, int row){
lcd->setCursor(col, row);
}
void InputLine::lcdPrint(char c){
lcd->print(c);
}
char InputLine::keyPadReadKey(){
return kpd->getKey();
}
void InputLine::enableInput(bool enable){
inputActive = enable;
// if input is closed print the final result
// in order to make sure cursor is not left visible
if(!enable){
displayInput();
}
}
int InputLine::checkSpace(int start, int length){
//check if there is space for new label
if(start+length<=SCREENCOLUMNSIZE){
for(int i = 0; i < length; i++){
if(!avaliable[start + i]){
return 0; //false
}
}
} else {
return 0;
}
return 1; //true
}
void InputLine::moveCursorForward(){
//move cursor forwards if there is still space in this field
// else jump to next input field
if(cursorPoint < active->finish){
cursorPoint++;
cursorMove = false;
displayInput();
} else {
if(jumpField(true, true, true)){
displayInput();
}
}
}
void InputLine::moveCursorBackward(){
//move cursor backwards if there is still space in this field
// else jump to previous input field
if(cursorPoint > active->start){
cursorPoint--;
cursorMove = false;
displayInput();
} else {
if(jumpField(false, true, true)){
displayInput();
}
}
}
void InputLine::removeCurrentElementMoveForward(){
// remove current element from active input field
// else jump to next input field and remove first element
if(cursorPoint < active->finish){
inputLine[cursorPoint] = ' ';
displayInput();
cursorPoint++;
cursorMove = false;
cursorMoveTimer = CURSORMOVETIME;
} else if(cursorPoint == active->finish){
inputLine[cursorPoint] = ' ';
jumpField(true, false, true);
displayInput();
}
}
void InputLine::removeCurrentElementMoveBackward(){
// remove current element from active input field
// else jump to previous input field and remove last element
if(cursorPoint > active->start){
inputLine[cursorPoint] = ' ';
cursorPoint--;
displayInput();
cursorMove = false;
} else if(cursorPoint == active->start) {
inputLine[cursorPoint] = ' ';
jumpField(false, false, true);
displayInput();
}
}
void InputLine::switchInputMode(){
// if alphanumeric input is active, allow switching between letters/numbers
if(active->inputMode == 3){
if(currentReadMode == 1){
currentReadMode = 0;
} else {
currentReadMode = 1;
}
if(active->smartInput){
active->defaultInputMode = currentReadMode;
}
cursorMove = false;
cursorMoveTimer = CURSORMOVETIME;
}
}
void InputLine::displayInput(){
for(int i = 0; i < SCREENCOLUMNSIZE; i++){
lcdSetCursor(i, row);
lcdPrint(inputLine[i]);
}
}
void InputLine::cursorBlinker(){
if(cursorWait < 0){
if(cursorActive){
lcdPrint('_');
cursorActive = false;
} else {
lcdPrint(inputLine[cursorPoint]);
cursorActive = true;
}
cursorWait = CURSORBLINKRATE;
} else {
cursorWait--;
}
}
int InputLine::findSpace(int length){
for(int i = 0; i + length <= SCREENCOLUMNSIZE; i++){
if(avaliable[i]){
if(checkSpace(i, length) == 1){
return i;
} else {
i = i + length;
}
}
}
return -1;
}
bool InputLine::addLabel(char* text){
int length = strlen(text);
int start = findSpace(length) + 1;
if(start != 0){
return addLabel(start, text);
} else {
return false;
}
}
bool InputLine::addLabel(int start, char* text){
int length = strlen(text);
bool spaceAvaliable = checkSpace(start-1, length);
start--;
// if space is avaliable set label text
// mark corresponding spaces unavaliable
if(spaceAvaliable){
for(int i = 0; i < length; i++){
avaliable[start + i] = false;
inputLine[start + i] = text[i];
}
displayInput();
return true;
} else {
return false;
}
}
bool InputLine::addInputField(int length, int inputMode){
int start = findSpace(length) + 1;
if(start != 0){
return addInputField(start, length, inputMode);
} else {
return false;
}
}
bool InputLine::addInputField(int start, int length, int inputMode){
int spaceAvaliable = checkSpace(start-1, length);
if(spaceAvaliable == 1){
start--;
// try to allocate memory for new input field
struct InputField *newInputField = (struct InputField*)malloc(sizeof(struct InputField));
if(newInputField == NULL){
return false;
}
newInputField->start = start;
newInputField->finish = start + length - 1;
newInputField->inputMode = inputMode;
newInputField->defaultInputMode = inputMode;
newInputField->smartInput = false;
newInputField->previous = NULL;
newInputField->next = NULL;
if(inputs->next == NULL){
//insert new InputField at the head of InputField list
inputs->next = newInputField;
//first input field is default active input field
active = newInputField;
cursorPoint = start;
//set currentReadMode to fields input mode
currentReadMode = inputMode;
} else {
//insert new InputField at the end of InputField list
struct InputField *iterator = inputs;
while (true) {
if(iterator->next == NULL)
{
iterator->next = newInputField;
newInputField->previous = iterator;
break;
}
iterator = iterator->next;
};
}
noOfInputFields++;
/* mark space as not avaliable */
for(int i = 0; i < length; i++){
avaliable[start + i] = false;
}
return true;
} else if(spaceAvaliable == 0){
return false;
}
}
bool InputLine::addInputField(int length, int inputMode, int defaultInputMode, bool smartInputType){
int start = findSpace(length) + 1;
if(start != 0){
return addInputField(start, length, inputMode, defaultInputMode, smartInputType);
} else {
return false;
}
}
bool InputLine::addInputField(int start, int length, int inputMode, int defaultInputMode, bool smartInputType){
int spaceAvaliable = checkSpace(start-1, length);
if(spaceAvaliable == 1){
start--;
// try to allocate memory for new input field
struct InputField *newInputField = (struct InputField*)malloc(sizeof(struct InputField));
if(newInputField == NULL){
return false;
}
newInputField->start = start;
newInputField->finish = start + length - 1;
newInputField->inputMode = inputMode;
newInputField->defaultInputMode = defaultInputMode;
newInputField->smartInput = smartInputType;
newInputField->previous = NULL;
newInputField->next = NULL;
if(inputs->next == NULL){
//insert new InputField at the head of InputField list
inputs->next = newInputField;
//first input field is default active input field
active = newInputField;
cursorPoint = start;
//set currentReadMode to fields input mode
currentReadMode = defaultInputMode;
} else {
//insert new InputField at the end of InputField list
struct InputField *iterator = inputs;
while (true) {
if(iterator->next == NULL)
{
iterator->next = newInputField;
newInputField->previous = iterator;
break;
}
iterator = iterator->next;
};
}
noOfInputFields++;
/* mark space as not avaliable */
for(int i = 0; i < length; i++){
avaliable[start + i] = false;
}
return true;
} else if(spaceAvaliable == 0){
return false;
}
}
bool InputLine::jumpField(bool jumpNext, bool doCyclicRotation, bool resetCursorMove){
if(jumpNext){
if(active->next != NULL){
active = active->next;
cursorPoint = active->start;
currentReadMode = active->defaultInputMode;
if(resetCursorMove){
cursorMove = false;
cursorMoveTimer = CURSORMOVETIME;
}
} else if(doCyclicRotation && cyclicRotation){
active = inputs->next;
cursorPoint = active->start;
currentReadMode = active->defaultInputMode;
if(resetCursorMove){
cursorMove = false;
cursorMoveTimer = CURSORMOVETIME;
}
} else {
return false;
}
} else {
if(active->previous != NULL){
active = active->previous;
cursorPoint = active->finish;
currentReadMode = active->defaultInputMode;
if(resetCursorMove){
cursorMove = false;
cursorMoveTimer = CURSORMOVETIME;
}
} else if(doCyclicRotation && cyclicRotation){
struct InputField *iterator = inputs;
while (true) {
if(iterator->next == NULL)
{
active = iterator;
break;
}
iterator = iterator->next;
};
cursorPoint = active->finish;
currentReadMode = active->defaultInputMode;
if(resetCursorMove){
cursorMove = false;
cursorMoveTimer = CURSORMOVETIME;
}
} else {
return false;
}
}
return true;
}
char* InputLine::getInputFieldAsCharArr(int fieldNo){
struct InputField *iterator = inputs;
for(int i = 0; i < fieldNo; i++){
if(iterator->next == NULL){
return NULL;
}
iterator = iterator->next;
}
if(textToReturn != NULL){
free(textToReturn);
}
int length = iterator->finish - iterator->start + 1;
textToReturn = (char*) malloc (length*sizeof(char));
textToReturn[0] = '\0';
int index = 0;
for(int i = iterator->start; i <= iterator->finish; i++){
textToReturn[index+1] = textToReturn[index];
textToReturn[index++] = inputLine[i];
}
return textToReturn;
}
int InputLine::getInputFieldAsInt(int fieldNo){
struct InputField *iterator = inputs;
for(int i = 0; i < fieldNo; i++){
if(iterator->next == NULL){
return NULL;
}
iterator = iterator->next;
}
int currentNumber;
int total = 0;
int multiplier = 1;
for(int i = iterator->finish; i >= iterator->start; i--){
currentNumber = inputLine[i] - '0';
if(currentNumber >= 0 && currentNumber <= 9){
total = total + (currentNumber * multiplier);
multiplier = multiplier * 10;
} else {
return NULL;
}
}
return total;
}
void InputLine::readInput(){
if(inputActive){
lcdSetCursor(cursorPoint, row);
cursorBlinker();
char key = keyPadReadKey();
switch(currentReadMode){
case 0: readNumbers(key); break;
case 1: readLetters(key); break;
default: break;
}
}
}
void InputLine::readLetters(char key){
if(cursorMove){
if(cursorMoveTimer < 1){
if(cursorPoint < active->finish){
cursorMove = false;
cursorMoveTimer = CURSORMOVETIME;
cursorPoint++;
displayInput();
lastChar = '/';
} else {
if(jumpField(true, false, true)){
displayInput();
lastChar = '/';
}
}
} else {
cursorMoveTimer--;
}
}
switch (key){
case 'A': enableInput(false); break;
case 'B': moveCursorForward(); break;
case 'C': moveCursorBackward(); break;
case 'D': switchInputMode(); break;
case '*': removeCurrentElementMoveBackward(); break;
case '#': removeCurrentElementMoveForward(); break;
default:
//no key assigned to 0 while reading letters
if(key && key != '0'){
if(cursorPoint <= active->finish){
if(lastChar == key){
int pos = key - '0';
if(charCount > 2){
charCount = 0;
}
cursorMoveTimer = CURSORMOVETIME;
inputLine[cursorPoint] = alphaNumeric[pos-1][charCount];
charCount++;
cursorMoveTimer = CURSORMOVETIME;
displayInput();
} else {
int pos = key - '0';
charCount = 0;
if(cursorMove == true){
if(cursorPoint < active->finish){
cursorPoint++;
}else{
jumpField(true, false, true);
}
}
//check if the input mode is still alphabetic
//it might have been changed by jumping to next input field
if(currentReadMode == 1){
inputLine[cursorPoint] = alphaNumeric[pos-1][charCount];
cursorMove = true;
cursorMoveTimer = CURSORMOVETIME;
lastChar = key;
}
displayInput();
}
}
}
break;
}
}
void InputLine::readNumbers(char key){
switch (key){
case 'A': enableInput(false); break;
case 'B': moveCursorForward(); break;
case 'C': moveCursorBackward(); break;
case 'D': switchInputMode(); break;
case '*': removeCurrentElementMoveBackward(); break;
case '#': removeCurrentElementMoveForward(); break;
default:
if(key){
if(cursorPoint <= active->finish){
inputLine[cursorPoint] = key;
if(cursorPoint == active->finish){
jumpField(true, false, false);
} else {
cursorPoint++;
}
displayInput();
}
}
break;
}
}