-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplays.cpp
498 lines (424 loc) · 9.38 KB
/
displays.cpp
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
#include <iostream>
#include <string>
#include <cstdlib>
#include "displays.hpp"
#ifdef WPI
#include <wiringPi.h>
#define CONSOLE(x) \
do \
{ \
} while (0)
#else
#include <chrono>
#include <thread>
#include <mutex>
#include <ncurses.h>
#define OUTPUT 1
#define LOW 0
#define HIGH 1
#define CONSOLE(x) (x)
std::mutex consoleMutex;
void consoleSetup()
{
initscr();
cbreak();
noecho();
curs_set(0);
clear();
refresh();
}
/*
* Mock methods from the wiringPi interface for the non-Raspberry Pi environments.
* See https://github.com/WiringPi/WiringPi/blob/master/wiringPi/wiringPi.h
*/
int piHiPri(const int pri)
{
return 0;
}
int wiringPiSetupGpio(void)
{
return 0;
}
void pinMode(int pin, int mode)
{
}
void digitalWrite(int pin, int value)
{
}
void delay(unsigned int howLong)
{
this_thread::sleep_for(chrono::milliseconds(howLong));
}
void delayMicroseconds(unsigned int howLong)
{
this_thread::sleep_for(chrono::microseconds(howLong));
}
#endif
using namespace std;
byte displayCounter = 0;
Display::Display(string name, byte sclk, byte data, byte rset)
{
this->id = displayCounter++;
this->name = name;
this->sclk = sclk;
this->data = data;
this->rset = rset;
}
Display::~Display()
{
}
void Display::demo()
{
string txt = "Quick Demo";
string msg = alignCenter(txt);
pause(1);
fadeIn(msg);
print(msg, 2000, BRIGHTNESS_MAX);
fadeOut(msg);
pause(1);
slideLeft(txt);
slideRight(txt);
pause(1);
string msgl = alignLeft(txt);
for (int i = 0; i < 5; i++)
fadeBlink(msgl);
pause(1);
string msgr = alignRight(txt);
for (int i = 0; i < 5; i++)
blink(msgr);
pause(1);
crack(msg);
print(msg, 2000, BRIGHTNESS_MAX);
pause(1);
term(txt);
pause(1);
}
void Display::print(string msg, int millis, byte brightness)
{
CONSOLE(consoleMutex.lock());
CONSOLE(mvprintw((unsigned int)id, 0, "{%s} [%s] (delay %i ms) (brightness %i) ", name.c_str(), msg.c_str(), millis, (unsigned int)brightness));
CONSOLE(refresh());
CONSOLE(consoleMutex.unlock());
setBrightness(brightness);
for (int i = 0; i < DISPLAY_SIZE; i++)
{
writeChar(msg[i]);
}
delay(millis);
}
void Display::fadeIn(string msg)
{
for (int i = 0; i <= BRIGHTNESS_MAX; i++)
{
print(msg, FADE_DELAY, i);
}
}
void Display::fadeOut(string msg)
{
for (int i = BRIGHTNESS_MAX; i >= 0; i--)
{
print(msg, FADE_DELAY, i);
}
}
void Display::fadeBlink(string msg)
{
fadeIn(msg);
fadeOut(msg);
}
void Display::blink(string msg)
{
print(msg, BLINK_DELAY, BRIGHTNESS_MIN);
print(msg, BLINK_DELAY, BRIGHTNESS_MAX);
}
void Display::slideLeft(string msg)
{
msg = BLANK_DISPLAY + msg;
int size = msg.length();
for (int i = 0; i < (size + 1); i++)
{
// TODO - replace with substring
string txt = "";
for (int j = 0; j < DISPLAY_SIZE; j++)
{
txt = txt + msg[(i + j) % size];
}
print(txt, SLIDE_DELAY, BRIGHTNESS_MAX);
}
}
void Display::slideRight(string msg)
{
msg = msg + BLANK_DISPLAY;
int size = msg.length();
for (int i = size - 1; i >= -1; i--)
{
// TODO - replace with substring
string txt = "";
for (int j = 0; j < DISPLAY_SIZE; j++)
{
txt = msg[((i - j) + size) % size] + txt;
}
print(txt, SLIDE_DELAY, BRIGHTNESS_MAX);
}
}
char Display::randomChar()
{
char c = (rand() % 36) + 65; // A to Z + 10 digits
if (c > 90)
{
c = (c - 91) + 48; // digits 0 to 9
}
return c;
}
string Display::randomText(byte size)
{
string txt = "";
for (int i = 0; i < size; i++)
{
txt += randomChar();
}
return txt;
}
string Display::blankText(byte size)
{
string txt = "";
txt.resize(size, ' ');
return txt;
}
void Display::crack(string msg)
{
bool mask[DISPLAY_SIZE] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
// initial cracking noise
for (int n = 0; n < CRACK_NOISE; n++)
{
print(randomText(DISPLAY_SIZE), CRACK_DELAY, BRIGHTNESS_MAX);
}
for (int i = 0; i < DISPLAY_SIZE; i++)
{
// pick the next char to crack
bool set = false;
while (!set)
{
byte pos = rand() % DISPLAY_SIZE;
if (mask[pos] == 0)
{
mask[pos] = 1;
set = true;
}
}
// cracking process with already cracked chars
for (int n = 0; n < CRACK_NOISE; n++)
{
string txt = "";
for (int j = 0; j < DISPLAY_SIZE; j++)
{
if (mask[j] == 0)
{
txt += randomChar();
}
else
{
txt += msg[j];
}
}
print(txt, CRACK_DELAY, BRIGHTNESS_MAX);
}
}
}
void Display::term(string msg)
{
// initial blinks
for (int i = 0; i < TERM_BLINK; i++)
blink(alignLeft("_"));
int size = msg.length() + 1;
if (size > DISPLAY_SIZE)
{
size++; // one more loop cycle for the final cursor
}
string txt;
byte cursorAt = 0;
for (int i = 0; i < size; i++)
{
txt = "";
// TODO - replace with substring
for (int j = 0; j < min(DISPLAY_SIZE - 1, i); j++)
{
if (i < DISPLAY_SIZE)
{
txt += msg[j];
}
else
{
txt += msg[j + i - DISPLAY_SIZE];
}
}
txt += "_";
cursorAt = txt.length() - 1;
txt += blankText(max(0, DISPLAY_SIZE - (i + 1)));
print(txt, TERM_DELAY, BRIGHTNESS_MAX);
}
// final blinks
for (int i = 0; i < (TERM_BLINK * 2); i++)
{
txt[cursorAt] = (i % 2 == 0) ? ' ' : '_';
print(txt, BLINK_DELAY, BRIGHTNESS_MAX);
}
}
void Display::pause(byte seconds)
{
print(BLANK_DISPLAY, seconds * 1000, BRIGHTNESS_MIN);
}
void Display::setBrightness(byte brightness)
{
if (this->currentBrightness != brightness)
{
writeByte(BRIGHTNESS_MASK | brightness);
this->currentBrightness = brightness;
}
}
void Display::writeChar(char aChar)
{
writeByte(getChar(aChar));
}
char Display::getChar(char c)
{
// TODO - add a small cache
// ASCII from space to '?'
if ((c >= 32) && (c <= 63))
{
return c;
}
// ASCII from '@' to '_'
if ((c >= 64) && (c <= 95))
{
return c - 64;
}
// ASCII from '@' to '_'
if ((c >= 96) && (c <= 127))
{
return c - 96;
}
return 63; // '?'
}
void Display::writeByte(byte aByte)
{
for (int i = 0; i < 8; i++)
{
bool bit = (((aByte >> (7 - i)) & 0x01) == 1);
writeBit(bit);
}
}
void Display::writeBit(bool aBit)
{
digitalWrite(this->data, aBit ? HIGH : LOW);
delayMicroseconds(BIT_DELAY);
digitalWrite(this->sclk, HIGH);
delayMicroseconds(HIGH_DELAY);
digitalWrite(this->sclk, LOW);
delayMicroseconds(LOW_DELAY);
}
void Display::reset()
{
digitalWrite(this->data, LOW);
digitalWrite(this->sclk, LOW);
digitalWrite(this->rset, LOW);
delay(RESET_DELAY);
digitalWrite(this->rset, HIGH);
delay(RESET_DELAY);
}
void Display::init()
{
pinMode(this->sclk, OUTPUT);
pinMode(this->data, OUTPUT);
pinMode(this->rset, OUTPUT);
reset();
writeByte(COUNTER_CONTROL);
writeByte(POINTER_CONTROL);
setBrightness(BRIGHTNESS_MAX);
print(BLANK_DISPLAY, 10, BRIGHTNESS_MIN);
}
void Display::libSetup()
{
piHiPri(99);
wiringPiSetupGpio();
CONSOLE(consoleSetup());
}
string Display::alignCenter(string txt)
{
int size = txt.length();
if (size >= DISPLAY_SIZE)
{
return txt;
}
byte n = (DISPLAY_SIZE - size) / 2;
if ((DISPLAY_SIZE - size) % 2 == 0)
{
txt = blankText(n) + txt;
}
else
{
txt = blankText(n + 1) + txt;
}
return txt + blankText(n);
}
string Display::alignRight(string txt)
{
int size = txt.length();
if (size >= DISPLAY_SIZE)
{
return txt;
}
return blankText(DISPLAY_SIZE - size) + txt;
}
string Display::alignLeft(string txt)
{
int size = txt.length();
if (size >= DISPLAY_SIZE)
{
return txt;
}
return txt + blankText(DISPLAY_SIZE - size);
}
string Display::alignJustify(string txt)
{
int size = txt.length();
if (size >= DISPLAY_SIZE)
{
return txt;
}
if (txt.find_first_of(BLANK_CHAR) != txt.find_last_of(BLANK_CHAR))
{
// justifies only two words separated by one single blank!
return txt;
}
txt.replace(txt.find_first_of(BLANK_CHAR), 1, blankText(DISPLAY_SIZE - size + 1));
return txt;
}
DotDisplay::DotDisplay(string name, byte sclk, byte data, byte rset) : Display(name, sclk, data, rset)
{
}
DotDisplay::~DotDisplay()
{
}
char DotDisplay::getChar(char c)
{
// TODO - add a small cache
// direct ASCII mapping
if ((c >= 32) && (c <= 127))
{
return c;
}
return 63; // '?'
}
char DotDisplay::randomChar()
{
char c = (rand() % 62) + 65; // A to Z + a to z + 10 digits
if ((c > 90) && (c < 97))
{
c = (c - 91) + 48; // digits 0 to 5
}
else if (c > 122)
{
c = (c - 123) + 54; // digits 6 to 9
}
return c;
}