Skip to content

Commit 0cc28b9

Browse files
Merge PR #471 - add DST to sunrise/sunset presets
Implements automatic DST data to the sunrise/sunset presets, making the whole system more automatic and therefore more reliable. Reviewed-by: Matheus Afonso Martins Moreira <[email protected]> GitHub-Pull-Request: #471
2 parents 337864e + 9d14107 commit 0cc28b9

File tree

2 files changed

+28
-15
lines changed

2 files changed

+28
-15
lines changed

movement/watch_faces/complication/sunrise_sunset_face.c

+18-10
Original file line numberDiff line numberDiff line change
@@ -49,20 +49,29 @@ static void _sunrise_sunset_face_update(movement_settings_t *settings, sunrise_s
4949
double rise, set, minutes, seconds;
5050
bool show_next_match = false;
5151
movement_location_t movement_location;
52-
if (state->longLatToUse == 0 || _location_count <= 1)
52+
int16_t tz;
53+
watch_date_time date_time = watch_rtc_get_date_time(); // the current local date / time
54+
if (state->longLatToUse == 0 || _location_count <= 1) {
55+
tz = get_timezone_offset(settings->bit.time_zone, date_time);
5356
movement_location = (movement_location_t) watch_get_backup_data(1);
57+
}
5458
else{
5559
movement_location.bit.latitude = longLatPresets[state->longLatToUse].latitude;
5660
movement_location.bit.longitude = longLatPresets[state->longLatToUse].longitude;
61+
if (longLatPresets[state->longLatToUse].uses_dst && dst_occurring(date_time))
62+
tz = movement_timezone_dst_offsets[longLatPresets[state->longLatToUse].timezone];
63+
else
64+
tz = movement_timezone_offsets[longLatPresets[state->longLatToUse].timezone];
5765
}
5866

5967
if (movement_location.reg == 0) {
68+
watch_clear_all_indicators();
69+
watch_clear_colon();
6070
watch_display_string("RI no Loc", 0);
6171
return;
6272
}
6373

64-
watch_date_time date_time = watch_rtc_get_date_time(); // the current local date / time
65-
watch_date_time utc_now = watch_utility_date_time_convert_zone(date_time, state->tz * 60, 0); // the current date / time in UTC
74+
watch_date_time utc_now = watch_utility_date_time_convert_zone(date_time, tz * 60, 0); // the current date / time in UTC
6675
watch_date_time scratch_time; // scratchpad, contains different values at different times
6776
scratch_time.reg = utc_now.reg;
6877

@@ -77,7 +86,7 @@ static void _sunrise_sunset_face_update(movement_settings_t *settings, sunrise_s
7786
// sunriset returns the rise/set times as signed decimal hours in UTC.
7887
// this can mean hours below 0 or above 31, which won't fit into a watch_date_time struct.
7988
// to deal with this, we set aside the offset in hours, and add it back before converting it to a watch_date_time.
80-
double hours_from_utc = ((double)state->tz) / 60.0;
89+
double hours_from_utc = ((double)tz) / 60.0;
8190

8291
// we loop twice because if it's after sunset today, we need to recalculate to display values for tomorrow.
8392
for(int i = 0; i < 2; i++) {
@@ -334,7 +343,6 @@ void sunrise_sunset_face_activate(movement_settings_t *settings, void *context)
334343
movement_location_t movement_location = (movement_location_t) watch_get_backup_data(1);
335344
state->working_latitude = _sunrise_sunset_face_struct_from_latlon(movement_location.bit.latitude);
336345
state->working_longitude = _sunrise_sunset_face_struct_from_latlon(movement_location.bit.longitude);
337-
state->tz = get_timezone_offset(settings->bit.time_zone, watch_rtc_get_date_time());
338346
}
339347

340348
bool sunrise_sunset_face_loop(movement_event_t event, movement_settings_t *settings, void *context) {
@@ -399,11 +407,11 @@ bool sunrise_sunset_face_loop(movement_event_t event, movement_settings_t *setti
399407
break;
400408
case EVENT_ALARM_LONG_PRESS:
401409
if (state->page == 0) {
402-
if (state->longLatToUse != 0) {
403-
state->longLatToUse = 0;
404-
_sunrise_sunset_face_update(settings, state);
405-
break;
406-
}
410+
if (state->longLatToUse != 0) {
411+
state->longLatToUse = 0;
412+
_sunrise_sunset_face_update(settings, state);
413+
break;
414+
}
407415
state->page++;
408416
state->active_digit = 0;
409417
watch_clear_display();

movement/watch_faces/complication/sunrise_sunset_face.h

+10-5
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,14 @@ typedef struct {
5252
uint8_t rise_index;
5353
uint8_t active_digit;
5454
bool location_changed;
55-
int16_t tz;
5655
watch_date_time rise_set_expires;
5756
sunrise_sunset_lat_lon_settings_t working_latitude;
5857
sunrise_sunset_lat_lon_settings_t working_longitude;
5958
uint8_t longLatToUse;
6059
} sunrise_sunset_state_t;
6160

61+
#define SUNRISE_USE_LOCAL_TZ 0xFF
62+
6263
void sunrise_sunset_face_setup(movement_settings_t *settings, uint8_t watch_face_index, void ** context_ptr);
6364
void sunrise_sunset_face_activate(movement_settings_t *settings, void *context);
6465
bool sunrise_sunset_face_loop(movement_event_t event, movement_settings_t *settings, void *context);
@@ -76,14 +77,18 @@ typedef struct {
7677
char name[2];
7778
int16_t latitude;
7879
int16_t longitude;
80+
uint8_t timezone; // References element in movement_timezone_offsets
81+
bool uses_dst;
7982
} long_lat_presets_t;
8083

84+
// Locations must either use the same timezone as local time, or not observe DST.
8185
static const long_lat_presets_t longLatPresets[] =
8286
{
83-
{ .name = " "}, // Default, the long and lat get replaced by what's set in the watch
84-
// { .name = "Ny", .latitude = 4072, .longitude = -7401 }, // New York City, NY
85-
// { .name = "LA", .latitude = 3405, .longitude = -11824 }, // Los Angeles, CA
86-
// { .name = "dE", .latitude = 4221, .longitude = -8305 }, // Detroit, MI
87+
{ .name = " "}, // Default, the long, lat, and timezone get replaced by what's set in the watch
88+
// { .name = "Ny", .latitude = 4072, .longitude = -7401, .timezone = 33, .uses_dst = true }, // New York City, NY
89+
// { .name = "LA", .latitude = 3405, .longitude = -11824, .timezone = 30, .uses_dst = true }, // Los Angeles, CA
90+
// { .name = "dE", .latitude = 4221, .longitude = -8305, .timezone = 33, .uses_dst = true }, // Detroit, MI
91+
// { .name = "To", .latitude = 3567, .longitude = 13965, .timezone = 15, .uses_dst = false }, // Tokyo, JP
8792
};
8893

8994
#endif // SUNRISE_SUNSET_FACE_H_

0 commit comments

Comments
 (0)