mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 12:42:30 +04:00
228 lines
6.8 KiB
C
228 lines
6.8 KiB
C
#include <furi.h>
|
|
#include <furi_hal.h>
|
|
|
|
#include <gui/gui.h>
|
|
#include <gui/view_port.h>
|
|
|
|
#include <notification/notification.h>
|
|
#include <notification/notification_messages.h>
|
|
|
|
#include <assets_icons.h>
|
|
|
|
#define TAG "ClockSettingsAlarm"
|
|
|
|
#define SNOOZE_MINUTES 9
|
|
#define TIMEOUT_MINUTES 10
|
|
|
|
typedef struct {
|
|
DateTime now;
|
|
DateTime snooze_until;
|
|
DateTime alarm_start;
|
|
IconAnimation* icon;
|
|
|
|
bool is_snooze;
|
|
} ClockSettingsAlramModel;
|
|
|
|
const NotificationSequence sequence_alarm = {
|
|
&message_force_speaker_volume_setting_1f,
|
|
&message_force_vibro_setting_on,
|
|
&message_force_display_brightness_setting_1f,
|
|
&message_vibro_on,
|
|
|
|
&message_display_backlight_on,
|
|
&message_note_c7,
|
|
&message_delay_250,
|
|
|
|
&message_display_backlight_off,
|
|
&message_note_c4,
|
|
&message_delay_250,
|
|
|
|
&message_display_backlight_on,
|
|
&message_note_c7,
|
|
&message_delay_250,
|
|
|
|
&message_display_backlight_off,
|
|
&message_note_c4,
|
|
&message_delay_250,
|
|
|
|
&message_sound_off,
|
|
&message_vibro_off,
|
|
NULL,
|
|
};
|
|
|
|
static void clock_settings_alarm_draw_callback(Canvas* canvas, void* ctx) {
|
|
ClockSettingsAlramModel* model = ctx;
|
|
char buffer[64] = {};
|
|
|
|
// Clock icon
|
|
canvas_draw_icon_animation(canvas, 5, 6, model->icon);
|
|
|
|
// Time
|
|
canvas_set_font(canvas, FontBigNumbers);
|
|
snprintf(buffer, sizeof(buffer), "%02u:%02u", model->now.hour, model->now.minute);
|
|
canvas_draw_str(canvas, 58, 32, buffer);
|
|
|
|
// Date
|
|
canvas_set_font(canvas, FontPrimary);
|
|
snprintf(
|
|
buffer,
|
|
sizeof(buffer),
|
|
"%02u.%02u.%04u",
|
|
model->now.day,
|
|
model->now.month,
|
|
model->now.year);
|
|
canvas_draw_str(canvas, 60, 44, buffer);
|
|
|
|
// Press Back to snooze
|
|
canvas_set_font(canvas, FontPrimary);
|
|
canvas_draw_icon_ex(canvas, 5, 50, &I_back_btn_10x8, 0);
|
|
canvas_draw_str_aligned(canvas, 20, 50, AlignLeft, AlignTop, "Snooze");
|
|
}
|
|
|
|
static void clock_settings_alarm_input_callback(InputEvent* input_event, void* ctx) {
|
|
furi_assert(ctx);
|
|
FuriMessageQueue* event_queue = ctx;
|
|
furi_message_queue_put(event_queue, input_event, FuriWaitForever);
|
|
}
|
|
|
|
void clock_settings_alarm_animation_callback(IconAnimation* instance, void* context) {
|
|
UNUSED(instance);
|
|
ViewPort* view_port = context;
|
|
view_port_update(view_port);
|
|
}
|
|
|
|
int32_t clock_settings_alarm(void* p) {
|
|
UNUSED(p);
|
|
|
|
// View Model
|
|
ClockSettingsAlramModel model;
|
|
model.is_snooze = false;
|
|
|
|
furi_hal_rtc_get_datetime(&model.now);
|
|
furi_hal_rtc_get_alarm(&model.alarm_start);
|
|
model.icon = icon_animation_alloc(&A_Alarm_47x39);
|
|
|
|
// Alloc message queue
|
|
FuriMessageQueue* event_queue = furi_message_queue_alloc(8, sizeof(InputEvent));
|
|
|
|
// Configure view port
|
|
ViewPort* view_port = view_port_alloc();
|
|
view_port_draw_callback_set(view_port, clock_settings_alarm_draw_callback, &model);
|
|
view_port_input_callback_set(view_port, clock_settings_alarm_input_callback, event_queue);
|
|
|
|
// Register view port in GUI
|
|
Gui* gui = furi_record_open(RECORD_GUI);
|
|
gui_set_lockdown_inhibit(gui, true);
|
|
gui_add_view_port(gui, view_port, GuiLayerFullscreen);
|
|
|
|
NotificationApp* notification = furi_record_open(RECORD_NOTIFICATION);
|
|
notification_message(notification, &sequence_alarm);
|
|
|
|
icon_animation_set_update_callback(
|
|
model.icon, clock_settings_alarm_animation_callback, view_port);
|
|
icon_animation_start(model.icon);
|
|
|
|
// Process events
|
|
InputEvent event;
|
|
bool running = true;
|
|
while(running) {
|
|
if(furi_message_queue_get(event_queue, &event, 2000) == FuriStatusOk) {
|
|
if(event.type == InputTypePress) {
|
|
// Snooze
|
|
if(event.key == InputKeyBack) {
|
|
furi_hal_rtc_get_datetime(&model.snooze_until);
|
|
model.snooze_until.minute += SNOOZE_MINUTES;
|
|
model.snooze_until.hour += model.snooze_until.minute / 60;
|
|
model.snooze_until.minute %= 60;
|
|
model.snooze_until.hour %= 24;
|
|
|
|
model.is_snooze = true;
|
|
model.alarm_start = model.snooze_until; // For correct timeout behavior
|
|
view_port_enabled_set(view_port, false);
|
|
gui_set_lockdown_inhibit(gui, false);
|
|
} else {
|
|
running = false;
|
|
}
|
|
}
|
|
} else if(model.is_snooze) {
|
|
furi_hal_rtc_get_datetime(&model.now);
|
|
if(datetime_datetime_to_timestamp(&model.now) >=
|
|
datetime_datetime_to_timestamp(&model.snooze_until)) {
|
|
view_port_enabled_set(view_port, true);
|
|
gui_set_lockdown_inhibit(gui, true);
|
|
|
|
model.is_snooze = false;
|
|
}
|
|
} else {
|
|
notification_message(notification, &sequence_alarm);
|
|
furi_hal_rtc_get_datetime(&model.now);
|
|
view_port_update(view_port);
|
|
|
|
// Stop the alarm if it has been ringing for more than TIMEOUT_MINUTES
|
|
if((model.now.hour == model.alarm_start.hour &&
|
|
model.now.minute >= model.alarm_start.minute + TIMEOUT_MINUTES) ||
|
|
(model.now.hour == (model.alarm_start.hour + 1) % 24 &&
|
|
model.now.minute < (model.alarm_start.minute + TIMEOUT_MINUTES) % 60)) {
|
|
running = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
icon_animation_stop(model.icon);
|
|
|
|
notification_message_block(notification, &sequence_empty);
|
|
furi_record_close(RECORD_NOTIFICATION);
|
|
|
|
view_port_enabled_set(view_port, false);
|
|
gui_set_lockdown_inhibit(gui, false);
|
|
gui_remove_view_port(gui, view_port);
|
|
view_port_free(view_port);
|
|
furi_message_queue_free(event_queue);
|
|
furi_record_close(RECORD_GUI);
|
|
|
|
icon_animation_free(model.icon);
|
|
|
|
return 0;
|
|
}
|
|
|
|
FuriThread* clock_settings_alarm_thread = NULL;
|
|
|
|
static void clock_settings_alarm_thread_state_callback(
|
|
FuriThread* thread,
|
|
FuriThreadState state,
|
|
void* context) {
|
|
furi_assert(clock_settings_alarm_thread == thread);
|
|
UNUSED(context);
|
|
|
|
if(state == FuriThreadStateStopped) {
|
|
furi_thread_free(thread);
|
|
clock_settings_alarm_thread = NULL;
|
|
}
|
|
}
|
|
|
|
static void clock_settings_alarm_start(void* context, uint32_t arg) {
|
|
UNUSED(context);
|
|
UNUSED(arg);
|
|
|
|
FURI_LOG_I(TAG, "spawning alarm thread");
|
|
|
|
if(clock_settings_alarm_thread) return;
|
|
|
|
clock_settings_alarm_thread =
|
|
furi_thread_alloc_ex("ClockAlarm", 1024, clock_settings_alarm, NULL);
|
|
furi_thread_set_state_callback(
|
|
clock_settings_alarm_thread, clock_settings_alarm_thread_state_callback);
|
|
furi_thread_start(clock_settings_alarm_thread);
|
|
}
|
|
|
|
static void clock_settings_alarm_isr(void* context) {
|
|
UNUSED(context);
|
|
furi_timer_pending_callback(clock_settings_alarm_start, NULL, 0);
|
|
}
|
|
|
|
void clock_settings_start(void) {
|
|
#ifndef FURI_RAM_EXEC
|
|
furi_hal_rtc_set_alarm_callback(clock_settings_alarm_isr, NULL);
|
|
#endif
|
|
}
|