| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580 |
- #include "totp_app_settings.h"
- #include <math.h>
- #include <totp_icons.h>
- #include "../../../services/fonts/font_provider.h"
- #include "../../canvas_extensions.h"
- #include "../../ui_controls.h"
- #include "../../common_dialogs.h"
- #include "../../scene_director.h"
- #include "../../constants.h"
- #include "../../../services/config/config.h"
- #include "../../../services/convert/convert.h"
- #include "../../../services/kb_layouts/kb_layout_provider.h"
- #include <roll_value.h>
- #include "../../../config/app/config.h"
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- #include "../../../workers/bt_type_code/bt_type_code.h"
- #endif
- #include <assets_icons.h>
- #define FONT_TEST_STR_LENGTH (7)
- static const char* YES_NO_LIST[] = {"NO", "YES"};
- static const char* TOKEN_GROUPING_LIST[] = {"NO", "2", "3"};
- static const uint8_t TOKEN_GROUPING_LIST_VALUES[] = {0, 2, 3};
- static const uint8_t TOKEN_GROUPING_LIST_VALUES_INDEXES[] = {0, 0, 1, 2};
- static const char* AUTOMATION_LIST[] = {
- "None",
- "USB"
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- ,
- "Bluetooth",
- "BT and USB"
- #endif
- };
- static const char* FONT_TEST_STR = "0123BCD";
- typedef enum {
- HoursInput,
- MinutesInput,
- FontSelect,
- SoundSwitch,
- VibroSwitch,
- AutomationSwitch,
- BadKeyboardLayoutSelect,
- AutomationDelaySelect,
- BadBtProfileSelect,
- SplitTokenIntoGroupsSelect,
- ConfirmButton
- } Control;
- typedef struct {
- int8_t tz_offset_hours;
- uint8_t tz_offset_minutes;
- bool notification_sound;
- bool notification_vibro;
- AutomationMethod automation_method;
- uint16_t y_offset;
- AutomationKeyboardLayout automation_kb_layout;
- uint8_t automation_kb_layout_count;
- char automation_kb_layout_name[TOTP_KB_LAYOUT_NAME_MAX_LENGTH + 1];
- Control selected_control;
- uint8_t active_font_index;
- FontInfo* active_font;
- uint8_t total_fonts_count;
- uint16_t automation_initial_delay;
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- uint8_t badbt_profile_index;
- #endif
- char automation_initial_delay_formatted[10];
- uint8_t split_token_into_groups;
- } SceneState;
- static void two_digit_to_str(int8_t num, char* str) {
- char* s = str;
- if(num < 0) {
- *(s++) = '-';
- num = -num;
- }
- uint8_t d1 = (num / 10) % 10;
- uint8_t d2 = num % 10;
- *(s++) = CONVERT_DIGIT_TO_CHAR(d1);
- *(s++) = CONVERT_DIGIT_TO_CHAR(d2);
- *(s++) = '\0';
- }
- static void update_formatted_automation_initial_delay(SceneState* scene_state) {
- snprintf(
- &scene_state->automation_initial_delay_formatted[0],
- sizeof(scene_state->automation_initial_delay_formatted),
- "%.1f sec.",
- (double)(scene_state->automation_initial_delay / 1000.0f));
- }
- static void update_formatted_automation_kb_layout_name(SceneState* scene_state) {
- totp_kb_layout_provider_get_layout_name(
- scene_state->automation_kb_layout,
- &scene_state->automation_kb_layout_name[0],
- sizeof(scene_state->automation_kb_layout_name));
- }
- void totp_scene_app_settings_activate(PluginState* plugin_state) {
- SceneState* scene_state = malloc(sizeof(SceneState));
- furi_check(scene_state != NULL);
- plugin_state->current_scene_state = scene_state;
- float off_int;
- float off_dec = modff(plugin_state->timezone_offset, &off_int);
- scene_state->tz_offset_hours = off_int;
- scene_state->tz_offset_minutes = 60.0f * off_dec;
- scene_state->notification_sound = plugin_state->notification_method & NotificationMethodSound;
- scene_state->notification_vibro = plugin_state->notification_method & NotificationMethodVibro;
- scene_state->automation_method =
- MIN(plugin_state->automation_method, COUNT_OF(AUTOMATION_LIST) - 1);
- scene_state->automation_kb_layout_count = totp_kb_layout_provider_get_layouts_count();
- scene_state->automation_kb_layout =
- MIN(plugin_state->automation_kb_layout, scene_state->automation_kb_layout_count - 1);
- scene_state->automation_initial_delay = plugin_state->automation_initial_delay;
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- scene_state->badbt_profile_index = plugin_state->bt_type_code_worker_profile_index;
- #endif
- scene_state->total_fonts_count = totp_font_provider_get_fonts_count();
- scene_state->active_font_index = plugin_state->active_font_index;
- scene_state->active_font = totp_font_info_alloc();
- if(!totp_font_provider_get_font(scene_state->active_font_index, scene_state->active_font)) {
- scene_state->active_font_index = 0;
- totp_font_provider_get_font(scene_state->active_font_index, scene_state->active_font);
- }
- update_formatted_automation_initial_delay(scene_state);
- update_formatted_automation_kb_layout_name(scene_state);
- scene_state->split_token_into_groups =
- TOKEN_GROUPING_LIST_VALUES_INDEXES[plugin_state->split_token_into_groups];
- }
- void totp_scene_app_settings_render(Canvas* const canvas, const PluginState* plugin_state) {
- const SceneState* scene_state = plugin_state->current_scene_state;
- if(scene_state->selected_control < FontSelect) {
- canvas_set_font(canvas, FontPrimary);
- canvas_draw_str_aligned(
- canvas, 0, 0 - scene_state->y_offset, AlignLeft, AlignTop, "Timezone offset");
- canvas_set_font(canvas, FontSecondary);
- char tmp_str[4];
- two_digit_to_str(scene_state->tz_offset_hours, &tmp_str[0]);
- canvas_draw_str_aligned(
- canvas, 0, 17 - scene_state->y_offset, AlignLeft, AlignTop, "Hours:");
- ui_control_select_render(
- canvas,
- 36,
- 10 - scene_state->y_offset,
- SCREEN_WIDTH - 36 - UI_CONTROL_VSCROLL_WIDTH,
- &tmp_str[0],
- scene_state->selected_control == HoursInput);
- two_digit_to_str(scene_state->tz_offset_minutes, &tmp_str[0]);
- canvas_draw_str_aligned(
- canvas, 0, 35 - scene_state->y_offset, AlignLeft, AlignTop, "Minutes:");
- ui_control_select_render(
- canvas,
- 36,
- 28 - scene_state->y_offset,
- SCREEN_WIDTH - 36 - UI_CONTROL_VSCROLL_WIDTH,
- &tmp_str[0],
- scene_state->selected_control == MinutesInput);
- } else if(scene_state->selected_control < SoundSwitch) {
- canvas_set_font(canvas, FontPrimary);
- canvas_draw_str_aligned(
- canvas, 0, 64 - scene_state->y_offset, AlignLeft, AlignTop, "Font");
- canvas_set_font(canvas, FontSecondary);
- const FontInfo* const font = scene_state->active_font;
- ui_control_select_render(
- canvas,
- 0,
- 74 - scene_state->y_offset,
- SCREEN_WIDTH - UI_CONTROL_VSCROLL_WIDTH,
- font->name,
- scene_state->selected_control == FontSelect);
- uint8_t font_x_offset =
- SCREEN_WIDTH_CENTER -
- (((font->char_info[0].width + font->space_width) * FONT_TEST_STR_LENGTH) >> 1);
- uint8_t font_y_offset = 108 - scene_state->y_offset - (font->height >> 1);
- canvas_draw_str_ex(
- canvas, font_x_offset, font_y_offset, FONT_TEST_STR, FONT_TEST_STR_LENGTH, font);
- } else if(scene_state->selected_control < AutomationSwitch) {
- canvas_set_font(canvas, FontPrimary);
- canvas_draw_str_aligned(
- canvas, 0, 128 - scene_state->y_offset, AlignLeft, AlignTop, "Notifications");
- canvas_set_font(canvas, FontSecondary);
- canvas_draw_str_aligned(
- canvas, 0, 145 - scene_state->y_offset, AlignLeft, AlignTop, "Sound:");
- ui_control_select_render(
- canvas,
- 36,
- 138 - scene_state->y_offset,
- SCREEN_WIDTH - 36 - UI_CONTROL_VSCROLL_WIDTH,
- YES_NO_LIST[scene_state->notification_sound],
- scene_state->selected_control == SoundSwitch);
- canvas_draw_str_aligned(
- canvas, 0, 163 - scene_state->y_offset, AlignLeft, AlignTop, "Vibro:");
- ui_control_select_render(
- canvas,
- 36,
- 156 - scene_state->y_offset,
- SCREEN_WIDTH - 36 - UI_CONTROL_VSCROLL_WIDTH,
- YES_NO_LIST[scene_state->notification_vibro],
- scene_state->selected_control == VibroSwitch);
- } else if(scene_state->selected_control < SplitTokenIntoGroupsSelect) {
- canvas_set_font(canvas, FontPrimary);
- canvas_draw_str_aligned(
- canvas, 0, 192 - scene_state->y_offset, AlignLeft, AlignTop, "Automation");
- canvas_set_font(canvas, FontSecondary);
- int group_offset = 0;
- if(scene_state->selected_control <= BadKeyboardLayoutSelect) {
- canvas_draw_str_aligned(
- canvas,
- 0,
- 209 - scene_state->y_offset - group_offset,
- AlignLeft,
- AlignTop,
- "Method:");
- ui_control_select_render(
- canvas,
- 36,
- 202 - scene_state->y_offset - group_offset,
- SCREEN_WIDTH - 36 - UI_CONTROL_VSCROLL_WIDTH,
- AUTOMATION_LIST[scene_state->automation_method],
- scene_state->selected_control == AutomationSwitch);
- } else {
- group_offset += 18;
- }
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- if(scene_state->selected_control <= AutomationDelaySelect ||
- (scene_state->automation_method & AutomationMethodBadBt) == 0) {
- #endif
- canvas_draw_str_aligned(
- canvas,
- 0,
- 227 - scene_state->y_offset - group_offset,
- AlignLeft,
- AlignTop,
- "Layout:");
- ui_control_select_render(
- canvas,
- 36,
- 220 - scene_state->y_offset - group_offset,
- SCREEN_WIDTH - 36 - UI_CONTROL_VSCROLL_WIDTH,
- scene_state->automation_kb_layout_name,
- scene_state->selected_control == BadKeyboardLayoutSelect);
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- } else if((scene_state->automation_method & AutomationMethodBadBt) != 0) {
- group_offset += 18;
- }
- #endif
- canvas_draw_str_aligned(
- canvas, 0, 245 - scene_state->y_offset - group_offset, AlignLeft, AlignTop, "Delay:");
- ui_control_select_render(
- canvas,
- 36,
- 238 - scene_state->y_offset - group_offset,
- SCREEN_WIDTH - 36 - UI_CONTROL_VSCROLL_WIDTH,
- &scene_state->automation_initial_delay_formatted[0],
- scene_state->selected_control == AutomationDelaySelect);
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- if((scene_state->automation_method & AutomationMethodBadBt) != 0) {
- canvas_draw_str_aligned(
- canvas,
- 0,
- 263 - scene_state->y_offset - group_offset,
- AlignLeft,
- AlignTop,
- "BT Profile:");
- char profile_index_formatted[4];
- snprintf(profile_index_formatted, 4, "%d", scene_state->badbt_profile_index);
- ui_control_select_render(
- canvas,
- 42,
- 256 - scene_state->y_offset - group_offset,
- SCREEN_WIDTH - 42 - UI_CONTROL_VSCROLL_WIDTH,
- &profile_index_formatted[0],
- scene_state->selected_control == BadBtProfileSelect);
- }
- #endif
- } else {
- canvas_set_font(canvas, FontPrimary);
- canvas_draw_str_aligned(canvas, 0, 256 - scene_state->y_offset, AlignLeft, AlignTop, "UI");
- canvas_set_font(canvas, FontSecondary);
- canvas_draw_str_aligned(
- canvas, 0, 273 - scene_state->y_offset, AlignLeft, AlignTop, "Digit grouping:");
- ui_control_select_render(
- canvas,
- 64,
- 266 - scene_state->y_offset,
- SCREEN_WIDTH - 64 - UI_CONTROL_VSCROLL_WIDTH,
- TOKEN_GROUPING_LIST[scene_state->split_token_into_groups],
- scene_state->selected_control == SplitTokenIntoGroupsSelect);
- ui_control_button_render(
- canvas,
- SCREEN_WIDTH_CENTER - 24,
- 306 - scene_state->y_offset,
- 48,
- 13,
- "Confirm",
- scene_state->selected_control == ConfirmButton);
- }
- ui_control_vscroll_render(
- canvas, SCREEN_WIDTH - 3, 0, SCREEN_HEIGHT, scene_state->selected_control, ConfirmButton);
- }
- bool totp_scene_app_settings_handle_event(
- const PluginEvent* const event,
- PluginState* plugin_state) {
- if(event->type != EventTypeKey) {
- return true;
- }
- SceneState* scene_state = (SceneState*)plugin_state->current_scene_state;
- if(event->input.type == InputTypePress || event->input.type == InputTypeRepeat) {
- switch(event->input.key) {
- case InputKeyUp:
- totp_roll_value_uint8_t(
- &scene_state->selected_control,
- -1,
- HoursInput,
- ConfirmButton,
- RollOverflowBehaviorStop);
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- if((scene_state->automation_method & AutomationMethodBadBt) == 0 &&
- scene_state->selected_control == BadBtProfileSelect) {
- scene_state->selected_control--;
- }
- #endif
- if(scene_state->selected_control >
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- BadBtProfileSelect
- #else
- AutomationDelaySelect
- #endif
- ) {
- scene_state->y_offset = SCREEN_HEIGHT * 4;
- } else if(scene_state->selected_control > VibroSwitch) {
- scene_state->y_offset = SCREEN_HEIGHT * 3;
- } else if(scene_state->selected_control > FontSelect) {
- scene_state->y_offset = SCREEN_HEIGHT * 2;
- } else if(scene_state->selected_control > MinutesInput) {
- scene_state->y_offset = SCREEN_HEIGHT;
- } else {
- scene_state->y_offset = 0;
- }
- break;
- case InputKeyDown:
- totp_roll_value_uint8_t(
- &scene_state->selected_control,
- 1,
- HoursInput,
- ConfirmButton,
- RollOverflowBehaviorStop);
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- if((scene_state->automation_method & AutomationMethodBadBt) == 0 &&
- scene_state->selected_control == BadBtProfileSelect) {
- scene_state->selected_control++;
- }
- #endif
- if(scene_state->selected_control >
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- BadBtProfileSelect
- #else
- AutomationDelaySelect
- #endif
- ) {
- scene_state->y_offset = SCREEN_HEIGHT * 4;
- } else if(scene_state->selected_control > VibroSwitch) {
- scene_state->y_offset = SCREEN_HEIGHT * 3;
- } else if(scene_state->selected_control > FontSelect) {
- scene_state->y_offset = SCREEN_HEIGHT * 2;
- } else if(scene_state->selected_control > MinutesInput) {
- scene_state->y_offset = SCREEN_HEIGHT;
- } else {
- scene_state->y_offset = 0;
- }
- break;
- case InputKeyRight:
- if(scene_state->selected_control == HoursInput) {
- totp_roll_value_int8_t(
- &scene_state->tz_offset_hours, 1, -12, 14, RollOverflowBehaviorStop);
- } else if(scene_state->selected_control == MinutesInput) {
- totp_roll_value_uint8_t(
- &scene_state->tz_offset_minutes, 15, 0, 45, RollOverflowBehaviorRoll);
- } else if(scene_state->selected_control == FontSelect) {
- totp_roll_value_uint8_t(
- &scene_state->active_font_index,
- 1,
- 0,
- scene_state->total_fonts_count - 1,
- RollOverflowBehaviorRoll);
- totp_font_provider_get_font(
- scene_state->active_font_index, scene_state->active_font);
- } else if(scene_state->selected_control == SoundSwitch) {
- scene_state->notification_sound = !scene_state->notification_sound;
- } else if(scene_state->selected_control == VibroSwitch) {
- scene_state->notification_vibro = !scene_state->notification_vibro;
- } else if(scene_state->selected_control == AutomationSwitch) {
- totp_roll_value_uint8_t(
- &scene_state->automation_method,
- 1,
- 0,
- COUNT_OF(AUTOMATION_LIST) - 1,
- RollOverflowBehaviorRoll);
- } else if(scene_state->selected_control == BadKeyboardLayoutSelect) {
- totp_roll_value_uint8_t(
- &scene_state->automation_kb_layout,
- 1,
- 0,
- scene_state->automation_kb_layout_count - 1,
- RollOverflowBehaviorRoll);
- update_formatted_automation_kb_layout_name(scene_state);
- } else if(scene_state->selected_control == AutomationDelaySelect) {
- totp_roll_value_uint16_t(
- &scene_state->automation_initial_delay,
- 500,
- 0,
- 60000,
- RollOverflowBehaviorStop);
- update_formatted_automation_initial_delay(scene_state);
- }
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- else if(scene_state->selected_control == BadBtProfileSelect) {
- totp_roll_value_uint8_t(
- &scene_state->badbt_profile_index, 1, 0, UINT8_MAX, RollOverflowBehaviorRoll);
- }
- #endif
- else if(scene_state->selected_control == SplitTokenIntoGroupsSelect) {
- totp_roll_value_uint8_t(
- &scene_state->split_token_into_groups,
- 1,
- 0,
- COUNT_OF(TOKEN_GROUPING_LIST) - 1,
- RollOverflowBehaviorRoll);
- }
- break;
- case InputKeyLeft:
- if(scene_state->selected_control == HoursInput) {
- totp_roll_value_int8_t(
- &scene_state->tz_offset_hours, -1, -12, 14, RollOverflowBehaviorStop);
- } else if(scene_state->selected_control == MinutesInput) {
- totp_roll_value_uint8_t(
- &scene_state->tz_offset_minutes, -15, 0, 45, RollOverflowBehaviorRoll);
- } else if(scene_state->selected_control == FontSelect) {
- totp_roll_value_uint8_t(
- &scene_state->active_font_index,
- -1,
- 0,
- scene_state->total_fonts_count - 1,
- RollOverflowBehaviorRoll);
- totp_font_provider_get_font(
- scene_state->active_font_index, scene_state->active_font);
- } else if(scene_state->selected_control == SoundSwitch) {
- scene_state->notification_sound = !scene_state->notification_sound;
- } else if(scene_state->selected_control == VibroSwitch) {
- scene_state->notification_vibro = !scene_state->notification_vibro;
- } else if(scene_state->selected_control == AutomationSwitch) {
- totp_roll_value_uint8_t(
- &scene_state->automation_method,
- -1,
- 0,
- COUNT_OF(AUTOMATION_LIST) - 1,
- RollOverflowBehaviorRoll);
- } else if(scene_state->selected_control == BadKeyboardLayoutSelect) {
- totp_roll_value_uint8_t(
- &scene_state->automation_kb_layout,
- -1,
- 0,
- scene_state->automation_kb_layout_count - 1,
- RollOverflowBehaviorRoll);
- update_formatted_automation_kb_layout_name(scene_state);
- } else if(scene_state->selected_control == AutomationDelaySelect) {
- totp_roll_value_uint16_t(
- &scene_state->automation_initial_delay,
- -500,
- 0,
- 60000,
- RollOverflowBehaviorStop);
- update_formatted_automation_initial_delay(scene_state);
- }
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- else if(scene_state->selected_control == BadBtProfileSelect) {
- totp_roll_value_uint8_t(
- &scene_state->badbt_profile_index, -1, 0, UINT8_MAX, RollOverflowBehaviorRoll);
- }
- #endif
- else if(scene_state->selected_control == SplitTokenIntoGroupsSelect) {
- totp_roll_value_uint8_t(
- &scene_state->split_token_into_groups,
- -1,
- 0,
- COUNT_OF(TOKEN_GROUPING_LIST) - 1,
- RollOverflowBehaviorRoll);
- }
- break;
- case InputKeyOk:
- if(scene_state->selected_control == ConfirmButton) {
- plugin_state->timezone_offset = (float)scene_state->tz_offset_hours +
- (float)scene_state->tz_offset_minutes / 60.0f;
- plugin_state->notification_method =
- (scene_state->notification_sound ? NotificationMethodSound :
- NotificationMethodNone) |
- (scene_state->notification_vibro ? NotificationMethodVibro :
- NotificationMethodNone);
- plugin_state->automation_method = scene_state->automation_method;
- plugin_state->active_font_index = scene_state->active_font_index;
- plugin_state->automation_kb_layout = scene_state->automation_kb_layout;
- plugin_state->automation_initial_delay = scene_state->automation_initial_delay;
- plugin_state->split_token_into_groups =
- TOKEN_GROUPING_LIST_VALUES[scene_state->split_token_into_groups];
- #ifdef TOTP_BADBT_AUTOMATION_ENABLED
- if(((scene_state->automation_method & AutomationMethodBadBt) == 0 ||
- plugin_state->bt_type_code_worker_profile_index !=
- scene_state->badbt_profile_index) &&
- plugin_state->bt_type_code_worker_context != NULL) {
- totp_bt_type_code_worker_free(plugin_state->bt_type_code_worker_context);
- plugin_state->bt_type_code_worker_context = NULL;
- }
- plugin_state->bt_type_code_worker_profile_index = scene_state->badbt_profile_index;
- #endif
- if(!totp_config_file_update_user_settings(plugin_state)) {
- totp_dialogs_config_updating_error(plugin_state);
- return false;
- }
- totp_scene_director_activate_scene(plugin_state, TotpSceneTokenMenu);
- }
- break;
- case InputKeyBack: {
- totp_scene_director_activate_scene(plugin_state, TotpSceneTokenMenu);
- break;
- }
- default:
- break;
- }
- }
- return true;
- }
- void totp_scene_app_settings_deactivate(PluginState* plugin_state) {
- if(plugin_state->current_scene_state == NULL) return;
- SceneState* scene_state = plugin_state->current_scene_state;
- totp_font_info_free(scene_state->active_font);
- free(scene_state);
- plugin_state->current_scene_state = NULL;
- }
|