fbi-i18n-zh/source/fbi/mainmenu.c
2021-01-21 23:22:42 +08:00

69 lines
2.7 KiB
C

#include <malloc.h>
#include <stdio.h>
#include <3ds.h>
#include "resources.h"
#include "section.h"
#include "../core/core.h"
static list_item sd = {"(Micro) SD 卡", COLOR_TEXT, files_open_sd};
static list_item ctr_nand = {"3DS 闪存分区 (CTR NAND)", COLOR_TEXT, files_open_ctr_nand};
static list_item twl_nand = {"DSi 闪存分区 (TWL NAND)", COLOR_TEXT, files_open_twl_nand};
static list_item twl_photo = {"DSi 照片区", COLOR_TEXT, files_open_twl_photo};
static list_item twl_sound = {"DSi 录音区", COLOR_TEXT, files_open_twl_sound};
static list_item dump_nand = {"导出 NAND", COLOR_TEXT, dumpnand_open};
static list_item titles = {"应用", COLOR_TEXT, titles_open};
static list_item pending_titles = {"未完成的应用", COLOR_TEXT, pendingtitles_open};
static list_item tickets = {"应用引导表", COLOR_TEXT, tickets_open};
static list_item ext_save_data = {"追加数据", COLOR_TEXT, extsavedata_open};
static list_item system_save_data = {"系统数据", COLOR_TEXT, systemsavedata_open};
static list_item remote_install = {"远程安装", COLOR_TEXT, remoteinstall_open};
static list_item update = {"检查更新", COLOR_TEXT, update_open};
static void mainmenu_draw_top(ui_view* view, void* data, float x1, float y1, float x2, float y2, list_item* selected) {
u32 logoWidth;
u32 logoHeight;
screen_get_texture_size(&logoWidth, &logoHeight, TEXTURE_LOGO);
float logoX = x1 + (x2 - x1 - logoWidth) / 2;
float logoY = y1 + (y2 - y1 - logoHeight) / 2;
screen_draw_texture(TEXTURE_LOGO, logoX, logoY, logoWidth, logoHeight);
}
static void mainmenu_update(ui_view* view, void* data, linked_list* items, list_item* selected, bool selectedTouched) {
if(hidKeysDown() & KEY_START) {
ui_pop();
list_destroy(view);
return;
}
if(selected != NULL && (selectedTouched || hidKeysDown() & KEY_A) && selected->data != NULL) {
((void(*)()) selected->data)();
return;
}
if(linked_list_size(items) == 0) {
linked_list_add(items, &sd);
linked_list_add(items, &ctr_nand);
linked_list_add(items, &twl_nand);
linked_list_add(items, &twl_photo);
linked_list_add(items, &twl_sound);
linked_list_add(items, &dump_nand);
linked_list_add(items, &titles);
linked_list_add(items, &pending_titles);
linked_list_add(items, &tickets);
linked_list_add(items, &ext_save_data);
linked_list_add(items, &system_save_data);
linked_list_add(items, &remote_install);
linked_list_add(items, &update);
}
}
void mainmenu_open() {
resources_load();
list_display("主菜单", "A: 选择, START: 退出", NULL, mainmenu_update, mainmenu_draw_top);
}