-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathwakeup.c
443 lines (386 loc) · 13.1 KB
/
wakeup.c
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
//
// wakeup.c
// alarms++
//
// Created by Christian Reinbacher on 01.11.14.
//
//
#include "wakeup.h"
#include "win-main.h"
#include "storage.h"
#ifndef PBL_PLATFORM_APLITE
#include "pwm_vibrate.h"
#endif
#include "timeline.h"
#include "win-konami.h"
#include "debug.h"
static Window *s_main_window;
static TextLayer *s_output_layer;
static TextLayer *s_description_layer;
static ActionBarLayer *action_bar;
static char output_text[10];
static bool *s_snooze;
static Alarm *s_alarm;
static uint32_t s_segments[]={600,1};
static int s_vibe_counter = 0;
static int s_vibration_pattern = 0;
#ifndef PBL_PLATFORM_APLITE
static VibePatternPWM s_pwmPat = {
.durations = s_segments,
.num_segments = 2
};
static GDrawCommandSequence *s_command_seq;
static int s_index = 0;
static Layer *s_canvas_layer;
#else
VibePattern s_pat= {
.durations = s_segments,
.num_segments = 2,
};
static GBitmap *s_logo;
static BitmapLayer *s_bitmap_layer;
#endif
static int s_vibration_duration = 0;
static int s_auto_snooze=false;
static int s_konami_dismiss=0;
//static int s_last_z = 10000;
void do_vibrate(void);
void vibe_timer_callback(void* data);
AppTimer* vibe_timer = NULL;
AppTimer* cancel_vibe_timer = NULL;
bool cancel_vibrate=false;
//bool s_flip_to_snooze=false;
bool already_running=false;
#ifdef PBL_HEALTH
AppTimer* s_start_smart_alarm_timer = NULL;
#endif
static void wakeup_handler(WakeupId id, int32_t reason) {
// The app has woken!
}
static void dismiss_click_handler(ClickRecognizerRef recognizer, void *context) {
if(s_konami_dismiss==1) {
win_konami_init();
win_konami_show();
}
else {
*s_snooze=false;
if(alarm_is_one_time(s_alarm))
s_alarm->enabled=false;
window_stack_pop(true);
}
}
static void do_snooze(void)
{
*s_snooze=true;
int snooze_delay;
snooze_delay = load_persistent_storage_int(SNOOZE_KEY,10);
time_t timestamp = time(NULL) + 60*snooze_delay;
s_alarm->alarm_id = wakeup_schedule(timestamp,0,true);
struct tm *t = localtime(×tamp);
APP_LOG(APP_LOG_LEVEL_DEBUG,"Scheduled snooze at %d.%d %d:%d",t->tm_mday, t->tm_mon+1,t->tm_hour,t->tm_min);
window_stack_pop(true);
}
static void snooze_click_handler(ClickRecognizerRef recognizer, void *context) {
do_snooze();
}
static void do_nothing_click_handler(ClickRecognizerRef recognizer, void *context) {
}
static void click_config_provider(void *context) {
// Register the ClickHandlers
window_single_click_subscribe(BUTTON_ID_SELECT, do_nothing_click_handler);
window_single_click_subscribe(BUTTON_ID_BACK, do_nothing_click_handler);
bool topbutton_dismiss = load_persistent_storage_bool(TOP_BUTTON_DISMISS_KEY, true);
if(s_konami_dismiss==2)
window_long_click_subscribe(topbutton_dismiss?BUTTON_ID_UP:BUTTON_ID_DOWN,1000,dismiss_click_handler,NULL);
else
window_single_click_subscribe(topbutton_dismiss?BUTTON_ID_UP:BUTTON_ID_DOWN, dismiss_click_handler);
window_single_click_subscribe(topbutton_dismiss?BUTTON_ID_DOWN:BUTTON_ID_UP, snooze_click_handler);
}
uint32_t min(uint32_t val1,uint32_t val2) {
return val1<val2?val1:val2;
}
void do_vibrate(void) {
#ifndef PBL_PLATFORM_APLITE
if(s_vibration_pattern)
{
s_pwmPat.durations[1] = (s_vibe_counter/s_vibration_pattern)+1;
s_vibe_counter++;
vibes_enqueue_custom_pwm_pattern(&s_pwmPat);
}
#else
if(s_vibration_pattern)
{
s_segments[0] = min((s_vibe_counter/s_vibration_pattern)*50,500);
s_vibe_counter++;
vibes_enqueue_custom_pattern(s_pat);
}
#endif
else
vibes_long_pulse();
vibe_timer = app_timer_register(1000,vibe_timer_callback,NULL);
}
void vibe_timer_callback(void* data) {
if(!cancel_vibrate)
do_vibrate();
}
void cancel_vibe_timer_callback(void* data) {
cancel_vibrate = true;
if(s_auto_snooze)
do_snooze();
else {
*s_snooze=false;
if(alarm_is_one_time(s_alarm))
s_alarm->enabled=false;
window_stack_pop(true);
}
}
static void update_text(struct tm *t) {
if(is_24h())
snprintf(output_text, sizeof(output_text), "%02d:%02d",t->tm_hour,t->tm_min);
else
{
int hour;
bool is_am;
convert_24_to_12(t->tm_hour, &hour, &is_am);
snprintf(output_text, sizeof(output_text), "%02d:%02d %s",hour,t->tm_min,is_am?"AM":"PM");
}
}
static void handle_tick(struct tm *t, TimeUnits units_changed) {
update_text(t);
layer_mark_dirty(text_layer_get_layer(s_output_layer));
if(alarm_has_description(s_alarm))
layer_mark_dirty(text_layer_get_layer(s_description_layer));
}
#ifndef PBL_PLATFORM_APLITE
static void next_frame_handler(void *context) {
// Draw the next frame
layer_mark_dirty(s_canvas_layer);
// Continue the sequence
app_timer_register(33, next_frame_handler, NULL);
}
static void update_proc(Layer *layer, GContext *ctx) {
// Get the next frame
GDrawCommandFrame *frame = gdraw_command_sequence_get_frame_by_index(s_command_seq, s_index);
// If another frame was found, draw it
if (frame) {
gdraw_command_frame_draw(ctx, s_command_seq, frame, GPoint(0, 23));
}
// Advance to the next frame, wrapping if neccessary
int num_frames = gdraw_command_sequence_get_num_frames(s_command_seq);
s_index++;
if (s_index == num_frames) {
s_index = 0;
}
}
#endif
void start_vibration(void *data)
{
if(!already_running) {
already_running=true;
do_vibrate();
// switch off vibration after x minutes
switch (s_vibration_duration) {
case 0:
s_vibration_duration = 30;
break;
case 1:
s_vibration_duration = 60;
break;
case 2:
s_vibration_duration = 120;
break;
case 3:
s_vibration_duration = 300;
break;
case 4:
s_vibration_duration = 2;
break;
case 5:
s_vibration_duration = 10;
break;
default:
break;
}
cancel_vibe_timer = app_timer_register(1000*s_vibration_duration,cancel_vibe_timer_callback,NULL);
#ifndef PBL_PLATFORM_APLITE
if(!alarm_has_description(s_alarm))
app_timer_register(33, next_frame_handler, NULL);
#endif
}
}
#ifdef PBL_HEALTH
static void health_handler(HealthEventType event, void *context) {
// Which type of event occured?
switch(event) {
case HealthEventSignificantUpdate:
APP_LOG(APP_LOG_LEVEL_INFO,
"New HealthService HealthEventSignificantUpdate event");
//start_vibration(NULL);
break;
case HealthEventMovementUpdate:
APP_LOG(APP_LOG_LEVEL_INFO,
"New HealthService HealthEventMovementUpdate event");
start_vibration(NULL);
break;
case HealthEventSleepUpdate:
APP_LOG(APP_LOG_LEVEL_INFO,
"New HealthService HealthEventSleepUpdate event");
start_vibration(NULL);
break;
case HealthEventMetricAlert:
APP_LOG(APP_LOG_LEVEL_INFO,
"New HealthService HealthEventMetricAlert event");
//start_vibration(NULL);
break;
case HealthEventHeartRateUpdate:
APP_LOG(APP_LOG_LEVEL_INFO,
"New HealthService HealthEventHeartRateUpdate event");
//start_vibration(NULL);
break;
}
}
#endif
static void main_window_load(Window *window) {
GRect bounds = layer_get_bounds(window_get_root_layer(window));
action_bar = action_bar_layer_create();
action_bar_layer_set_click_config_provider(action_bar, click_config_provider);
bool topbutton_dismiss = load_persistent_storage_bool(TOP_BUTTON_DISMISS_KEY, true);
action_bar_layer_set_icon_animated(action_bar,topbutton_dismiss?BUTTON_ID_UP:BUTTON_ID_DOWN,gbitmap_create_with_resource(RESOURCE_ID_IMAGE_ACTION_ICON_CROSS_INV),true);
action_bar_layer_set_icon_animated(action_bar,topbutton_dismiss?BUTTON_ID_DOWN:BUTTON_ID_UP,gbitmap_create_with_resource(RESOURCE_ID_IMAGE_ACTION_ICON_ZZ_INV),true);
action_bar_layer_add_to_window(action_bar,window);
// Create output TextLayer
s_output_layer = text_layer_create(GRect(0, bounds.size.h/2-(is_24h()?0:4), bounds.size.w-ACTION_BAR_WIDTH, bounds.size.h));
text_layer_set_text_alignment(s_output_layer, GTextAlignmentCenter);
text_layer_set_font(s_output_layer,fonts_get_system_font(FONT_KEY_BITHAM_42_LIGHT));
//snprintf(output_text, sizeof(output_text), "00:00");
text_layer_set_text(s_output_layer, output_text);
layer_add_child(window_get_root_layer(window), text_layer_get_layer(s_output_layer));
//snprintf(output_text, sizeof(output_text), "00:00");
if(alarm_has_description(s_alarm))
{
// Create Description
s_description_layer = text_layer_create(GRect(PBL_IF_ROUND_ELSE(20,0), PBL_IF_ROUND_ELSE(20,6), bounds.size.w-ACTION_BAR_WIDTH-PBL_IF_ROUND_ELSE(20,0), bounds.size.h/2-10));
text_layer_set_text_alignment(s_description_layer, GTextAlignmentCenter);
#ifdef PBL_PLATFORM_EMERY
text_layer_set_font(s_description_layer,fonts_get_system_font(FONT_KEY_BITHAM_30_BLACK));
#else
text_layer_set_font(s_description_layer,fonts_get_system_font(FONT_KEY_GOTHIC_28_BOLD));
#endif
text_layer_set_text(s_description_layer, s_alarm->description);
layer_add_child(window_get_root_layer(window), text_layer_get_layer(s_description_layer));
}
else
{
#ifndef PBL_PLATFORM_APLITE
s_command_seq = gdraw_command_sequence_create_with_resource(RESOURCE_ID_CLOCK_SEQUENCE);
// Create the canvas Layer
s_canvas_layer = layer_create(GRect((bounds.size.w-ACTION_BAR_WIDTH-80)/2, 0, bounds.size.w, bounds.size.h));
// Set the LayerUpdateProc
layer_set_update_proc(s_canvas_layer, update_proc);
// Add to parent Window
layer_add_child(window_get_root_layer(window), s_canvas_layer);
#else
// Create Bitmap
s_bitmap_layer = bitmap_layer_create(GRect(0,10,bounds.size.w-ACTION_BAR_WIDTH, bounds.size.h));
s_logo = gbitmap_create_with_resource(RESOURCE_ID_IMAGE_LOGO);
bitmap_layer_set_bitmap(s_bitmap_layer,s_logo);
bitmap_layer_set_alignment(s_bitmap_layer,GAlignTop);
layer_add_child(window_get_root_layer(window),bitmap_layer_get_layer(s_bitmap_layer));
s_pat.durations = s_segments;
s_pat.num_segments = 2;
#endif
}
s_vibration_pattern = load_persistent_storage_int(VIBRATION_PATTERN_KEY,0);
s_vibration_duration = load_persistent_storage_int(VIBRATION_DURATION_KEY, 2);
s_konami_dismiss = load_persistent_storage_bool(KONAMI_DISMISS_KEY,false);
s_auto_snooze = load_persistent_storage_bool(AUTO_SNOOZE_KEY, true);
// do smart-alarmy stuff here
#ifdef PBL_HEALTH
if(s_alarm->smart_alarm_minutes>0)
{
// Attempt to subscribe
if(!health_service_events_subscribe(health_handler, NULL)) {
APP_LOG(APP_LOG_LEVEL_ERROR, "Health not available!");
start_vibration(NULL);
}
else {
// Check which activities are available
HealthServiceAccessibilityMask activity_mask = health_service_any_activity_accessible(HealthActivityMaskAll,time(NULL)-SECONDS_PER_HOUR,time(NULL));
if(activity_mask & HealthServiceAccessibilityMaskAvailable){
APP_LOG(APP_LOG_LEVEL_INFO, "We can read activities!");
// Get an activities mask
HealthActivityMask activities = health_service_peek_current_activities();
// Determine if the user is sleeping
if((activities & HealthActivitySleep) || (activities & HealthActivityRestfulSleep)) { // give him time to wake
APP_LOG(APP_LOG_LEVEL_INFO, "User is sleeping!");
s_start_smart_alarm_timer = app_timer_register(1000*60*s_alarm->smart_alarm_minutes,start_vibration,NULL);
} else { // just vibrate
start_vibration(NULL);
}
}
else { // we don't get the current activity, so just vibrate
start_vibration(NULL);
}
}
}
else {
start_vibration(NULL);
}
#else
start_vibration(NULL);
#endif
// test snoozing with the accelerometer
/*if(s_flip_to_snooze)
{
accel_tap_service_subscribe(&accel_tap_handler);
}*/
}
static void main_window_unload(Window *window) {
app_timer_cancel(vibe_timer);
//if(s_flip_to_snooze)
// accel_tap_service_unsubscribe();
}
void perform_wakeup_tasks(Alarm* alarms, bool *snooze)
{
s_snooze=snooze;
// Create main Window
s_main_window = window_create();
window_set_window_handlers(s_main_window, (WindowHandlers) {
.load = main_window_load,
.unload = main_window_unload,
});
// Update timeline pin
int alarm_id = get_next_alarm(alarms);
if(alarm_id>=0)
alarm_phone_send_pin(&alarms[alarm_id]);
APP_LOG(APP_LOG_LEVEL_DEBUG, "Alarm ID: %d",alarm_id);
//s_flip_to_snooze = load_persistent_storage_bool(FLIP_TO_SNOOZE_KEY, false);
// Subscribe to Wakeup API
wakeup_service_subscribe(wakeup_handler);
// Was this a wakeup?
if(launch_reason() == APP_LAUNCH_WAKEUP) {
// The app was started by a wakeup
WakeupId id = 0;
int32_t reason = 0;
// Get details and handle the wakeup
wakeup_get_launch_event(&id, &reason);
// search for alarm which caused the wakeup
s_alarm = alarms;
while(s_alarm->alarm_id!=id)
s_alarm++;
// Get the current time
time_t now = time(NULL);
struct tm *t = localtime(&now);
update_text(t);
//handle_tick(t, MINUTE_UNIT);
tick_timer_service_subscribe(MINUTE_UNIT, handle_tick);
light_enable_interaction();
window_stack_push(s_main_window, true);
//wakeup_handler(id, (int32_t)alarms);
}
else{
*snooze=false;
win_main_init(alarms);
win_main_show();
}
}