mirror of
https://github.com/libretro/RetroArch
synced 2025-02-07 03:40:24 +00:00
ozone: add a no thumbnail available icon
This commit is contained in:
parent
57dd10b5eb
commit
adb8714105
@ -4802,6 +4802,10 @@ MSG_HASH(
|
|||||||
MSG_SCREENSHOT_SAVED,
|
MSG_SCREENSHOT_SAVED,
|
||||||
"Screenshot saved"
|
"Screenshot saved"
|
||||||
)
|
)
|
||||||
|
MSG_HASH(
|
||||||
|
MSG_NO_THUMBNAIL_AVAILABLE,
|
||||||
|
"No thumbnail available"
|
||||||
|
)
|
||||||
MSG_HASH(
|
MSG_HASH(
|
||||||
MSG_PRESS_AGAIN_TO_QUIT,
|
MSG_PRESS_AGAIN_TO_QUIT,
|
||||||
"Press again to quit..."
|
"Press again to quit..."
|
||||||
|
@ -54,7 +54,7 @@ typedef struct ozone_handle ozone_handle_t;
|
|||||||
#define SIDEBAR_Y_PADDING 20
|
#define SIDEBAR_Y_PADDING 20
|
||||||
#define SIDEBAR_ENTRY_HEIGHT 50
|
#define SIDEBAR_ENTRY_HEIGHT 50
|
||||||
#define SIDEBAR_ENTRY_Y_PADDING 10
|
#define SIDEBAR_ENTRY_Y_PADDING 10
|
||||||
#define SIDEBAR_ENTRY_ICON_SIZE 40
|
#define SIDEBAR_ENTRY_ICON_SIZE 46
|
||||||
#define SIDEBAR_ENTRY_ICON_PADDING 15
|
#define SIDEBAR_ENTRY_ICON_PADDING 15
|
||||||
|
|
||||||
#define CURSOR_SIZE 64
|
#define CURSOR_SIZE 64
|
||||||
|
@ -605,8 +605,44 @@ icons_iterate:
|
|||||||
font_driver_flush(video_info->width, video_info->height, ozone->fonts.entries_sublabel, video_info);
|
font_driver_flush(video_info->width, video_info->height, ozone->fonts.entries_sublabel, video_info);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void ozone_draw_no_thumbnail_available(ozone_handle_t *ozone,
|
||||||
|
video_frame_info_t *video_info,
|
||||||
|
unsigned x_position,
|
||||||
|
unsigned sidebar_width,
|
||||||
|
unsigned y_offset)
|
||||||
|
{
|
||||||
|
unsigned icon = OZONE_ENTRIES_ICONS_TEXTURE_CORE_INFO;
|
||||||
|
unsigned icon_size = (unsigned)((float)ozone->dimensions.sidebar_entry_icon_size * 1.5f);
|
||||||
|
unsigned text_height = font_driver_get_line_height(ozone->fonts.footer, 1.0f);
|
||||||
|
|
||||||
|
menu_display_blend_begin(video_info);
|
||||||
|
ozone_draw_icon(video_info,
|
||||||
|
icon_size,
|
||||||
|
icon_size,
|
||||||
|
ozone->icons_textures[icon],
|
||||||
|
x_position + sidebar_width/2 - icon_size/2,
|
||||||
|
video_info->height / 2 - icon_size/2 - y_offset,
|
||||||
|
video_info->width,
|
||||||
|
video_info->height,
|
||||||
|
0, 1, ozone->theme->entries_icon);
|
||||||
|
menu_display_blend_end(video_info);
|
||||||
|
|
||||||
|
ozone_draw_text(video_info,
|
||||||
|
ozone,
|
||||||
|
msg_hash_to_str(MSG_NO_THUMBNAIL_AVAILABLE),
|
||||||
|
x_position + sidebar_width/2,
|
||||||
|
video_info->height / 2 - icon_size/2 + text_height * 3 + FONT_SIZE_FOOTER - y_offset,
|
||||||
|
TEXT_ALIGN_CENTER,
|
||||||
|
video_info->width, video_info->height,
|
||||||
|
ozone->fonts.footer,
|
||||||
|
ozone->theme->text_rgba,
|
||||||
|
true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
void ozone_draw_thumbnail_bar(ozone_handle_t *ozone, video_frame_info_t *video_info)
|
void ozone_draw_thumbnail_bar(ozone_handle_t *ozone, video_frame_info_t *video_info)
|
||||||
{
|
{
|
||||||
|
settings_t *settings = config_get_ptr();
|
||||||
unsigned sidebar_height = video_info->height - ozone->dimensions.header_height - 55 - ozone->dimensions.footer_height;
|
unsigned sidebar_height = video_info->height - ozone->dimensions.header_height - 55 - ozone->dimensions.footer_height;
|
||||||
unsigned sidebar_width = ozone->dimensions.thumbnail_bar_width;
|
unsigned sidebar_width = ozone->dimensions.thumbnail_bar_width;
|
||||||
unsigned x_position = video_info->width - (unsigned) ozone->animations.thumbnail_bar_position;
|
unsigned x_position = video_info->width - (unsigned) ozone->animations.thumbnail_bar_position;
|
||||||
@ -630,6 +666,16 @@ void ozone_draw_thumbnail_bar(ozone_handle_t *ozone, video_frame_info_t *video_i
|
|||||||
!string_is_equal(ozone_thumbnails_ident('L'),
|
!string_is_equal(ozone_thumbnails_ident('L'),
|
||||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_OFF));
|
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_OFF));
|
||||||
|
|
||||||
|
/* If user requested "left" thumbnail instead of content metadata
|
||||||
|
* and no thumbnails are available, show a centered message and
|
||||||
|
* return immediately */
|
||||||
|
if (!thumbnail && !left_thumbnail && settings->uints.menu_left_thumbnails != 0)
|
||||||
|
{
|
||||||
|
ozone_draw_no_thumbnail_available(ozone, video_info, x_position, sidebar_width, 0);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Top row : thumbnail or no thumbnail available message */
|
||||||
if (thumbnail)
|
if (thumbnail)
|
||||||
{
|
{
|
||||||
unsigned thumb_x_position = x_position + sidebar_width/2 - (ozone->dimensions.thumbnail_width + ozone->dimensions.sidebar_entry_icon_padding) / 2;
|
unsigned thumb_x_position = x_position + sidebar_width/2 - (ozone->dimensions.thumbnail_width + ozone->dimensions.sidebar_entry_icon_padding) / 2;
|
||||||
@ -648,7 +694,13 @@ void ozone_draw_thumbnail_bar(ozone_handle_t *ozone, video_frame_info_t *video_i
|
|||||||
ozone_pure_white
|
ozone_pure_white
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ozone_draw_no_thumbnail_available(ozone, video_info, x_position, sidebar_width,
|
||||||
|
ozone->dimensions.thumbnail_height / 2 + ozone->dimensions.sidebar_entry_icon_padding/2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Bottom row : "left" thumbnail or content metadata */
|
||||||
if (left_thumbnail)
|
if (left_thumbnail)
|
||||||
{
|
{
|
||||||
unsigned thumb_x_position = x_position + sidebar_width/2 - (ozone->dimensions.left_thumbnail_width + ozone->dimensions.sidebar_entry_icon_padding) / 2;
|
unsigned thumb_x_position = x_position + sidebar_width/2 - (ozone->dimensions.left_thumbnail_width + ozone->dimensions.sidebar_entry_icon_padding) / 2;
|
||||||
|
@ -376,7 +376,7 @@ void ozone_sidebar_update_collapse(ozone_handle_t *ozone, bool allow_animation)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
//Show it
|
//Show it
|
||||||
else if (ozone->cursor_in_sidebar)
|
else if (ozone->cursor_in_sidebar || (!is_playlist && !settings->bools.ozone_collapse_sidebar))
|
||||||
{
|
{
|
||||||
if (allow_animation)
|
if (allow_animation)
|
||||||
{
|
{
|
||||||
|
@ -347,6 +347,7 @@ enum msg_hash_enums
|
|||||||
MSG_MOVIE_PLAYBACK_ENDED,
|
MSG_MOVIE_PLAYBACK_ENDED,
|
||||||
MSG_TAKING_SCREENSHOT,
|
MSG_TAKING_SCREENSHOT,
|
||||||
MSG_SCREENSHOT_SAVED,
|
MSG_SCREENSHOT_SAVED,
|
||||||
|
MSG_NO_THUMBNAIL_AVAILABLE,
|
||||||
MSG_PRESS_AGAIN_TO_QUIT,
|
MSG_PRESS_AGAIN_TO_QUIT,
|
||||||
MSG_WIFI_SCAN_COMPLETE,
|
MSG_WIFI_SCAN_COMPLETE,
|
||||||
MSG_SCANNING_WIRELESS_NETWORKS,
|
MSG_SCANNING_WIRELESS_NETWORKS,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user