|
@@ -0,0 +1,793 @@
|
|
|
+#include "aem_in_out_power.h"
|
|
|
+#include "aem_activity_data_if.h"
|
|
|
+#include "aem_icon_double_label_item.h"
|
|
|
+#include "aem_bg.h"
|
|
|
+#include "aem_page.h"
|
|
|
+#include "aem_app_activity.h"
|
|
|
+#include "app_ui.h"
|
|
|
+#include "aem_workout_res.h"
|
|
|
+#include "aem_log.h"
|
|
|
+#include <lvgl/lvgl_res_loader.h>
|
|
|
+#include <lvgl/lvgl_bitmap_font.h>
|
|
|
+#include "simple_img.h"
|
|
|
+#include "text_canvas.h"
|
|
|
+#include "aem_sys_function_interface.h"
|
|
|
+#include "aem_title.h"
|
|
|
+#include "aem_app_fwk.h"
|
|
|
+#include "aem_data_share.h"
|
|
|
+#include "aem_in_out_power_screen.h"
|
|
|
+//#include "aem_activity_his_data.h"
|
|
|
+#define LV_COLOR_ACTIVTY_DURATION LV_COLOR_MAKE(0x51, 0x87, 0xf7)
|
|
|
+#define LV_COLOR_ACTIVTY_CAL LV_COLOR_MAKE(0xec, 0x48, 0x5a)
|
|
|
+#define LV_COLOR_ACTIVTY_STEPS LV_COLOR_MAKE(0x5e, 0xee, 0x3f)
|
|
|
+
|
|
|
+#define BAR_NUM 24
|
|
|
+
|
|
|
+typedef struct
|
|
|
+{
|
|
|
+ lv_obj_t *arc_screen;
|
|
|
+
|
|
|
+ lv_obj_t *calorie_chart;
|
|
|
+ lv_obj_t *steps_chart;
|
|
|
+ lv_obj_t *duration_chart;
|
|
|
+
|
|
|
+ lv_obj_t *calorie_chart_goal;
|
|
|
+ lv_obj_t *steps_chart_goal;
|
|
|
+ lv_obj_t *duration_chart_goal;
|
|
|
+
|
|
|
+ lv_obj_t *calorie_chart_value;
|
|
|
+ lv_obj_t *steps_chart_value;
|
|
|
+ lv_obj_t *duration_chart_value;
|
|
|
+
|
|
|
+ lv_chart_series_t *calorie_series;
|
|
|
+ lv_chart_series_t *steps_series;
|
|
|
+ lv_chart_series_t *duration_series;
|
|
|
+
|
|
|
+ bool s_is_frist;
|
|
|
+ bool page_complete;
|
|
|
+ uint16_t step_val;
|
|
|
+ uint16_t calories_val;
|
|
|
+ uint16_t runtime_val;
|
|
|
+ uint16_t stand_val;
|
|
|
+ lv_obj_t *s_app_bg;
|
|
|
+
|
|
|
+ lv_timer_t *timer;
|
|
|
+
|
|
|
+} activity_ui_data_t;
|
|
|
+
|
|
|
+static activity_ui_data_t *activity_ui_data = NULL;
|
|
|
+
|
|
|
+static void get_activity_chart_series(lv_chart_series_t *series, activity_type_e type);
|
|
|
+
|
|
|
+static void draw_event_cb(lv_event_t *e)
|
|
|
+{
|
|
|
+ lv_event_code_t code = lv_event_get_code(e);
|
|
|
+ if (code == LV_EVENT_DRAW_PART_BEGIN)
|
|
|
+ {
|
|
|
+ lv_obj_draw_part_dsc_t *dsc = lv_event_get_param(e);
|
|
|
+
|
|
|
+ if (dsc->part == LV_PART_ITEMS)
|
|
|
+ {
|
|
|
+ dsc->rect_dsc->bg_opa = LV_OPA_TRANSP; /*We will draw it later*/
|
|
|
+ }
|
|
|
+
|
|
|
+ if (dsc->part == LV_PART_MAIN)
|
|
|
+ {
|
|
|
+ if (dsc->line_dsc == NULL)
|
|
|
+ return;
|
|
|
+
|
|
|
+ if (dsc->id == 1)
|
|
|
+ {
|
|
|
+
|
|
|
+ dsc->line_dsc->width = 2;
|
|
|
+ dsc->line_dsc->dash_gap = 6;
|
|
|
+ dsc->line_dsc->dash_width = 4;
|
|
|
+ dsc->line_dsc->color = lv_color_white();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ dsc->line_dsc->width = 0;
|
|
|
+ dsc->line_dsc->dash_gap = 0;
|
|
|
+ dsc->line_dsc->dash_width = 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (code == LV_EVENT_DRAW_PART_END)
|
|
|
+ {
|
|
|
+ lv_obj_draw_part_dsc_t *dsc = lv_event_get_param(e);
|
|
|
+ if (dsc->part == LV_PART_ITEMS)
|
|
|
+ {
|
|
|
+ lv_draw_rect_dsc_t draw_rect_dsc;
|
|
|
+ lv_draw_rect_dsc_init(&draw_rect_dsc);
|
|
|
+ lv_coord_t h = lv_area_get_height(dsc->draw_area);
|
|
|
+ lv_area_t a;
|
|
|
+ a.x1 = dsc->draw_area->x1;
|
|
|
+ a.x2 = dsc->draw_area->x2;
|
|
|
+ a.y1 = dsc->draw_area->y1;
|
|
|
+ a.y2 = dsc->draw_area->y2;
|
|
|
+ draw_rect_dsc.radius = 5;
|
|
|
+ draw_rect_dsc.bg_color = lv_color_hex((uint32_t)e->user_data);
|
|
|
+ lv_draw_rect(dsc->draw_ctx, &draw_rect_dsc, &a);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static lv_obj_t *aem_create_day_data_chart(lv_obj_t *parent, activity_type_e type, lv_color_t value_color, lv_color_t bg_color)
|
|
|
+{
|
|
|
+ uint32_t day_value[DAY_NUM] = {0};
|
|
|
+ get_day_training_value_by_type(type, day_value, DAY_NUM);
|
|
|
+
|
|
|
+ lv_obj_t *chart = lv_chart_create(parent);
|
|
|
+ if (!chart)
|
|
|
+ return NULL;
|
|
|
+
|
|
|
+ lv_obj_set_size(chart, AEM_SIZE_HOR_FACTOR_466(390), AEM_SIZE_VER_FACTOR_466(150));
|
|
|
+ lv_obj_align(chart, LV_ALIGN_TOP_MID, 0, 0);
|
|
|
+ lv_chart_set_type(chart, LV_CHART_TYPE_BAR);
|
|
|
+ lv_chart_set_range(chart, LV_CHART_AXIS_PRIMARY_Y, 0, 100);
|
|
|
+ lv_chart_set_update_mode(chart, LV_CHART_UPDATE_MODE_CIRCULAR);
|
|
|
+ lv_chart_set_div_line_count(chart, 0, 0);
|
|
|
+ lv_chart_set_point_count(chart, BAR_NUM);
|
|
|
+ lv_obj_set_style_bg_opa(chart, LV_OPA_TRANSP, LV_PART_MAIN);
|
|
|
+ lv_obj_set_style_outline_width(chart, 0, LV_PART_MAIN);
|
|
|
+ lv_obj_set_style_border_side(chart, LV_BORDER_SIDE_FULL, LV_PART_MAIN);
|
|
|
+ lv_obj_set_style_border_width(chart, 0, 0);
|
|
|
+ lv_obj_set_style_pad_column(chart, 6, 0);
|
|
|
+ lv_obj_clear_flag(chart, LV_OBJ_FLAG_SCROLLABLE | LV_OBJ_FLAG_SCROLL_MOMENTUM);
|
|
|
+ lv_obj_add_event_cb(chart, draw_event_cb, LV_EVENT_ALL, (void *)lv_color_to32(bg_color));
|
|
|
+ lv_chart_series_t *ser2 = lv_chart_add_series(chart, bg_color, LV_CHART_AXIS_PRIMARY_Y);
|
|
|
+ if (ser2)
|
|
|
+ {
|
|
|
+ for (uint8_t i = 0; i < BAR_NUM; i++)
|
|
|
+ {
|
|
|
+ lv_chart_set_next_value(chart, ser2, 100);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *chart1 = lv_chart_create(parent);
|
|
|
+ if (chart1)
|
|
|
+ {
|
|
|
+ lv_obj_set_size(chart1, AEM_SIZE_HOR_FACTOR_466(390), AEM_SIZE_VER_FACTOR_466(150));
|
|
|
+ lv_obj_align(chart1, LV_ALIGN_TOP_MID, 0, 0);
|
|
|
+ lv_chart_set_type(chart1, LV_CHART_TYPE_BAR);
|
|
|
+ lv_chart_set_range(chart1, LV_CHART_AXIS_PRIMARY_Y, 0, 100);
|
|
|
+ lv_chart_set_update_mode(chart1, LV_CHART_UPDATE_MODE_CIRCULAR);
|
|
|
+ lv_chart_set_div_line_count(chart1, 0, 0);
|
|
|
+ lv_chart_set_point_count(chart1, BAR_NUM);
|
|
|
+ lv_obj_set_style_bg_opa(chart1, LV_OPA_TRANSP, LV_PART_MAIN);
|
|
|
+ lv_obj_set_style_border_side(chart1, LV_BORDER_SIDE_FULL, 0);
|
|
|
+ lv_obj_set_style_border_width(chart1, 0, 0);
|
|
|
+ lv_obj_set_style_pad_column(chart1, 6, 0);
|
|
|
+ lv_obj_add_event_cb(chart1, draw_event_cb, LV_EVENT_ALL, (void *)lv_color_to32(value_color));
|
|
|
+ lv_chart_series_t *ser1 = lv_chart_add_series(chart1, value_color, LV_CHART_AXIS_PRIMARY_Y);
|
|
|
+ for (uint8_t i = 0; i < BAR_NUM; i++)
|
|
|
+ {
|
|
|
+ uint8_t value = day_value[i];
|
|
|
+ if (value > 0)
|
|
|
+ {
|
|
|
+ lv_chart_set_value_by_id(chart1, ser1, i, value);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ lv_chart_refresh(chart1);
|
|
|
+ get_activity_chart_series(ser1, type);
|
|
|
+ }
|
|
|
+
|
|
|
+ return chart;
|
|
|
+}
|
|
|
+#if 0
|
|
|
+static lv_img_dsc_t *get_activity_unit_img(activity_type_e type)
|
|
|
+{
|
|
|
+ lv_img_dsc_t *src = &IMG_SCENE_ACTIVITY_PIC_ACT_UNIT_STEP;
|
|
|
+ switch (type)
|
|
|
+ {
|
|
|
+ case ACTIVITY_STEPS:
|
|
|
+ src = &IMG_SCENE_ACTIVITY_PIC_ACT_UNIT_STEP;
|
|
|
+ break;
|
|
|
+ case ACTIVITY_CALORIES:
|
|
|
+ src = &IMG_SCENE_ACTIVITY_PIC_ACT_UNIT_CALORIE;
|
|
|
+ break;
|
|
|
+ case ACTIVITY_RUNTIME:
|
|
|
+ src = &IMG_SCENE_ACTIVITY_PIC_ACT_UNIT_DURATION;
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ return src;
|
|
|
+}
|
|
|
+
|
|
|
+static char *get_activity_unit_string(activity_type_e type)
|
|
|
+{
|
|
|
+ char *str = "";
|
|
|
+ switch (type)
|
|
|
+ {
|
|
|
+ case ACTIVITY_STEPS:
|
|
|
+ str = res_manager_get_string_from_id(ID_KEY_ACTIVITY_STEP_UNIT);
|
|
|
+ break;
|
|
|
+ case ACTIVITY_CALORIES:
|
|
|
+ str = res_manager_get_string_from_id(ID_KEY_ACTIVITY_CALORIE_UNIT);
|
|
|
+ break;
|
|
|
+ case ACTIVITY_RUNTIME:
|
|
|
+ str = res_manager_get_string_from_id(ID_KEY_ACTIVITY_DURATION_UNIT);
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ return str;
|
|
|
+}
|
|
|
+#endif
|
|
|
+static void activity_steps_screen_update()
|
|
|
+{
|
|
|
+ activity_day_data_t day_data = get_today_training_day_data();
|
|
|
+ if (day_data.steps != activity_ui_data->step_val)
|
|
|
+ {
|
|
|
+ // update label
|
|
|
+ activity_ui_data->step_val = day_data.steps;
|
|
|
+ if (activity_ui_data->steps_chart_value != NULL)
|
|
|
+ {
|
|
|
+ text_canvas_set_text_fmt(activity_ui_data->steps_chart_value, "%04d", day_data.steps);
|
|
|
+ }
|
|
|
+
|
|
|
+ // update chart
|
|
|
+ uint32_t step_value[DAY_NUM] = {0};
|
|
|
+ get_day_training_value_by_type(ACTIVITY_STEPS, step_value, DAY_NUM);
|
|
|
+ for (uint8_t i = 0; i < DAY_NUM; i++)
|
|
|
+ {
|
|
|
+ uint8_t value = step_value[i];
|
|
|
+
|
|
|
+ if (value > 0 && activity_ui_data->steps_chart != NULL && activity_ui_data->steps_series != NULL)
|
|
|
+ {
|
|
|
+ lv_chart_set_value_by_id(activity_ui_data->steps_chart, activity_ui_data->steps_series, i, value);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void activity_calories_screen_update()
|
|
|
+{
|
|
|
+ activity_day_data_t day_data = get_today_training_day_data();
|
|
|
+ if (day_data.calories != activity_ui_data->calories_val)
|
|
|
+ {
|
|
|
+ // update label
|
|
|
+ activity_ui_data->calories_val = day_data.calories;
|
|
|
+ if (activity_ui_data->calorie_chart_value != NULL)
|
|
|
+ {
|
|
|
+ text_canvas_set_text_fmt(activity_ui_data->calorie_chart_value, "%04d", day_data.calories);
|
|
|
+ }
|
|
|
+
|
|
|
+ // update chart
|
|
|
+ uint32_t calories_value[DAY_NUM] = {0};
|
|
|
+ get_day_training_value_by_type(ACTIVITY_CALORIES, calories_value, DAY_NUM);
|
|
|
+ for (uint8_t i = 0; i < DAY_NUM; i++)
|
|
|
+ {
|
|
|
+ uint8_t value = calories_value[i];
|
|
|
+ if (value > 0 && activity_ui_data->calorie_chart != NULL && activity_ui_data->calorie_series != NULL)
|
|
|
+ {
|
|
|
+ lv_chart_set_value_by_id(activity_ui_data->calorie_chart, activity_ui_data->calorie_series, i, value);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+static void activity_duration_screen_update(void)
|
|
|
+{
|
|
|
+ AEM_LOG_I("activity_duration_screen_update ...\r\n");
|
|
|
+ activity_day_data_t day_data = get_today_training_day_data();
|
|
|
+ if (day_data.durmin != activity_ui_data->runtime_val)
|
|
|
+ {
|
|
|
+ // update label
|
|
|
+ AEM_LOG_I("activity_duration_screen_update update label \r\n");
|
|
|
+ activity_ui_data->runtime_val = day_data.durmin;
|
|
|
+ if (activity_ui_data->duration_chart_value != NULL)
|
|
|
+ {
|
|
|
+ text_canvas_set_text_fmt(activity_ui_data->duration_chart_value, "%04d", day_data.durmin);
|
|
|
+ }
|
|
|
+
|
|
|
+ // update chart
|
|
|
+ AEM_LOG_I("activity_duration_screen_update update chart \r\n");
|
|
|
+ uint32_t runtime_value[DAY_NUM] = {0};
|
|
|
+ get_day_training_value_by_type(ACTIVITY_RUNTIME, runtime_value, DAY_NUM);
|
|
|
+ for (uint8_t i = 0; i < DAY_NUM; i++)
|
|
|
+ {
|
|
|
+ uint8_t value = runtime_value[i];
|
|
|
+ if (value > 0 && activity_ui_data->duration_chart != NULL && activity_ui_data->duration_series != NULL)
|
|
|
+ {
|
|
|
+ lv_chart_set_value_by_id(activity_ui_data->duration_chart, activity_ui_data->duration_series, i, value);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void refresh_in_out_power_ui(void)
|
|
|
+{
|
|
|
+ if (activity_ui_data != NULL && activity_ui_data->page_complete)
|
|
|
+ {
|
|
|
+ aem_in_out_power_screen_update(activity_ui_data->arc_screen);
|
|
|
+
|
|
|
+ activity_steps_screen_update();
|
|
|
+ activity_calories_screen_update();
|
|
|
+ activity_duration_screen_update();
|
|
|
+ }
|
|
|
+}
|
|
|
+#if 0
|
|
|
+static char *get_activity_goal_str_fmt(activity_type_e type)
|
|
|
+{
|
|
|
+ char *str = "%d";
|
|
|
+ switch (type)
|
|
|
+ {
|
|
|
+ case ACTIVITY_STEPS:
|
|
|
+ str = res_manager_get_string_from_id(ID_KEY_ACTIVITY_STEP_GOAL);
|
|
|
+ break;
|
|
|
+ case ACTIVITY_CALORIES:
|
|
|
+ str = res_manager_get_string_from_id(ID_KEY_ACTIVITY_CALORIE_GOAL);
|
|
|
+ break;
|
|
|
+ case ACTIVITY_RUNTIME:
|
|
|
+ str = res_manager_get_string_from_id(ID_KEY_ACTIVITY_DURATION_GOAL);
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ return str;
|
|
|
+}
|
|
|
+
|
|
|
+static void refresh_activity_goal(void)
|
|
|
+{
|
|
|
+ if (activity_ui_data != NULL && activity_ui_data->page_complete)
|
|
|
+ {
|
|
|
+ text_canvas_set_text_fmt(activity_ui_data->steps_chart_goal,
|
|
|
+ get_activity_goal_str_fmt(ACTIVITY_STEPS), get_goal_value_by_type(ACTIVITY_STEPS));
|
|
|
+
|
|
|
+ text_canvas_set_text_fmt(activity_ui_data->calorie_chart_goal,
|
|
|
+ get_activity_goal_str_fmt(ACTIVITY_CALORIES), get_goal_value_by_type(ACTIVITY_CALORIES));
|
|
|
+
|
|
|
+ text_canvas_set_text_fmt(activity_ui_data->duration_chart_goal,
|
|
|
+ get_activity_goal_str_fmt(ACTIVITY_RUNTIME), get_goal_value_by_type(ACTIVITY_RUNTIME));
|
|
|
+ }
|
|
|
+}
|
|
|
+#endif
|
|
|
+static lv_obj_t *title_create(lv_obj_t *parent, const char *type_name, lv_color_t color)
|
|
|
+{
|
|
|
+ lv_obj_t *title_label = text_canvas_create(parent);
|
|
|
+ if (title_label)
|
|
|
+ {
|
|
|
+ text_canvas_set_text(title_label, type_name);
|
|
|
+ text_canvas_set_long_mode(title_label, TEXT_CANVAS_LONG_WRAP);
|
|
|
+ lv_obj_set_width(title_label, AEM_SIZE_HOR_FACTOR_466(282));
|
|
|
+ lv_obj_set_style_text_align(title_label, LV_TEXT_ALIGN_CENTER, 0);
|
|
|
+ lv_obj_set_style_text_color(title_label, color, LV_PART_MAIN);
|
|
|
+ lv_obj_set_style_text_font(title_label, aem_font_def(), 0);
|
|
|
+ lv_obj_align(title_label, LV_ALIGN_TOP_MID, 0, AEM_SIZE_VER_FACTOR_466(30));
|
|
|
+ }
|
|
|
+
|
|
|
+ return title_label;
|
|
|
+}
|
|
|
+
|
|
|
+static lv_obj_t *aem_activity_goal_label_create(lv_obj_t *bg, activity_type_e type)
|
|
|
+{
|
|
|
+ lv_obj_t *label_goal = text_canvas_create(bg);
|
|
|
+ if (label_goal)
|
|
|
+ {
|
|
|
+ lv_obj_set_width(label_goal, LV_PCT(100));
|
|
|
+ text_canvas_set_long_mode(label_goal, LV_LABEL_LONG_WRAP);
|
|
|
+ lv_obj_clear_flag(label_goal, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_obj_set_style_text_align(label_goal, LV_TEXT_ALIGN_CENTER, 0);
|
|
|
+ lv_obj_set_style_text_color(label_goal, lv_palette_main(LV_PALETTE_GREY), LV_PART_MAIN);
|
|
|
+ lv_obj_set_style_text_font(label_goal, aem_font_sub(), LV_PART_MAIN);
|
|
|
+ //text_canvas_set_text_fmt(label_goal, get_activity_goal_str_fmt(type), get_goal_value_by_type(type));
|
|
|
+ }
|
|
|
+
|
|
|
+ return label_goal;
|
|
|
+}
|
|
|
+
|
|
|
+static lv_obj_t *aem_activity_value_label_create(lv_obj_t *bg, uint16_t value)
|
|
|
+{
|
|
|
+ lv_obj_t *value_label = text_canvas_create(bg);
|
|
|
+ if (value_label)
|
|
|
+ {
|
|
|
+ lv_obj_set_width(value_label, AEM_SIZE_HOR_FACTOR_466(250));
|
|
|
+ text_canvas_set_long_mode(value_label, LV_LABEL_LONG_WRAP);
|
|
|
+ lv_obj_clear_flag(value_label, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ lv_obj_set_style_text_align(value_label, LV_TEXT_ALIGN_CENTER, 0);
|
|
|
+
|
|
|
+ lv_obj_set_style_text_color(value_label, lv_color_hex(0xffffff), LV_PART_MAIN);
|
|
|
+ lv_obj_set_style_text_font(value_label, aem_font_xxlarge(), LV_PART_MAIN);
|
|
|
+ text_canvas_set_text_fmt(value_label, "%04d", value);
|
|
|
+ }
|
|
|
+
|
|
|
+ return value_label;
|
|
|
+}
|
|
|
+
|
|
|
+static lv_obj_t *aem_activity_unit_label_create(lv_obj_t *bg, char *unit)
|
|
|
+{
|
|
|
+ if (bg == NULL || unit == NULL)
|
|
|
+ {
|
|
|
+ return NULL;
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *value_label = text_canvas_create(bg);
|
|
|
+ if (value_label)
|
|
|
+ {
|
|
|
+ lv_obj_set_style_text_color(value_label, lv_color_hex(0x808080), LV_PART_MAIN);
|
|
|
+ lv_obj_set_style_text_font(value_label, aem_font_sub(), LV_PART_MAIN);
|
|
|
+ text_canvas_set_text(value_label, unit);
|
|
|
+ }
|
|
|
+
|
|
|
+ return value_label;
|
|
|
+}
|
|
|
+
|
|
|
+static lv_obj_t *create_hour_system_label(lv_obj_t *par, char *src)
|
|
|
+{
|
|
|
+ if (par == NULL)
|
|
|
+ {
|
|
|
+ return NULL;
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *title_label = text_canvas_create(par);
|
|
|
+ if (title_label)
|
|
|
+ {
|
|
|
+ lv_obj_set_width(title_label, 90);
|
|
|
+ lv_obj_set_style_text_color(title_label, lv_color_hex(0x606060), 0);
|
|
|
+ lv_obj_set_style_text_font(title_label, aem_font_small(), LV_PART_MAIN);
|
|
|
+ text_canvas_set_text(title_label, src);
|
|
|
+ }
|
|
|
+
|
|
|
+ return title_label;
|
|
|
+}
|
|
|
+
|
|
|
+static void create_hours_label(lv_obj_t *par)
|
|
|
+{
|
|
|
+ if (par == NULL)
|
|
|
+ {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *hour_bg = aem_bg_create(par, 376, LV_SIZE_CONTENT, lv_color_hex(0x000000));
|
|
|
+ if (hour_bg == NULL)
|
|
|
+ {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_align(hour_bg, LV_ALIGN_BOTTOM_LEFT, 30, -100);
|
|
|
+ lv_obj_set_style_bg_opa(hour_bg, LV_OPA_COVER, 0);
|
|
|
+
|
|
|
+ aem_language_type_e cur_language = aem_share_get_language();
|
|
|
+ lv_obj_t *label0 = NULL;
|
|
|
+ lv_obj_t *label6 = NULL;
|
|
|
+ lv_obj_t *label12 = NULL;
|
|
|
+ lv_obj_t *label18 = NULL;
|
|
|
+
|
|
|
+ aem_time_t *time = aem_get_system_time();
|
|
|
+ if (false) // TODO, am pm
|
|
|
+ {
|
|
|
+ if (cur_language == AEM_LANGUAGE_CS_CZ)
|
|
|
+ {
|
|
|
+ label0 = create_hour_system_label(hour_bg, "12:00DOP.");
|
|
|
+ label6 = create_hour_system_label(hour_bg, "06:00");
|
|
|
+ label12 = create_hour_system_label(hour_bg, "12:00ODP.");
|
|
|
+ label18 = create_hour_system_label(hour_bg, "06:00");
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ label0 = create_hour_system_label(hour_bg, "12:00AM");
|
|
|
+ label6 = create_hour_system_label(hour_bg, "6:00");
|
|
|
+ label12 = create_hour_system_label(hour_bg, "12:00PM");
|
|
|
+ label18 = create_hour_system_label(hour_bg, "6:00");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ label0 = create_hour_system_label(hour_bg, "00:00");
|
|
|
+ label6 = create_hour_system_label(hour_bg, "06:00");
|
|
|
+ label12 = create_hour_system_label(hour_bg, "12:00");
|
|
|
+ label18 = create_hour_system_label(hour_bg, "18:00");
|
|
|
+ }
|
|
|
+
|
|
|
+ if (label0 && label6 && label12 && label18)
|
|
|
+ {
|
|
|
+ lv_obj_align(label0, LV_ALIGN_LEFT_MID, 6, 0);
|
|
|
+ lv_obj_align(label6, LV_ALIGN_LEFT_MID, 100, 0);
|
|
|
+ lv_obj_align(label12, LV_ALIGN_LEFT_MID, 200, 0);
|
|
|
+ lv_obj_align(label18, LV_ALIGN_LEFT_MID, 300, 0);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void get_activity_chart_series(lv_chart_series_t *series, activity_type_e type)
|
|
|
+{
|
|
|
+ switch (type)
|
|
|
+ {
|
|
|
+ case ACTIVITY_STEPS:
|
|
|
+ activity_ui_data->steps_series = series;
|
|
|
+ break;
|
|
|
+ case ACTIVITY_RUNTIME:
|
|
|
+ activity_ui_data->duration_series = series;
|
|
|
+ break;
|
|
|
+ case ACTIVITY_CALORIES:
|
|
|
+ activity_ui_data->calorie_series = series;
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void get_activity_type_goal_label(lv_obj_t *lable, activity_type_e type)
|
|
|
+{
|
|
|
+ switch (type)
|
|
|
+ {
|
|
|
+ case ACTIVITY_STEPS:
|
|
|
+ activity_ui_data->steps_chart_goal = lable;
|
|
|
+ break;
|
|
|
+ case ACTIVITY_RUNTIME:
|
|
|
+ activity_ui_data->duration_chart_goal = lable;
|
|
|
+ break;
|
|
|
+ case ACTIVITY_CALORIES:
|
|
|
+ activity_ui_data->calorie_chart_goal = lable;
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void set_activity_type_value_label(lv_obj_t *lable, activity_type_e type)
|
|
|
+{
|
|
|
+ switch (type)
|
|
|
+ {
|
|
|
+ case ACTIVITY_STEPS:
|
|
|
+ activity_ui_data->steps_chart_value = lable;
|
|
|
+ break;
|
|
|
+ case ACTIVITY_RUNTIME:
|
|
|
+ activity_ui_data->duration_chart_value = lable;
|
|
|
+ break;
|
|
|
+ case ACTIVITY_CALORIES:
|
|
|
+ activity_ui_data->calorie_chart_value = lable;
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void get_activity_type_chart(lv_obj_t *chart, activity_type_e type)
|
|
|
+{
|
|
|
+ switch (type)
|
|
|
+ {
|
|
|
+ case ACTIVITY_STEPS:
|
|
|
+ activity_ui_data->steps_chart = chart;
|
|
|
+ break;
|
|
|
+ case ACTIVITY_RUNTIME:
|
|
|
+ activity_ui_data->duration_chart = chart;
|
|
|
+ break;
|
|
|
+ case ACTIVITY_CALORIES:
|
|
|
+ activity_ui_data->calorie_chart = chart;
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+}
|
|
|
+#if 0
|
|
|
+static void aem_activity_chart_create(lv_obj_t *parent, activity_type_e type, lv_color_t value_color, lv_color_t bg_color)
|
|
|
+{
|
|
|
+ // chart bg
|
|
|
+ lv_obj_t *bg_value = aem_bg_create(parent, LV_SIZE_CONTENT, AEM_SIZE_VER_FACTOR_466(90), lv_color_black());
|
|
|
+ if (bg_value)
|
|
|
+ {
|
|
|
+ lv_obj_align(bg_value, LV_ALIGN_TOP_MID, 0, AEM_SIZE_VER_FACTOR_466(86));
|
|
|
+
|
|
|
+ // rt value
|
|
|
+ lv_obj_t *day_value_lable = aem_activity_value_label_create(bg_value, get_today_value_by_type(type));
|
|
|
+ if (day_value_lable)
|
|
|
+ {
|
|
|
+ lv_obj_align(day_value_lable, LV_ALIGN_LEFT_MID, 0, 0);
|
|
|
+ set_activity_type_value_label(day_value_lable, type);
|
|
|
+
|
|
|
+ // unit
|
|
|
+ //lv_obj_t *unit_lable = aem_activity_unit_label_create(bg_value, get_activity_unit_string(type));
|
|
|
+ //if (unit_lable)
|
|
|
+ //{
|
|
|
+ // lv_obj_align_to(unit_lable, day_value_lable, LV_ALIGN_OUT_RIGHT_BOTTOM, AEM_SIZE_HOR_FACTOR_466(10), AEM_SIZE_VER_FACTOR_466(-14));
|
|
|
+ //}
|
|
|
+
|
|
|
+ // icon
|
|
|
+ //lv_obj_t *icon = lv_img_create(bg_value);
|
|
|
+ //if (icon)
|
|
|
+ //{
|
|
|
+ // lv_img_set_src(icon, get_activity_unit_img(type));
|
|
|
+ // lv_obj_align_to(icon, day_value_lable, LV_ALIGN_OUT_RIGHT_TOP, AEM_SIZE_HOR_FACTOR_466(10), AEM_SIZE_VER_FACTOR_466(10));
|
|
|
+ //}
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // chart bg
|
|
|
+ lv_obj_t *bg_chart = aem_bg_create(parent, AEM_SIZE_HOR_FACTOR_466(400), AEM_SIZE_VER_FACTOR_466(200), lv_color_hex(0x1C1C1C));
|
|
|
+ if (bg_chart)
|
|
|
+ {
|
|
|
+ lv_obj_align(bg_chart, LV_ALIGN_TOP_MID, 0, AEM_SIZE_VER_FACTOR_466(184));
|
|
|
+ lv_obj_set_style_radius(bg_chart, 20, LV_PART_MAIN);
|
|
|
+ lv_obj_set_style_opa(bg_chart, LV_OPA_TRANSP, LV_PART_MAIN);
|
|
|
+
|
|
|
+ // chart
|
|
|
+ lv_obj_t *chart = aem_create_day_data_chart(bg_chart, type, value_color, bg_color);
|
|
|
+ if (chart)
|
|
|
+ {
|
|
|
+ get_activity_type_chart(chart, type);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // hours label
|
|
|
+ create_hours_label(parent);
|
|
|
+
|
|
|
+ // goal label
|
|
|
+ lv_obj_t *goal_lable = aem_activity_goal_label_create(parent, type);
|
|
|
+ if (goal_lable)
|
|
|
+ {
|
|
|
+ lv_obj_align(goal_lable, LV_ALIGN_BOTTOM_MID, 0, AEM_SIZE_VER_FACTOR_466(-30));
|
|
|
+ get_activity_type_goal_label(goal_lable, type);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void delay_create_other_screen(void)
|
|
|
+{
|
|
|
+ if (activity_ui_data == NULL || activity_ui_data->s_app_bg == NULL)
|
|
|
+ {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *bg = activity_ui_data->s_app_bg;
|
|
|
+ lv_obj_t *screen2 = aem_bg_create(bg, DEF_UI_WIDTH, DEF_UI_HEIGHT, lv_color_black());
|
|
|
+ if (screen2)
|
|
|
+ {
|
|
|
+ title_create(screen2, res_manager_get_string_from_id(ID_KEY_WORKOUT_STEPS), lv_color_white());
|
|
|
+ aem_activity_chart_create(screen2, ACTIVITY_STEPS, (lv_color_t)LV_COLOR_ACTIVTY_STEPS, lv_color_hex(0x1a1a1a));
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *screen3 = aem_bg_create(bg, DEF_UI_WIDTH, DEF_UI_HEIGHT, lv_color_black());
|
|
|
+ if (screen3)
|
|
|
+ {
|
|
|
+ title_create(screen3, res_manager_get_string_from_id(ID_KEY_WORKOUT_CALORIE), lv_color_white());
|
|
|
+ aem_activity_chart_create(screen3, ACTIVITY_CALORIES, (lv_color_t)LV_COLOR_ACTIVTY_CAL, lv_color_hex(0x1a1a1a));
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *screen4 = aem_bg_create(bg, DEF_UI_WIDTH, DEF_UI_HEIGHT, lv_color_black());
|
|
|
+ if (screen4)
|
|
|
+ {
|
|
|
+ title_create(screen4, res_manager_get_string_from_id(ID_KEY_WORKOUT_TIME), lv_color_white());
|
|
|
+ aem_activity_chart_create(screen4, ACTIVITY_RUNTIME, (lv_color_t)LV_COLOR_ACTIVTY_DURATION, lv_color_hex(0x1a1a1a));
|
|
|
+ }
|
|
|
+}
|
|
|
+#endif
|
|
|
+static void delay_timer_cb(struct _lv_timer_t *timer)
|
|
|
+{
|
|
|
+ if (activity_ui_data->timer)
|
|
|
+ {
|
|
|
+ lv_timer_del(activity_ui_data->timer);
|
|
|
+ activity_ui_data->timer = NULL;
|
|
|
+ }
|
|
|
+
|
|
|
+ //delay_create_other_screen();
|
|
|
+ activity_ui_data->page_complete = true;
|
|
|
+ refresh_in_out_power_ui();
|
|
|
+}
|
|
|
+
|
|
|
+static void sim_timer_cb(struct _lv_timer_t *timer)
|
|
|
+{
|
|
|
+ refresh_in_out_power_ui();
|
|
|
+}
|
|
|
+
|
|
|
+lv_obj_t *in_out_power_ui_init(lv_obj_t *par)
|
|
|
+{
|
|
|
+ if (par == NULL)
|
|
|
+ {
|
|
|
+ par = lv_scr_act();
|
|
|
+ }
|
|
|
+
|
|
|
+ // page
|
|
|
+ lv_obj_t *bg = aem_page_create(lv_scr_act());
|
|
|
+ if (bg == NULL)
|
|
|
+ {
|
|
|
+ return NULL;
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_set_user_data(bg, activity_ui_data);
|
|
|
+ activity_ui_data->s_app_bg = bg;
|
|
|
+ aem_page_set_auto_align(bg, true);
|
|
|
+
|
|
|
+ lv_obj_t *screen1 = aem_bg_create(bg, DEF_UI_WIDTH, DEF_UI_HEIGHT, lv_color_black());
|
|
|
+ if (screen1)
|
|
|
+ {
|
|
|
+ activity_ui_data->arc_screen = aem_in_out_power_screen_create(screen1, false);
|
|
|
+ }
|
|
|
+
|
|
|
+ activity_ui_data->timer = lv_timer_create(delay_timer_cb, 300, NULL);
|
|
|
+ if (activity_ui_data->timer)
|
|
|
+ {
|
|
|
+ lv_timer_set_repeat_count(activity_ui_data->timer, 1);
|
|
|
+ }
|
|
|
+
|
|
|
+#ifdef CONFIG_SIMULATOR
|
|
|
+ lv_timer_create(sim_timer_cb, 1000, NULL);
|
|
|
+#endif
|
|
|
+
|
|
|
+ return bg;
|
|
|
+}
|
|
|
+
|
|
|
+static void load_font(void)
|
|
|
+{
|
|
|
+}
|
|
|
+
|
|
|
+static void on_start(void)
|
|
|
+{
|
|
|
+ // app data
|
|
|
+ if (activity_ui_data == NULL)
|
|
|
+ {
|
|
|
+ activity_ui_data = lv_mem_alloc(sizeof(activity_ui_data_t));
|
|
|
+ if (activity_ui_data != NULL)
|
|
|
+ {
|
|
|
+ lv_memset(activity_ui_data, 0, sizeof(activity_ui_data_t));
|
|
|
+ activity_ui_data->s_is_frist = true;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ load_font();
|
|
|
+ ///*测试接口数据activity_his_yesterday_data_get*/
|
|
|
+ //activity_his_data_diatance_t data = {0};
|
|
|
+ //uint8_t ret = activity_his_yesterday_data_get(&data);
|
|
|
+ //AEM_LOG_I("activity_his_yesterday_data_get:%d ,%lu ,%lu\r\n", data.distance, data.his_data.head.day_step_count, data.his_data.head.day_active_time);
|
|
|
+ //AEM_LOG_I("activity_his_yesterday_time:%d ,%d\r\n", data.his_data.head.date.day, data.his_data.head.date.month);
|
|
|
+ //AEM_LOG_I("TT_ACTIVITY_ONSTART:%d\r\n", ret);
|
|
|
+}
|
|
|
+
|
|
|
+static void on_resume(void)
|
|
|
+{
|
|
|
+ if (activity_ui_data && activity_ui_data->s_is_frist)
|
|
|
+ {
|
|
|
+ in_out_power_ui_init(NULL);
|
|
|
+ activity_ui_data->s_is_frist = false;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void on_pause(void)
|
|
|
+{
|
|
|
+}
|
|
|
+
|
|
|
+static void on_stop(void)
|
|
|
+{
|
|
|
+ if (activity_ui_data == NULL)
|
|
|
+ {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ activity_ui_data->page_complete = false;
|
|
|
+ aem_in_out_power_screen_del(activity_ui_data->arc_screen);
|
|
|
+
|
|
|
+ if (activity_ui_data->s_app_bg != NULL)
|
|
|
+ {
|
|
|
+ lv_obj_del(activity_ui_data->s_app_bg);
|
|
|
+ activity_ui_data->s_app_bg = NULL;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (activity_ui_data->timer)
|
|
|
+ {
|
|
|
+ lv_timer_del(activity_ui_data->timer);
|
|
|
+ activity_ui_data->timer = NULL;
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_mem_free(activity_ui_data);
|
|
|
+ activity_ui_data = NULL;
|
|
|
+}
|
|
|
+
|
|
|
+static int32_t homekey_handler(lv_key_t key, lv_indev_state_t event)
|
|
|
+{
|
|
|
+ return 1;
|
|
|
+}
|
|
|
+
|
|
|
+static void on_ui_refresh(aem_msg_t *msg)
|
|
|
+{
|
|
|
+ AEM_LOG_I("activity on_ui_refresh, msg:%d\n", msg->sub_type);
|
|
|
+ if (msg->sub_type == UI_IN_OUT_POWER_REFRESH && activity_ui_data->page_complete)
|
|
|
+ {
|
|
|
+ refresh_in_out_power_ui();
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+void aem_in_out_power_create(void)
|
|
|
+{
|
|
|
+ aem_app_launch(AEM_APP_ID_IN_OUT_POWER, AEM_APP_IN_OUT_POWER, on_start, on_resume, on_pause, on_stop, on_ui_refresh, NULL);
|
|
|
+}
|
|
|
+
|
|
|
+AEM_APP_DEFINE(AEM_APP_ID_IN_OUT_POWER, AEM_DEFAULT_APP, ID_KEY_WIDGET_IN_OUT_POWER, IMG_SCENE_APPLIST_RES_IN_OUT_POWER_PIC_ICON, aem_in_out_power_create);
|