-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclocks.cpp
More file actions
752 lines (641 loc) · 21.6 KB
/
clocks.cpp
File metadata and controls
752 lines (641 loc) · 21.6 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
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
/* handle displaying local and UTC time
*/
#include "HamClock.h"
uint8_t de_time_fmt; // one of DETIME_*
uint8_t desrss, dxsrss; // show actual de/dx sun rise/set else time to
// time update interval, seconds
#define TIME_INTERVAL (30*60) // normal resync interval when working ok, seconds
#define TIME_RETRY 30000 // retry interval when not working ok, millis
// touch regions
static uint16_t mo_x, dy_x, yr_x;
static uint16_t hms_h; // also used to note whether initTime()
// run flag and progression
static bool hide_clocks; // run but don't display
static int last_yr, last_mo, last_dy, last_hr, last_mn, last_sc, last_wd;
static bool time_was_bad = true; // used to erase ? when confirmed ok again
// TimeLib's now() stays at real UTC, but user can adjust time offset
static int32_t utc_offset; // now() offset from UTC
// display
#define UTC_W 14 // UTC button width
#define QUESTION_W 28 // Question mark width
#define UTC_H (hms_h-1) // UTC button height
#define FFONT_W 6 // fixed font width
#define FFONT_H 8 // fixed font height
#define HMS_C RA8875_WHITE // HMS color
#define MDY_C RA8875_WHITE // MDY color
/* the UTC "button" in clock_b depending on whether utc_offset is 0.
*/
static void drawUTCButton()
{
selectFontStyle (BOLD_FONT, FAST_FONT);
char msg[4];
if (utc_offset == 0 && clockTimeOk()) {
// at UTC for sure
tft.fillRect (clock_b.x+clock_b.w-UTC_W, clock_b.y, UTC_W, UTC_H, HMS_C);
tft.setTextColor(RA8875_BLACK);
strcpy (msg, "UTC");
} else {
// unknown or time is other than UTC
tft.fillRect (clock_b.x+clock_b.w-UTC_W, clock_b.y, UTC_W, UTC_H, RA8875_RED);
tft.drawRect (clock_b.x+clock_b.w-UTC_W, clock_b.y, UTC_W, UTC_H, RA8875_RED);
tft.setTextColor(HMS_C);
strcpy (msg, "OFF");
}
uint16_t vgap = (UTC_H - 3*FFONT_H)/4;
uint16_t x = clock_b.x+clock_b.w-UTC_W+(UTC_W-FFONT_W)/2;
tft.setCursor(x, clock_b.y+vgap+1); tft.print(msg[0]);
tft.setCursor(x, clock_b.y+2*vgap+FFONT_H+1); tft.print(msg[1]);
tft.setCursor(x, clock_b.y+3*vgap+2*FFONT_H+1); tft.print(msg[2]);
}
/* called by Time system setSyncProvider (getTime) to resync clock.
*/
static time_t getTime(void)
{
time_t t = 0;
if (getGPSDHost(NULL))
t = getGPSDUTC();
if (t == 0)
t = getNTPUTC();
return (t);
}
/* given number of seconds, print HH:MM
*/
static void prHM (const uint32_t t)
{
uint16_t hh = t/SECS_PER_HOUR;
uint16_t mm = (t - hh*SECS_PER_HOUR)/SECS_PER_MIN;
char buf[20];
sprintf (buf, "%d:%02d", hh, mm);
tft.print(buf);
}
/* common portion for drawing the rise set info in the given box.
*/
static void drawRiseSet(time_t t0, time_t trise, time_t tset, SBox &b, uint8_t srss, int32_t tz_secs,
LatLong &ll)
{
resetWatchdog();
tft.fillRect (b.x, b.y, b.w, b.h, RA8875_BLACK);
//tft.drawRect (b.x, b.y, b.w, b.h, RA8875_WHITE);
selectFontStyle (LIGHT_FONT, FAST_FONT);
if (trise == 0) {
tft.setCursor (b.x, b.y+8);
tft.print (F("No rise"));
} else if (tset == 0) {
tft.setCursor (b.x, b.y+8);
tft.print (F("No set"));
} else {
bool night_now;
if (trise < tset)
night_now = t0 < trise || t0 > tset;
else
night_now = t0 > tset && t0 < trise;
if (srss) {
// draw actual rise set times
if (night_now) {
tft.setCursor (b.x+8, b.y+8);
tft.print (F("R @ "));
prHM (3600*hour(trise+tz_secs) + 60*minute(trise+tz_secs));
tft.setCursor (b.x+8, b.y+b.h/2+4);
tft.print (F("S @ "));
prHM (3600*hour(tset+tz_secs) + 60*minute(tset+tz_secs));
} else {
tft.setCursor (b.x+8, b.y+8);
tft.print (F("S @ "));
prHM (3600*hour(tset+tz_secs) + 60*minute(tset+tz_secs));
tft.setCursor (b.x+8, b.y+b.h/2+4);
tft.print (F("R @ "));
prHM (3600*hour(trise+tz_secs) + 60*minute(trise+tz_secs));
}
} else {
// draw until rise and set
int32_t rdt = t0 - trise;
int32_t sdt = t0 - tset;
tft.setCursor (b.x, b.y+8);
if (night_now) {
tft.print (F("R in "));
prHM (rdt > 0 ? SECS_PER_DAY-rdt : -rdt);
tft.setCursor (b.x, b.y+b.h/2+4);
tft.print (F("S "));
prHM (sdt >= 0 ? sdt : SECS_PER_DAY+sdt);
tft.print (F(" ago"));
} else {
tft.print (F("S in "));
prHM (sdt > 0 ? SECS_PER_DAY-sdt : -sdt);
tft.setCursor (b.x, b.y+b.h/2+4);
tft.print (F("R "));
prHM (rdt >= 0 ? rdt : SECS_PER_DAY+rdt);
tft.print (F(" ago"));
}
}
}
}
/* given UTC hour and minute draw local time clock in de_info_b
*/
static void drawAnalogClock (int hr, int mn)
{
// find center of largest inscribed circle
int x0, y0, r;
if (de_info_b.w > de_info_b.h) {
r = de_info_b.h/2 - 3;
x0 = de_info_b.x + de_info_b.w/2;
y0 = de_info_b.y + r;
} else {
r = de_info_b.w/2 - 3;
x0 = de_info_b.x + r;
y0 = de_info_b.y + de_info_b.h/2;
}
// convert UTC to local time
hr += de_tz.tz_secs / 3600;
int32_t xtra_secs = de_tz.tz_secs % 3600;
if (xtra_secs) {
// Australia :-)
mn += xtra_secs/60;
if (mn >= 60) {
hr += 1; // N.B. can become > 23
mn -= 60;
} else if (mn <= -60) {
hr -= 1; // N.B. can become < 0
mn += 60;
}
}
// convert hours and minutes to degrees CCW from 3 oclock
int16_t hr360 = 30*(3-(((hr+24)%12) + mn/60.0F)); // + partial hour
int16_t mn360 = 6*(15-mn);
// start clock face
tft.fillRect (de_info_b.x, de_info_b.y, de_info_b.w, de_info_b.h-1, RA8875_BLACK);
tft.drawCircle (x0, y0, r, DE_COLOR);
for (uint16_t a = 0; a < 360; a += 30)
tft.fillCircle (x0+0.95F*r*cosf(deg2rad(a)), y0+0.95F*r*sinf(deg2rad(a)), 2, DE_COLOR);
// draw full length minute hand
float cosmn = r*cosf(deg2rad(mn360));
float sinmn = r*sinf(deg2rad(mn360));
uint16_t farmnx = floorf(x0+0.90F*cosmn+0.5F);
uint16_t farmny = floorf(y0-0.90F*sinmn+0.5F); // -y up
int16_t nearmnx = floorf(0.04F*sinmn+0.5F);
int16_t nearmny = floorf(0.04F*cosmn+0.5F);
tft.drawLine (x0+nearmnx, y0+nearmny, farmnx, farmny, DE_COLOR);
tft.drawLine (x0-nearmnx, y0-nearmny, farmnx, farmny, DE_COLOR);
tft.drawCircle (x0, y0, r*0.04F+0.5F, DE_COLOR);
// draw shorter hour hand
float coshr = r*cosf(deg2rad(hr360));
float sinhr = r*sinf(deg2rad(hr360));
uint16_t farhrx = floorf(x0+0.45F*coshr+0.5F);
uint16_t farhry = floorf(y0-0.45F*sinhr+0.5F); // -y up
int16_t nearhrx = floorf(0.06F*sinhr+0.5F);
int16_t nearhry = floorf(0.06F*coshr+0.5F);
tft.drawLine (x0+nearhrx, y0+nearhry, farhrx, farhry, DE_COLOR);
tft.drawLine (x0-nearhrx, y0-nearhry, farhrx, farhry, DE_COLOR);
tft.drawCircle (x0, y0, r*0.06F+0.5F, DE_COLOR);
}
/* draw a calendar in de_info_b below time
*/
void drawCalendar(bool force)
{
// looks a little better to me if we put a small border around the edges
#define CAL_BW 4
// find local time
tmElements_t tm;
uint32_t tnow = nowWO() + de_tz.tz_secs;
breakTime (tnow, tm); // break into components
// Serial.printf ("cal force= %d YMD %d %d %d\n", force, tm.Year, tm.Month, tm.Day);
// avoid redraws unless force
static uint8_t prev_Year, prev_Month, prev_Day;
if (!force && prev_Year == tm.Year && prev_Month == tm.Month && prev_Day == tm.Day)
return;
prev_Year = tm.Year;
prev_Month = tm.Month;
prev_Day = tm.Day;
// cal in box below time
uint16_t vspace = de_info_b.h/DE_INFO_ROWS;
uint16_t cal_y = de_info_b.y + vspace;
uint16_t cal_h = de_info_b.y + de_info_b.h - cal_y;
// erase all
tft.fillRect (de_info_b.x, cal_y, de_info_b.w, cal_h, RA8875_BLACK);
// find column for 1st of this month
uint8_t today = tm.Day; // save today's date, 1 based
tm.Day = 1; // set 1st
uint32_t t1st = makeTime(tm); // synth new time
uint8_t col1 = weekday (t1st) - 1; // 0-based column of 1st day of month
// find number of days in this month
if (++tm.Month == 13) { // advance to next month, which is 1-based
tm.Month = 1; // roll to next year
tm.Year++;
}
uint32_t t1stmo = makeTime (tm); // first of next month
uint8_t dtm = (t1stmo - t1st)/SPD; // n days this month
// find required number of rows
int8_t dom = 1-col1; // 1-based day of month in first cell, <=0 if prev mon
uint8_t n_cols = 7; // always 7 cols
uint8_t n_rows = (dtm - dom + 7)/n_cols; // n rows required
// Serial.printf ("col1= %d dtm= %d dom= %d n_cols= %d n_rows= %d\n", col1, dtm, dom, n_cols, n_rows);
// draw grid
for (uint8_t i = 0; i <= n_rows; i++) {
uint16_t y = cal_y + i*(de_info_b.h-vspace-1)/n_rows;
tft.drawLine (de_info_b.x+CAL_BW, y, de_info_b.x + de_info_b.w - CAL_BW, y, DE_COLOR);
}
for (uint8_t i = 0; i <= n_cols; i++) {
uint16_t x = de_info_b.x + CAL_BW + i*(de_info_b.w-2*CAL_BW)/n_cols;
tft.drawLine (x, cal_y, x, de_info_b.y+de_info_b.h-1, DE_COLOR);
}
// fill dates
selectFontStyle (LIGHT_FONT, FAST_FONT);
tft.setTextColor (RA8875_WHITE);
for (uint8_t r = 0; r < n_rows; r++) {
for (uint8_t c = 0; c < n_cols; c++) {
if (dom >= 1 && dom <= dtm) {
tft.setTextColor (dom == today ? RA8875_WHITE : DE_COLOR);
uint16_t x0 = CAL_BW + de_info_b.x + c*(de_info_b.w-2*CAL_BW)/n_cols + 4;
if (dom < 10)
x0 += 2;
tft.setCursor (x0, cal_y + r*cal_h/n_rows + 3);
tft.print (dom);
}
dom++;
}
}
}
/* start the clock running
*/
void initTime()
{
// get last UTC offset from ENVROM
utc_offset = 0;
NVReadInt32 (NV_UTC_OFFSET, &utc_offset);
// start using time source
enableSyncProvider();
// height of HMS section
hms_h = 5*clock_b.h/8-7;
}
/* do not display clocks
*/
void hideClocks()
{
hide_clocks = true;
}
/* resume displaying clocks and insure everything gets drawn first time
*/
void showClocks()
{
hide_clocks = false;
last_yr = 99;
last_mo = 99;
last_dy = 99;
last_hr = 99;
last_mn = 99;
last_sc = 99;
last_wd = 99;
drawUTCButton();
}
/* use NTP or GPSD to update time
*/
void enableSyncProvider()
{
setSyncInterval (TIME_INTERVAL);
setSyncProvider (getTime);
}
/* like now() but with current user offset
*/
uint32_t nowWO()
{
return (now() + utc_offset);
}
/* return current offset from UTC
*/
uint32_t utcOffset()
{
return (utc_offset);
}
/* return whether time is working for the clock
*/
bool clockTimeOk()
{
return (timeStatus() == timeSet);
}
/* draw all clocks if time system has been initialized.
* N.B. this is called a lot so make it very fast when nothing to do
*/
void updateClocks(bool all)
{
char buf[32];
// ignore if disabled
if (hide_clocks)
return;
// get Clock's UTC time now, get out fast if still same second
uint32_t t = nowWO();
int sc = second(t);
if (sc == last_sc && !all)
return;
// pull apart the time
int hr = hour(t);
int mn = minute(t);
int wd = weekday(t);
int mo = month(t);
int dy = day(t);
int yr = year(t);
// set to update other times as well
bool draw_other_times = false;
resetWatchdog();
// always draw seconds because we know it has changed
if (all || (sc/10) != (last_sc/10)) {
// Change in tens digit of seconds process normally W2ROW
uint16_t sx = clock_b.x+2*clock_b.w/3; // right 1/3 for seconds
selectFontStyle (BOLD_FONT, SMALL_FONT);
sprintf (buf, "%02d", sc); // includes ones digit
tft.fillRect(sx, clock_b.y, 30, hms_h/2+4, RA8875_BLACK); // dont erase ? if present
tft.setCursor(sx, clock_b.y+hms_h-19);
tft.setTextColor(HMS_C);
tft.print(buf);
} else {
// Change only in units digit of seconds - process only that digit W2ROW
uint16_t sx = clock_b.x+2*clock_b.w/3+15; // right 1/3 for seconds (15 by experiment) W2ROW
selectFontStyle (BOLD_FONT, SMALL_FONT); // W2ROW
sprintf (buf, "%01d", sc%10); // W2ROW
tft.fillRect(sx, clock_b.y, 15, hms_h/2+4, RA8875_BLACK); // dont erase ? W2ROW
tft.setCursor(sx, clock_b.y+hms_h-19); // W2ROW
tft.setTextColor(HMS_C); // W2ROW
tft.print(buf); // W2ROW
}
// check time
if (clockTimeOk()) {
if (time_was_bad) {
// just came back, show and update state
drawUTCButton();
tft.fillRect(clock_b.x+2*clock_b.w/3+34, clock_b.y, 25, hms_h+4, RA8875_BLACK);
Serial.printf ("Time ok Z= %04d-%02d-%02d %02d:%02d:%02d %+d s\n",
yr, mo, dy, hr, mn, sc, -utc_offset);
time_was_bad = false;
}
} else {
if (!time_was_bad) {
// just went bad, show and update state
drawUTCButton();
selectFontStyle (BOLD_FONT, LARGE_FONT);
tft.setTextColor(HMS_C);
tft.setCursor(clock_b.x+clock_b.w-UTC_W-QUESTION_W, clock_b.y+hms_h);
tft.print('?');
time_was_bad = true;
}
// retry every few seconds
static uint32_t last_timeok;
if (timesUp(&last_timeok, TIME_RETRY))
setSyncProvider (getTime); // force fresh sync attempt
}
// persist
last_sc = sc;
// draw H:M if either changes
if (all || mn != last_mn || hr != last_hr) {
resetWatchdog();
// draw H:M roughly right-justified in left 2/3
selectFontStyle (BOLD_FONT, LARGE_FONT);
sprintf (buf, "%02d:%02d", hr, mn);
uint16_t w = 135;
int16_t x = clock_b.x+2*clock_b.w/3-w;
tft.fillRect (x, clock_b.y, w, hms_h+2, RA8875_BLACK);
tft.setCursor(x, clock_b.y+hms_h);
tft.setTextColor(HMS_C);
tft.print(buf);
// update other info
draw_other_times = true;
// persist
last_mn = mn;
last_hr = hr;
}
// draw date if new day
if (all || dy != last_dy || wd != last_wd || mo != last_mo || yr != last_yr) {
resetWatchdog();
// clear
selectFontStyle (LIGHT_FONT, SMALL_FONT);
tft.fillRect(clock_b.x, clock_b.y+hms_h+5, clock_b.w-UTC_W, clock_b.h-hms_h-4, RA8875_BLACK);
uint16_t y = clock_b.y + clock_b.h - 8; // descent
tft.setTextColor(MDY_C);
// sprintf whole string once to center, then again to get start of each portion
int l = sprintf (buf, "%s ", dayShortStr(wd));
sprintf (buf+l, "%s %d, %d", monthShortStr(mo), dy, yr); // returns same ptr??
uint16_t bw = getTextWidth (buf);
int16_t x = clock_b.x + (clock_b.w-UTC_W-bw)/2;
if (x < 0)
x = 0;
tft.setCursor(x, y);
sprintf (buf, "%s ", dayShortStr(wd)); tft.print(buf); mo_x = tft.getCursorX();
sprintf (buf, "%s ", monthShortStr(mo)); tft.print(buf); dy_x = tft.getCursorX();
sprintf (buf, "%d, ", dy); tft.print(buf); yr_x = tft.getCursorX();
tft.print(yr);
// update other info
draw_other_times = true;
// persist
last_yr = yr;
last_mo = mo;
last_dy = dy;
last_wd = wd;
}
if (draw_other_times) {
if (de_time_fmt == DETIME_CAL) {
drawDETime(true);
drawCalendar(false);
} else if (de_time_fmt == DETIME_ANALOG) {
drawAnalogClock (hr, mn);
} else if (de_time_fmt == DETIME_INFO) {
drawDETime(false);
drawDESunRiseSetInfo();
}
if (!dx_info_for_sat) {
drawDXTime();
drawDXSunRiseSetInfo();
}
}
}
/* draw DE sun rise and set info
*/
void drawDESunRiseSetInfo()
{
resetWatchdog();
time_t trise, tset, t0 = nowWO();
sunrs (t0, de_ll, &trise, &tset);
tft.setTextColor(DE_COLOR);
drawRiseSet (t0, trise, tset, desrss_b, desrss, de_tz.tz_secs, de_ll);
}
/* draw DX sun rise and set info.
* skip if showing dx prefix there.
*/
void drawDXSunRiseSetInfo()
{
if (dxsrss == DXSRSS_PREFIX)
return;
resetWatchdog();
time_t trise, tset, t0 = nowWO();
sunrs (t0, dx_ll, &trise, &tset);
tft.setTextColor(DX_COLOR);
drawRiseSet (t0, trise, tset, dxsrss_b, dxsrss, dx_tz.tz_secs, dx_ll);
}
/* return whether touch event at s involved the clocks.
* if so, update utc_offset and possibly restart map if large change.
*/
bool checkClockTouch (SCoord &s)
{
// ignore if not in clock box
if (!inBox (s, clock_b))
return (false);
// find position within box
int16_t dx = s.x - clock_b.x;
int16_t dy = s.y - clock_b.y;
// get time info
uint32_t t0 = now();
uint32_t t = t0 + utc_offset;
// whether worth updating map and sat
bool map_ok = false;
bool sat_ok = false;
// update depending on where touch occurred
if (dy < hms_h) {
// HMS or utc
if (dx > clock_b.w-UTC_W) {
// touched UTC..
if (utc_offset == 0 && clockTimeOk()) {
map_ok = true; // no change
sat_ok = true; // no change
} else {
if (utc_offset > -5*60 && utc_offset < 5*60)
map_ok = true; // few minutes doesn't matter
utc_offset = 0;
setSyncProvider (getTime);
}
} else {
// HMS
uint16_t mid_h = hms_h/2;
if (dx < clock_b.w/3) {
// touched hours,
if (dy < mid_h/2)
utc_offset += 2*3600;
else if (dy < mid_h)
utc_offset += 3600;
else if (dy < 3*mid_h/2)
utc_offset -= 3600;
else
utc_offset -= 2*3600;
} else if (dx < 2*clock_b.w/3) {
// touched minutes
if (dy < mid_h/2)
utc_offset += 10*60;
else if (dy < mid_h)
utc_offset += 60;
else if (dy < 3*mid_h/2)
utc_offset -= 60;
else
utc_offset -= 10*60;
map_ok = true; // a few minutes doesn't change map enough to matter
} else if (dx < clock_b.w-UTC_W-QUESTION_W) {
// touched seconds -- chop to whole minute
utc_offset = 60*(t/60) - t0;
map_ok = true; // a few seconds doesn't change map enough to matter
} else {
// ignore tapping the question mark
map_ok = true; // no change
sat_ok = true; // no change
}
}
} else {
// DMY
uint16_t mid_h = hms_h + (clock_b.h-hms_h)/2;
if (dx < mo_x-clock_b.x) {
// touched day of week
if (dy < mid_h)
utc_offset += SPD;
else
utc_offset -= SPD;
map_ok = true; // whole day doesn't change map enough to matter
} else if (dx < dy_x-clock_b.x) {
// touched month
tmElements_t tm;
breakTime (t, tm);
if (dy < mid_h) {
if (++tm.Month > 12) {
tm.Month = 1;
tm.Year += 1;
}
} else {
if (--tm.Month == 0) {
tm.Month = 12;
tm.Year -= 1;
}
}
utc_offset = makeTime(tm) - t0;
} else if (dx < yr_x-clock_b.x) {
// touched date of month
if (dy < mid_h)
utc_offset += SPD;
else
utc_offset -= SPD;
map_ok = true; // whole day doesn't change map enough to matter
} else if (dx < lkscrn_b.x-clock_b.x-10) {
// touched year
tmElements_t tm;
breakTime (t, tm);
if (dy < mid_h)
tm.Year += 1;
else
tm.Year -= 1;
utc_offset = makeTime(tm) - t0;
map_ok = true; // whole year doesn't change map enough to matter
}
}
// save new offset
NVWriteUInt32 (NV_UTC_OFFSET, utc_offset);
// show new time
updateClocks(false);
drawUTCButton();
// restart map unless change isn't substantial
if (!map_ok)
initEarthMap();
// recompute sat unless no time change
if (!sat_ok)
displaySatInfo();
return (true);
}
/* set time to UNIX t, maintaining user's offset, or to UTC if t == 0.
*/
void changeTime (time_t t)
{
// update offset
if (t == 0)
utc_offset = 0;
else
utc_offset += t - nowWO();
// save
NVWriteUInt32 (NV_UTC_OFFSET, utc_offset);
// UTC button, normal loop will update clocks
drawUTCButton();
// update map
initEarthMap();
displaySatInfo();
}
/* if touch point is within its bounding box, roll the given TZInfo -1/0/+1 hour from getTZ() and return true.
* return false if not in box.
*/
bool checkTZTouch (const SCoord &s, TZInfo &tzi, const LatLong &ll)
{
if (inBox (s, tzi.box)) {
int32_t tz0_secs = getTZ (ll); // nominal timezone offset
if (tzi.tz_secs <= tz0_secs)
tzi.tz_secs += 3600; // -1 -> 0 or 0 -> +1 hours
else
tzi.tz_secs -= 2*3600; // +1 -> -1 hours
return (true);
}
return (false);
}
/* draw a TZ control box with current state
*/
void drawTZ (const TZInfo &tzi)
{
// format as UTC + hours
char buf[32];
uint16_t w, h;
snprintf (buf, sizeof(buf), "UTC%+g", tzi.tz_secs/3600.0F);
selectFontStyle (BOLD_FONT, FAST_FONT);
getTextBounds (buf, &w, &h);
// box
tft.fillRect (tzi.box.x, tzi.box.y, tzi.box.w, tzi.box.h, RA8875_BLACK);
tft.drawRect (tzi.box.x, tzi.box.y, tzi.box.w, tzi.box.h, tzi.color);
tft.setTextColor (tzi.color);
tft.setCursor (tzi.box.x+(tzi.box.w-w)/2, tzi.box.y+(tzi.box.h-h)/2);
tft.print (buf);
}