Add new logo by PabloMK7, fade in text on CIA/3DS startup.

This commit is contained in:
Steveice10 2017-01-08 11:23:05 -08:00
parent 33737b1292
commit 541786bc86
8 changed files with 121 additions and 58 deletions

View File

@ -66,7 +66,7 @@ ifeq ($(TARGET),3DS)
BANNER_AUDIO := meta/audio_3ds.wav BANNER_AUDIO := meta/audio_3ds.wav
BANNER_IMAGE := meta/banner_3ds.cgfx BANNER_IMAGE := meta/banner_3ds.cgfx
ICON := meta/icon_3ds.png ICON := meta/icon_3ds.png
LOGO := LOGO := meta/logo_3ds.bcma.lz
endif endif
# Wii U CONFIGURATION # # Wii U CONFIGURATION #

View File

@ -10,6 +10,6 @@ Requires [devkitARM](http://sourceforge.net/projects/devkitpro/files/devkitARM/)
Banner: [OctopusRift](http://gbatemp.net/members/octopusrift.356526/), [Apache Thunder](https://gbatemp.net/members/apache-thunder.105648/) Banner: [OctopusRift](http://gbatemp.net/members/octopusrift.356526/), [Apache Thunder](https://gbatemp.net/members/apache-thunder.105648/)
SPI Protocol Information: [TuxSH](https://github.com/TuxSH/) ([TWLSaveTool](https://github.com/TuxSH/TWLSaveTool)) Logo: [PabloMK7](http://gbatemp.net/members/pablomk7.345712/)
svchax: [aliaspider](https://github.com/aliaspider), waithax: [Mrrraou](https://github.com/Mrrraou) SPI Protocol Information: [TuxSH](https://github.com/TuxSH/) ([TWLSaveTool](https://github.com/TuxSH/TWLSaveTool))

BIN
meta/logo_3ds.bcma.lz Normal file

Binary file not shown.

View File

@ -19,7 +19,7 @@ except ImportError:
from urllib.request import pathname2url from urllib.request import pathname2url
if len(sys.argv) < 3: if len(sys.argv) < 3:
print("Usage: " + sys.argv[0] + " <ip> <file/directory>") print("Usage: " + sys.argv[0] + " <ip> <file/directory> [host ip]")
sys.exit(1) sys.exit(1)
ip = sys.argv[1] ip = sys.argv[1]

View File

@ -12,7 +12,7 @@
#include "default_shbin.h" #include "default_shbin.h"
GX_TRANSFER_FORMAT gpuToGxFormat[13] = { GX_TRANSFER_FORMAT gpu_to_gx_format[13] = {
GX_TRANSFER_FMT_RGBA8, GX_TRANSFER_FMT_RGBA8,
GX_TRANSFER_FMT_RGB8, GX_TRANSFER_FMT_RGB8,
GX_TRANSFER_FMT_RGB5A1, GX_TRANSFER_FMT_RGB5A1,
@ -28,11 +28,11 @@ GX_TRANSFER_FORMAT gpuToGxFormat[13] = {
GX_TRANSFER_FMT_RGBA8 // Unsupported GX_TRANSFER_FMT_RGBA8 // Unsupported
}; };
static u32 colorConfig[NUM_COLORS] = {0xFF000000}; static u32 color_config[NUM_COLORS] = {0xFF000000};
static bool c3dInitialized; static bool c3d_initialized;
static bool shaderInitialized; static bool shader_initialized;
static DVLB_s* dvlb; static DVLB_s* dvlb;
static shaderProgram_s program; static shaderProgram_s program;
@ -50,7 +50,9 @@ static struct {
u32 pow2Height; u32 pow2Height;
} textures[MAX_TEXTURES]; } textures[MAX_TEXTURES];
static C3D_Tex* glyphSheets; static C3D_Tex* glyph_sheets;
static u8 base_alpha = 0xFF;
static FILE* screen_open_resource(const char* path) { static FILE* screen_open_resource(const char* path) {
u32 realPathSize = strlen(path) + 17; u32 realPathSize = strlen(path) + 17;
@ -74,7 +76,7 @@ void screen_init() {
return; return;
} }
c3dInitialized = true; c3d_initialized = true;
target_top = C3D_RenderTargetCreate(240, 400, GPU_RB_RGBA8, GPU_RB_DEPTH24_STENCIL8); target_top = C3D_RenderTargetCreate(240, 400, GPU_RB_RGBA8, GPU_RB_DEPTH24_STENCIL8);
if(target_top == NULL) { if(target_top == NULL) {
@ -108,7 +110,7 @@ void screen_init() {
return; return;
} }
shaderInitialized = true; shader_initialized = true;
Result progSetVshRes = shaderProgramSetVsh(&program, &dvlb->DVLE[0]); Result progSetVshRes = shaderProgramSetVsh(&program, &dvlb->DVLE[0]);
if(R_FAILED(progSetVshRes)) { if(R_FAILED(progSetVshRes)) {
@ -134,8 +136,8 @@ void screen_init() {
return; return;
} }
C3D_TexEnvSrc(env, C3D_Both, GPU_TEXTURE0, 0, 0); C3D_TexEnvSrc(env, C3D_Both, GPU_TEXTURE0, GPU_PRIMARY_COLOR, GPU_PRIMARY_COLOR);
C3D_TexEnvOp(env, C3D_Both, 0, 0, 0); C3D_TexEnvOp(env, C3D_Both, GPU_TEVOP_RGB_SRC_COLOR, GPU_TEVOP_RGB_SRC_COLOR, GPU_TEVOP_RGB_SRC_COLOR);
C3D_TexEnvFunc(env, C3D_Both, GPU_REPLACE); C3D_TexEnvFunc(env, C3D_Both, GPU_REPLACE);
C3D_DepthTest(true, GPU_GEQUAL, GPU_WRITE_ALL); C3D_DepthTest(true, GPU_GEQUAL, GPU_WRITE_ALL);
@ -150,14 +152,14 @@ void screen_init() {
} }
TGLP_s* glyphInfo = fontGetGlyphInfo(); TGLP_s* glyphInfo = fontGetGlyphInfo();
glyphSheets = calloc(glyphInfo->nSheets, sizeof(C3D_Tex)); glyph_sheets = calloc(glyphInfo->nSheets, sizeof(C3D_Tex));
if(glyphSheets == NULL) { if(glyph_sheets == NULL) {
util_panic("Failed to allocate font glyph texture data."); util_panic("Failed to allocate font glyph texture data.");
return; return;
} }
for(int i = 0; i < glyphInfo->nSheets; i++) { for(int i = 0; i < glyphInfo->nSheets; i++) {
C3D_Tex* tex = &glyphSheets[i]; C3D_Tex* tex = &glyph_sheets[i];
tex->data = fontGetGlyphSheetTex(i); tex->data = fontGetGlyphSheetTex(i);
tex->fmt = (GPU_TEXCOLOR) glyphInfo->sheetFmt; tex->fmt = (GPU_TEXCOLOR) glyphInfo->sheetFmt;
tex->size = glyphInfo->sheetSize; tex->size = glyphInfo->sheetSize;
@ -190,31 +192,31 @@ void screen_init() {
u32 color = strtoul(value, NULL, 16); u32 color = strtoul(value, NULL, 16);
if(strcasecmp(key, "text") == 0) { if(strcasecmp(key, "text") == 0) {
colorConfig[COLOR_TEXT] = color; color_config[COLOR_TEXT] = color;
} else if(strcasecmp(key, "nand") == 0) { } else if(strcasecmp(key, "nand") == 0) {
colorConfig[COLOR_NAND] = color; color_config[COLOR_NAND] = color;
} else if(strcasecmp(key, "sd") == 0) { } else if(strcasecmp(key, "sd") == 0) {
colorConfig[COLOR_SD] = color; color_config[COLOR_SD] = color;
} else if(strcasecmp(key, "gamecard") == 0) { } else if(strcasecmp(key, "gamecard") == 0) {
colorConfig[COLOR_GAME_CARD] = color; color_config[COLOR_GAME_CARD] = color;
} else if(strcasecmp(key, "dstitle") == 0) { } else if(strcasecmp(key, "dstitle") == 0) {
colorConfig[COLOR_DS_TITLE] = color; color_config[COLOR_DS_TITLE] = color;
} else if(strcasecmp(key, "file") == 0) { } else if(strcasecmp(key, "file") == 0) {
colorConfig[COLOR_FILE] = color; color_config[COLOR_FILE] = color;
} else if(strcasecmp(key, "directory") == 0) { } else if(strcasecmp(key, "directory") == 0) {
colorConfig[COLOR_DIRECTORY] = color; color_config[COLOR_DIRECTORY] = color;
} else if(strcasecmp(key, "enabled") == 0) { } else if(strcasecmp(key, "enabled") == 0) {
colorConfig[COLOR_ENABLED] = color; color_config[COLOR_ENABLED] = color;
} else if(strcasecmp(key, "disabled") == 0) { } else if(strcasecmp(key, "disabled") == 0) {
colorConfig[COLOR_DISABLED] = color; color_config[COLOR_DISABLED] = color;
} else if(strcasecmp(key, "installed") == 0) { } else if(strcasecmp(key, "installed") == 0) {
colorConfig[COLOR_INSTALLED] = color; color_config[COLOR_INSTALLED] = color;
} else if(strcasecmp(key, "notinstalled") == 0) { } else if(strcasecmp(key, "notinstalled") == 0) {
colorConfig[COLOR_NOT_INSTALLED] = color; color_config[COLOR_NOT_INSTALLED] = color;
} else if(strcasecmp(key, "ticketinuse") == 0) { } else if(strcasecmp(key, "ticketinuse") == 0) {
colorConfig[COLOR_TICKET_IN_USE] = color; color_config[COLOR_TICKET_IN_USE] = color;
} else if(strcasecmp(key, "ticketnotinuse") == 0) { } else if(strcasecmp(key, "ticketnotinuse") == 0) {
colorConfig[COLOR_TICKET_NOT_IN_USE] = color; color_config[COLOR_TICKET_NOT_IN_USE] = color;
} }
} }
} }
@ -259,14 +261,14 @@ void screen_exit() {
screen_unload_texture(id); screen_unload_texture(id);
} }
if(glyphSheets != NULL) { if(glyph_sheets != NULL) {
free(glyphSheets); free(glyph_sheets);
glyphSheets = NULL; glyph_sheets = NULL;
} }
if(shaderInitialized) { if(shader_initialized) {
shaderProgramFree(&program); shaderProgramFree(&program);
shaderInitialized = false; shader_initialized = false;
} }
if(dvlb != NULL) { if(dvlb != NULL) {
@ -284,12 +286,16 @@ void screen_exit() {
target_bottom = NULL; target_bottom = NULL;
} }
if(c3dInitialized) { if(c3d_initialized) {
C3D_Fini(); C3D_Fini();
c3dInitialized = false; c3d_initialized = false;
} }
} }
void screen_set_base_alpha(u8 alpha) {
base_alpha = alpha;
}
static u32 screen_next_pow_2(u32 i) { static u32 screen_next_pow_2(u32 i) {
i--; i--;
i |= i >> 1; i |= i >> 1;
@ -358,7 +364,7 @@ void screen_load_texture(u32 id, void* data, u32 size, u32 width, u32 height, GP
return; return;
} }
C3D_SafeDisplayTransfer((u32*) pow2Tex, GX_BUFFER_DIM(pow2Width, pow2Height), (u32*) textures[id].tex.data, GX_BUFFER_DIM(pow2Width, pow2Height), GX_TRANSFER_FLIP_VERT(1) | GX_TRANSFER_OUT_TILED(1) | GX_TRANSFER_RAW_COPY(0) | GX_TRANSFER_IN_FORMAT((u32) gpuToGxFormat[format]) | GX_TRANSFER_OUT_FORMAT((u32) gpuToGxFormat[format]) | GX_TRANSFER_SCALING(GX_TRANSFER_SCALE_NO)); C3D_SafeDisplayTransfer((u32*) pow2Tex, GX_BUFFER_DIM(pow2Width, pow2Height), (u32*) textures[id].tex.data, GX_BUFFER_DIM(pow2Width, pow2Height), GX_TRANSFER_FLIP_VERT(1) | GX_TRANSFER_OUT_TILED(1) | GX_TRANSFER_RAW_COPY(0) | GX_TRANSFER_IN_FORMAT((u32) gpu_to_gx_format[format]) | GX_TRANSFER_OUT_FORMAT((u32) gpu_to_gx_format[format]) | GX_TRANSFER_SCALING(GX_TRANSFER_SCALE_NO));
gspWaitForPPF(); gspWaitForPPF();
linearFree(pow2Tex); linearFree(pow2Tex);
@ -552,6 +558,32 @@ void screen_set_scissor(bool enabled, u32 x, u32 y, u32 width, u32 height) {
C3D_SetScissor(enabled ? GPU_SCISSOR_NORMAL : GPU_SCISSOR_DISABLE, 240 - (y + height), x, 240 - y, x + width); C3D_SetScissor(enabled ? GPU_SCISSOR_NORMAL : GPU_SCISSOR_DISABLE, 240 - (y + height), x, 240 - y, x + width);
} }
static void screen_set_blend(u32 color, bool rgb, bool alpha) {
C3D_TexEnv* env = C3D_GetTexEnv(0);
if(env == NULL) {
util_panic("Failed to retrieve combiner settings.");
return;
}
if(rgb) {
C3D_TexEnvSrc(env, C3D_RGB, GPU_CONSTANT, GPU_PRIMARY_COLOR, GPU_PRIMARY_COLOR);
C3D_TexEnvFunc(env, C3D_RGB, GPU_REPLACE);
} else {
C3D_TexEnvSrc(env, C3D_RGB, GPU_TEXTURE0, GPU_PRIMARY_COLOR, GPU_PRIMARY_COLOR);
C3D_TexEnvFunc(env, C3D_RGB, GPU_REPLACE);
}
if(alpha) {
C3D_TexEnvSrc(env, C3D_Alpha, GPU_TEXTURE0, GPU_CONSTANT, GPU_PRIMARY_COLOR);
C3D_TexEnvFunc(env, C3D_Alpha, GPU_MODULATE);
} else {
C3D_TexEnvSrc(env, C3D_Alpha, GPU_TEXTURE0, GPU_PRIMARY_COLOR, GPU_PRIMARY_COLOR);
C3D_TexEnvFunc(env, C3D_Alpha, GPU_REPLACE);
}
C3D_TexEnvColor(env, color);
}
static void screen_draw_quad(float x1, float y1, float x2, float y2, float tx1, float ty1, float tx2, float ty2) { static void screen_draw_quad(float x1, float y1, float x2, float y2, float tx1, float ty1, float tx2, float ty2) {
C3D_ImmDrawBegin(GPU_TRIANGLES); C3D_ImmDrawBegin(GPU_TRIANGLES);
@ -582,8 +614,16 @@ void screen_draw_texture(u32 id, float x, float y, float width, float height) {
return; return;
} }
if(base_alpha != 0xFF) {
screen_set_blend(base_alpha << 24, false, true);
}
C3D_TexBind(0, &textures[id].tex); C3D_TexBind(0, &textures[id].tex);
screen_draw_quad(x, y, x + width, y + height, 0, 0, (float) textures[id].width / (float) textures[id].pow2Width, (float) textures[id].height / (float) textures[id].pow2Height); screen_draw_quad(x, y, x + width, y + height, 0, 0, (float) textures[id].width / (float) textures[id].pow2Width, (float) textures[id].height / (float) textures[id].pow2Height);
if(base_alpha != 0xFF) {
screen_set_blend(0, false, false);
}
} }
void screen_draw_texture_crop(u32 id, float x, float y, float width, float height) { void screen_draw_texture_crop(u32 id, float x, float y, float width, float height) {
@ -592,8 +632,16 @@ void screen_draw_texture_crop(u32 id, float x, float y, float width, float heigh
return; return;
} }
if(base_alpha != 0xFF) {
screen_set_blend(base_alpha << 24, false, true);
}
C3D_TexBind(0, &textures[id].tex); C3D_TexBind(0, &textures[id].tex);
screen_draw_quad(x, y, x + width, y + height, 0, 0, width / (float) textures[id].pow2Width, height / (float) textures[id].pow2Height); screen_draw_quad(x, y, x + width, y + height, 0, 0, width / (float) textures[id].pow2Width, height / (float) textures[id].pow2Height);
if(base_alpha != 0xFF) {
screen_set_blend(0, false, false);
}
} }
float screen_get_font_height(float scaleY) { float screen_get_font_height(float scaleY) {
@ -667,18 +715,16 @@ static void screen_draw_string_internal(const char* text, float x, float y, floa
return; return;
} }
C3D_TexEnv* env = C3D_GetTexEnv(0); u32 blendColor = color_config[colorId];
if(env == NULL) { if(base_alpha != 0xFF) {
util_panic("Failed to retrieve combiner settings."); float alpha1 = ((blendColor >> 24) & 0xFF) / 255.0f;
return; float alpha2 = base_alpha / 255.0f;
float blendedAlpha = alpha1 * alpha2;
blendColor = (((u32) (blendedAlpha * 0xFF)) << 24) | (blendColor & 0x00FFFFFF);
} }
C3D_TexEnvSrc(env, C3D_RGB, GPU_CONSTANT, 0, 0); screen_set_blend(blendColor, true, true);
C3D_TexEnvSrc(env, C3D_Alpha, GPU_TEXTURE0, GPU_CONSTANT, 0);
C3D_TexEnvOp(env, C3D_Both, 0, 0, 0);
C3D_TexEnvFunc(env, C3D_RGB, GPU_REPLACE);
C3D_TexEnvFunc(env, C3D_Alpha, GPU_MODULATE);
C3D_TexEnvColor(env, colorConfig[colorId]);
float stringWidth; float stringWidth;
screen_get_string_size_internal(&stringWidth, NULL, text, scaleX, scaleY, false, wrap, wrapX); screen_get_string_size_internal(&stringWidth, NULL, text, scaleX, scaleY, false, wrap, wrapX);
@ -727,7 +773,7 @@ static void screen_draw_string_internal(const char* text, float x, float y, floa
if(data.sheetIndex != lastSheet) { if(data.sheetIndex != lastSheet) {
lastSheet = data.sheetIndex; lastSheet = data.sheetIndex;
C3D_TexBind(0, &glyphSheets[lastSheet]); C3D_TexBind(0, &glyph_sheets[lastSheet]);
} }
for(u32 i = 0; i < num; i++) { for(u32 i = 0; i < num; i++) {
@ -738,15 +784,7 @@ static void screen_draw_string_internal(const char* text, float x, float y, floa
} }
} }
env = C3D_GetTexEnv(0); screen_set_blend(0, false, false);
if(env == NULL) {
util_panic("Failed to retrieve combiner settings.");
return;
}
C3D_TexEnvSrc(env, C3D_Both, GPU_TEXTURE0, 0, 0);
C3D_TexEnvOp(env, C3D_Both, 0, 0, 0);
C3D_TexEnvFunc(env, C3D_Both, GPU_REPLACE);
} }
void screen_draw_string(const char* text, float x, float y, float scaleX, float scaleY, u32 colorId, bool centerLines) { void screen_draw_string(const char* text, float x, float y, float scaleX, float scaleY, u32 colorId, bool centerLines) {

View File

@ -60,6 +60,7 @@
void screen_init(); void screen_init();
void screen_exit(); void screen_exit();
void screen_set_base_alpha(u8 alpha);
void screen_load_texture(u32 id, void* data, u32 size, u32 width, u32 height, GPU_TEXCOLOR format, bool linearFilter); void screen_load_texture(u32 id, void* data, u32 size, u32 width, u32 height, GPU_TEXCOLOR format, bool linearFilter);
u32 screen_load_texture_auto(void* data, u32 size, u32 width, u32 height, GPU_TEXCOLOR format, bool linearFilter); u32 screen_load_texture_auto(void* data, u32 size, u32 width, u32 height, GPU_TEXCOLOR format, bool linearFilter);
void screen_load_texture_file(u32 id, const char* path, bool linearFilter); void screen_load_texture_file(u32 id, const char* path, bool linearFilter);

View File

@ -173,7 +173,7 @@ void cleanup() {
} }
int main(int argc, const char* argv[]) { int main(int argc, const char* argv[]) {
if(argc > 0) { if(argc > 0 && envIsHomebrew()) {
util_set_3dsx_path(argv[0]); util_set_3dsx_path(argv[0]);
} }

View File

@ -20,10 +20,15 @@ static Handle ui_stack_mutex = 0;
static u64 ui_free_space_last_update = 0; static u64 ui_free_space_last_update = 0;
static char ui_free_space_buffer[128]; static char ui_free_space_buffer[128];
static u64 ui_fade_begin_time = 0;
static u8 ui_fade_in_alpha = 0;
void ui_init() { void ui_init() {
if(ui_stack_mutex == 0) { if(ui_stack_mutex == 0) {
svcCreateMutex(&ui_stack_mutex, false); svcCreateMutex(&ui_stack_mutex, false);
} }
ui_fade_begin_time = osGetTime();
} }
void ui_exit() { void ui_exit() {
@ -140,6 +145,8 @@ static void ui_draw_top(ui_view* ui) {
screen_draw_texture(TEXTURE_TOP_SCREEN_BOTTOM_BAR, topScreenBottomBarX, topScreenBottomBarY, topScreenBottomBarWidth, 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); screen_draw_texture(TEXTURE_TOP_SCREEN_BOTTOM_BAR_SHADOW, topScreenBottomBarX, topScreenBottomBarY - topScreenBottomBarShadowHeight, topScreenBottomBarShadowWidth, topScreenBottomBarShadowHeight);
screen_set_base_alpha(ui_fade_in_alpha);
char verText[64]; char verText[64];
snprintf(verText, 64, "Ver. %d.%d.%d", VERSION_MAJOR, VERSION_MINOR, VERSION_MICRO); snprintf(verText, 64, "Ver. %d.%d.%d", VERSION_MAJOR, VERSION_MINOR, VERSION_MICRO);
@ -247,6 +254,8 @@ static void ui_draw_top(ui_view* ui) {
screen_get_string_size(NULL, &freeSpaceHeight, ui_free_space_buffer, 0.35f, 0.35f); screen_get_string_size(NULL, &freeSpaceHeight, ui_free_space_buffer, 0.35f, 0.35f);
screen_draw_string(ui_free_space_buffer, topScreenBottomBarX + 2, topScreenBottomBarY + (topScreenBottomBarHeight - freeSpaceHeight) / 2, 0.35f, 0.35f, COLOR_TEXT, true); screen_draw_string(ui_free_space_buffer, topScreenBottomBarX + 2, topScreenBottomBarY + (topScreenBottomBarHeight - freeSpaceHeight) / 2, 0.35f, 0.35f, COLOR_TEXT, true);
screen_set_base_alpha(0xFF);
} }
static void ui_draw_bottom(ui_view* ui) { static void ui_draw_bottom(ui_view* ui) {
@ -273,10 +282,14 @@ static void ui_draw_bottom(ui_view* ui) {
screen_select(GFX_BOTTOM); screen_select(GFX_BOTTOM);
screen_draw_texture(TEXTURE_BOTTOM_SCREEN_BG, (BOTTOM_SCREEN_WIDTH - bottomScreenBgWidth) / 2, (BOTTOM_SCREEN_HEIGHT - bottomScreenBgHeight) / 2, bottomScreenBgWidth, bottomScreenBgHeight); screen_draw_texture(TEXTURE_BOTTOM_SCREEN_BG, (BOTTOM_SCREEN_WIDTH - bottomScreenBgWidth) / 2, (BOTTOM_SCREEN_HEIGHT - bottomScreenBgHeight) / 2, bottomScreenBgWidth, bottomScreenBgHeight);
screen_set_base_alpha(ui_fade_in_alpha);
if(ui->drawBottom != NULL) { if(ui->drawBottom != NULL) {
ui->drawBottom(ui, ui->data, 0, bottomScreenTopBarHeight, BOTTOM_SCREEN_WIDTH, BOTTOM_SCREEN_HEIGHT - bottomScreenBottomBarHeight); ui->drawBottom(ui, ui->data, 0, bottomScreenTopBarHeight, BOTTOM_SCREEN_WIDTH, BOTTOM_SCREEN_HEIGHT - bottomScreenBottomBarHeight);
} }
screen_set_base_alpha(0xFF);
float bottomScreenTopBarX = (BOTTOM_SCREEN_WIDTH - bottomScreenTopBarWidth) / 2; float bottomScreenTopBarX = (BOTTOM_SCREEN_WIDTH - bottomScreenTopBarWidth) / 2;
float bottomScreenTopBarY = 0; float bottomScreenTopBarY = 0;
screen_draw_texture(TEXTURE_BOTTOM_SCREEN_TOP_BAR, bottomScreenTopBarX, bottomScreenTopBarY, bottomScreenTopBarWidth, bottomScreenTopBarHeight); screen_draw_texture(TEXTURE_BOTTOM_SCREEN_TOP_BAR, bottomScreenTopBarX, bottomScreenTopBarY, bottomScreenTopBarWidth, bottomScreenTopBarHeight);
@ -287,6 +300,8 @@ static void ui_draw_bottom(ui_view* ui) {
screen_draw_texture(TEXTURE_BOTTOM_SCREEN_BOTTOM_BAR, bottomScreenBottomBarX, bottomScreenBottomBarY, bottomScreenBottomBarWidth, 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); screen_draw_texture(TEXTURE_BOTTOM_SCREEN_BOTTOM_BAR_SHADOW, bottomScreenBottomBarX, bottomScreenBottomBarY - bottomScreenBottomBarShadowHeight, bottomScreenBottomBarShadowWidth, bottomScreenBottomBarShadowHeight);
screen_set_base_alpha(ui_fade_in_alpha);
if(ui->name != NULL) { if(ui->name != NULL) {
float nameWidth; float nameWidth;
float nameHeight; float nameHeight;
@ -300,6 +315,8 @@ static void ui_draw_bottom(ui_view* ui) {
screen_get_string_size(&infoWidth, &infoHeight, ui->info, 0.5f, 0.5f); 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); screen_draw_string(ui->info, (BOTTOM_SCREEN_WIDTH - infoWidth) / 2, BOTTOM_SCREEN_HEIGHT - (bottomScreenBottomBarHeight + infoHeight) / 2, 0.5f, 0.5f, COLOR_TEXT, true);
} }
screen_set_base_alpha(0xFF);
} }
bool ui_update() { bool ui_update() {
@ -326,6 +343,13 @@ bool ui_update() {
screen_end_frame(); screen_end_frame();
} }
u64 time = osGetTime();
if(!envIsHomebrew() && time - ui_fade_begin_time < 500) {
ui_fade_in_alpha = (u8) (((time - ui_fade_begin_time) / 500.0f) * 0xFF);
} else {
ui_fade_in_alpha = 0xFF;
}
return ui != NULL; return ui != NULL;
} }