ozone: add missing assets message

This commit is contained in:
natinusala 2018-11-09 17:00:44 +01:00
parent 20a8e1b40f
commit 5406e19c3e
3 changed files with 41 additions and 15 deletions

View File

@ -568,7 +568,7 @@ typedef struct ozone_handle
bool want_horizontal_animation; bool want_horizontal_animation;
char *pending_message; char *pending_message;
bool has_assets; bool has_all_assets;
} ozone_handle_t; } ozone_handle_t;
/* If you change this struct, also /* If you change this struct, also
@ -1347,11 +1347,12 @@ static void ozone_unload_theme_textures(ozone_handle_t *ozone)
} }
} }
static void ozone_reset_theme_textures(ozone_handle_t *ozone) static bool ozone_reset_theme_textures(ozone_handle_t *ozone)
{ {
int i; int i;
int j; int j;
char theme_path[255]; char theme_path[255];
bool result = true;
for (j = 0; j < ozone_themes_count; j++) for (j = 0; j < ozone_themes_count; j++)
{ {
@ -1370,10 +1371,12 @@ static void ozone_reset_theme_textures(ozone_handle_t *ozone)
strlcpy(filename, OZONE_THEME_TEXTURES_FILES[i], sizeof(filename)); strlcpy(filename, OZONE_THEME_TEXTURES_FILES[i], sizeof(filename));
strlcat(filename, ".png", sizeof(filename)); strlcat(filename, ".png", sizeof(filename));
menu_display_reset_textures_list(filename, theme_path, &theme->textures[i], TEXTURE_FILTER_MIPMAP_LINEAR); if (!menu_display_reset_textures_list(filename, theme_path, &theme->textures[i], TEXTURE_FILTER_MIPMAP_LINEAR))
result = false;
} }
} }
return result;
} }
static void ozone_set_color_theme(ozone_handle_t *ozone, unsigned color_theme) static void ozone_set_color_theme(ozone_handle_t *ozone, unsigned color_theme)
@ -1598,6 +1601,8 @@ static void ozone_context_reset(void *data, bool is_threaded)
if (ozone) if (ozone)
{ {
ozone->has_all_assets = true;
/* Fonts init */ /* Fonts init */
unsigned i; unsigned i;
unsigned size; unsigned size;
@ -1613,6 +1618,18 @@ static void ozone_context_reset(void *data, bool is_threaded)
fill_pathname_join(font_path, ozone->assets_path, "bold.ttf", sizeof(font_path)); fill_pathname_join(font_path, ozone->assets_path, "bold.ttf", sizeof(font_path));
ozone->fonts.title = menu_display_font_file(font_path, FONT_SIZE_TITLE, is_threaded); ozone->fonts.title = menu_display_font_file(font_path, FONT_SIZE_TITLE, is_threaded);
if (
!ozone->fonts.footer ||
!ozone->fonts.entries_label ||
!ozone->fonts.entries_sublabel ||
!ozone->fonts.time ||
!ozone->fonts.sidebar ||
!ozone->fonts.title
)
{
ozone->has_all_assets = false;
}
/* Naive font size */ /* Naive font size */
ozone->title_font_glyph_width = FONT_SIZE_TITLE * 3/4; ozone->title_font_glyph_width = FONT_SIZE_TITLE * 3/4;
ozone->entry_font_glyph_width = FONT_SIZE_ENTRIES_LABEL * 3/4; ozone->entry_font_glyph_width = FONT_SIZE_ENTRIES_LABEL * 3/4;
@ -1629,8 +1646,6 @@ static void ozone_context_reset(void *data, bool is_threaded)
if (size) if (size)
ozone->sublabel_font_glyph_width = size; ozone->sublabel_font_glyph_width = size;
ozone->has_assets = filestream_exists(ozone->png_path);
/* Textures init */ /* Textures init */
for (i = 0; i < OZONE_TEXTURE_LAST; i++) for (i = 0; i < OZONE_TEXTURE_LAST; i++)
{ {
@ -1638,7 +1653,8 @@ static void ozone_context_reset(void *data, bool is_threaded)
strlcpy(filename, OZONE_TEXTURES_FILES[i], sizeof(filename)); strlcpy(filename, OZONE_TEXTURES_FILES[i], sizeof(filename));
strlcat(filename, ".png", sizeof(filename)); strlcat(filename, ".png", sizeof(filename));
menu_display_reset_textures_list(filename, ozone->png_path, &ozone->textures[i], TEXTURE_FILTER_MIPMAP_LINEAR); if (!menu_display_reset_textures_list(filename, ozone->png_path, &ozone->textures[i], TEXTURE_FILTER_MIPMAP_LINEAR))
ozone->has_all_assets = false;
} }
/* Sidebar textures */ /* Sidebar textures */
@ -1648,15 +1664,18 @@ static void ozone_context_reset(void *data, bool is_threaded)
strlcpy(filename, OZONE_TAB_TEXTURES_FILES[i], sizeof(filename)); strlcpy(filename, OZONE_TAB_TEXTURES_FILES[i], sizeof(filename));
strlcat(filename, ".png", sizeof(filename)); strlcat(filename, ".png", sizeof(filename));
menu_display_reset_textures_list(filename, ozone->tab_path, &ozone->tab_textures[i], TEXTURE_FILTER_MIPMAP_LINEAR); if (!menu_display_reset_textures_list(filename, ozone->tab_path, &ozone->tab_textures[i], TEXTURE_FILTER_MIPMAP_LINEAR))
ozone->has_all_assets = false;
} }
/* Theme textures */ /* Theme textures */
ozone_reset_theme_textures(ozone); if (!ozone_reset_theme_textures(ozone))
ozone->has_all_assets = false;
/* Icons textures init */ /* Icons textures init */
for (i = 0; i < OZONE_ENTRIES_ICONS_TEXTURE_LAST; i++) for (i = 0; i < OZONE_ENTRIES_ICONS_TEXTURE_LAST; i++)
menu_display_reset_textures_list(ozone_entries_icon_texture_path(ozone, i), ozone->icons_path, &ozone->icons_textures[i], TEXTURE_FILTER_MIPMAP_LINEAR); if (!menu_display_reset_textures_list(ozone_entries_icon_texture_path(ozone, i), ozone->icons_path, &ozone->icons_textures[i], TEXTURE_FILTER_MIPMAP_LINEAR))
ozone->has_all_assets = false;
menu_display_allocate_white_texture(); menu_display_allocate_white_texture();
@ -1671,6 +1690,11 @@ static void ozone_context_reset(void *data, bool is_threaded)
ozone->animations.cursor_alpha = 1.0f; ozone->animations.cursor_alpha = 1.0f;
ozone->animations.scroll_y = 0.0f; ozone->animations.scroll_y = 0.0f;
ozone->animations.list_alpha = 1.0f; ozone->animations.list_alpha = 1.0f;
/* Missing assets message */
/* TODO Localize */
if (!ozone->has_all_assets)
runloop_msg_queue_push("Some assets are missing - please update them", 1, 256, false);
} }
} }
@ -2459,7 +2483,7 @@ static void ozone_draw_cursor(ozone_handle_t *ozone,
unsigned entry_width, unsigned entry_width,
size_t y, float alpha) size_t y, float alpha)
{ {
if (ozone->has_assets) if (ozone->has_all_assets)
ozone_draw_cursor_slice(ozone, video_info, x_offset, entry_width, y, alpha); ozone_draw_cursor_slice(ozone, video_info, x_offset, entry_width, y, alpha);
else else
ozone_draw_cursor_fallback(ozone, video_info, x_offset, entry_width, y, alpha); ozone_draw_cursor_fallback(ozone, video_info, x_offset, entry_width, y, alpha);
@ -2895,7 +2919,7 @@ static void ozone_draw_messagebox(ozone_handle_t *ozone,
menu_display_blend_begin(video_info); menu_display_blend_begin(video_info);
if (ozone->has_assets) /* avoid drawing a black box if there's no assets */ if (ozone->has_all_assets) /* avoid drawing a black box if there's no assets */
menu_display_draw_texture_slice( menu_display_draw_texture_slice(
video_info, video_info,
x - longest_width/2 - 48, x - longest_width/2 - 48,

View File

@ -1604,7 +1604,7 @@ void menu_display_draw_text(
video_driver_set_osd_msg(text, &params, (void*)font); video_driver_set_osd_msg(text, &params, (void*)font);
} }
void menu_display_reset_textures_list( bool menu_display_reset_textures_list(
const char *texture_path, const char *iconpath, const char *texture_path, const char *iconpath,
uintptr_t *item, enum texture_filter_type filter_type) uintptr_t *item, enum texture_filter_type filter_type)
{ {
@ -1620,14 +1620,16 @@ void menu_display_reset_textures_list(
fill_pathname_join(texpath, iconpath, texture_path, sizeof(texpath)); fill_pathname_join(texpath, iconpath, texture_path, sizeof(texpath));
if (string_is_empty(texpath) || !filestream_exists(texpath)) if (string_is_empty(texpath) || !filestream_exists(texpath))
return; return false;
if (!image_texture_load(&ti, texpath)) if (!image_texture_load(&ti, texpath))
return; return false;
video_driver_texture_load(&ti, video_driver_texture_load(&ti,
filter_type, item); filter_type, item);
image_texture_free(&ti); image_texture_free(&ti);
return true;
} }
bool menu_driver_is_binding_state(void) bool menu_driver_is_binding_state(void)

View File

@ -820,7 +820,7 @@ font_data_t *menu_display_font(
font_data_t *menu_display_font_file(char* fontpath, float font_size, bool is_threaded); font_data_t *menu_display_font_file(char* fontpath, float font_size, bool is_threaded);
void menu_display_reset_textures_list( bool menu_display_reset_textures_list(
const char *texture_path, const char *texture_path,
const char *iconpath, const char *iconpath,
uintptr_t *item, uintptr_t *item,