diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt index 7575b1b0..565bdd55 100644 --- a/main/CMakeLists.txt +++ b/main/CMakeLists.txt @@ -586,10 +586,12 @@ elseif(CONFIG_BOARD_TYPE_OTTO_ROBOT) set(BOARD_TYPE "otto-robot") set(BUILTIN_TEXT_FONT font_puhui_16_4) set(BUILTIN_ICON_FONT font_awesome_16_4) + set(DEFAULT_EMOJI_COLLECTION otto-gif) elseif(CONFIG_BOARD_TYPE_ELECTRON_BOT) set(BOARD_TYPE "electron-bot") set(BUILTIN_TEXT_FONT font_puhui_20_4) set(BUILTIN_ICON_FONT font_awesome_20_4) + set(DEFAULT_EMOJI_COLLECTION otto-gif) elseif(CONFIG_BOARD_TYPE_BREAD_COMPACT_WIFI_CAM) set(BOARD_TYPE "bread-compact-wifi-s3cam") set(BUILTIN_TEXT_FONT font_puhui_basic_16_4) diff --git a/main/boards/electron-bot/electron_emoji_display.cc b/main/boards/electron-bot/electron_emoji_display.cc index 2bb82481..4d86f267 100644 --- a/main/boards/electron-bot/electron_emoji_display.cc +++ b/main/boards/electron-bot/electron_emoji_display.cc @@ -3,12 +3,13 @@ #include #include +#include +#include "assets.h" #include "assets/lang_config.h" #include "display/lvgl_display/emoji_collection.h" #include "display/lvgl_display/lvgl_image.h" #include "display/lvgl_display/lvgl_theme.h" -#include "otto_emoji_gif.h" #define TAG "ElectronEmojiDisplay" ElectronEmojiDisplay::ElectronEmojiDisplay(esp_lcd_panel_io_handle_t panel_io, esp_lcd_panel_handle_t panel, int width, int height, int offset_x, int offset_y, bool mirror_x, bool mirror_y, @@ -19,64 +20,12 @@ ElectronEmojiDisplay::ElectronEmojiDisplay(esp_lcd_panel_io_handle_t panel_io, e } void ElectronEmojiDisplay::InitializeElectronEmojis() { - ESP_LOGI(TAG, "初始化Electron GIF表情"); - - auto otto_emoji_collection = std::make_shared(); - - // 中性/平静类表情 -> staticstate - otto_emoji_collection->AddEmoji("staticstate", new LvglRawImage((void*)staticstate.data, staticstate.data_size)); - otto_emoji_collection->AddEmoji("neutral", new LvglRawImage((void*)staticstate.data, staticstate.data_size)); - otto_emoji_collection->AddEmoji("relaxed", new LvglRawImage((void*)staticstate.data, staticstate.data_size)); - otto_emoji_collection->AddEmoji("sleepy", new LvglRawImage((void*)staticstate.data, staticstate.data_size)); - otto_emoji_collection->AddEmoji("idle", new LvglRawImage((void*)staticstate.data, staticstate.data_size)); - - // 积极/开心类表情 -> happy - otto_emoji_collection->AddEmoji("happy", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("laughing", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("funny", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("loving", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("confident", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("winking", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("cool", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("delicious", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("kissy", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("silly", new LvglRawImage((void*)happy.data, happy.data_size)); - - // 悲伤类表情 -> sad - otto_emoji_collection->AddEmoji("sad", new LvglRawImage((void*)sad.data, sad.data_size)); - otto_emoji_collection->AddEmoji("crying", new LvglRawImage((void*)sad.data, sad.data_size)); - - // 愤怒类表情 -> anger - otto_emoji_collection->AddEmoji("anger", new LvglRawImage((void*)anger.data, anger.data_size)); - otto_emoji_collection->AddEmoji("angry", new LvglRawImage((void*)anger.data, anger.data_size)); - - // 惊讶类表情 -> scare - otto_emoji_collection->AddEmoji("scare", new LvglRawImage((void*)scare.data, scare.data_size)); - otto_emoji_collection->AddEmoji("surprised", new LvglRawImage((void*)scare.data, scare.data_size)); - otto_emoji_collection->AddEmoji("shocked", new LvglRawImage((void*)scare.data, scare.data_size)); - - // 思考/困惑类表情 -> buxue - otto_emoji_collection->AddEmoji("buxue", new LvglRawImage((void*)buxue.data, buxue.data_size)); - otto_emoji_collection->AddEmoji("thinking", new LvglRawImage((void*)buxue.data, buxue.data_size)); - otto_emoji_collection->AddEmoji("confused", new LvglRawImage((void*)buxue.data, buxue.data_size)); - otto_emoji_collection->AddEmoji("embarrassed", new LvglRawImage((void*)buxue.data, buxue.data_size)); - - // 将表情集合添加到主题中 - auto& theme_manager = LvglThemeManager::GetInstance(); - auto light_theme = theme_manager.GetTheme("light"); - auto dark_theme = theme_manager.GetTheme("dark"); - - if (light_theme != nullptr) { - light_theme->set_emoji_collection(otto_emoji_collection); - } - if (dark_theme != nullptr) { - dark_theme->set_emoji_collection(otto_emoji_collection); - } + ESP_LOGI(TAG, "Electron表情初始化将由Assets系统处理"); + // 表情初始化已移至assets系统,通过DEFAULT_EMOJI_COLLECTION=otto-gif配置 + // assets.cc会从assets分区加载GIF表情并设置到theme // 设置默认表情为staticstate SetEmotion("staticstate"); - - ESP_LOGI(TAG, "Electron GIF表情初始化完成"); } void ElectronEmojiDisplay::SetupChatLabel() { diff --git a/main/boards/otto-robot/otto_emoji_display.cc b/main/boards/otto-robot/otto_emoji_display.cc index 31a4280f..ed59dbb6 100644 --- a/main/boards/otto-robot/otto_emoji_display.cc +++ b/main/boards/otto-robot/otto_emoji_display.cc @@ -3,12 +3,13 @@ #include #include +#include +#include "assets.h" #include "assets/lang_config.h" #include "display/lvgl_display/emoji_collection.h" #include "display/lvgl_display/lvgl_image.h" #include "display/lvgl_display/lvgl_theme.h" -#include "otto_emoji_gif.h" #define TAG "OttoEmojiDisplay" OttoEmojiDisplay::OttoEmojiDisplay(esp_lcd_panel_io_handle_t panel_io, esp_lcd_panel_handle_t panel, int width, int height, int offset_x, int offset_y, bool mirror_x, bool mirror_y, bool swap_xy) @@ -24,64 +25,12 @@ void OttoEmojiDisplay::SetupPreviewImage() { } void OttoEmojiDisplay::InitializeOttoEmojis() { - ESP_LOGI(TAG, "初始化Otto GIF表情"); - - auto otto_emoji_collection = std::make_shared(); - - // 中性/平静类表情 -> staticstate - otto_emoji_collection->AddEmoji("staticstate", new LvglRawImage((void*)staticstate.data, staticstate.data_size)); - otto_emoji_collection->AddEmoji("neutral", new LvglRawImage((void*)staticstate.data, staticstate.data_size)); - otto_emoji_collection->AddEmoji("relaxed", new LvglRawImage((void*)staticstate.data, staticstate.data_size)); - otto_emoji_collection->AddEmoji("sleepy", new LvglRawImage((void*)staticstate.data, staticstate.data_size)); - otto_emoji_collection->AddEmoji("idle", new LvglRawImage((void*)staticstate.data, staticstate.data_size)); - - // 积极/开心类表情 -> happy - otto_emoji_collection->AddEmoji("happy", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("laughing", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("funny", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("loving", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("confident", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("winking", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("cool", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("delicious", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("kissy", new LvglRawImage((void*)happy.data, happy.data_size)); - otto_emoji_collection->AddEmoji("silly", new LvglRawImage((void*)happy.data, happy.data_size)); - - // 悲伤类表情 -> sad - otto_emoji_collection->AddEmoji("sad", new LvglRawImage((void*)sad.data, sad.data_size)); - otto_emoji_collection->AddEmoji("crying", new LvglRawImage((void*)sad.data, sad.data_size)); - - // 愤怒类表情 -> anger - otto_emoji_collection->AddEmoji("anger", new LvglRawImage((void*)anger.data, anger.data_size)); - otto_emoji_collection->AddEmoji("angry", new LvglRawImage((void*)anger.data, anger.data_size)); - - // 惊讶类表情 -> scare - otto_emoji_collection->AddEmoji("scare", new LvglRawImage((void*)scare.data, scare.data_size)); - otto_emoji_collection->AddEmoji("surprised", new LvglRawImage((void*)scare.data, scare.data_size)); - otto_emoji_collection->AddEmoji("shocked", new LvglRawImage((void*)scare.data, scare.data_size)); - - // 思考/困惑类表情 -> buxue - otto_emoji_collection->AddEmoji("buxue", new LvglRawImage((void*)buxue.data, buxue.data_size)); - otto_emoji_collection->AddEmoji("thinking", new LvglRawImage((void*)buxue.data, buxue.data_size)); - otto_emoji_collection->AddEmoji("confused", new LvglRawImage((void*)buxue.data, buxue.data_size)); - otto_emoji_collection->AddEmoji("embarrassed", new LvglRawImage((void*)buxue.data, buxue.data_size)); - - // 将表情集合添加到主题中 - auto& theme_manager = LvglThemeManager::GetInstance(); - auto light_theme = theme_manager.GetTheme("light"); - auto dark_theme = theme_manager.GetTheme("dark"); - - if (light_theme != nullptr) { - light_theme->set_emoji_collection(otto_emoji_collection); - } - if (dark_theme != nullptr) { - dark_theme->set_emoji_collection(otto_emoji_collection); - } + ESP_LOGI(TAG, "Otto表情初始化将由Assets系统处理"); + // 表情初始化已移至assets系统,通过DEFAULT_EMOJI_COLLECTION=otto-gif配置 + // assets.cc会从assets分区加载GIF表情并设置到theme // 设置默认表情为staticstate SetEmotion("staticstate"); - - ESP_LOGI(TAG, "Otto GIF表情初始化完成"); } LV_FONT_DECLARE(OTTO_ICON_FONT); @@ -148,7 +97,7 @@ void OttoEmojiDisplay::SetPreviewImage(std::unique_ptr image) { auto img_dsc = preview_image_cached_->image_dsc(); // 设置图片源并显示预览图片 lv_image_set_src(preview_image_, img_dsc); - lv_image_set_rotation(preview_image_, -900); + lv_image_set_rotation(preview_image_, 900); if (img_dsc->header.w > 0 && img_dsc->header.h > 0) { // zoom factor 1.0 lv_image_set_scale(preview_image_, 256 * width_ / img_dsc->header.w); diff --git a/main/idf_component.yml b/main/idf_component.yml index dec8ee1a..970771ca 100644 --- a/main/idf_component.yml +++ b/main/idf_component.yml @@ -59,7 +59,7 @@ dependencies: espressif/adc_mic: ^0.2.1 espressif/esp_mmap_assets: '>=1.2' txp666/otto-emoji-gif-component: - version: ^1.0.3 + version: ^1.0.5 rules: - if: target in [esp32s3] espressif/adc_battery_estimation: ^0.2.0 diff --git a/scripts/build_default_assets.py b/scripts/build_default_assets.py index 37e4e01d..a678a04d 100755 --- a/scripts/build_default_assets.py +++ b/scripts/build_default_assets.py @@ -222,6 +222,19 @@ def process_emoji_collection(emoji_collection_dir, assets_dir): emoji_list = [] + # Check if this is otto-gif collection + is_otto_gif = 'otto-emoji-gif-component' in emoji_collection_dir or emoji_collection_dir.endswith('otto-gif') + + # Otto GIF emoji aliases mapping + otto_gif_aliases = { + "staticstate": ["neutral", "relaxed", "sleepy", "idle"], + "happy": ["laughing", "funny", "loving", "confident", "winking", "cool", "delicious", "kissy", "silly"], + "sad": ["crying"], + "anger": ["angry"], + "scare": ["surprised", "shocked"], + "buxue": ["thinking", "confused", "embarrassed"] + } + # Copy each image from input directory to build/assets directory for root, dirs, files in os.walk(emoji_collection_dir): for file in files: @@ -233,11 +246,19 @@ def process_emoji_collection(emoji_collection_dir, assets_dir): # Get filename without extension filename_without_ext = os.path.splitext(file)[0] - # Add to emoji list + # Add main emoji entry emoji_list.append({ "name": filename_without_ext, "file": file }) + + # Add aliases for otto-gif emojis + if is_otto_gif and filename_without_ext in otto_gif_aliases: + for alias in otto_gif_aliases[filename_without_ext]: + emoji_list.append({ + "name": alias, + "file": file + }) return emoji_list @@ -682,14 +703,33 @@ def get_text_font_path(builtin_text_font, xiaozhi_fonts_path): return None -def get_emoji_collection_path(default_emoji_collection, xiaozhi_fonts_path): +def get_emoji_collection_path(default_emoji_collection, xiaozhi_fonts_path, project_root=None): """ Get the emoji collection path if needed Returns the emoji directory path or None if no emoji collection is needed + + Supports: + - PNG emoji collections from xiaozhi-fonts (e.g., emojis_32) + - Otto GIF emoji collection (otto-gif) """ if not default_emoji_collection: return None + # Special handling for otto-gif collection + if default_emoji_collection == 'otto-gif': + if project_root: + otto_gif_path = os.path.join(project_root, 'managed_components', + 'txp666__otto-emoji-gif-component', 'gifs') + if os.path.exists(otto_gif_path): + return otto_gif_path + else: + print(f"Warning: Otto GIF emoji collection directory not found: {otto_gif_path}") + return None + else: + print("Warning: project_root not provided, cannot locate otto-gif collection") + return None + + # Default behavior for PNG emoji collections emoji_path = os.path.join(xiaozhi_fonts_path, 'png', default_emoji_collection) if os.path.exists(emoji_path): return emoji_path @@ -828,7 +868,10 @@ def main(): text_font_path = get_text_font_path(args.builtin_text_font, args.xiaozhi_fonts_path) # Get emoji collection path if needed - emoji_collection_path = get_emoji_collection_path(args.emoji_collection, args.xiaozhi_fonts_path) + # Calculate project root from script location for otto-gif support + script_dir = os.path.dirname(os.path.abspath(__file__)) + project_root = os.path.dirname(script_dir) + emoji_collection_path = get_emoji_collection_path(args.emoji_collection, args.xiaozhi_fonts_path, project_root) # Get extra files path if provided extra_files_path = args.extra_files