2020-01-18 12:17:52 -05:00
|
|
|
#pragma once
|
|
|
|
|
2020-11-15 10:49:36 -05:00
|
|
|
#include <lvgl/src/lv_core/lv_obj.h>
|
2020-01-18 12:17:52 -05:00
|
|
|
#include <chrono>
|
2020-11-15 10:49:36 -05:00
|
|
|
#include <cstdint>
|
|
|
|
#include <memory>
|
2020-01-18 12:17:52 -05:00
|
|
|
#include "Screen.h"
|
2020-11-15 10:49:36 -05:00
|
|
|
#include "components/datetime/DateTimeController.h"
|
2020-01-18 12:17:52 -05:00
|
|
|
|
|
|
|
namespace Pinetime {
|
2020-11-15 10:49:36 -05:00
|
|
|
namespace Controllers {
|
|
|
|
class Battery;
|
|
|
|
class Ble;
|
|
|
|
class NotificationManager;
|
|
|
|
}
|
|
|
|
|
2020-01-18 12:17:52 -05:00
|
|
|
namespace Applications {
|
|
|
|
namespace Screens {
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class DirtyValue {
|
|
|
|
public:
|
|
|
|
explicit DirtyValue(T v) { value = v; }
|
|
|
|
explicit DirtyValue(T& v) { value = v; }
|
|
|
|
bool IsUpdated() const { return isUpdated; }
|
2020-02-16 12:32:36 -05:00
|
|
|
T& Get() { this->isUpdated = false; return value; }
|
2020-01-18 12:17:52 -05:00
|
|
|
|
|
|
|
DirtyValue& operator=(const T& other) {
|
2020-02-23 10:14:03 -05:00
|
|
|
if (this->value != other) {
|
|
|
|
this->value = other;
|
|
|
|
this->isUpdated = true;
|
|
|
|
}
|
2020-01-18 12:17:52 -05:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
T value;
|
|
|
|
bool isUpdated = true;
|
|
|
|
};
|
2020-11-15 10:49:36 -05:00
|
|
|
class Clock : public Screen {
|
2020-01-18 12:17:52 -05:00
|
|
|
public:
|
2020-02-23 10:14:03 -05:00
|
|
|
Clock(DisplayApp* app,
|
|
|
|
Controllers::DateTime& dateTimeController,
|
|
|
|
Controllers::Battery& batteryController,
|
2020-10-20 14:57:39 -04:00
|
|
|
Controllers::Ble& bleController,
|
|
|
|
Controllers::NotificationManager& notificatioManager);
|
2020-02-16 12:32:36 -05:00
|
|
|
~Clock() override;
|
2020-02-23 07:44:39 -05:00
|
|
|
|
2020-02-23 10:14:03 -05:00
|
|
|
bool Refresh() override;
|
2020-02-23 07:44:39 -05:00
|
|
|
bool OnButtonPushed() override;
|
2020-01-18 12:17:52 -05:00
|
|
|
|
2020-02-16 12:32:36 -05:00
|
|
|
void OnObjectEvent(lv_obj_t *pObj, lv_event_t i);
|
2020-01-18 12:17:52 -05:00
|
|
|
private:
|
|
|
|
static const char* MonthToString(Pinetime::Controllers::DateTime::Months month);
|
|
|
|
static const char* DayOfWeekToString(Pinetime::Controllers::DateTime::Days dayOfWeek);
|
|
|
|
static char const *DaysString[];
|
|
|
|
static char const *MonthsString[];
|
|
|
|
|
2020-02-16 12:32:36 -05:00
|
|
|
char displayedChar[5];
|
|
|
|
|
2020-01-18 12:17:52 -05:00
|
|
|
uint16_t currentYear = 1970;
|
|
|
|
Pinetime::Controllers::DateTime::Months currentMonth = Pinetime::Controllers::DateTime::Months::Unknown;
|
|
|
|
Pinetime::Controllers::DateTime::Days currentDayOfWeek = Pinetime::Controllers::DateTime::Days::Unknown;
|
|
|
|
uint8_t currentDay = 0;
|
|
|
|
|
2020-08-22 14:43:14 -04:00
|
|
|
DirtyValue<float> batteryPercentRemaining {0};
|
2020-02-23 10:14:03 -05:00
|
|
|
DirtyValue<bool> bleState {false};
|
2020-03-02 14:13:30 -05:00
|
|
|
DirtyValue<std::chrono::time_point<std::chrono::system_clock, std::chrono::nanoseconds>> currentDateTime;
|
2020-07-04 07:58:15 -04:00
|
|
|
DirtyValue<uint32_t> stepCount {0};
|
|
|
|
DirtyValue<uint8_t> heartbeat {0};
|
2020-10-20 14:57:39 -04:00
|
|
|
DirtyValue<bool> notificationState {false};
|
2020-02-10 15:05:33 -05:00
|
|
|
|
|
|
|
lv_obj_t* label_time;
|
|
|
|
lv_obj_t* label_date;
|
2020-02-16 12:32:36 -05:00
|
|
|
lv_obj_t* backgroundLabel;
|
2020-10-20 14:57:39 -04:00
|
|
|
lv_obj_t* batteryIcon;
|
|
|
|
lv_obj_t* bleIcon;
|
2020-07-04 07:58:15 -04:00
|
|
|
lv_obj_t* batteryPlug;
|
|
|
|
lv_obj_t* heartbeatIcon;
|
|
|
|
lv_obj_t* heartbeatValue;
|
|
|
|
lv_obj_t* heartbeatBpm;
|
|
|
|
lv_obj_t* stepIcon;
|
|
|
|
lv_obj_t* stepValue;
|
2020-10-20 14:57:39 -04:00
|
|
|
lv_obj_t* notificationIcon;
|
2020-03-14 11:33:47 -04:00
|
|
|
|
2020-02-16 12:32:36 -05:00
|
|
|
Controllers::DateTime& dateTimeController;
|
2020-02-23 10:14:03 -05:00
|
|
|
Controllers::Battery& batteryController;
|
|
|
|
Controllers::Ble& bleController;
|
2020-10-20 14:57:39 -04:00
|
|
|
Controllers::NotificationManager& notificatioManager;
|
2020-02-10 15:05:33 -05:00
|
|
|
|
2020-02-23 07:44:39 -05:00
|
|
|
bool running = true;
|
|
|
|
|
2020-01-18 12:17:52 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|