2022-02-26 19:32:31 +00:00
|
|
|
#include "displayapp/screens/WatchFaceInfineat.h"
|
|
|
|
|
|
|
|
#include <date/date.h>
|
|
|
|
#include <lvgl/lvgl.h>
|
|
|
|
#include <cstdio>
|
|
|
|
#include "displayapp/screens/Symbols.h"
|
|
|
|
#include "displayapp/screens/BleIcon.h"
|
|
|
|
#include "components/settings/Settings.h"
|
2022-04-01 14:22:26 +00:00
|
|
|
#include "components/battery/BatteryController.h"
|
2022-02-26 19:32:31 +00:00
|
|
|
#include "components/ble/BleController.h"
|
2022-04-01 14:22:26 +00:00
|
|
|
#include "components/ble/NotificationManager.h"
|
2022-02-26 19:32:31 +00:00
|
|
|
#include "components/motion/MotionController.h"
|
|
|
|
|
|
|
|
using namespace Pinetime::Applications::Screens;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void event_handler(lv_obj_t* obj, lv_event_t event) {
|
|
|
|
auto* screen = static_cast<WatchFaceInfineat*>(obj->user_data);
|
|
|
|
screen->UpdateSelected(obj, event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WatchFaceInfineat::WatchFaceInfineat(DisplayApp* app,
|
|
|
|
Controllers::DateTime& dateTimeController,
|
2022-04-01 14:22:26 +00:00
|
|
|
Controllers::Battery& batteryController,
|
2022-02-26 19:32:31 +00:00
|
|
|
Controllers::Ble& bleController,
|
|
|
|
Controllers::NotificationManager& notificationManager,
|
|
|
|
Controllers::Settings& settingsController,
|
2022-09-11 14:22:28 +00:00
|
|
|
Controllers::MotionController& motionController,
|
2022-10-01 19:03:28 +00:00
|
|
|
Controllers::FS& filesystem)
|
2022-02-26 19:32:31 +00:00
|
|
|
: Screen(app),
|
|
|
|
currentDateTime {{}},
|
|
|
|
dateTimeController {dateTimeController},
|
2022-04-01 14:22:26 +00:00
|
|
|
batteryController {batteryController},
|
2022-02-26 19:32:31 +00:00
|
|
|
bleController {bleController},
|
|
|
|
notificationManager {notificationManager},
|
|
|
|
settingsController {settingsController},
|
|
|
|
motionController {motionController} {
|
2022-09-11 14:22:28 +00:00
|
|
|
lfs_file f = {};
|
2022-10-01 19:03:28 +00:00
|
|
|
if (filesystem.FileOpen(&f, "/fonts/teko.bin", LFS_O_RDONLY) >= 0) {
|
|
|
|
filesystem.FileClose(&f);
|
2022-09-11 14:22:28 +00:00
|
|
|
font_teko = lv_font_load("F:/fonts/teko.bin");
|
|
|
|
}
|
|
|
|
|
2022-10-01 19:03:28 +00:00
|
|
|
if (filesystem.FileOpen(&f, "/fonts/bebas.bin", LFS_O_RDONLY) >= 0) {
|
|
|
|
filesystem.FileClose(&f);
|
2022-09-11 14:22:28 +00:00
|
|
|
font_bebas = lv_font_load("F:/fonts/bebas.bin");
|
|
|
|
}
|
2022-02-26 19:32:31 +00:00
|
|
|
|
|
|
|
// Black background covering the whole screen
|
|
|
|
background = lv_obj_create(lv_scr_act(), nullptr);
|
|
|
|
lv_obj_set_style_local_bg_color(background, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK);
|
|
|
|
lv_obj_set_size(background, 240, 240);
|
|
|
|
lv_obj_align(background, lv_scr_act(), LV_ALIGN_IN_TOP_LEFT, 0, 0);
|
|
|
|
|
|
|
|
// Side Cover
|
|
|
|
line0 = lv_line_create(lv_scr_act(), nullptr);
|
|
|
|
line1 = lv_line_create(lv_scr_act(), nullptr);
|
|
|
|
line2 = lv_line_create(lv_scr_act(), nullptr);
|
|
|
|
line3 = lv_line_create(lv_scr_act(), nullptr);
|
|
|
|
line4 = lv_line_create(lv_scr_act(), nullptr);
|
|
|
|
line5 = lv_line_create(lv_scr_act(), nullptr);
|
|
|
|
line6 = lv_line_create(lv_scr_act(), nullptr);
|
|
|
|
line7 = lv_line_create(lv_scr_act(), nullptr);
|
|
|
|
line8 = lv_line_create(lv_scr_act(), nullptr);
|
2022-04-01 14:22:26 +00:00
|
|
|
lineBattery = lv_line_create(lv_scr_act(), nullptr);
|
2022-02-26 19:32:31 +00:00
|
|
|
|
|
|
|
lv_style_init(&line0Style);
|
|
|
|
lv_style_set_line_width(&line0Style, LV_STATE_DEFAULT, 18);
|
2022-09-11 18:18:01 +00:00
|
|
|
lv_style_set_line_color(&line0Style,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[settingsController.GetInfineatColorIndex() * nLines]));
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_add_style(line0, LV_LINE_PART_MAIN, &line0Style);
|
|
|
|
line0Points[0] = {30, 25};
|
|
|
|
line0Points[1] = {68, -8};
|
|
|
|
lv_line_set_points(line0, line0Points, 2);
|
|
|
|
|
2022-03-03 00:57:42 +00:00
|
|
|
lv_style_init(&line1Style);
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_style_set_line_width(&line1Style, LV_STATE_DEFAULT, 15);
|
2022-09-11 18:18:01 +00:00
|
|
|
lv_style_set_line_color(&line1Style,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[settingsController.GetInfineatColorIndex() * nLines + 1]));
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_add_style(line1, LV_LINE_PART_MAIN, &line1Style);
|
|
|
|
line1Points[0] = {26, 167};
|
|
|
|
line1Points[1] = {43, 216};
|
|
|
|
lv_line_set_points(line1, line1Points, 2);
|
|
|
|
|
|
|
|
lv_style_init(&line2Style);
|
|
|
|
lv_style_set_line_width(&line2Style, LV_STATE_DEFAULT, 14);
|
2022-09-11 18:18:01 +00:00
|
|
|
lv_style_set_line_color(&line2Style,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[settingsController.GetInfineatColorIndex() * nLines + 2]));
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_add_style(line2, LV_LINE_PART_MAIN, &line2Style);
|
|
|
|
line2Points[0] = {27, 40};
|
|
|
|
line2Points[1] = {27, 196};
|
|
|
|
lv_line_set_points(line2, line2Points, 2);
|
|
|
|
|
|
|
|
lv_style_init(&line3Style);
|
|
|
|
lv_style_set_line_width(&line3Style, LV_STATE_DEFAULT, 22);
|
2022-09-11 18:18:01 +00:00
|
|
|
lv_style_set_line_color(&line3Style,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[settingsController.GetInfineatColorIndex() * nLines + 3]));
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_add_style(line3, LV_LINE_PART_MAIN, &line3Style);
|
|
|
|
line3Points[0] = {12, 182};
|
|
|
|
line3Points[1] = {65, 249};
|
|
|
|
lv_line_set_points(line3, line3Points, 2);
|
|
|
|
|
|
|
|
lv_style_init(&line4Style);
|
|
|
|
lv_style_set_line_width(&line4Style, LV_STATE_DEFAULT, 20);
|
2022-09-11 18:18:01 +00:00
|
|
|
lv_style_set_line_color(&line4Style,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[settingsController.GetInfineatColorIndex() * nLines + 4]));
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_add_style(line4, LV_LINE_PART_MAIN, &line4Style);
|
|
|
|
line4Points[0] = {17, 99};
|
|
|
|
line4Points[1] = {17, 144};
|
|
|
|
lv_line_set_points(line4, line4Points, 2);
|
|
|
|
|
|
|
|
lv_style_init(&line5Style);
|
|
|
|
lv_style_set_line_width(&line5Style, LV_STATE_DEFAULT, 18);
|
2022-09-11 18:18:01 +00:00
|
|
|
lv_style_set_line_color(&line5Style,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[settingsController.GetInfineatColorIndex() * nLines + 5]));
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_add_style(line5, LV_LINE_PART_MAIN, &line5Style);
|
|
|
|
line5Points[0] = {14, 81};
|
|
|
|
line5Points[1] = {40, 127};
|
|
|
|
lv_line_set_points(line5, line5Points, 2);
|
|
|
|
|
|
|
|
lv_style_init(&line6Style);
|
|
|
|
lv_style_set_line_width(&line6Style, LV_STATE_DEFAULT, 18);
|
2022-09-11 18:18:01 +00:00
|
|
|
lv_style_set_line_color(&line6Style,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[settingsController.GetInfineatColorIndex() * nLines + 6]));
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_add_style(line6, LV_LINE_PART_MAIN, &line6Style);
|
|
|
|
line6Points[0] = {14, 163};
|
|
|
|
line6Points[1] = {40, 118};
|
|
|
|
lv_line_set_points(line6, line6Points, 2);
|
|
|
|
|
|
|
|
lv_style_init(&line7Style);
|
|
|
|
lv_style_set_line_width(&line7Style, LV_STATE_DEFAULT, 52);
|
2022-09-11 18:18:01 +00:00
|
|
|
lv_style_set_line_color(&line7Style,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[settingsController.GetInfineatColorIndex() * nLines + 7]));
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_add_style(line7, LV_LINE_PART_MAIN, &line7Style);
|
|
|
|
line7Points[0] = {-20, 124};
|
|
|
|
line7Points[1] = {25, -11};
|
|
|
|
lv_line_set_points(line7, line7Points, 2);
|
|
|
|
|
|
|
|
lv_style_init(&line8Style);
|
|
|
|
lv_style_set_line_width(&line8Style, LV_STATE_DEFAULT, 48);
|
2022-09-11 18:18:01 +00:00
|
|
|
lv_style_set_line_color(&line8Style,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[settingsController.GetInfineatColorIndex() * nLines + 8]));
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_add_style(line8, LV_LINE_PART_MAIN, &line8Style);
|
|
|
|
line8Points[0] = {-29, 89};
|
|
|
|
line8Points[1] = {27, 254};
|
|
|
|
lv_line_set_points(line8, line8Points, 2);
|
|
|
|
|
|
|
|
logoPine = lv_img_create(lv_scr_act(), nullptr);
|
2022-09-11 14:22:28 +00:00
|
|
|
lv_img_set_src(logoPine, "F:/images/pine_small.bin");
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_set_pos(logoPine, 15, 106);
|
|
|
|
|
2022-04-01 14:22:26 +00:00
|
|
|
lv_style_init(&lineBatteryStyle);
|
|
|
|
lv_style_set_line_width(&lineBatteryStyle, LV_STATE_DEFAULT, 24);
|
2022-09-11 18:18:01 +00:00
|
|
|
lv_style_set_line_color(&lineBatteryStyle,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[settingsController.GetInfineatColorIndex() * nLines + 4]));
|
2022-04-03 15:20:25 +00:00
|
|
|
lv_style_set_line_opa(&lineBatteryStyle, LV_STATE_DEFAULT, 190);
|
2022-04-01 14:22:26 +00:00
|
|
|
lv_obj_add_style(lineBattery, LV_LINE_PART_MAIN, &lineBatteryStyle);
|
|
|
|
lineBatteryPoints[0] = {27, 105};
|
|
|
|
lineBatteryPoints[1] = {27, 106};
|
|
|
|
lv_line_set_points(lineBattery, lineBatteryPoints, 2);
|
|
|
|
lv_obj_move_foreground(lineBattery);
|
|
|
|
|
2022-06-11 13:46:16 +00:00
|
|
|
notificationIcon = lv_obj_create(lv_scr_act(), nullptr);
|
2022-09-11 18:18:01 +00:00
|
|
|
lv_obj_set_style_local_bg_color(notificationIcon,
|
|
|
|
LV_BTN_PART_MAIN,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[settingsController.GetInfineatColorIndex() * nLines + 7]));
|
2022-06-11 13:46:16 +00:00
|
|
|
lv_obj_set_style_local_radius(notificationIcon, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE);
|
|
|
|
lv_obj_set_size(notificationIcon, 13, 13);
|
|
|
|
lv_obj_set_hidden(notificationIcon, true);
|
|
|
|
|
2022-09-11 18:18:01 +00:00
|
|
|
if (!settingsController.GetInfineatShowSideCover()) {
|
2022-05-21 12:04:49 +00:00
|
|
|
ToggleBatteryIndicatorColor(false);
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_set_hidden(line0, true);
|
|
|
|
lv_obj_set_hidden(line1, true);
|
|
|
|
lv_obj_set_hidden(line2, true);
|
|
|
|
lv_obj_set_hidden(line3, true);
|
|
|
|
lv_obj_set_hidden(line4, true);
|
|
|
|
lv_obj_set_hidden(line5, true);
|
|
|
|
lv_obj_set_hidden(line6, true);
|
|
|
|
lv_obj_set_hidden(line7, true);
|
|
|
|
lv_obj_set_hidden(line8, true);
|
|
|
|
}
|
|
|
|
|
2022-03-03 21:22:33 +00:00
|
|
|
timeContainer = lv_obj_create(lv_scr_act(), nullptr);
|
|
|
|
lv_obj_set_style_local_bg_opa(timeContainer, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_TRANSP);
|
2022-09-11 18:18:01 +00:00
|
|
|
if (font_bebas != nullptr) {
|
2022-09-11 14:22:28 +00:00
|
|
|
lv_obj_set_size(timeContainer, 185, 185);
|
|
|
|
lv_obj_align(timeContainer, lv_scr_act(), LV_ALIGN_CENTER, 0, -10);
|
|
|
|
} else {
|
|
|
|
lv_obj_set_size(timeContainer, 110, 145);
|
|
|
|
lv_obj_align(timeContainer, lv_scr_act(), LV_ALIGN_CENTER, 0, 0);
|
|
|
|
}
|
2022-03-03 21:22:33 +00:00
|
|
|
|
2022-02-26 19:32:31 +00:00
|
|
|
labelHour = lv_label_create(lv_scr_act(), nullptr);
|
2022-03-21 09:34:35 +00:00
|
|
|
lv_obj_set_style_local_text_font(labelHour, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_extrabold_compressed);
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_label_set_text(labelHour, "01");
|
2022-09-11 18:18:01 +00:00
|
|
|
if (font_bebas != nullptr) {
|
2022-09-11 14:22:28 +00:00
|
|
|
lv_obj_set_style_local_text_font(labelHour, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, font_bebas);
|
|
|
|
lv_obj_align(labelHour, timeContainer, LV_ALIGN_IN_TOP_MID, 0, 0);
|
2022-09-11 18:18:01 +00:00
|
|
|
} else {
|
2022-09-11 14:22:28 +00:00
|
|
|
lv_obj_set_style_local_text_font(labelHour, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_extrabold_compressed);
|
|
|
|
lv_obj_align(labelHour, timeContainer, LV_ALIGN_IN_TOP_MID, 0, 5);
|
|
|
|
}
|
2022-02-26 19:32:31 +00:00
|
|
|
|
|
|
|
labelMinutes = lv_label_create(lv_scr_act(), nullptr);
|
2022-09-11 18:18:01 +00:00
|
|
|
if (font_bebas != nullptr) {
|
2022-09-11 14:22:28 +00:00
|
|
|
lv_obj_set_style_local_text_font(labelMinutes, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, font_bebas);
|
2022-09-11 18:18:01 +00:00
|
|
|
} else {
|
2022-09-11 14:22:28 +00:00
|
|
|
lv_obj_set_style_local_text_font(labelMinutes, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_extrabold_compressed);
|
|
|
|
}
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_label_set_text(labelMinutes, "00");
|
2022-03-03 21:22:33 +00:00
|
|
|
lv_obj_align(labelMinutes, timeContainer, LV_ALIGN_IN_BOTTOM_MID, 0, 0);
|
2022-02-26 19:32:31 +00:00
|
|
|
|
|
|
|
labelTimeAmPm = lv_label_create(lv_scr_act(), nullptr);
|
2022-09-11 18:18:01 +00:00
|
|
|
if (font_teko != nullptr) {
|
2022-09-11 14:22:28 +00:00
|
|
|
lv_obj_set_style_local_text_font(labelTimeAmPm, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, font_teko);
|
2022-09-11 18:18:01 +00:00
|
|
|
} else {
|
2022-09-11 14:22:28 +00:00
|
|
|
lv_obj_set_style_local_text_font(labelTimeAmPm, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_bold_20);
|
|
|
|
}
|
|
|
|
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_label_set_text(labelTimeAmPm, "");
|
2022-03-21 09:34:35 +00:00
|
|
|
lv_obj_align(labelTimeAmPm, timeContainer, LV_ALIGN_OUT_RIGHT_TOP, 0, 15);
|
2022-02-26 19:32:31 +00:00
|
|
|
|
2022-06-11 13:08:07 +00:00
|
|
|
dateContainer = lv_obj_create(lv_scr_act(), nullptr);
|
|
|
|
lv_obj_set_style_local_bg_opa(dateContainer, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_TRANSP);
|
2022-09-11 14:22:28 +00:00
|
|
|
lv_obj_set_size(dateContainer, 60, 30);
|
2022-06-11 13:08:07 +00:00
|
|
|
lv_obj_align(dateContainer, lv_scr_act(), LV_ALIGN_IN_RIGHT_MID, 0, 5);
|
|
|
|
|
2022-09-11 14:22:28 +00:00
|
|
|
labelDate = lv_label_create(lv_scr_act(), nullptr);
|
|
|
|
lv_obj_set_style_local_text_color(labelDate, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x999999));
|
2022-09-11 18:18:01 +00:00
|
|
|
if (font_teko != nullptr) {
|
2022-09-11 14:22:28 +00:00
|
|
|
lv_obj_set_style_local_text_font(labelDate, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, font_teko);
|
2022-09-11 18:18:01 +00:00
|
|
|
} else {
|
2022-09-11 14:22:28 +00:00
|
|
|
lv_obj_set_style_local_text_font(labelDate, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_bold_20);
|
|
|
|
}
|
|
|
|
lv_obj_align(labelDate, dateContainer, LV_ALIGN_IN_TOP_MID, 0, 0);
|
|
|
|
lv_label_set_text(labelDate, "Mon 01");
|
2022-02-26 19:32:31 +00:00
|
|
|
|
|
|
|
bleIcon = lv_label_create(lv_scr_act(), nullptr);
|
|
|
|
lv_obj_set_style_local_text_color(bleIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x999999));
|
|
|
|
lv_label_set_text(bleIcon, Symbols::bluetooth);
|
2022-09-11 14:22:28 +00:00
|
|
|
lv_obj_align(bleIcon, dateContainer, LV_ALIGN_OUT_BOTTOM_MID, 0, 0);
|
2022-02-26 19:32:31 +00:00
|
|
|
|
|
|
|
stepValue = lv_label_create(lv_scr_act(), nullptr);
|
|
|
|
lv_obj_set_style_local_text_color(stepValue, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x999999));
|
2022-09-11 18:18:01 +00:00
|
|
|
if (font_teko != nullptr) {
|
2022-09-11 14:22:28 +00:00
|
|
|
lv_obj_set_style_local_text_font(stepValue, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, font_teko);
|
2022-09-11 18:18:01 +00:00
|
|
|
} else {
|
2022-09-11 14:22:28 +00:00
|
|
|
lv_obj_set_style_local_text_font(stepValue, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_bold_20);
|
|
|
|
}
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_align(stepValue, lv_scr_act(), LV_ALIGN_IN_BOTTOM_RIGHT, 10, 0);
|
|
|
|
lv_label_set_text(stepValue, "0");
|
|
|
|
|
|
|
|
stepIcon = lv_label_create(lv_scr_act(), nullptr);
|
|
|
|
lv_obj_set_style_local_text_color(stepIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x999999));
|
|
|
|
lv_label_set_text(stepIcon, Symbols::shoe);
|
|
|
|
lv_obj_align(stepIcon, stepValue, LV_ALIGN_OUT_LEFT_MID, -5, 0);
|
|
|
|
|
|
|
|
// Setting buttons
|
|
|
|
btnClose = lv_btn_create(lv_scr_act(), nullptr);
|
|
|
|
btnClose->user_data = this;
|
|
|
|
lv_obj_set_size(btnClose, 60, 60);
|
|
|
|
lv_obj_align(btnClose, lv_scr_act(), LV_ALIGN_CENTER, 0, -80);
|
|
|
|
lv_obj_set_style_local_bg_opa(btnClose, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_70);
|
2022-10-06 13:00:35 +00:00
|
|
|
lv_obj_t* lblClose = lv_label_create(btnClose, nullptr);
|
|
|
|
lv_label_set_text_static(lblClose, "X");
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_set_event_cb(btnClose, event_handler);
|
|
|
|
lv_obj_set_hidden(btnClose, true);
|
|
|
|
|
|
|
|
btnNextColor = lv_btn_create(lv_scr_act(), nullptr);
|
|
|
|
btnNextColor->user_data = this;
|
|
|
|
lv_obj_set_size(btnNextColor, 60, 60);
|
|
|
|
lv_obj_align(btnNextColor, lv_scr_act(), LV_ALIGN_IN_RIGHT_MID, -15, 0);
|
|
|
|
lv_obj_set_style_local_bg_opa(btnNextColor, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_70);
|
2022-10-06 13:00:35 +00:00
|
|
|
lv_obj_t* lblNextColor = lv_label_create(btnNextColor, nullptr);
|
|
|
|
lv_label_set_text_static(lblNextColor, ">");
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_set_event_cb(btnNextColor, event_handler);
|
|
|
|
lv_obj_set_hidden(btnNextColor, true);
|
|
|
|
|
|
|
|
btnPrevColor = lv_btn_create(lv_scr_act(), nullptr);
|
|
|
|
btnPrevColor->user_data = this;
|
|
|
|
lv_obj_set_size(btnPrevColor, 60, 60);
|
|
|
|
lv_obj_align(btnPrevColor, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 15, 0);
|
|
|
|
lv_obj_set_style_local_bg_opa(btnPrevColor, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_70);
|
2022-10-06 13:00:35 +00:00
|
|
|
lv_obj_t* lblPrevColor = lv_label_create(btnPrevColor, nullptr);
|
|
|
|
lv_label_set_text_static(lblPrevColor, "<");
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_set_event_cb(btnPrevColor, event_handler);
|
|
|
|
lv_obj_set_hidden(btnPrevColor, true);
|
|
|
|
|
|
|
|
btnToggleCover = lv_btn_create(lv_scr_act(), nullptr);
|
|
|
|
btnToggleCover->user_data = this;
|
|
|
|
lv_obj_set_size(btnToggleCover, 60, 60);
|
|
|
|
lv_obj_align(btnToggleCover, lv_scr_act(), LV_ALIGN_CENTER, 0, 80);
|
|
|
|
lv_obj_set_style_local_bg_opa(btnToggleCover, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_70);
|
|
|
|
const char* labelToggle = settingsController.GetInfineatShowSideCover() ? "ON" : "OFF";
|
2022-10-06 13:00:35 +00:00
|
|
|
lblToggle = lv_label_create(btnToggleCover, nullptr);
|
|
|
|
lv_label_set_text_static(lblToggle, labelToggle);
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_set_event_cb(btnToggleCover, event_handler);
|
|
|
|
lv_obj_set_hidden(btnToggleCover, true);
|
|
|
|
|
|
|
|
// Button to access the settings
|
|
|
|
btnSettings = lv_btn_create(lv_scr_act(), nullptr);
|
|
|
|
btnSettings->user_data = this;
|
|
|
|
lv_obj_set_size(btnSettings, 150, 150);
|
|
|
|
lv_obj_align(btnSettings, lv_scr_act(), LV_ALIGN_CENTER, 0, 0);
|
|
|
|
lv_obj_set_style_local_radius(btnSettings, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 30);
|
|
|
|
lv_obj_set_style_local_bg_opa(btnSettings, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_70);
|
|
|
|
lv_obj_set_event_cb(btnSettings, event_handler);
|
|
|
|
labelBtnSettings = lv_label_create(btnSettings, nullptr);
|
|
|
|
lv_obj_set_style_local_text_font(labelBtnSettings, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &lv_font_sys_48);
|
|
|
|
lv_label_set_text_static(labelBtnSettings, Symbols::settings);
|
|
|
|
lv_obj_set_hidden(btnSettings, true);
|
|
|
|
|
|
|
|
taskRefresh = lv_task_create(RefreshTaskCallback, LV_DISP_DEF_REFR_PERIOD, LV_TASK_PRIO_MID, this);
|
|
|
|
Refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
WatchFaceInfineat::~WatchFaceInfineat() {
|
|
|
|
lv_task_del(taskRefresh);
|
|
|
|
|
|
|
|
lv_style_reset(&line0Style);
|
|
|
|
lv_style_reset(&line1Style);
|
|
|
|
lv_style_reset(&line2Style);
|
|
|
|
lv_style_reset(&line3Style);
|
|
|
|
lv_style_reset(&line4Style);
|
|
|
|
lv_style_reset(&line5Style);
|
|
|
|
lv_style_reset(&line6Style);
|
|
|
|
lv_style_reset(&line7Style);
|
|
|
|
lv_style_reset(&line8Style);
|
2022-04-01 14:22:26 +00:00
|
|
|
lv_style_reset(&lineBatteryStyle);
|
2022-02-26 19:32:31 +00:00
|
|
|
|
2022-09-11 14:22:28 +00:00
|
|
|
if (font_bebas != nullptr) {
|
|
|
|
lv_font_free(font_bebas);
|
|
|
|
}
|
2022-09-11 18:18:01 +00:00
|
|
|
if (font_teko != nullptr) {
|
2022-09-11 14:22:28 +00:00
|
|
|
lv_font_free(font_teko);
|
|
|
|
}
|
|
|
|
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_clean(lv_scr_act());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool WatchFaceInfineat::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
|
|
|
|
if ((event == Pinetime::Applications::TouchEvents::LongTap) && lv_obj_get_hidden(btnSettings)) {
|
|
|
|
lv_obj_set_hidden(btnSettings, false);
|
|
|
|
savedTick = lv_tick_get();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// Prevent screen from sleeping when double tapping with settings on
|
|
|
|
if ((event == Pinetime::Applications::TouchEvents::DoubleTap) && !lv_obj_get_hidden(btnClose)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WatchFaceInfineat::CloseMenu() {
|
|
|
|
settingsController.SaveSettings();
|
|
|
|
lv_obj_set_hidden(btnClose, true);
|
|
|
|
lv_obj_set_hidden(btnNextColor, true);
|
|
|
|
lv_obj_set_hidden(btnPrevColor, true);
|
|
|
|
lv_obj_set_hidden(btnToggleCover, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool WatchFaceInfineat::OnButtonPushed() {
|
|
|
|
if (!lv_obj_get_hidden(btnClose)) {
|
|
|
|
CloseMenu();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WatchFaceInfineat::UpdateSelected(lv_obj_t* object, lv_event_t event) {
|
|
|
|
if (event == LV_EVENT_CLICKED) {
|
2022-03-03 00:57:42 +00:00
|
|
|
bool showSideCover = settingsController.GetInfineatShowSideCover();
|
|
|
|
int colorIndex = settingsController.GetInfineatColorIndex();
|
|
|
|
|
2022-02-26 19:32:31 +00:00
|
|
|
if (object == btnSettings) {
|
|
|
|
lv_obj_set_hidden(btnSettings, true);
|
|
|
|
lv_obj_set_hidden(btnClose, false);
|
2022-03-03 00:57:42 +00:00
|
|
|
lv_obj_set_hidden(btnNextColor, !showSideCover);
|
|
|
|
lv_obj_set_hidden(btnPrevColor, !showSideCover);
|
2022-02-26 19:32:31 +00:00
|
|
|
lv_obj_set_hidden(btnToggleCover, false);
|
|
|
|
}
|
|
|
|
if (object == btnClose) {
|
|
|
|
CloseMenu();
|
|
|
|
}
|
|
|
|
if (object == btnToggleCover) {
|
2022-03-03 00:57:42 +00:00
|
|
|
settingsController.SetInfineatShowSideCover(!showSideCover);
|
2022-05-21 12:04:49 +00:00
|
|
|
ToggleBatteryIndicatorColor(!showSideCover);
|
2022-03-03 00:57:42 +00:00
|
|
|
lv_obj_set_hidden(line0, showSideCover);
|
|
|
|
lv_obj_set_hidden(line1, showSideCover);
|
|
|
|
lv_obj_set_hidden(line2, showSideCover);
|
|
|
|
lv_obj_set_hidden(line3, showSideCover);
|
|
|
|
lv_obj_set_hidden(line4, showSideCover);
|
|
|
|
lv_obj_set_hidden(line5, showSideCover);
|
|
|
|
lv_obj_set_hidden(line6, showSideCover);
|
|
|
|
lv_obj_set_hidden(line7, showSideCover);
|
|
|
|
lv_obj_set_hidden(line8, showSideCover);
|
|
|
|
lv_obj_set_hidden(btnNextColor, showSideCover);
|
|
|
|
lv_obj_set_hidden(btnPrevColor, showSideCover);
|
|
|
|
const char* labelToggle = showSideCover ? "OFF" : "ON";
|
2022-10-06 13:00:35 +00:00
|
|
|
lv_label_set_text_static(lblToggle, labelToggle);
|
2022-02-26 19:32:31 +00:00
|
|
|
}
|
|
|
|
if (object == btnNextColor) {
|
2022-03-03 00:57:42 +00:00
|
|
|
colorIndex = (colorIndex + 1) % nColors;
|
|
|
|
settingsController.SetInfineatColorIndex(colorIndex);
|
2022-02-26 19:32:31 +00:00
|
|
|
}
|
|
|
|
if (object == btnPrevColor) {
|
2022-03-03 00:57:42 +00:00
|
|
|
colorIndex -= 1;
|
2022-02-26 19:32:31 +00:00
|
|
|
if (colorIndex < 0)
|
|
|
|
colorIndex = nColors - 1;
|
|
|
|
settingsController.SetInfineatColorIndex(colorIndex);
|
|
|
|
}
|
|
|
|
if (object == btnNextColor || object == btnPrevColor) {
|
2022-09-11 18:18:01 +00:00
|
|
|
lv_obj_set_style_local_line_color(line0,
|
|
|
|
LV_LINE_PART_MAIN,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[colorIndex * nLines + 0]));
|
|
|
|
lv_obj_set_style_local_line_color(line1,
|
|
|
|
LV_LINE_PART_MAIN,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[colorIndex * nLines + 1]));
|
|
|
|
lv_obj_set_style_local_line_color(line2,
|
|
|
|
LV_LINE_PART_MAIN,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[colorIndex * nLines + 2]));
|
|
|
|
lv_obj_set_style_local_line_color(line3,
|
|
|
|
LV_LINE_PART_MAIN,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[colorIndex * nLines + 3]));
|
|
|
|
lv_obj_set_style_local_line_color(line4,
|
|
|
|
LV_LINE_PART_MAIN,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[colorIndex * nLines + 4]));
|
|
|
|
lv_obj_set_style_local_line_color(line5,
|
|
|
|
LV_LINE_PART_MAIN,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[colorIndex * nLines + 5]));
|
|
|
|
lv_obj_set_style_local_line_color(line6,
|
|
|
|
LV_LINE_PART_MAIN,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[colorIndex * nLines + 6]));
|
|
|
|
lv_obj_set_style_local_line_color(line7,
|
|
|
|
LV_LINE_PART_MAIN,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[colorIndex * nLines + 7]));
|
|
|
|
lv_obj_set_style_local_line_color(line8,
|
|
|
|
LV_LINE_PART_MAIN,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[colorIndex * nLines + 8]));
|
|
|
|
lv_obj_set_style_local_line_color(lineBattery,
|
|
|
|
LV_LINE_PART_MAIN,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[colorIndex * nLines + 4]));
|
|
|
|
lv_obj_set_style_local_bg_color(notificationIcon,
|
|
|
|
LV_BTN_PART_MAIN,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[colorIndex * nLines + 7]));
|
2022-02-26 19:32:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void WatchFaceInfineat::Refresh() {
|
|
|
|
notificationState = notificationManager.AreNewNotificationsAvailable();
|
|
|
|
if (notificationState.IsUpdated()) {
|
|
|
|
lv_obj_set_hidden(notificationIcon, !notificationState.Get());
|
|
|
|
lv_obj_align(notificationIcon, lv_scr_act(), LV_ALIGN_IN_TOP_RIGHT, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
currentDateTime = dateTimeController.CurrentDateTime();
|
|
|
|
|
|
|
|
if (currentDateTime.IsUpdated()) {
|
|
|
|
auto newDateTime = currentDateTime.Get();
|
|
|
|
|
|
|
|
auto dp = date::floor<date::days>(newDateTime);
|
|
|
|
auto time = date::make_time(newDateTime - dp);
|
|
|
|
auto yearMonthDay = date::year_month_day(dp);
|
|
|
|
|
|
|
|
auto year = static_cast<int>(yearMonthDay.year());
|
|
|
|
auto month = static_cast<Pinetime::Controllers::DateTime::Months>(static_cast<unsigned>(yearMonthDay.month()));
|
|
|
|
auto day = static_cast<unsigned>(yearMonthDay.day());
|
|
|
|
auto dayOfWeek = static_cast<Pinetime::Controllers::DateTime::Days>(date::weekday(yearMonthDay).iso_encoding());
|
|
|
|
|
|
|
|
int hour = time.hours().count();
|
|
|
|
auto minute = time.minutes().count();
|
|
|
|
|
|
|
|
char minutesChar[3];
|
|
|
|
sprintf(minutesChar, "%02d", static_cast<int>(minute));
|
|
|
|
|
|
|
|
char hoursChar[3];
|
|
|
|
char ampmChar[3];
|
|
|
|
|
|
|
|
if (settingsController.GetClockType() == Controllers::Settings::ClockType::H12) {
|
|
|
|
if (hour < 12) {
|
|
|
|
if (hour == 0) {
|
|
|
|
hour = 12;
|
|
|
|
}
|
|
|
|
sprintf(ampmChar, "AM");
|
|
|
|
} else { // hour >= 12
|
|
|
|
if (hour != 12) {
|
|
|
|
hour = hour - 12;
|
|
|
|
}
|
|
|
|
sprintf(ampmChar, "PM");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sprintf(hoursChar, "%02d", hour);
|
|
|
|
|
|
|
|
if ((hoursChar[0] != displayedChar[0]) || (hoursChar[1] != displayedChar[1]) || (minutesChar[0] != displayedChar[2]) ||
|
|
|
|
(minutesChar[1] != displayedChar[3])) {
|
|
|
|
displayedChar[0] = hoursChar[0];
|
|
|
|
displayedChar[1] = hoursChar[1];
|
|
|
|
displayedChar[2] = minutesChar[0];
|
|
|
|
displayedChar[3] = minutesChar[1];
|
|
|
|
|
|
|
|
lv_label_set_text_fmt(labelHour, "%s", hoursChar);
|
|
|
|
lv_label_set_text_fmt(labelMinutes, "%s", minutesChar);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (settingsController.GetClockType() == Controllers::Settings::ClockType::H12) {
|
|
|
|
lv_label_set_text(labelTimeAmPm, ampmChar);
|
2022-03-21 09:34:35 +00:00
|
|
|
lv_obj_align(labelTimeAmPm, timeContainer, LV_ALIGN_OUT_RIGHT_TOP, 0, 10);
|
|
|
|
lv_obj_align(labelHour, timeContainer, LV_ALIGN_IN_TOP_MID, 0, 5);
|
|
|
|
lv_obj_align(labelMinutes, timeContainer, LV_ALIGN_IN_BOTTOM_MID, 0, 0);
|
2022-02-26 19:32:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((year != currentYear) || (month != currentMonth) || (dayOfWeek != currentDayOfWeek) || (day != currentDay)) {
|
2022-09-11 14:22:28 +00:00
|
|
|
lv_label_set_text_fmt(labelDate, "%s %02d", dateTimeController.DayOfWeekShortToStringLow(), day);
|
|
|
|
lv_obj_realign(labelDate);
|
2022-02-26 19:32:31 +00:00
|
|
|
|
|
|
|
currentYear = year;
|
|
|
|
currentMonth = month;
|
|
|
|
currentDayOfWeek = dayOfWeek;
|
|
|
|
currentDay = day;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-01 14:22:26 +00:00
|
|
|
batteryPercentRemaining = batteryController.PercentRemaining();
|
2022-04-03 15:20:25 +00:00
|
|
|
isCharging = batteryController.IsCharging();
|
|
|
|
// We store if battery and charging are updated before calling Get(),
|
|
|
|
// since Get() sets isUpdated to false.
|
|
|
|
bool isBatteryUpdated = batteryPercentRemaining.IsUpdated();
|
|
|
|
bool isChargingUpdated = isCharging.IsUpdated();
|
2022-09-11 18:18:01 +00:00
|
|
|
if (isCharging.Get()) { // Charging battery animation
|
2022-04-03 15:20:25 +00:00
|
|
|
chargingBatteryPercent += 1;
|
|
|
|
if (chargingBatteryPercent > 100) {
|
|
|
|
chargingBatteryPercent = batteryPercentRemaining.Get();
|
|
|
|
}
|
|
|
|
SetBatteryLevel(chargingBatteryPercent);
|
|
|
|
} else if (isChargingUpdated || isBatteryUpdated) {
|
|
|
|
chargingBatteryPercent = batteryPercentRemaining.Get();
|
|
|
|
SetBatteryLevel(chargingBatteryPercent);
|
2022-04-01 14:22:26 +00:00
|
|
|
}
|
|
|
|
|
2022-02-26 19:32:31 +00:00
|
|
|
bleState = bleController.IsConnected();
|
2022-03-01 23:34:39 +00:00
|
|
|
bleRadioEnabled = bleController.IsRadioEnabled();
|
2022-02-26 19:32:31 +00:00
|
|
|
if (bleState.IsUpdated()) {
|
2022-04-03 15:49:32 +00:00
|
|
|
lv_label_set_text(bleIcon, BleIcon::GetIcon(bleState.Get()));
|
2022-06-11 13:08:07 +00:00
|
|
|
lv_obj_align(bleIcon, dateContainer, LV_ALIGN_OUT_BOTTOM_MID, 0, 3);
|
2022-02-26 19:32:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stepCount = motionController.NbSteps();
|
|
|
|
motionSensorOk = motionController.IsSensorOk();
|
|
|
|
if (stepCount.IsUpdated() || motionSensorOk.IsUpdated()) {
|
|
|
|
lv_label_set_text_fmt(stepValue, "%lu", stepCount.Get());
|
|
|
|
lv_obj_align(stepValue, lv_scr_act(), LV_ALIGN_IN_BOTTOM_MID, 10, 0);
|
|
|
|
lv_obj_align(stepIcon, stepValue, LV_ALIGN_OUT_LEFT_MID, -5, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!lv_obj_get_hidden(btnSettings)) {
|
|
|
|
if ((savedTick > 0) && (lv_tick_get() - savedTick > 3000)) {
|
|
|
|
lv_obj_set_hidden(btnSettings, true);
|
|
|
|
savedTick = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-01 14:22:26 +00:00
|
|
|
|
|
|
|
void WatchFaceInfineat::SetBatteryLevel(uint8_t batteryPercent) {
|
|
|
|
// starting point (y) + Pine64 logo height * (100 - batteryPercent) / 100
|
2022-09-11 18:18:01 +00:00
|
|
|
lineBatteryPoints[1] = {27, static_cast<lv_coord_t>(105 + 32 * (100 - batteryPercent) / 100)};
|
2022-04-01 14:22:26 +00:00
|
|
|
lv_line_set_points(lineBattery, lineBatteryPoints, 2);
|
|
|
|
}
|
2022-05-21 12:04:49 +00:00
|
|
|
|
|
|
|
void WatchFaceInfineat::ToggleBatteryIndicatorColor(bool showSideCover) {
|
2022-06-11 13:46:16 +00:00
|
|
|
if (!showSideCover) { // make indicator and notification icon color white
|
2022-05-21 12:04:49 +00:00
|
|
|
lv_obj_set_style_local_image_recolor_opa(logoPine, LV_IMG_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_100);
|
|
|
|
lv_obj_set_style_local_image_recolor(logoPine, LV_IMG_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_WHITE);
|
2022-05-21 12:18:00 +00:00
|
|
|
lv_obj_set_style_local_line_color(lineBattery, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK);
|
2022-06-11 13:46:16 +00:00
|
|
|
lv_obj_set_style_local_bg_color(notificationIcon, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_WHITE);
|
2022-05-21 12:04:49 +00:00
|
|
|
} else {
|
|
|
|
lv_obj_set_style_local_image_recolor_opa(logoPine, LV_IMG_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_0);
|
2022-09-11 18:18:01 +00:00
|
|
|
lv_obj_set_style_local_line_color(lineBattery,
|
|
|
|
LV_LINE_PART_MAIN,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[settingsController.GetInfineatColorIndex() * nLines + 4]));
|
|
|
|
lv_obj_set_style_local_bg_color(notificationIcon,
|
|
|
|
LV_BTN_PART_MAIN,
|
|
|
|
LV_STATE_DEFAULT,
|
|
|
|
lv_color_hex(infineatColors.orange[settingsController.GetInfineatColorIndex() * nLines + 7]));
|
2022-05-21 12:04:49 +00:00
|
|
|
}
|
|
|
|
}
|
2022-10-11 19:36:31 +00:00
|
|
|
|
|
|
|
bool WatchFaceInfineat::IsAvailable(Pinetime::Controllers::FS& filesystem) {
|
|
|
|
lfs_file file = {};
|
|
|
|
|
|
|
|
if (filesystem.FileOpen(&file, "/fonts/teko.bin", LFS_O_RDONLY) < 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-10-15 14:52:55 +00:00
|
|
|
filesystem.FileClose(&file);
|
2022-10-11 19:36:31 +00:00
|
|
|
if (filesystem.FileOpen(&file, "/fonts/bebas.bin", LFS_O_RDONLY) < 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-10-15 14:52:55 +00:00
|
|
|
filesystem.FileClose(&file);
|
2022-10-11 19:36:31 +00:00
|
|
|
if (filesystem.FileOpen(&file, "/images/pine_small.bin", LFS_O_RDONLY) < 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-10-15 14:52:55 +00:00
|
|
|
filesystem.FileClose(&file);
|
2022-10-11 19:36:31 +00:00
|
|
|
return true;
|
|
|
|
}
|