summaryrefslogtreecommitdiffstats
path: root/movement/watch_faces/complication
diff options
context:
space:
mode:
authorJoey Castillo <joeycastillo@utexas.edu>2022-02-09 13:40:29 -0500
committerJoey Castillo <joeycastillo@utexas.edu>2022-02-09 13:40:29 -0500
commit108b9991d293eecbd02fa87ea6dea1c239959dc4 (patch)
tree1916070e548c4261d5f3dd9302488474f3db0134 /movement/watch_faces/complication
parent79b037b4fb0a3f401406875c281afe2cf0864830 (diff)
downloadSensor-Watch-108b9991d293eecbd02fa87ea6dea1c239959dc4.tar.gz
Sensor-Watch-108b9991d293eecbd02fa87ea6dea1c239959dc4.tar.bz2
Sensor-Watch-108b9991d293eecbd02fa87ea6dea1c239959dc4.zip
simulator: add geolocation support
Diffstat (limited to 'movement/watch_faces/complication')
-rw-r--r--movement/watch_faces/complication/sunrise_sunset_face.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/movement/watch_faces/complication/sunrise_sunset_face.c b/movement/watch_faces/complication/sunrise_sunset_face.c
index 1e6f3425..fef9b4df 100644
--- a/movement/watch_faces/complication/sunrise_sunset_face.c
+++ b/movement/watch_faces/complication/sunrise_sunset_face.c
@@ -33,6 +33,10 @@
#include "watch_utility.h"
#include "sunriset.h"
+#if __EMSCRIPTEN__
+#include <emscripten.h>
+#endif
+
static void _sunrise_sunset_set_expiration(sunrise_sunset_state_t *state, watch_date_time next_rise_set) {
uint32_t timestamp = watch_utility_date_time_to_unix_time(next_rise_set, 0);
state->rise_set_expires = watch_utility_date_time_from_unix_time(timestamp + 60, 0);
@@ -279,6 +283,23 @@ void sunrise_sunset_face_setup(movement_settings_t *settings, uint8_t watch_face
void sunrise_sunset_face_activate(movement_settings_t *settings, void *context) {
(void) settings;
if (watch_tick_animation_is_running()) watch_stop_tick_animation();
+
+#if __EMSCRIPTEN__
+ int16_t browser_lat = EM_ASM_INT({
+ return lat;
+ });
+ int16_t browser_lon = EM_ASM_INT({
+ return lon;
+ });
+ if ((watch_get_backup_data(1) == 0) && (browser_lat || browser_lon)) {
+ movement_location_t browser_loc;
+ browser_loc.bit.latitude = browser_lat;
+ browser_loc.bit.longitude = browser_lon;
+ watch_store_backup_data(browser_loc.reg, 1);
+ }
+#endif
+
+
sunrise_sunset_state_t *state = (sunrise_sunset_state_t *)context;
movement_location_t movement_location = (movement_location_t) watch_get_backup_data(1);
state->working_latitude = _sunrise_sunset_face_struct_from_latlon(movement_location.bit.latitude);