add some code

This commit is contained in:
2025-09-05 13:25:11 +08:00
parent 9ff0a99e7a
commit 3cf1229a85
8911 changed files with 2535396 additions and 0 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,55 @@
/**
* @file otto_emoji_gif_utils.c
* @brief Otto机器人GIF表情资源组件辅助函数实现
*/
#include <string.h>
#include "otto_emoji_gif.h"
// 表情映射表
typedef struct {
const char* name;
const lv_image_dsc_t* gif;
} emotion_map_t;
// 外部声明的GIF资源
extern const lv_image_dsc_t staticstate;
extern const lv_image_dsc_t sad;
extern const lv_image_dsc_t happy;
extern const lv_image_dsc_t scare;
extern const lv_image_dsc_t buxue;
extern const lv_image_dsc_t anger;
// 表情映射表
static const emotion_map_t emotion_maps[] = {
{"staticstate", &staticstate},
{"sad", &sad},
{"happy", &happy},
{"scare", &scare},
{"buxue", &buxue},
{"anger", &anger},
{NULL, NULL} // 结束标记
};
const char* otto_emoji_gif_get_version(void) {
return "1.0.2";
}
int otto_emoji_gif_get_count(void) {
return 6;
}
const lv_image_dsc_t* otto_emoji_gif_get_by_name(const char* name) {
if (name == NULL) {
return NULL;
}
for (int i = 0; emotion_maps[i].name != NULL; i++) {
if (strcmp(emotion_maps[i].name, name) == 0) {
return emotion_maps[i].gif;
}
}
return NULL; // 未找到
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff