mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-06 03:58:02 +08:00
561 lines
24 KiB
C
561 lines
24 KiB
C
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
|
|
#include <3ds.h>
|
|
|
|
#include "ui.h"
|
|
#include "section/task/task.h"
|
|
#include "../core/screen.h"
|
|
|
|
#define MAX_UI_VIEWS 16
|
|
|
|
static ui_view* ui_stack[MAX_UI_VIEWS];
|
|
static int ui_stack_top = -1;
|
|
|
|
static Handle ui_stack_mutex = 0;
|
|
|
|
void ui_init() {
|
|
if(ui_stack_mutex == 0) {
|
|
svcCreateMutex(&ui_stack_mutex, false);
|
|
}
|
|
}
|
|
|
|
void ui_exit() {
|
|
if(ui_stack_mutex != 0) {
|
|
svcCloseHandle(ui_stack_mutex);
|
|
ui_stack_mutex = 0;
|
|
}
|
|
}
|
|
|
|
ui_view* ui_top() {
|
|
svcWaitSynchronization(ui_stack_mutex, U64_MAX);
|
|
|
|
ui_view* ui = NULL;
|
|
if(ui_stack_top >= 0) {
|
|
ui = ui_stack[ui_stack_top];
|
|
}
|
|
|
|
svcReleaseMutex(ui_stack_mutex);
|
|
|
|
return ui;
|
|
}
|
|
|
|
bool ui_push(ui_view* view) {
|
|
if(view == NULL) {
|
|
return false;
|
|
}
|
|
|
|
svcWaitSynchronization(ui_stack_mutex, U64_MAX);
|
|
|
|
bool space = ui_stack_top < MAX_UI_VIEWS - 1;
|
|
if(space) {
|
|
ui_stack[++ui_stack_top] = view;
|
|
}
|
|
|
|
svcReleaseMutex(ui_stack_mutex);
|
|
|
|
return space;
|
|
}
|
|
|
|
void ui_pop() {
|
|
svcWaitSynchronization(ui_stack_mutex, U64_MAX);
|
|
|
|
if(ui_stack_top >= 0) {
|
|
ui_stack[ui_stack_top--] = NULL;
|
|
}
|
|
|
|
svcReleaseMutex(ui_stack_mutex);
|
|
}
|
|
|
|
static void ui_draw_top(ui_view* ui) {
|
|
u32 topScreenBgWidth = 0;
|
|
u32 topScreenBgHeight = 0;
|
|
screen_get_texture_size(&topScreenBgWidth, &topScreenBgHeight, TEXTURE_TOP_SCREEN_BG);
|
|
|
|
u32 topScreenTopBarWidth = 0;
|
|
u32 topScreenTopBarHeight = 0;
|
|
screen_get_texture_size(&topScreenTopBarWidth, &topScreenTopBarHeight, TEXTURE_TOP_SCREEN_TOP_BAR);
|
|
|
|
u32 topScreenTopBarShadowWidth = 0;
|
|
u32 topScreenTopBarShadowHeight = 0;
|
|
screen_get_texture_size(&topScreenTopBarShadowWidth, &topScreenTopBarShadowHeight, TEXTURE_TOP_SCREEN_TOP_BAR_SHADOW);
|
|
|
|
u32 topScreenBottomBarWidth = 0;
|
|
u32 topScreenBottomBarHeight = 0;
|
|
screen_get_texture_size(&topScreenBottomBarWidth, &topScreenBottomBarHeight, TEXTURE_TOP_SCREEN_BOTTOM_BAR);
|
|
|
|
u32 topScreenBottomBarShadowWidth = 0;
|
|
u32 topScreenBottomBarShadowHeight = 0;
|
|
screen_get_texture_size(&topScreenBottomBarShadowWidth, &topScreenBottomBarShadowHeight, TEXTURE_TOP_SCREEN_BOTTOM_BAR_SHADOW);
|
|
|
|
screen_select(GFX_TOP);
|
|
screen_draw_texture(TEXTURE_TOP_SCREEN_BG, (TOP_SCREEN_WIDTH - topScreenBgWidth) / 2, (TOP_SCREEN_HEIGHT - topScreenBgHeight) / 2, topScreenBgWidth, topScreenBgHeight);
|
|
|
|
if(ui->drawTop != NULL) {
|
|
ui->drawTop(ui, ui->data, 0, topScreenTopBarHeight, TOP_SCREEN_WIDTH, TOP_SCREEN_HEIGHT - topScreenBottomBarHeight);
|
|
}
|
|
|
|
float topScreenTopBarX = (TOP_SCREEN_WIDTH - topScreenTopBarWidth) / 2;
|
|
float topScreenTopBarY = 0;
|
|
screen_draw_texture(TEXTURE_TOP_SCREEN_TOP_BAR, topScreenTopBarX, topScreenTopBarY, topScreenTopBarWidth, topScreenTopBarHeight);
|
|
screen_draw_texture(TEXTURE_TOP_SCREEN_TOP_BAR_SHADOW, topScreenTopBarX, topScreenTopBarY + topScreenTopBarHeight, topScreenTopBarShadowWidth, topScreenTopBarShadowHeight);
|
|
|
|
float topScreenBottomBarX = (TOP_SCREEN_WIDTH - topScreenBottomBarWidth) / 2;
|
|
float topScreenBottomBarY = TOP_SCREEN_HEIGHT - topScreenBottomBarHeight;
|
|
screen_draw_texture(TEXTURE_TOP_SCREEN_BOTTOM_BAR, topScreenBottomBarX, topScreenBottomBarY, topScreenBottomBarWidth, topScreenBottomBarHeight);
|
|
screen_draw_texture(TEXTURE_TOP_SCREEN_BOTTOM_BAR_SHADOW, topScreenBottomBarX, topScreenBottomBarY - topScreenBottomBarShadowHeight, topScreenBottomBarShadowWidth, topScreenBottomBarShadowHeight);
|
|
|
|
char verText[64];
|
|
snprintf(verText, 64, "Ver. %s", VERSION_STRING);
|
|
|
|
float verWidth;
|
|
float verHeight;
|
|
screen_get_string_size(&verWidth, &verHeight, verText, 0.5f, 0.5f);
|
|
screen_draw_string(verText, topScreenTopBarX + 2, topScreenTopBarY + (topScreenTopBarHeight - verHeight) / 2, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
|
|
time_t t = time(NULL);
|
|
char* timeText = ctime(&t);
|
|
timeText[strlen(timeText) - 1] = '\0';
|
|
|
|
float timeTextWidth;
|
|
float timeTextHeight;
|
|
screen_get_string_size(&timeTextWidth, &timeTextHeight, timeText, 0.5f, 0.5f);
|
|
screen_draw_string(timeText, topScreenTopBarX + (topScreenTopBarWidth - timeTextWidth) / 2, topScreenTopBarY + (topScreenTopBarHeight - timeTextHeight) / 2, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
|
|
u32 batteryIcon = 0;
|
|
u8 batteryChargeState = 0;
|
|
u8 batteryLevel = 0;
|
|
if(R_SUCCEEDED(PTMU_GetBatteryChargeState(&batteryChargeState)) && batteryChargeState) {
|
|
batteryIcon = TEXTURE_BATTERY_CHARGING;
|
|
} else if(R_SUCCEEDED(PTMU_GetBatteryLevel(&batteryLevel))) {
|
|
batteryIcon = TEXTURE_BATTERY_0 + batteryLevel;
|
|
} else {
|
|
batteryIcon = TEXTURE_BATTERY_0;
|
|
}
|
|
|
|
u32 batteryWidth;
|
|
u32 batteryHeight;
|
|
screen_get_texture_size(&batteryWidth, &batteryHeight, batteryIcon);
|
|
|
|
float batteryX = topScreenTopBarX + topScreenTopBarWidth - 2 - batteryWidth;
|
|
float batteryY = topScreenTopBarY + (topScreenTopBarHeight - batteryHeight) / 2;
|
|
screen_draw_texture(batteryIcon, batteryX, batteryY, batteryWidth, batteryHeight);
|
|
|
|
u32 wifiIcon = 0;
|
|
u32 wifiStatus = 0;
|
|
if(R_SUCCEEDED(ACU_GetWifiStatus(&wifiStatus)) && wifiStatus) {
|
|
wifiIcon = TEXTURE_WIFI_0 + osGetWifiStrength();
|
|
} else {
|
|
wifiIcon = TEXTURE_WIFI_DISCONNECTED;
|
|
}
|
|
|
|
u32 wifiWidth;
|
|
u32 wifiHeight;
|
|
screen_get_texture_size(&wifiWidth, &wifiHeight, wifiIcon);
|
|
|
|
float wifiX = topScreenTopBarX + topScreenTopBarWidth - 2 - batteryWidth - 4 - wifiWidth;
|
|
float wifiY = topScreenTopBarY + (topScreenTopBarHeight - wifiHeight) / 2;
|
|
screen_draw_texture(wifiIcon, wifiX, wifiY, wifiWidth, wifiHeight);
|
|
|
|
char buffer[128];
|
|
char* currBuffer = buffer;
|
|
FS_ArchiveResource resource = {0};
|
|
|
|
if(R_SUCCEEDED(FSUSER_GetArchiveResource(&resource, SYSTEM_MEDIATYPE_SD)) && currBuffer < buffer + sizeof(buffer)) {
|
|
if(currBuffer != buffer) {
|
|
snprintf(currBuffer, sizeof(buffer) - (currBuffer - buffer), ", ");
|
|
currBuffer += strlen(currBuffer);
|
|
}
|
|
|
|
snprintf(currBuffer, sizeof(buffer) - (currBuffer - buffer), "SD: %.1f MiB", ((u64) resource.freeClusters * (u64) resource.clusterSize) / 1024.0 / 1024.0);
|
|
currBuffer += strlen(currBuffer);
|
|
}
|
|
|
|
if(R_SUCCEEDED(FSUSER_GetArchiveResource(&resource, SYSTEM_MEDIATYPE_CTR_NAND)) && currBuffer < buffer + sizeof(buffer)) {
|
|
if(currBuffer != buffer) {
|
|
snprintf(currBuffer, sizeof(buffer) - (currBuffer - buffer), ", ");
|
|
currBuffer += strlen(currBuffer);
|
|
}
|
|
|
|
snprintf(currBuffer, sizeof(buffer) - (currBuffer - buffer), "CTR NAND: %.1f MiB", ((u64) resource.freeClusters * (u64) resource.clusterSize) / 1024.0 / 1024.0);
|
|
currBuffer += strlen(currBuffer);
|
|
}
|
|
|
|
if(R_SUCCEEDED(FSUSER_GetArchiveResource(&resource, SYSTEM_MEDIATYPE_TWL_NAND)) && currBuffer < buffer + sizeof(buffer)) {
|
|
if(currBuffer != buffer) {
|
|
snprintf(currBuffer, sizeof(buffer) - (currBuffer - buffer), ", ");
|
|
currBuffer += strlen(currBuffer);
|
|
}
|
|
|
|
snprintf(currBuffer, sizeof(buffer) - (currBuffer - buffer), "TWL NAND: %.1f MiB", ((u64) resource.freeClusters * (u64) resource.clusterSize) / 1024.0 / 1024.0);
|
|
currBuffer += strlen(currBuffer);
|
|
}
|
|
|
|
if(R_SUCCEEDED(FSUSER_GetArchiveResource(&resource, SYSTEM_MEDIATYPE_TWL_PHOTO)) && currBuffer < buffer + sizeof(buffer)) {
|
|
if(currBuffer != buffer) {
|
|
snprintf(currBuffer, sizeof(buffer) - (currBuffer - buffer), ", ");
|
|
currBuffer += strlen(currBuffer);
|
|
}
|
|
|
|
snprintf(currBuffer, sizeof(buffer) - (currBuffer - buffer), "TWL Photo: %.1f MiB", ((u64) resource.freeClusters * (u64) resource.clusterSize) / 1024.0 / 1024.0);
|
|
currBuffer += strlen(currBuffer);
|
|
}
|
|
|
|
float freeSpaceHeight;
|
|
screen_get_string_size(NULL, &freeSpaceHeight, buffer, 0.35f, 0.35f);
|
|
|
|
screen_draw_string(buffer, topScreenBottomBarX + 2, topScreenBottomBarY + (topScreenBottomBarHeight - freeSpaceHeight) / 2, 0.35f, 0.35f, COLOR_TEXT, true);
|
|
}
|
|
|
|
static void ui_draw_bottom(ui_view* ui) {
|
|
u32 bottomScreenBgWidth = 0;
|
|
u32 bottomScreenBgHeight = 0;
|
|
screen_get_texture_size(&bottomScreenBgWidth, &bottomScreenBgHeight, TEXTURE_BOTTOM_SCREEN_BG);
|
|
|
|
u32 bottomScreenTopBarWidth = 0;
|
|
u32 bottomScreenTopBarHeight = 0;
|
|
screen_get_texture_size(&bottomScreenTopBarWidth, &bottomScreenTopBarHeight, TEXTURE_BOTTOM_SCREEN_TOP_BAR);
|
|
|
|
u32 bottomScreenTopBarShadowWidth = 0;
|
|
u32 bottomScreenTopBarShadowHeight = 0;
|
|
screen_get_texture_size(&bottomScreenTopBarShadowWidth, &bottomScreenTopBarShadowHeight, TEXTURE_BOTTOM_SCREEN_TOP_BAR_SHADOW);
|
|
|
|
u32 bottomScreenBottomBarWidth = 0;
|
|
u32 bottomScreenBottomBarHeight = 0;
|
|
screen_get_texture_size(&bottomScreenBottomBarWidth, &bottomScreenBottomBarHeight, TEXTURE_BOTTOM_SCREEN_BOTTOM_BAR);
|
|
|
|
u32 bottomScreenBottomBarShadowWidth = 0;
|
|
u32 bottomScreenBottomBarShadowHeight = 0;
|
|
screen_get_texture_size(&bottomScreenBottomBarShadowWidth, &bottomScreenBottomBarShadowHeight, TEXTURE_BOTTOM_SCREEN_BOTTOM_BAR_SHADOW);
|
|
|
|
screen_select(GFX_BOTTOM);
|
|
screen_draw_texture(TEXTURE_BOTTOM_SCREEN_BG, (BOTTOM_SCREEN_WIDTH - bottomScreenBgWidth) / 2, (BOTTOM_SCREEN_HEIGHT - bottomScreenBgHeight) / 2, bottomScreenBgWidth, bottomScreenBgHeight);
|
|
|
|
if(ui->drawBottom != NULL) {
|
|
ui->drawBottom(ui, ui->data, 0, bottomScreenTopBarHeight, BOTTOM_SCREEN_WIDTH, BOTTOM_SCREEN_HEIGHT - bottomScreenBottomBarHeight);
|
|
}
|
|
|
|
float bottomScreenTopBarX = (BOTTOM_SCREEN_WIDTH - bottomScreenTopBarWidth) / 2;
|
|
float bottomScreenTopBarY = 0;
|
|
screen_draw_texture(TEXTURE_BOTTOM_SCREEN_TOP_BAR, bottomScreenTopBarX, bottomScreenTopBarY, bottomScreenTopBarWidth, bottomScreenTopBarHeight);
|
|
screen_draw_texture(TEXTURE_BOTTOM_SCREEN_TOP_BAR_SHADOW, bottomScreenTopBarX, bottomScreenTopBarY + bottomScreenTopBarHeight, bottomScreenTopBarShadowWidth, bottomScreenTopBarShadowHeight);
|
|
|
|
float bottomScreenBottomBarX = (BOTTOM_SCREEN_WIDTH - bottomScreenBottomBarWidth) / 2;
|
|
float bottomScreenBottomBarY = BOTTOM_SCREEN_HEIGHT - bottomScreenBottomBarHeight;
|
|
screen_draw_texture(TEXTURE_BOTTOM_SCREEN_BOTTOM_BAR, bottomScreenBottomBarX, bottomScreenBottomBarY, bottomScreenBottomBarWidth, bottomScreenBottomBarHeight);
|
|
screen_draw_texture(TEXTURE_BOTTOM_SCREEN_BOTTOM_BAR_SHADOW, bottomScreenBottomBarX, bottomScreenBottomBarY - bottomScreenBottomBarShadowHeight, bottomScreenBottomBarShadowWidth, bottomScreenBottomBarShadowHeight);
|
|
|
|
if(ui->name != NULL) {
|
|
float nameWidth;
|
|
float nameHeight;
|
|
screen_get_string_size(&nameWidth, &nameHeight, ui->name, 0.5f, 0.5f);
|
|
screen_draw_string(ui->name, (BOTTOM_SCREEN_WIDTH - nameWidth) / 2, (bottomScreenTopBarHeight - nameHeight) / 2, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
}
|
|
|
|
if(ui->info != NULL) {
|
|
float infoWidth;
|
|
float infoHeight;
|
|
screen_get_string_size(&infoWidth, &infoHeight, ui->info, 0.5f, 0.5f);
|
|
screen_draw_string(ui->info, (BOTTOM_SCREEN_WIDTH - infoWidth) / 2, BOTTOM_SCREEN_HEIGHT - (bottomScreenBottomBarHeight + infoHeight) / 2, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
}
|
|
}
|
|
|
|
bool ui_update() {
|
|
ui_view* ui = NULL;
|
|
|
|
hidScanInput();
|
|
|
|
ui = ui_top();
|
|
if(ui != NULL && ui->update != NULL) {
|
|
u32 bottomScreenTopBarHeight = 0;
|
|
screen_get_texture_size(NULL, &bottomScreenTopBarHeight, TEXTURE_BOTTOM_SCREEN_TOP_BAR);
|
|
|
|
u32 bottomScreenBottomBarHeight = 0;
|
|
screen_get_texture_size(NULL, &bottomScreenBottomBarHeight, TEXTURE_BOTTOM_SCREEN_BOTTOM_BAR);
|
|
|
|
ui->update(ui, ui->data, 0, bottomScreenTopBarHeight, BOTTOM_SCREEN_WIDTH, BOTTOM_SCREEN_HEIGHT - bottomScreenBottomBarHeight);
|
|
}
|
|
|
|
ui = ui_top();
|
|
if(ui != NULL) {
|
|
screen_begin_frame();
|
|
ui_draw_top(ui);
|
|
ui_draw_bottom(ui);
|
|
screen_end_frame();
|
|
}
|
|
|
|
return ui != NULL;
|
|
}
|
|
|
|
void ui_draw_ext_save_data_info(ui_view* view, void* data, float x1, float y1, float x2, float y2) {
|
|
ext_save_data_info* info = (ext_save_data_info*) data;
|
|
|
|
if(info->hasMeta) {
|
|
u32 metaInfoBoxShadowWidth;
|
|
u32 metaInfoBoxShadowHeight;
|
|
screen_get_texture_size(&metaInfoBoxShadowWidth, &metaInfoBoxShadowHeight, TEXTURE_META_INFO_BOX_SHADOW);
|
|
|
|
float metaInfoBoxShadowX = x1 + (x2 - x1 - metaInfoBoxShadowWidth) / 2;
|
|
float metaInfoBoxShadowY = y1 + (y2 - y1) / 4 - metaInfoBoxShadowHeight / 2;
|
|
screen_draw_texture(TEXTURE_META_INFO_BOX_SHADOW, metaInfoBoxShadowX, metaInfoBoxShadowY, metaInfoBoxShadowWidth, metaInfoBoxShadowHeight);
|
|
|
|
u32 metaInfoBoxWidth;
|
|
u32 metaInfoBoxHeight;
|
|
screen_get_texture_size(&metaInfoBoxWidth, &metaInfoBoxHeight, TEXTURE_META_INFO_BOX);
|
|
|
|
float metaInfoBoxX = x1 + (x2 - x1 - metaInfoBoxWidth) / 2;
|
|
float metaInfoBoxY = y1 + (y2 - y1) / 4 - metaInfoBoxHeight / 2;
|
|
screen_draw_texture(TEXTURE_META_INFO_BOX, metaInfoBoxX, metaInfoBoxY, metaInfoBoxWidth, metaInfoBoxHeight);
|
|
|
|
u32 iconWidth;
|
|
u32 iconHeight;
|
|
screen_get_texture_size(&iconWidth, &iconHeight, info->meta.texture);
|
|
|
|
float iconX = metaInfoBoxX + (64 - iconWidth) / 2;
|
|
float iconY = metaInfoBoxY + (metaInfoBoxHeight - iconHeight) / 2;
|
|
screen_draw_texture(info->meta.texture, iconX, iconY, iconWidth, iconHeight);
|
|
|
|
float shortDescriptionHeight;
|
|
screen_get_string_size(NULL, &shortDescriptionHeight, info->meta.shortDescription, 0.5f, 0.5f);
|
|
|
|
float longDescriptionHeight;
|
|
screen_get_string_size(NULL, &longDescriptionHeight, info->meta.longDescription, 0.5f, 0.5f);
|
|
|
|
float publisherHeight;
|
|
screen_get_string_size(NULL, &publisherHeight, info->meta.publisher, 0.5f, 0.5f);
|
|
|
|
float metaTextX = metaInfoBoxX + 64;
|
|
|
|
float shortDescriptionY = metaInfoBoxY + (64 - shortDescriptionHeight - 2 - longDescriptionHeight - 2 - publisherHeight) / 2;
|
|
screen_draw_string(info->meta.shortDescription, metaTextX, shortDescriptionY, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
|
|
float longDescriptionY = shortDescriptionY + shortDescriptionHeight + 2;
|
|
screen_draw_string(info->meta.longDescription, metaTextX, longDescriptionY, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
|
|
float publisherY = longDescriptionY + longDescriptionHeight + 2;
|
|
screen_draw_string(info->meta.publisher, metaTextX, publisherY, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
}
|
|
|
|
char infoText[512];
|
|
|
|
snprintf(infoText, sizeof(infoText),
|
|
"Ext Save Data ID: %016llX\n"
|
|
"Shared: %s",
|
|
info->extSaveDataId,
|
|
info->shared ? "Yes" : "No");
|
|
|
|
float infoWidth;
|
|
screen_get_string_size(&infoWidth, NULL, infoText, 0.5f, 0.5f);
|
|
|
|
float infoX = x1 + (x2 - x1 - infoWidth) / 2;
|
|
float infoY = y1 + (y2 - y1) / 2 - 8;
|
|
screen_draw_string(infoText, infoX, infoY, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
}
|
|
|
|
void ui_draw_file_info(ui_view* view, void* data, float x1, float y1, float x2, float y2) {
|
|
file_info* info = (file_info*) data;
|
|
|
|
char infoText[512];
|
|
size_t infoTextPos = 0;
|
|
|
|
if(strlen(info->name) > 48) {
|
|
infoTextPos += snprintf(infoText + infoTextPos, sizeof(infoText) - infoTextPos, "Name: %.45s...\n", info->name);
|
|
} else {
|
|
infoTextPos += snprintf(infoText + infoTextPos, sizeof(infoText) - infoTextPos, "Name: %.48s\n", info->name);
|
|
}
|
|
|
|
if(!info->isDirectory) {
|
|
infoTextPos += snprintf(infoText + infoTextPos, sizeof(infoText) - infoTextPos, "Size: %.2f MiB\n", info->size / 1024.0 / 1024.0);
|
|
|
|
if(info->isCia) {
|
|
if(info->ciaInfo.hasMeta) {
|
|
u32 metaInfoBoxShadowWidth;
|
|
u32 metaInfoBoxShadowHeight;
|
|
screen_get_texture_size(&metaInfoBoxShadowWidth, &metaInfoBoxShadowHeight, TEXTURE_META_INFO_BOX_SHADOW);
|
|
|
|
float metaInfoBoxShadowX = x1 + (x2 - x1 - metaInfoBoxShadowWidth) / 2;
|
|
float metaInfoBoxShadowY = y1 + (y2 - y1) / 4 - metaInfoBoxShadowHeight / 2;
|
|
screen_draw_texture(TEXTURE_META_INFO_BOX_SHADOW, metaInfoBoxShadowX, metaInfoBoxShadowY, metaInfoBoxShadowWidth, metaInfoBoxShadowHeight);
|
|
|
|
u32 metaInfoBoxWidth;
|
|
u32 metaInfoBoxHeight;
|
|
screen_get_texture_size(&metaInfoBoxWidth, &metaInfoBoxHeight, TEXTURE_META_INFO_BOX);
|
|
|
|
float metaInfoBoxX = x1 + (x2 - x1 - metaInfoBoxWidth) / 2;
|
|
float metaInfoBoxY = y1 + (y2 - y1) / 4 - metaInfoBoxHeight / 2;
|
|
screen_draw_texture(TEXTURE_META_INFO_BOX, metaInfoBoxX, metaInfoBoxY, metaInfoBoxWidth, metaInfoBoxHeight);
|
|
|
|
u32 iconWidth;
|
|
u32 iconHeight;
|
|
screen_get_texture_size(&iconWidth, &iconHeight, info->ciaInfo.meta.texture);
|
|
|
|
float iconX = metaInfoBoxX + (64 - iconWidth) / 2;
|
|
float iconY = metaInfoBoxY + (metaInfoBoxHeight - iconHeight) / 2;
|
|
screen_draw_texture(info->ciaInfo.meta.texture, iconX, iconY, iconWidth, iconHeight);
|
|
|
|
float shortDescriptionHeight;
|
|
screen_get_string_size(NULL, &shortDescriptionHeight, info->ciaInfo.meta.shortDescription, 0.5f, 0.5f);
|
|
|
|
float longDescriptionHeight;
|
|
screen_get_string_size(NULL, &longDescriptionHeight, info->ciaInfo.meta.longDescription, 0.5f, 0.5f);
|
|
|
|
float publisherHeight;
|
|
screen_get_string_size(NULL, &publisherHeight, info->ciaInfo.meta.publisher, 0.5f, 0.5f);
|
|
|
|
float metaTextX = metaInfoBoxX + 64;
|
|
|
|
float shortDescriptionY = metaInfoBoxY + (64 - shortDescriptionHeight - 2 - longDescriptionHeight - 2 - publisherHeight) / 2;
|
|
screen_draw_string(info->ciaInfo.meta.shortDescription, metaTextX, shortDescriptionY, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
|
|
float longDescriptionY = shortDescriptionY + shortDescriptionHeight + 2;
|
|
screen_draw_string(info->ciaInfo.meta.longDescription, metaTextX, longDescriptionY, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
|
|
float publisherY = longDescriptionY + longDescriptionHeight + 2;
|
|
screen_draw_string(info->ciaInfo.meta.publisher, metaTextX, publisherY, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
}
|
|
|
|
infoTextPos += snprintf(infoText + infoTextPos, sizeof(infoText) - infoTextPos,
|
|
"Title ID: %016llX\n"
|
|
"Version: %hu\n"
|
|
"Installed Size: %.2f MiB",
|
|
info->ciaInfo.titleId,
|
|
info->ciaInfo.version,
|
|
info->ciaInfo.installedSize / 1024.0 / 1024.0);
|
|
} else if(info->isTicket) {
|
|
infoTextPos += snprintf(infoText + infoTextPos, sizeof(infoText) - infoTextPos, "Ticket ID: %016llX", info->ticketInfo.titleId);
|
|
}
|
|
} else {
|
|
infoTextPos += snprintf(infoText + infoTextPos, sizeof(infoText) - infoTextPos, "Directory");
|
|
}
|
|
|
|
float infoWidth;
|
|
screen_get_string_size(&infoWidth, NULL, infoText, 0.5f, 0.5f);
|
|
|
|
float infoX = x1 + (x2 - x1 - infoWidth) / 2;
|
|
float infoY = y1 + (y2 - y1) / 2 - 8;
|
|
screen_draw_string(infoText, infoX, infoY, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
}
|
|
|
|
void ui_draw_pending_title_info(ui_view* view, void* data, float x1, float y1, float x2, float y2) {
|
|
pending_title_info* info = (pending_title_info*) data;
|
|
|
|
char infoText[512];
|
|
|
|
snprintf(infoText, sizeof(infoText),
|
|
"Pending Title ID: %016llX\n"
|
|
"Media Type: %s\n"
|
|
"Version: %hu",
|
|
info->titleId,
|
|
info->mediaType == MEDIATYPE_NAND ? "NAND" : info->mediaType == MEDIATYPE_SD ? "SD" : "Game Card",
|
|
info->version);
|
|
|
|
float infoWidth;
|
|
screen_get_string_size(&infoWidth, NULL, infoText, 0.5f, 0.5f);
|
|
|
|
float infoX = x1 + (x2 - x1 - infoWidth) / 2;
|
|
float infoY = y1 + (y2 - y1) / 2 - 8;
|
|
screen_draw_string(infoText, infoX, infoY, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
}
|
|
|
|
void ui_draw_system_save_data_info(ui_view* view, void* data, float x1, float y1, float x2, float y2) {
|
|
system_save_data_info* info = (system_save_data_info*) data;
|
|
|
|
char infoText[512];
|
|
|
|
snprintf(infoText, sizeof(infoText), "System Save Data ID: %08lX", info->systemSaveDataId);
|
|
|
|
float infoWidth;
|
|
screen_get_string_size(&infoWidth, NULL, infoText, 0.5f, 0.5f);
|
|
|
|
float infoX = x1 + (x2 - x1 - infoWidth) / 2;
|
|
float infoY = y1 + (y2 - y1) / 2 - 8;
|
|
screen_draw_string(infoText, infoX, infoY, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
}
|
|
|
|
void ui_draw_ticket_info(ui_view* view, void* data, float x1, float y1, float x2, float y2) {
|
|
ticket_info* info = (ticket_info*) data;
|
|
|
|
char infoText[512];
|
|
|
|
snprintf(infoText, sizeof(infoText), "Title ID: %016llX", info->titleId);
|
|
|
|
float infoWidth;
|
|
screen_get_string_size(&infoWidth, NULL, infoText, 0.5f, 0.5f);
|
|
|
|
float infoX = x1 + (x2 - x1 - infoWidth) / 2;
|
|
float infoY = y1 + (y2 - y1) / 2 - 8;
|
|
screen_draw_string(infoText, infoX, infoY, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
}
|
|
|
|
void ui_draw_title_info(ui_view* view, void* data, float x1, float y1, float x2, float y2) {
|
|
title_info* info = (title_info*) data;
|
|
|
|
if(info->hasMeta) {
|
|
u32 metaInfoBoxShadowWidth;
|
|
u32 metaInfoBoxShadowHeight;
|
|
screen_get_texture_size(&metaInfoBoxShadowWidth, &metaInfoBoxShadowHeight, TEXTURE_META_INFO_BOX_SHADOW);
|
|
|
|
float metaInfoBoxShadowX = x1 + (x2 - x1 - metaInfoBoxShadowWidth) / 2;
|
|
float metaInfoBoxShadowY = y1 + (y2 - y1) / 4 - metaInfoBoxShadowHeight / 2;
|
|
screen_draw_texture(TEXTURE_META_INFO_BOX_SHADOW, metaInfoBoxShadowX, metaInfoBoxShadowY, metaInfoBoxShadowWidth, metaInfoBoxShadowHeight);
|
|
|
|
u32 metaInfoBoxWidth;
|
|
u32 metaInfoBoxHeight;
|
|
screen_get_texture_size(&metaInfoBoxWidth, &metaInfoBoxHeight, TEXTURE_META_INFO_BOX);
|
|
|
|
float metaInfoBoxX = x1 + (x2 - x1 - metaInfoBoxWidth) / 2;
|
|
float metaInfoBoxY = y1 + (y2 - y1) / 4 - metaInfoBoxHeight / 2;
|
|
screen_draw_texture(TEXTURE_META_INFO_BOX, metaInfoBoxX, metaInfoBoxY, metaInfoBoxWidth, metaInfoBoxHeight);
|
|
|
|
u32 iconWidth;
|
|
u32 iconHeight;
|
|
screen_get_texture_size(&iconWidth, &iconHeight, info->meta.texture);
|
|
|
|
float iconX = metaInfoBoxX + (64 - iconWidth) / 2;
|
|
float iconY = metaInfoBoxY + (metaInfoBoxHeight - iconHeight) / 2;
|
|
screen_draw_texture(info->meta.texture, iconX, iconY, iconWidth, iconHeight);
|
|
|
|
float shortDescriptionHeight;
|
|
screen_get_string_size(NULL, &shortDescriptionHeight, info->meta.shortDescription, 0.5f, 0.5f);
|
|
|
|
float longDescriptionHeight;
|
|
screen_get_string_size(NULL, &longDescriptionHeight, info->meta.longDescription, 0.5f, 0.5f);
|
|
|
|
float publisherHeight;
|
|
screen_get_string_size(NULL, &publisherHeight, info->meta.publisher, 0.5f, 0.5f);
|
|
|
|
float metaTextX = metaInfoBoxX + 64;
|
|
|
|
float shortDescriptionY = metaInfoBoxY + (64 - shortDescriptionHeight - 2 - longDescriptionHeight - 2 - publisherHeight) / 2;
|
|
screen_draw_string(info->meta.shortDescription, metaTextX, shortDescriptionY, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
|
|
float longDescriptionY = shortDescriptionY + shortDescriptionHeight + 2;
|
|
screen_draw_string(info->meta.longDescription, metaTextX, longDescriptionY, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
|
|
float publisherY = longDescriptionY + longDescriptionHeight + 2;
|
|
screen_draw_string(info->meta.publisher, metaTextX, publisherY, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
}
|
|
|
|
char infoText[512];
|
|
|
|
snprintf(infoText, sizeof(infoText),
|
|
"Title ID: %016llX\n"
|
|
"Media Type: %s\n"
|
|
"Version: %hu\n"
|
|
"Product Code: %s\n"
|
|
"Installed Size: %.2f MiB",
|
|
info->titleId,
|
|
info->mediaType == MEDIATYPE_NAND ? "NAND" : info->mediaType == MEDIATYPE_SD ? "SD" : "Game Card",
|
|
info->version,
|
|
info->productCode,
|
|
info->installedSize / 1024.0 / 1024.0);
|
|
|
|
float infoWidth;
|
|
screen_get_string_size(&infoWidth, NULL, infoText, 0.5f, 0.5f);
|
|
|
|
float infoX = x1 + (x2 - x1 - infoWidth) / 2;
|
|
float infoY = y1 + (y2 - y1) / 2 - 8;
|
|
screen_draw_string(infoText, infoX, infoY, 0.5f, 0.5f, COLOR_TEXT, true);
|
|
}
|