|
@@ -0,0 +1,249 @@
|
|
|
+/**
|
|
|
+ * @FileName : aem_bt_connect_more.c
|
|
|
+ * @Author : wingcool_group
|
|
|
+ * @CreateDate : 2024/12/05 20:34:03
|
|
|
+ * @Description : bt connect to other device
|
|
|
+ **/
|
|
|
+
|
|
|
+#include "aem_settings.h"
|
|
|
+#include "text_canvas.h"
|
|
|
+#include "aem_img_btn.h"
|
|
|
+#include "aem_app_comm.h"
|
|
|
+#include "aem_power.h"
|
|
|
+
|
|
|
+#define ACTIVITY_ID "bt_connect_more"
|
|
|
+#define LOADING_IMG_CNT (24)
|
|
|
+
|
|
|
+typedef struct
|
|
|
+{
|
|
|
+ lv_obj_t *bg;
|
|
|
+ lv_obj_t *ok;
|
|
|
+ lv_obj_t *cancel;
|
|
|
+ lv_obj_t *anim;
|
|
|
+} bt_connect_more_ui_t;
|
|
|
+
|
|
|
+static bt_connect_more_ui_t *s_ui = NULL;
|
|
|
+static aem_system_type_e type = 0;
|
|
|
+static uint16_t tipe_w = 420;
|
|
|
+static uint16_t tipe_h = 200;
|
|
|
+const uint16_t bt_connect_more_pad_top = 46;
|
|
|
+const uint8_t bt_connect_more_btn_x = 100;
|
|
|
+const int8_t bt_connect_more_btn_y = -40;
|
|
|
+
|
|
|
+static const void* loading_img[LOADING_IMG_CNT] =
|
|
|
+{
|
|
|
+ &IMG_SCENE_WIDGET_PIC_0,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_1,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_2,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_3,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_4,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_5,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_6,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_7,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_8,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_9,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_10,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_11,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_12,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_13,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_14,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_15,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_16,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_17,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_18,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_19,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_20,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_21,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_22,
|
|
|
+ &IMG_SCENE_WIDGET_PIC_23,
|
|
|
+};
|
|
|
+
|
|
|
+static void btn_click_cb(lv_obj_t *btn)
|
|
|
+{
|
|
|
+ if (btn == s_ui->cancel)
|
|
|
+ {
|
|
|
+ aem_app_goback();
|
|
|
+ }
|
|
|
+ else if (btn == s_ui->ok)
|
|
|
+ {
|
|
|
+ aem_power_onoff_t on_off = { 0 };
|
|
|
+ switch (type)
|
|
|
+ {
|
|
|
+ case AEM_CONNECT_MORE:
|
|
|
+ {
|
|
|
+ aem_restore_factory_data();
|
|
|
+ if (s_ui->bg == NULL)
|
|
|
+ return;
|
|
|
+
|
|
|
+ lv_obj_clean(s_ui->bg);
|
|
|
+ s_ui->anim = lv_animimg_create(s_ui->bg);
|
|
|
+ if (s_ui->anim == NULL)
|
|
|
+ return;
|
|
|
+
|
|
|
+ lv_obj_center(s_ui->anim);
|
|
|
+ lv_animimg_set_src(s_ui->anim, loading_img, LOADING_IMG_CNT);
|
|
|
+ lv_animimg_set_duration(s_ui->anim, LOADING_IMG_CNT * 50);
|
|
|
+ lv_animimg_start(s_ui->anim);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case AEM_RESET:
|
|
|
+ {
|
|
|
+ on_off.type = AEM_POWER_OFF_RETURN_FACTORY;
|
|
|
+ aem_power_off_main(&on_off);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case AEM_RESTART:
|
|
|
+ {
|
|
|
+ on_off.type = AEM_POWER_OFF_WITH_REBOOT;
|
|
|
+ aem_power_off_main(&on_off);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case AEM_POWER_OFF:
|
|
|
+ {
|
|
|
+ on_off.type = AEM_POWER_OFF_NORMAL;
|
|
|
+ aem_power_off_main(&on_off);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ case AEM_BLUETOOTH:
|
|
|
+ {
|
|
|
+ aem_app_goback();
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ default:
|
|
|
+ return;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void create_ui(void)
|
|
|
+{
|
|
|
+ if (s_ui != NULL)
|
|
|
+ return;
|
|
|
+
|
|
|
+ s_ui = (bt_connect_more_ui_t *)lv_mem_alloc(sizeof(bt_connect_more_ui_t));
|
|
|
+
|
|
|
+ if (s_ui == NULL)
|
|
|
+ {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ lv_memset(s_ui, 0, sizeof(bt_connect_more_ui_t));
|
|
|
+
|
|
|
+ res_string_id_e _str_ids[2] = { 0 };
|
|
|
+
|
|
|
+ _str_ids[0] = ID_KEY_SETTINGS_SYSTEM_CONNECT_TO;
|
|
|
+ _str_ids[1] = ID_KEY_SETTINGS_SYSTEM_DISCONNECT_T;
|
|
|
+
|
|
|
+ s_ui->bg = aem_bg_create(lv_scr_act(), DEF_UI_WIDTH, DEF_UI_HEIGHT, lv_color_black());
|
|
|
+ if (s_ui->bg == NULL)
|
|
|
+ return;
|
|
|
+
|
|
|
+ lv_obj_t *title = aem_title_create(s_ui->bg, false, res_manager_get_string_from_id(_str_ids[0]));
|
|
|
+ if (title)
|
|
|
+ {
|
|
|
+ lv_obj_clear_flag(title, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *tips_bg = aem_bg_create(s_ui->bg, AEM_SIZE_FACTOR_466(tipe_w), AEM_SIZE_FACTOR_466(tipe_h), lv_color_black());
|
|
|
+ if (title && tips_bg)
|
|
|
+ {
|
|
|
+ lv_obj_align_to(tips_bg, title, LV_ALIGN_OUT_BOTTOM_MID, 0, 0);
|
|
|
+ lv_obj_add_flag(tips_bg, LV_OBJ_FLAG_SCROLLABLE);
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_obj_t *tips = text_canvas_create(tips_bg);
|
|
|
+ if (tips)
|
|
|
+ {
|
|
|
+ lv_obj_set_width(tips, AEM_SIZE_FACTOR_466(tipe_w));
|
|
|
+ lv_obj_set_style_text_align(tips, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN);
|
|
|
+ lv_obj_set_style_text_color(tips, lv_color_white(), LV_PART_MAIN);
|
|
|
+ lv_obj_set_style_text_font(tips, aem_font_def(), LV_PART_MAIN);
|
|
|
+ lv_obj_add_flag(tips, LV_OBJ_FLAG_CLICKABLE);
|
|
|
+
|
|
|
+ text_canvas_set_text(tips, res_manager_get_string_from_id(_str_ids[1]));
|
|
|
+ lv_img_dsc_t *src = text_canvas_get_img(tips);
|
|
|
+ if (src && (tipe_h > src->header.h))
|
|
|
+ {
|
|
|
+ lv_obj_set_style_pad_top(tips, AEM_SIZE_FACTOR_466(bt_connect_more_pad_top), LV_PART_MAIN);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ s_ui->cancel = aem_img_btn_create(s_ui->bg, &IMG_SCENE_WIDGET_PIC_CANCEL);
|
|
|
+ if (s_ui->cancel)
|
|
|
+ {
|
|
|
+ aem_img_btn_set_click_cb(s_ui->cancel, (aem_img_btn_click_cb)btn_click_cb);
|
|
|
+ lv_obj_align(s_ui->cancel, LV_ALIGN_BOTTOM_MID, -AEM_SIZE_FACTOR_466(bt_connect_more_btn_x), AEM_SIZE_FACTOR_466(bt_connect_more_btn_y));
|
|
|
+ }
|
|
|
+
|
|
|
+ s_ui->ok = aem_img_btn_create(s_ui->bg, &IMG_SCENE_WIDGET_PIC_BLUE_OK);
|
|
|
+ if (s_ui->ok)
|
|
|
+ {
|
|
|
+ aem_img_btn_set_click_cb(s_ui->ok, (aem_img_btn_click_cb)btn_click_cb);
|
|
|
+ lv_obj_align(s_ui->ok, LV_ALIGN_BOTTOM_MID, AEM_SIZE_FACTOR_466(bt_connect_more_btn_x), AEM_SIZE_FACTOR_466(bt_connect_more_btn_y));
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void on_start(void)
|
|
|
+{
|
|
|
+ create_ui();
|
|
|
+}
|
|
|
+
|
|
|
+static void on_resume(void)
|
|
|
+{
|
|
|
+}
|
|
|
+static void on_pause(void)
|
|
|
+{
|
|
|
+}
|
|
|
+
|
|
|
+static void on_stop()
|
|
|
+{
|
|
|
+ if (s_ui)
|
|
|
+ {
|
|
|
+ if (s_ui->bg)
|
|
|
+ {
|
|
|
+ lv_obj_del(s_ui->bg);
|
|
|
+ s_ui->bg = NULL;
|
|
|
+ }
|
|
|
+
|
|
|
+ lv_mem_free(s_ui);
|
|
|
+ s_ui = NULL;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static void on_ui_refr_evt(aem_msg_t *msg)
|
|
|
+{
|
|
|
+ if (msg == NULL || s_ui == NULL)
|
|
|
+ {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (UI_DATA_RESET_END == msg->sub_type)
|
|
|
+ {
|
|
|
+ aem_activity_run(AEM_BIND_MAIN, NULL);
|
|
|
+ aem_app_close(AEM_APP_ID_LAUNCH);
|
|
|
+ if (s_ui && s_ui->anim)
|
|
|
+ {
|
|
|
+ lv_obj_del(s_ui->anim);
|
|
|
+ s_ui->anim = NULL;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static aem_act_handler_t msg_handler =
|
|
|
+{
|
|
|
+ .name = ACTIVITY_ID,
|
|
|
+ .on_create_func = on_start,
|
|
|
+ .on_resume_func = on_resume,
|
|
|
+ .on_suspend_func = on_pause,
|
|
|
+ .on_destroy_func = on_stop,
|
|
|
+ .on_ui_refresh_func = on_ui_refr_evt,
|
|
|
+ .user_data = NULL,
|
|
|
+};
|
|
|
+
|
|
|
+int aem_bt_connect_more_create(void *user_data)
|
|
|
+{
|
|
|
+ type = (aem_system_type_e)user_data;
|
|
|
+ return aem_activity_create(ACTIVITY_ID, msg_handler);
|
|
|
+}
|
|
|
+
|
|
|
+AEM_ACTIVITY_DEFINE(AEM_SET_BT_CONNECT_MORE, aem_bt_connect_more_create);
|