2020-01-18 17:17:52 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <libs/date/includes/date/date.h>
|
|
|
|
#include <Components/DateTime/DateTimeController.h>
|
|
|
|
#include <Version.h>
|
2020-02-10 20:05:33 +00:00
|
|
|
#include <libs/lvgl/lvgl.h>
|
2020-01-18 17:17:52 +00:00
|
|
|
#include "Clock.h"
|
2020-02-16 17:32:36 +00:00
|
|
|
#include "../DisplayApp.h"
|
2020-03-14 15:33:47 +00:00
|
|
|
#include "BatteryIcon.h"
|
|
|
|
#include "BleIcon.h"
|
2020-01-18 17:17:52 +00:00
|
|
|
|
|
|
|
using namespace Pinetime::Applications::Screens;
|
2020-03-01 18:09:59 +00:00
|
|
|
extern lv_font_t jetbrains_mono_extrabold_compressed;
|
2020-02-10 20:05:33 +00:00
|
|
|
extern lv_font_t jetbrains_mono_bold_20;
|
2020-07-03 19:37:40 +00:00
|
|
|
extern lv_style_t* LabelBigStyle;
|
2020-03-14 15:33:47 +00:00
|
|
|
|
2020-02-16 17:32:36 +00:00
|
|
|
static void event_handler(lv_obj_t * obj, lv_event_t event) {
|
|
|
|
Clock* screen = static_cast<Clock *>(obj->user_data);
|
|
|
|
screen->OnObjectEvent(obj, event);
|
|
|
|
}
|
|
|
|
|
2020-02-23 15:14:03 +00:00
|
|
|
Clock::Clock(DisplayApp* app,
|
|
|
|
Controllers::DateTime& dateTimeController,
|
|
|
|
Controllers::Battery& batteryController,
|
|
|
|
Controllers::Ble& bleController) : Screen(app), currentDateTime{{}}, version {{}},
|
|
|
|
dateTimeController{dateTimeController}, batteryController{batteryController}, bleController{bleController} {
|
2020-02-16 17:32:36 +00:00
|
|
|
displayedChar[0] = 0;
|
|
|
|
displayedChar[1] = 0;
|
|
|
|
displayedChar[2] = 0;
|
|
|
|
displayedChar[3] = 0;
|
|
|
|
displayedChar[4] = 0;
|
|
|
|
|
2020-03-14 15:33:47 +00:00
|
|
|
batteryIcon = lv_img_create(lv_scr_act(), NULL);
|
|
|
|
lv_img_set_src(batteryIcon, BatteryIcon::GetUnknownIcon());
|
|
|
|
lv_obj_align(batteryIcon, lv_scr_act(), LV_ALIGN_IN_TOP_RIGHT, 0, 0);
|
|
|
|
|
|
|
|
bleIcon = lv_img_create(lv_scr_act(), NULL);
|
|
|
|
lv_img_set_src(bleIcon, BleIcon::GetIcon(false));
|
|
|
|
lv_obj_align(bleIcon, batteryIcon, LV_ALIGN_OUT_LEFT_MID, 0, 0);
|
|
|
|
|
|
|
|
label_date = lv_label_create(lv_scr_act(), NULL);
|
|
|
|
|
|
|
|
lv_obj_align(label_date, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 0, 60);
|
|
|
|
|
2020-02-10 20:05:33 +00:00
|
|
|
label_time = lv_label_create(lv_scr_act(), NULL);
|
2020-07-03 19:37:40 +00:00
|
|
|
lv_label_set_style(label_time, LV_LABEL_STYLE_MAIN, LabelBigStyle);
|
2020-02-10 20:05:33 +00:00
|
|
|
lv_obj_align(label_time, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 0, 0);
|
|
|
|
|
2020-02-16 17:32:36 +00:00
|
|
|
backgroundLabel = lv_label_create(lv_scr_act(), NULL);
|
|
|
|
backgroundLabel->user_data = this;
|
|
|
|
lv_obj_set_click(backgroundLabel, true);
|
|
|
|
lv_obj_set_event_cb(backgroundLabel, event_handler);
|
|
|
|
lv_label_set_long_mode(backgroundLabel, LV_LABEL_LONG_CROP);
|
|
|
|
lv_obj_set_size(backgroundLabel, 240, 240);
|
|
|
|
lv_obj_set_pos(backgroundLabel, 0, 0);
|
|
|
|
lv_label_set_text(backgroundLabel, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
Clock::~Clock() {
|
|
|
|
lv_obj_clean(lv_scr_act());
|
2020-02-10 20:05:33 +00:00
|
|
|
}
|
2020-01-18 17:17:52 +00:00
|
|
|
|
2020-02-23 15:14:03 +00:00
|
|
|
bool Clock::Refresh() {
|
|
|
|
batteryPercentRemaining = batteryController.PercentRemaining();
|
|
|
|
if (batteryPercentRemaining.IsUpdated()) {
|
2020-03-14 15:33:47 +00:00
|
|
|
auto batteryPercent = batteryPercentRemaining.Get();
|
|
|
|
lv_img_set_src(batteryIcon, BatteryIcon::GetIcon(batteryController.IsCharging() || batteryController.IsPowerPresent(), batteryPercent));
|
2020-01-18 17:17:52 +00:00
|
|
|
}
|
|
|
|
|
2020-02-23 15:14:03 +00:00
|
|
|
bleState = bleController.IsConnected();
|
|
|
|
if (bleState.IsUpdated()) {
|
|
|
|
if(bleState.Get() == true) {
|
2020-03-14 15:33:47 +00:00
|
|
|
lv_img_set_src(bleIcon, BleIcon::GetIcon(true));
|
2020-02-20 17:17:53 +00:00
|
|
|
} else {
|
2020-03-14 15:33:47 +00:00
|
|
|
lv_img_set_src(bleIcon, BleIcon::GetIcon(false));
|
2020-02-20 17:17:53 +00:00
|
|
|
}
|
2020-01-18 17:17:52 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 17:32:36 +00:00
|
|
|
currentDateTime = dateTimeController.CurrentDateTime();
|
|
|
|
|
2020-02-23 15:14:03 +00:00
|
|
|
if(currentDateTime.IsUpdated()) {
|
2020-01-18 17:17:52 +00:00
|
|
|
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 = (int)yearMonthDay.year();
|
|
|
|
auto month = static_cast<Pinetime::Controllers::DateTime::Months>((unsigned)yearMonthDay.month());
|
|
|
|
auto day = (unsigned)yearMonthDay.day();
|
|
|
|
auto dayOfWeek = static_cast<Pinetime::Controllers::DateTime::Days>(date::weekday(yearMonthDay).iso_encoding());
|
|
|
|
|
|
|
|
auto hour = time.hours().count();
|
|
|
|
auto minute = time.minutes().count();
|
|
|
|
auto second = time.seconds().count();
|
|
|
|
|
|
|
|
char minutesChar[3];
|
|
|
|
sprintf(minutesChar, "%02d", minute);
|
|
|
|
|
|
|
|
char hoursChar[3];
|
|
|
|
sprintf(hoursChar, "%02d", hour);
|
|
|
|
|
2020-02-10 20:05:33 +00:00
|
|
|
char timeStr[6];
|
|
|
|
sprintf(timeStr, "%c%c:%c%c", hoursChar[0],hoursChar[1],minutesChar[0], minutesChar[1]);
|
2020-02-16 17:32:36 +00:00
|
|
|
|
|
|
|
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(label_time, timeStr);
|
|
|
|
}
|
2020-01-18 17:17:52 +00:00
|
|
|
|
|
|
|
if ((year != currentYear) || (month != currentMonth) || (dayOfWeek != currentDayOfWeek) || (day != currentDay)) {
|
|
|
|
char dateStr[22];
|
|
|
|
sprintf(dateStr, "%s %d %s %d", DayOfWeekToString(dayOfWeek), day, MonthToString(month), year);
|
2020-02-10 20:05:33 +00:00
|
|
|
lv_label_set_text(label_date, dateStr);
|
|
|
|
|
2020-01-18 17:17:52 +00:00
|
|
|
|
|
|
|
currentYear = year;
|
|
|
|
currentMonth = month;
|
|
|
|
currentDayOfWeek = dayOfWeek;
|
|
|
|
currentDay = day;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-23 12:44:39 +00:00
|
|
|
return running;
|
2020-01-18 17:17:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *Clock::MonthToString(Pinetime::Controllers::DateTime::Months month) {
|
|
|
|
return Clock::MonthsString[static_cast<uint8_t>(month)];
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *Clock::DayOfWeekToString(Pinetime::Controllers::DateTime::Days dayOfWeek) {
|
|
|
|
return Clock::DaysString[static_cast<uint8_t>(dayOfWeek)];
|
|
|
|
}
|
|
|
|
|
|
|
|
char const *Clock::DaysString[] = {
|
|
|
|
"",
|
|
|
|
"MONDAY",
|
|
|
|
"TUESDAY",
|
|
|
|
"WEDNESDAY",
|
|
|
|
"THURSDAY",
|
|
|
|
"FRIDAY",
|
|
|
|
"SATURDAY",
|
|
|
|
"SUNDAY"
|
|
|
|
};
|
|
|
|
|
|
|
|
char const *Clock::MonthsString[] = {
|
|
|
|
"",
|
|
|
|
"JAN",
|
|
|
|
"FEB",
|
|
|
|
"MAR",
|
|
|
|
"APR",
|
|
|
|
"MAY",
|
|
|
|
"JUN",
|
|
|
|
"JUL",
|
|
|
|
"AUG",
|
|
|
|
"SEP",
|
|
|
|
"OCT",
|
|
|
|
"NOV",
|
|
|
|
"DEC"
|
|
|
|
};
|
2020-02-10 20:05:33 +00:00
|
|
|
|
2020-02-16 17:32:36 +00:00
|
|
|
void Clock::OnObjectEvent(lv_obj_t *obj, lv_event_t event) {
|
|
|
|
if(obj == backgroundLabel) {
|
|
|
|
if (event == LV_EVENT_CLICKED) {
|
2020-02-23 12:44:39 +00:00
|
|
|
|
|
|
|
running = false;
|
2020-02-16 17:32:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-23 12:44:39 +00:00
|
|
|
bool Clock::OnButtonPushed() {
|
2020-03-09 20:29:12 +00:00
|
|
|
running = false;
|
|
|
|
return false;
|
2020-02-23 12:44:39 +00:00
|
|
|
}
|
|
|
|
|
2020-02-10 20:05:33 +00:00
|
|
|
|