/* RetroArch - A frontend for libretro. * Copyright (C) 2011-2016 - Daniel De Matteis * Copyright (C) 2014-2015 - Jean-AndrĂ© Santoni * * RetroArch is free software: you can redistribute it and/or modify it under the terms * of the GNU General Public License as published by the Free Software Found- * ation, either version 3 of the License, or (at your option) any later version. * * RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with RetroArch. * If not, see . */ #include #include #include #include #include #include #include #include #include #include #include #include #include "menu_generic.h" #include "../menu_driver.h" #include "../menu_entry.h" #include "../menu_animation.h" #include "../menu_display.h" #include "../menu_hash.h" #include "../menu_display.h" #include "../menu_navigation.h" #include "../menu_cbs.h" #include "../../frontend/frontend_driver.h" #include "../../verbosity.h" #include "../../configuration.h" #include "../../retroarch.h" #include "../../system.h" #include "../../tasks/tasks_internal.h" #if 0 #define XMB_RIBBON_ENABLE #define XMB_RIBBON_ROWS 16 #define XMB_RIBBON_COLS 32 #define XMB_RIBBON_VERTICES 2*XMB_RIBBON_COLS*XMB_RIBBON_ROWS-2*XMB_RIBBON_COLS #endif #ifndef XMB_DELAY #define XMB_DELAY 10 #endif #define XMB_ABOVE_OFFSET_SUBITEM 1.5 #define XMB_ABOVE_OFFSET_ITEM -1.0 #define XMB_ITEM_ACTIVE_FACTOR 3.0 #define XMB_UNDER_OFFSET_ITEM 5.0 #define XMB_CATEGORIES_ACTIVE_ZOOM 1.0 #define XMB_CATEGORIES_PASSIVE_ZOOM 0.5 #define XMB_ITEM_ACTIVE_ZOOM 1.0 #define XMB_ITEM_PASSIVE_ZOOM 0.5 #define XMB_CATEGORIES_ACTIVE_ALPHA 1.0 #define XMB_CATEGORIES_PASSIVE_ALPHA 0.5 #define XMB_ITEM_ACTIVE_ALPHA 1.0 #define XMB_ITEM_PASSIVE_ALPHA 0.5 typedef struct { float alpha; float label_alpha; float zoom; float x; float y; uintptr_t icon; uintptr_t content_icon; } xmb_node_t; enum { XMB_TEXTURE_MAIN_MENU = 0, XMB_TEXTURE_SETTINGS, XMB_TEXTURE_HISTORY, XMB_TEXTURE_SETTING, XMB_TEXTURE_SUBSETTING, XMB_TEXTURE_ARROW, XMB_TEXTURE_RUN, XMB_TEXTURE_CLOSE, XMB_TEXTURE_RESUME, XMB_TEXTURE_SAVESTATE, XMB_TEXTURE_LOADSTATE, XMB_TEXTURE_CORE_INFO, XMB_TEXTURE_CORE_OPTIONS, XMB_TEXTURE_INPUT_REMAPPING_OPTIONS, XMB_TEXTURE_CHEAT_OPTIONS, XMB_TEXTURE_DISK_OPTIONS, XMB_TEXTURE_SHADER_OPTIONS, XMB_TEXTURE_ACHIEVEMENT_LIST, XMB_TEXTURE_SCREENSHOT, XMB_TEXTURE_RELOAD, XMB_TEXTURE_FILE, XMB_TEXTURE_FOLDER, XMB_TEXTURE_ZIP, XMB_TEXTURE_MUSIC, XMB_TEXTURE_IMAGE, XMB_TEXTURE_MOVIE, XMB_TEXTURE_CORE, XMB_TEXTURE_RDB, XMB_TEXTURE_CURSOR, XMB_TEXTURE_SWITCH_ON, XMB_TEXTURE_SWITCH_OFF, XMB_TEXTURE_CLOCK, XMB_TEXTURE_POINTER, XMB_TEXTURE_ADD, XMB_TEXTURE_LAST }; enum { XMB_SYSTEM_TAB_MAIN = 0, XMB_SYSTEM_TAB_SETTINGS, XMB_SYSTEM_TAB_HISTORY, XMB_SYSTEM_TAB_ADD }; #ifdef HAVE_LIBRETRODB #define XMB_SYSTEM_TAB_END XMB_SYSTEM_TAB_ADD #else #define XMB_SYSTEM_TAB_END XMB_SYSTEM_TAB_HISTORY #endif typedef struct xmb_handle { file_list_t *menu_stack_old; file_list_t *selection_buf_old; file_list_t *horizontal_list; size_t selection_ptr_old; int depth; int old_depth; char box_message[PATH_MAX_LENGTH]; float x; float alpha; uintptr_t thumbnail; float thumbnail_width; float thumbnail_height; char background_file_path[PATH_MAX_LENGTH]; char thumbnail_file_path[PATH_MAX_LENGTH]; struct { struct { float left; float top; } screen; struct { float left; } setting; struct { float left; float top; float bottom; } title; struct { float left; float top; } label; } margins; char title_name[256]; struct { struct { float alpha; } arrow; menu_texture_item bg; menu_texture_item list[XMB_TEXTURE_LAST]; } textures; struct { struct { float horizontal; float vertical; } spacing; char dir[4]; int size; } icon; struct { int size; } cursor; struct { struct { unsigned idx; unsigned idx_old; } active; float x_pos; size_t selection_ptr_old; size_t selection_ptr; } categories; xmb_node_t main_menu_node; xmb_node_t settings_tab_node; xmb_node_t history_tab_node; xmb_node_t add_tab_node; gfx_font_raster_block_t raster_block; } xmb_handle_t; static const char *xmb_theme_ident(void) { settings_t *settings = config_get_ptr(); switch (settings->menu.xmb_theme) { case 1: return "flatui"; case 2: return "retroactive"; case 3: return "custom"; case 0: default: break; } return "monochrome"; } static const char *xmb_thumbnails_ident(void) { settings_t *settings = config_get_ptr(); switch (settings->menu.thumbnails) { case 1: return "Named_Snaps"; case 2: return "Named_Titles"; case 3: return "Named_Boxarts"; case 0: default: break; } return "OFF"; } static void xmb_fill_default_background_path(xmb_handle_t *xmb, char *path, size_t size) { char mediapath[PATH_MAX_LENGTH] = {0}; char themepath[PATH_MAX_LENGTH] = {0}; char iconpath[PATH_MAX_LENGTH] = {0}; settings_t *settings = config_get_ptr(); strlcpy(xmb->icon.dir, "png", sizeof(xmb->icon.dir)); fill_pathname_join(mediapath, settings->assets_directory, "xmb", sizeof(mediapath)); fill_pathname_join(themepath, mediapath, xmb_theme_ident(), sizeof(themepath)); fill_pathname_join(iconpath, themepath, xmb->icon.dir, sizeof(iconpath)); fill_pathname_slash(iconpath, sizeof(iconpath)); fill_pathname_join(path, iconpath, "bg.png", size); if (*settings->menu.wallpaper) strlcpy(path, settings->menu.wallpaper, size); } static size_t xmb_list_get_selection(void *data) { xmb_handle_t *xmb = (xmb_handle_t*)data; if (!xmb) return 0; return xmb->categories.selection_ptr; } static size_t xmb_list_get_size(void *data, enum menu_list_type type) { xmb_handle_t *xmb = (xmb_handle_t*)data; switch (type) { case MENU_LIST_PLAIN: return menu_entries_get_stack_size(0); case MENU_LIST_HORIZONTAL: if (xmb && xmb->horizontal_list) return file_list_get_size(xmb->horizontal_list); break; case MENU_LIST_TABS: return XMB_SYSTEM_TAB_END; } return 0; } static void *xmb_list_get_entry(void *data, enum menu_list_type type, unsigned i) { void *ptr = NULL; size_t list_size = 0; xmb_handle_t *xmb = (xmb_handle_t*)data; file_list_t *menu_stack = menu_entries_get_menu_stack_ptr(0); switch (type) { case MENU_LIST_PLAIN: list_size = menu_entries_get_stack_size(0); if (i < list_size) ptr = (void*)&menu_stack->list[i]; break; case MENU_LIST_HORIZONTAL: if (xmb && xmb->horizontal_list) list_size = file_list_get_size(xmb->horizontal_list); if (i < list_size) ptr = (void*)&xmb->horizontal_list->list[i]; break; default: break; } return ptr; } static float xmb_item_y(xmb_handle_t *xmb, int i, size_t current) { float iy = xmb->icon.spacing.vertical; if (i < (int)current) if (xmb->depth > 1) iy *= (i - (int)current + XMB_ABOVE_OFFSET_SUBITEM); else iy *= (i - (int)current + XMB_ABOVE_OFFSET_ITEM); else iy *= (i - (int)current + XMB_UNDER_OFFSET_ITEM); if (i == (int)current) iy = xmb->icon.spacing.vertical * XMB_ITEM_ACTIVE_FACTOR; return iy; } static void xmb_draw_icon_predone(xmb_handle_t *xmb, math_matrix_4x4 *mymat, uintptr_t texture, float x, float y, unsigned width, unsigned height, float alpha, float rotation, float scale_factor, float *color) { menu_display_ctx_draw_t draw; struct gfx_coords coords; float shadow[16]; unsigned i; settings_t *settings = config_get_ptr(); if ( x < -xmb->icon.size/2 || x > width || y < xmb->icon.size/2 || y > height + xmb->icon.size) return; coords.vertices = 4; coords.vertex = NULL; coords.tex_coord = NULL; coords.lut_tex_coord = NULL; draw.width = xmb->icon.size; draw.height = xmb->icon.size; draw.coords = &coords; draw.matrix_data = mymat; draw.texture = texture; draw.prim_type = MENU_DISPLAY_PRIM_TRIANGLESTRIP; if (settings->menu.xmb_shadows) { for (i = 0; i < 16; i++) shadow[i] = 0; shadow[3] = shadow[7] = shadow[11] = shadow[15] = color[3]/4; coords.color = shadow; draw.x = x + 2; draw.y = height - y - 2; menu_display_ctl(MENU_DISPLAY_CTL_DRAW, &draw); } coords.color = (const float*)color; draw.x = x; draw.y = height - y; menu_display_ctl(MENU_DISPLAY_CTL_DRAW, &draw); } static void xmb_draw_icon(xmb_handle_t *xmb, uintptr_t texture, float x, float y, unsigned width, unsigned height, float rotation, float scale_factor, float *color) { menu_display_ctx_rotate_draw_t rotate_draw; math_matrix_4x4 mymat; if ( x < -xmb->icon.size/2 || x > width || y < xmb->icon.size/2 || y > height + xmb->icon.size) return; rotate_draw.matrix = &mymat; rotate_draw.rotation = rotation; rotate_draw.scale_x = scale_factor; rotate_draw.scale_y = scale_factor; rotate_draw.scale_z = 1; rotate_draw.scale_enable = true; menu_display_ctl(MENU_DISPLAY_CTL_ROTATE_Z, &rotate_draw); xmb_draw_icon_predone(xmb, &mymat, texture, x, y, width, height, 1.0, rotation, scale_factor, color); } static void xmb_draw_thumbnail(xmb_handle_t *xmb, float *color, unsigned width, unsigned height) { menu_display_ctx_rotate_draw_t rotate_draw; menu_display_ctx_draw_t draw; struct gfx_coords coords; math_matrix_4x4 mymat; float y = xmb->margins.screen.top + xmb->icon.size + xmb->thumbnail_height; float x = xmb->margins.screen.left + xmb->icon.spacing.horizontal + xmb->icon.spacing.horizontal*4 - xmb->icon.size / 4; rotate_draw.matrix = &mymat; rotate_draw.rotation = 0; rotate_draw.scale_x = 1; rotate_draw.scale_y = 1; rotate_draw.scale_z = 1; rotate_draw.scale_enable = true; menu_display_ctl(MENU_DISPLAY_CTL_ROTATE_Z, &rotate_draw); coords.vertices = 4; coords.vertex = NULL; coords.tex_coord = NULL; coords.lut_tex_coord = NULL; coords.color = (const float*)color; draw.x = x; draw.y = height - y; draw.width = xmb->thumbnail_width; draw.height = xmb->thumbnail_height; draw.coords = &coords; draw.matrix_data = &mymat; draw.texture = xmb->thumbnail; draw.prim_type = MENU_DISPLAY_PRIM_TRIANGLESTRIP; menu_display_ctl(MENU_DISPLAY_CTL_DRAW, &draw); } static void xmb_draw_text(xmb_handle_t *xmb, const char *str, float x, float y, float scale_factor, float alpha, enum text_alignment text_align, unsigned width, unsigned height) { settings_t *settings = config_get_ptr(); struct font_params params; uint8_t a8 = 0; if (alpha > xmb->alpha) alpha = xmb->alpha; a8 = 255 * alpha; if (a8 == 0) return; if (x < -xmb->icon.size || x > width + xmb->icon.size || y < -xmb->icon.size || y > height + xmb->icon.size) return; params.x = x; params.y = y; params.scale = scale_factor; params.drop_mod = 0.0f; params.drop_x = 0.0f; params.drop_y = 0.0f; params.color = FONT_COLOR_RGBA(255, 255, 255, a8); params.full_screen = true; params.text_align = text_align; if (settings->menu.xmb_shadows) { params.drop_x = 2.0f; params.drop_y = -2.0f; params.drop_alpha = 0.25f; } menu_display_draw_text(str, width, height, ¶ms); } static void xmb_messagebox(void *data, const char *message) { xmb_handle_t *xmb = (xmb_handle_t*)data; if (!xmb || !message || !*message) return; strlcpy(xmb->box_message, message, sizeof(xmb->box_message)); } static void xmb_render_messagebox_internal( xmb_handle_t *xmb, const char *message) { int x, y, font_size; unsigned i; unsigned width, height; struct string_list *list = NULL; if (!xmb) return; video_driver_get_size(&width, &height); list = string_split(message, "\n"); if (!list) return; if (list->elems == 0) goto end; menu_display_ctl(MENU_DISPLAY_CTL_FONT_SIZE, &font_size); x = width / 2 - strlen(list->elems[0].data) * font_size / 4; y = height / 2 - list->size * font_size / 2; for (i = 0; i < list->size; i++) { const char *msg = list->elems[i].data; if (msg) xmb_draw_text( xmb, msg, x, y + i * font_size, 1, 1, TEXT_ALIGN_LEFT, width, height); } end: string_list_free(list); } static void xmb_update_thumbnail_path(xmb_handle_t *xmb, unsigned i) { menu_entry_t entry; settings_t *settings = config_get_ptr(); char *tmp = NULL; menu_entry_get(&entry, 0, i, NULL, true); fill_pathname_join(xmb->thumbnail_file_path, settings->thumbnails_directory, xmb->title_name, sizeof(xmb->thumbnail_file_path)); fill_pathname_join(xmb->thumbnail_file_path, xmb->thumbnail_file_path, xmb_thumbnails_ident(), sizeof(xmb->thumbnail_file_path)); tmp = string_replace_substring(entry.path, "/", "-"); if (tmp) { fill_pathname_join(xmb->thumbnail_file_path, xmb->thumbnail_file_path, tmp, sizeof(xmb->thumbnail_file_path)); free(tmp); } strlcat(xmb->thumbnail_file_path, ".png", sizeof(xmb->thumbnail_file_path)); } static void menu_display_handle_thumbnail_upload(void *task_data, void *user_data, const char *err) { menu_ctx_load_image_t load_image_info; struct texture_image *img = (struct texture_image*)task_data; load_image_info.data = img; load_image_info.type = MENU_IMAGE_THUMBNAIL; menu_driver_ctl(RARCH_MENU_CTL_LOAD_IMAGE, &load_image_info); video_texture_image_free(img); free(img); } static void xmb_update_thumbnail_image(xmb_handle_t *xmb) { if (path_file_exists(xmb->thumbnail_file_path)) rarch_task_push_image_load(xmb->thumbnail_file_path, "cb_menu_thumbnail", menu_display_handle_thumbnail_upload, NULL); else if (xmb->depth == 1) xmb->thumbnail = 0; } static void xmb_selection_pointer_changed( xmb_handle_t *xmb, bool allow_animations) { size_t skip; unsigned i, end, height, depth; menu_animation_ctx_tag_t tag; size_t selection, num = 0; int threshold = 0; menu_list_t *menu_list = NULL; file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0); menu_entries_ctl(MENU_ENTRIES_CTL_LIST_GET, &menu_list); if (!xmb) return; if (!menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SELECTION, &selection)) return; end = menu_entries_get_end(); threshold = xmb->icon.size*10; video_driver_get_size(NULL, &height); tag.id = (uintptr_t)menu_list; menu_animation_ctl(MENU_ANIMATION_CTL_KILL_BY_TAG, &tag); menu_entries_ctl(MENU_ENTRIES_CTL_SET_START, &num); skip = 0; for (i = 0; i < end; i++) { float iy, real_iy; float ia = XMB_ITEM_PASSIVE_ALPHA; float iz = XMB_ITEM_PASSIVE_ZOOM; xmb_node_t *node = (xmb_node_t*) menu_entries_get_userdata_at_offset(selection_buf, i); if (!node) continue; iy = xmb_item_y(xmb, i, selection); real_iy = iy + xmb->margins.screen.top; if (i == selection) { ia = XMB_ITEM_ACTIVE_ALPHA; iz = XMB_ITEM_ACTIVE_ZOOM; depth = xmb_list_get_size(xmb, MENU_LIST_PLAIN); if (strcmp(xmb_thumbnails_ident(), "OFF") && depth == 1) { xmb_update_thumbnail_path(xmb, i); xmb_update_thumbnail_image(xmb); } } if (real_iy < -threshold) skip++; if ( (!allow_animations) || (real_iy < -threshold || real_iy > height+threshold)) { node->alpha = node->label_alpha = ia; node->y = iy; node->zoom = iz; } else { menu_animation_ctx_entry_t entry; entry.duration = XMB_DELAY; entry.target_value = ia; entry.subject = &node->alpha; entry.easing_enum = EASING_IN_OUT_QUAD; entry.tag = tag.id; entry.cb = NULL; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); entry.subject = &node->label_alpha; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); entry.target_value = iz; entry.subject = &node->zoom; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); entry.target_value = iy; entry.subject = &node->y; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); } } menu_entries_ctl(MENU_ENTRIES_CTL_SET_START, &skip); } static void xmb_list_open_old(xmb_handle_t *xmb, file_list_t *list, int dir, size_t current) { unsigned i, height = 0; int threshold = xmb->icon.size * 10; size_t end = 0; end = file_list_get_size(list); video_driver_get_size(NULL, &height); for (i = 0; i < end; i++) { float ia = 0; float real_y; xmb_node_t *node = (xmb_node_t*) menu_entries_get_userdata_at_offset(list, i); if (!node) continue; if (i == current) ia = XMB_ITEM_ACTIVE_ALPHA; if (dir == -1) ia = 0; real_y = node->y + xmb->margins.screen.top; if (real_y < -threshold || real_y > height+threshold) { node->alpha = ia; node->label_alpha = 0; node->x = xmb->icon.size * dir * -2; } else { menu_animation_ctx_entry_t entry; entry.duration = XMB_DELAY; entry.target_value = ia; entry.subject = &node->alpha; entry.easing_enum = EASING_IN_OUT_QUAD; entry.tag = -1; entry.cb = NULL; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); entry.target_value = 0; entry.subject = &node->label_alpha; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); entry.target_value = xmb->icon.size * dir * -2; entry.subject = &node->x; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); } } } static void xmb_list_open_new(xmb_handle_t *xmb, file_list_t *list, int dir, size_t current) { unsigned i, height; size_t skip = 0; int threshold = xmb->icon.size * 10; size_t end = file_list_get_size(list); video_driver_get_size(NULL, &height); for (i = 0; i < end; i++) { float ia; float real_y; xmb_node_t *node = (xmb_node_t*) menu_entries_get_userdata_at_offset(list, i); if (!node) continue; if (dir == 1 || (dir == -1 && i != current)) node->alpha = 0; if (dir == 1 || dir == -1) node->label_alpha = 0; node->x = xmb->icon.size * dir * 2; node->y = xmb_item_y(xmb, i, current); node->zoom = XMB_CATEGORIES_PASSIVE_ZOOM; real_y = node->y + xmb->margins.screen.top; if (i == current) node->zoom = XMB_CATEGORIES_ACTIVE_ZOOM; ia = XMB_ITEM_PASSIVE_ALPHA; if (i == current) ia = XMB_ITEM_ACTIVE_ALPHA; if (real_y < -threshold || real_y > height+threshold) { node->alpha = node->label_alpha = ia; node->x = 0; } else { menu_animation_ctx_entry_t entry; entry.duration = XMB_DELAY; entry.target_value = ia; entry.subject = &node->alpha; entry.easing_enum = EASING_IN_OUT_QUAD; entry.tag = -1; entry.cb = NULL; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); entry.subject = &node->label_alpha; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); entry.target_value = 0; entry.subject = &node->x; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); } } xmb->old_depth = xmb->depth; menu_entries_ctl(MENU_ENTRIES_CTL_SET_START, &skip); } static xmb_node_t *xmb_node_allocate_userdata(xmb_handle_t *xmb, unsigned i) { xmb_node_t *node = (xmb_node_t*)calloc(1, sizeof(xmb_node_t)); if (!node) { RARCH_ERR("XMB node could not be allocated.\n"); return NULL; } node->alpha = XMB_CATEGORIES_PASSIVE_ALPHA; node->zoom = XMB_CATEGORIES_PASSIVE_ZOOM; if ((i + XMB_SYSTEM_TAB_END) == xmb->categories.active.idx) { node->alpha = XMB_CATEGORIES_ACTIVE_ALPHA; node->zoom = XMB_CATEGORIES_ACTIVE_ZOOM; } file_list_free_actiondata(xmb->horizontal_list, i); file_list_set_actiondata(xmb->horizontal_list, i, node); return node; } static xmb_node_t* xmb_get_userdata_from_horizontal_list( xmb_handle_t *xmb, unsigned i) { return (xmb_node_t*) menu_entries_get_actiondata_at_offset(xmb->horizontal_list, i); } static void xmb_push_animations(xmb_node_t *node, float ia, float ix) { menu_animation_ctx_entry_t entry; entry.duration = XMB_DELAY; entry.target_value = ia; entry.subject = &node->alpha; entry.easing_enum = EASING_IN_OUT_QUAD; entry.tag = -1; entry.cb = NULL; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); entry.subject = &node->label_alpha; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); entry.target_value = ix; entry.subject = &node->x; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); } static void xmb_list_switch_old(xmb_handle_t *xmb, file_list_t *list, int dir, size_t current) { unsigned i; size_t end = file_list_get_size(list); for (i = 0; i < end; i++) { xmb_node_t *node = (xmb_node_t*) menu_entries_get_userdata_at_offset(list, i); float ia = 0; if (!node) continue; xmb_push_animations(node, ia, -xmb->icon.spacing.horizontal * dir); } } static void xmb_list_switch_new(xmb_handle_t *xmb, file_list_t *list, int dir, size_t current) { unsigned i; size_t end = 0; settings_t *settings = config_get_ptr(); if (settings->menu.dynamic_wallpaper_enable) { char path[PATH_MAX_LENGTH] = {0}; char *tmp = string_replace_substring(xmb->title_name, "/", " "); if (tmp) { fill_pathname_join(path, settings->dynamic_wallpapers_directory, tmp, sizeof(path)); path_remove_extension(path); free(tmp); } strlcat(path, ".png", sizeof(path)); if (!path_file_exists(path)) xmb_fill_default_background_path(xmb, path, sizeof(path)); if(!string_is_equal(path, xmb->background_file_path)) { if(path_file_exists(path)) { rarch_task_push_image_load(path, "cb_menu_wallpaper", menu_display_handle_wallpaper_upload, NULL); strlcpy(xmb->background_file_path, path, sizeof(xmb->background_file_path)); } } } end = file_list_get_size(list); for (i = 0; i < end; i++) { xmb_node_t *node = (xmb_node_t*) menu_entries_get_userdata_at_offset(list, i); float ia = 0.5; if (!node) continue; node->x = xmb->icon.spacing.horizontal * dir; node->alpha = 0; node->label_alpha = 0; if (i == current) ia = XMB_ITEM_ACTIVE_ALPHA; xmb_push_animations(node, ia, 0); } } static void xmb_set_title(xmb_handle_t *xmb) { if (xmb->categories.selection_ptr <= XMB_SYSTEM_TAB_END) { menu_entries_get_title(xmb->title_name, sizeof(xmb->title_name)); } else { const char *path = NULL; menu_entries_get_at_offset( xmb->horizontal_list, xmb->categories.selection_ptr - (XMB_SYSTEM_TAB_END + 1), &path, NULL, NULL, NULL, NULL); if (!path) return; strlcpy(xmb->title_name, path, sizeof(xmb->title_name)); path_remove_extension(xmb->title_name); } } static xmb_node_t* xmb_get_node(xmb_handle_t *xmb, unsigned i) { switch (i) { case XMB_SYSTEM_TAB_SETTINGS: return &xmb->settings_tab_node; case XMB_SYSTEM_TAB_HISTORY: return &xmb->history_tab_node; case XMB_SYSTEM_TAB_ADD: return &xmb->add_tab_node; default: if (i > XMB_SYSTEM_TAB_END) return xmb_get_userdata_from_horizontal_list( xmb, i - (XMB_SYSTEM_TAB_END + 1)); } return &xmb->main_menu_node; } static void xmb_list_switch_horizontal_list(xmb_handle_t *xmb) { unsigned j; size_t list_size = xmb_list_get_size(xmb, MENU_LIST_HORIZONTAL) + XMB_SYSTEM_TAB_END; for (j = 0; j <= list_size; j++) { menu_animation_ctx_entry_t entry; float ia = XMB_CATEGORIES_PASSIVE_ALPHA; float iz = XMB_CATEGORIES_PASSIVE_ZOOM; xmb_node_t *node = xmb_get_node(xmb, j); if (!node) continue; if (j == xmb->categories.active.idx) { ia = XMB_CATEGORIES_ACTIVE_ALPHA; iz = XMB_CATEGORIES_ACTIVE_ZOOM; } entry.duration = XMB_DELAY; entry.target_value = ia; entry.subject = &node->alpha; entry.easing_enum = EASING_IN_OUT_QUAD; entry.tag = -1; entry.cb = NULL; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); entry.target_value = iz; entry.subject = &node->zoom; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); } } static void xmb_list_switch(xmb_handle_t *xmb) { menu_animation_ctx_entry_t entry; size_t selection; int dir = -1; file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0); if (!menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SELECTION, &selection)) return; if (xmb->categories.selection_ptr > xmb->categories.selection_ptr_old) dir = 1; xmb->categories.active.idx += dir; xmb_list_switch_horizontal_list(xmb); entry.duration = XMB_DELAY; entry.target_value = xmb->icon.spacing.horizontal * -(float)xmb->categories.selection_ptr; entry.subject = &xmb->categories.x_pos; entry.easing_enum = EASING_IN_OUT_QUAD; entry.tag = -1; entry.cb = NULL; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); dir = -1; if (xmb->categories.selection_ptr > xmb->categories.selection_ptr_old) dir = 1; xmb_list_switch_old(xmb, xmb->selection_buf_old, dir, xmb->selection_ptr_old); xmb_list_switch_new(xmb, selection_buf, dir, selection); xmb->categories.active.idx_old = xmb->categories.selection_ptr; if (strcmp(xmb_thumbnails_ident(), "OFF")) { xmb_update_thumbnail_path(xmb, 0); xmb_update_thumbnail_image(xmb); } } static void xmb_list_open_horizontal_list(xmb_handle_t *xmb) { unsigned j; size_t list_size = xmb_list_get_size(xmb, MENU_LIST_HORIZONTAL) + XMB_SYSTEM_TAB_END; for (j = 0; j <= list_size; j++) { menu_animation_ctx_entry_t entry; float ia = 0; xmb_node_t *node = xmb_get_node(xmb, j); if (!node) continue; if (j == xmb->categories.active.idx) ia = XMB_CATEGORIES_ACTIVE_ALPHA; else if (xmb->depth <= 1) ia = XMB_CATEGORIES_PASSIVE_ALPHA; entry.duration = XMB_DELAY; entry.target_value = ia; entry.subject = &node->alpha; entry.easing_enum = EASING_IN_OUT_QUAD; entry.tag = -1; entry.cb = NULL; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); } } static void xmb_context_destroy_horizontal_list(xmb_handle_t *xmb) { unsigned i; size_t list_size = xmb_list_get_size(xmb, MENU_LIST_HORIZONTAL); for (i = 0; i < list_size; i++) { const char *path = NULL; xmb_node_t *node = xmb_get_userdata_from_horizontal_list(xmb, i); if (!node) continue; file_list_get_at_offset(xmb->horizontal_list, i, &path, NULL, NULL, NULL); if (!path || !strstr(path, ".lpl")) continue; video_driver_texture_unload(&node->icon); video_driver_texture_unload(&node->content_icon); } } static void xmb_init_horizontal_list(xmb_handle_t *xmb) { menu_displaylist_info_t info = {0}; settings_t *settings = config_get_ptr(); xmb->horizontal_list = (file_list_t*)calloc(1, sizeof(file_list_t)); if (!xmb->horizontal_list) return; info.list = xmb->horizontal_list; info.menu_list = NULL; info.type = 0; info.type_default = MENU_FILE_PLAIN; info.flags = SL_FLAG_ALLOW_EMPTY_LIST; strlcpy(info.label, menu_hash_to_str(MENU_LABEL_CONTENT_COLLECTION_LIST), sizeof(info.label)); strlcpy(info.path, settings->playlist_directory, sizeof(info.path)); strlcpy(info.exts, "lpl", sizeof(info.exts)); if (menu_displaylist_ctl(DISPLAYLIST_DATABASE_PLAYLISTS_HORIZONTAL, &info)) menu_displaylist_ctl(DISPLAYLIST_PROCESS, &info); } static void xmb_toggle_horizontal_list(xmb_handle_t *xmb) { unsigned i; size_t list_size = xmb_list_get_size(xmb, MENU_LIST_HORIZONTAL) + XMB_SYSTEM_TAB_END; for (i = 0; i <= list_size; i++) { xmb_node_t *node = xmb_get_node(xmb, i); if (!node) continue; node->alpha = 0; node->zoom = XMB_CATEGORIES_PASSIVE_ZOOM; if (i == xmb->categories.active.idx) { node->alpha = XMB_CATEGORIES_ACTIVE_ALPHA; node->zoom = XMB_CATEGORIES_ACTIVE_ZOOM; } else if (xmb->depth <= 1) node->alpha = XMB_CATEGORIES_PASSIVE_ALPHA; } } static void xmb_context_reset_horizontal_list( xmb_handle_t *xmb, const char *themepath) { unsigned i; int depth; /* keep this integer */ size_t list_size = xmb_list_get_size(xmb, MENU_LIST_HORIZONTAL); xmb->categories.x_pos = xmb->icon.spacing.horizontal * -(float)xmb->categories.selection_ptr; depth = (xmb->depth > 1) ? 2 : 1; xmb->x = xmb->icon.size * -(depth*2-2); for (i = 0; i < list_size; i++) { char iconpath[PATH_MAX_LENGTH] = {0}; char sysname[PATH_MAX_LENGTH] = {0}; char texturepath[PATH_MAX_LENGTH] = {0}; char content_texturepath[PATH_MAX_LENGTH] = {0}; struct texture_image ti = {0}; const char *path = NULL; xmb_node_t *node = xmb_get_userdata_from_horizontal_list(xmb, i); if (!node) { node = xmb_node_allocate_userdata(xmb, i); if (!node) continue; } file_list_get_at_offset(xmb->horizontal_list, i, &path, NULL, NULL, NULL); if (!path) continue; if (!strstr(path, ".lpl")) continue; strlcpy(sysname, path, sizeof(sysname)); path_remove_extension(sysname); fill_pathname_join(iconpath, themepath, xmb->icon.dir, sizeof(iconpath)); fill_pathname_slash(iconpath, sizeof(iconpath)); fill_pathname_join(texturepath, iconpath, sysname, sizeof(texturepath)); strlcat(texturepath, ".png", sizeof(texturepath)); fill_pathname_join(content_texturepath, iconpath, sysname, sizeof(content_texturepath)); strlcat(content_texturepath, "-content.png", sizeof(content_texturepath)); video_texture_image_load(&ti, texturepath); video_driver_texture_load(&ti, TEXTURE_FILTER_MIPMAP_LINEAR, &node->icon); video_texture_image_free(&ti); video_texture_image_load(&ti, content_texturepath); video_driver_texture_load(&ti, TEXTURE_FILTER_MIPMAP_LINEAR, &node->content_icon); video_texture_image_free(&ti); } xmb_toggle_horizontal_list(xmb); } static void xmb_refresh_horizontal_list(xmb_handle_t *xmb) { char mediapath[PATH_MAX_LENGTH] = {0}; char themepath[PATH_MAX_LENGTH] = {0}; settings_t *settings = config_get_ptr(); fill_pathname_join(mediapath, settings->assets_directory, "xmb", sizeof(mediapath)); fill_pathname_join(themepath, mediapath, xmb_theme_ident(), sizeof(themepath)); xmb_context_destroy_horizontal_list(xmb); if (xmb->horizontal_list) free(xmb->horizontal_list); xmb->horizontal_list = NULL; menu_driver_ctl(RARCH_MENU_CTL_SET_PREVENT_POPULATE, NULL); xmb_init_horizontal_list(xmb); xmb_context_reset_horizontal_list(xmb, themepath); } static int xmb_environ(enum menu_environ_cb type, void *data, void *userdata) { switch (type) { case MENU_ENVIRON_RESET_HORIZONTAL_LIST: { xmb_handle_t *xmb = (xmb_handle_t*)userdata; if (!xmb) return -1; xmb_refresh_horizontal_list(xmb); } break; default: return -1; } return 0; } static void xmb_list_open(xmb_handle_t *xmb) { menu_animation_ctx_entry_t entry; size_t selection; int dir = 0; file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0); if (!menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SELECTION, &selection)) return; xmb->depth = xmb_list_get_size(xmb, MENU_LIST_PLAIN); if (xmb->depth > xmb->old_depth) dir = 1; else if (xmb->depth < xmb->old_depth) dir = -1; xmb_list_open_horizontal_list(xmb); xmb_list_open_old(xmb, xmb->selection_buf_old, dir, xmb->selection_ptr_old); xmb_list_open_new(xmb, selection_buf, dir, selection); entry.duration = XMB_DELAY; entry.target_value = xmb->icon.size * -(xmb->depth*2-2); entry.subject = &xmb->x; entry.easing_enum = EASING_IN_OUT_QUAD; entry.tag = -1; entry.cb = NULL; switch (xmb->depth) { case 1: menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); entry.target_value = 0; entry.subject = &xmb->textures.arrow.alpha; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); break; case 2: menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); entry.target_value = 1; entry.subject = &xmb->textures.arrow.alpha; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); break; } xmb->old_depth = xmb->depth; } static void xmb_populate_entries(void *data, const char *path, const char *label, unsigned k) { xmb_handle_t *xmb = (xmb_handle_t*)data; if (!xmb) return; if (menu_driver_ctl(RARCH_MENU_CTL_IS_PREVENT_POPULATE, NULL)) { xmb_selection_pointer_changed(xmb, false); menu_driver_ctl(RARCH_MENU_CTL_UNSET_PREVENT_POPULATE, NULL); if (strcmp(xmb_thumbnails_ident(), "OFF")) xmb_update_thumbnail_image(xmb); return; } xmb_set_title(xmb); if (xmb->categories.selection_ptr != xmb->categories.active.idx_old) xmb_list_switch(xmb); else xmb_list_open(xmb); } static uintptr_t xmb_icon_get_id(xmb_handle_t *xmb, xmb_node_t *core_node, xmb_node_t *node, unsigned type, bool active) { switch(type) { case MENU_FILE_DIRECTORY: return xmb->textures.list[XMB_TEXTURE_FOLDER]; case MENU_FILE_PLAIN: return xmb->textures.list[XMB_TEXTURE_FILE]; case MENU_FILE_RPL_ENTRY: if (core_node) return core_node->content_icon; return xmb->textures.list[XMB_TEXTURE_FILE]; case MENU_FILE_CARCHIVE: return xmb->textures.list[XMB_TEXTURE_ZIP]; case MENU_FILE_MUSIC: return xmb->textures.list[XMB_TEXTURE_MUSIC]; case MENU_FILE_IMAGEVIEWER: return xmb->textures.list[XMB_TEXTURE_IMAGE]; case MENU_FILE_MOVIE: return xmb->textures.list[XMB_TEXTURE_MOVIE]; case MENU_FILE_CORE: return xmb->textures.list[XMB_TEXTURE_CORE]; case MENU_FILE_RDB: return xmb->textures.list[XMB_TEXTURE_RDB]; case MENU_FILE_CURSOR: return xmb->textures.list[XMB_TEXTURE_CURSOR]; case MENU_FILE_PLAYLIST_ENTRY: case MENU_SETTING_ACTION_RUN: return xmb->textures.list[XMB_TEXTURE_RUN]; case MENU_SETTING_ACTION_CLOSE: return xmb->textures.list[XMB_TEXTURE_CLOSE]; case MENU_SETTING_ACTION_SAVESTATE: return xmb->textures.list[XMB_TEXTURE_SAVESTATE]; case MENU_SETTING_ACTION_LOADSTATE: return xmb->textures.list[XMB_TEXTURE_LOADSTATE]; case MENU_FILE_RDB_ENTRY: case MENU_SETTING_ACTION_CORE_INFORMATION: return xmb->textures.list[XMB_TEXTURE_CORE_INFO]; case MENU_SETTING_ACTION_CORE_OPTIONS: return xmb->textures.list[XMB_TEXTURE_CORE_OPTIONS]; case MENU_SETTING_ACTION_CORE_INPUT_REMAPPING_OPTIONS: return xmb->textures.list[XMB_TEXTURE_INPUT_REMAPPING_OPTIONS]; case MENU_SETTING_ACTION_CORE_CHEAT_OPTIONS: return xmb->textures.list[XMB_TEXTURE_CHEAT_OPTIONS]; case MENU_SETTING_ACTION_CORE_DISK_OPTIONS: return xmb->textures.list[XMB_TEXTURE_DISK_OPTIONS]; case MENU_SETTING_ACTION_CORE_SHADER_OPTIONS: return xmb->textures.list[XMB_TEXTURE_SHADER_OPTIONS]; case MENU_SETTING_ACTION_SCREENSHOT: return xmb->textures.list[XMB_TEXTURE_SCREENSHOT]; case MENU_SETTING_ACTION_RESET: return xmb->textures.list[XMB_TEXTURE_RELOAD]; case MENU_SETTING_ACTION: if (xmb->depth == 3) return xmb->textures.list[XMB_TEXTURE_SUBSETTING]; return xmb->textures.list[XMB_TEXTURE_SETTING]; case MENU_SETTING_GROUP: return xmb->textures.list[XMB_TEXTURE_SETTING]; case MENU_INFO_MESSAGE: return xmb->textures.list[XMB_TEXTURE_CORE_INFO]; } return xmb->textures.list[XMB_TEXTURE_SUBSETTING]; } static void xmb_draw_items(xmb_handle_t *xmb, file_list_t *list, file_list_t *stack, size_t current, size_t cat_selection_ptr, float *color, unsigned width, unsigned height) { menu_animation_ctx_ticker_t ticker; size_t i; unsigned ticker_limit; math_matrix_4x4 mymat; menu_display_ctx_rotate_draw_t rotate_draw; uint64_t *frame_count = NULL; xmb_node_t *core_node = NULL; size_t end = 0; video_driver_ctl(RARCH_DISPLAY_CTL_GET_FRAME_COUNT, &frame_count); if (!list || !list->size) return; if (cat_selection_ptr > XMB_SYSTEM_TAB_END) core_node = xmb_get_userdata_from_horizontal_list( xmb, cat_selection_ptr - (XMB_SYSTEM_TAB_END + 1)); end = file_list_get_size(list); rotate_draw.matrix = &mymat; rotate_draw.rotation = 0; rotate_draw.scale_x = 1; rotate_draw.scale_y = 1; rotate_draw.scale_z = 1; rotate_draw.scale_enable = true; menu_display_ctl(MENU_DISPLAY_CTL_ROTATE_Z, &rotate_draw); menu_entries_ctl(MENU_ENTRIES_CTL_START_GET, &i); if (list == xmb->selection_buf_old) i = 0; for (; i < end; i++) { menu_entry_t entry; char name[PATH_MAX_LENGTH]; char value[PATH_MAX_LENGTH]; float icon_x, icon_y; const float half_size = xmb->icon.size / 2.0f; uintptr_t texture_switch = 0; uintptr_t icon = 0; xmb_node_t * node = (xmb_node_t*) menu_entries_get_userdata_at_offset(list, i); uint32_t hash_label = 0; uint32_t hash_value = 0; bool do_draw_text = false; if (!node) continue; icon_y = xmb->margins.screen.top + node->y + half_size; if (icon_y < half_size) continue; if (icon_y > height + xmb->icon.size) break; icon_x = node->x + xmb->margins.screen.left + xmb->icon.spacing.horizontal - half_size; if (icon_x < -half_size || icon_x > width) continue; menu_entry_get(&entry, 0, i, list, true); hash_label = menu_hash_calculate(entry.label); hash_value = menu_hash_calculate(entry.value); if (entry.type == MENU_FILE_CONTENTLIST_ENTRY) fill_short_pathname_representation(entry.path, entry.path, sizeof(entry.path)); icon = xmb_icon_get_id(xmb, core_node, node, entry.type, (i == current)); switch (hash_label) { case MENU_LABEL_CORE_OPTIONS: icon = xmb->textures.list[XMB_TEXTURE_CORE_OPTIONS]; break; case MENU_LABEL_CORE_INPUT_REMAPPING_OPTIONS: icon = xmb->textures.list[XMB_TEXTURE_INPUT_REMAPPING_OPTIONS]; break; case MENU_LABEL_CORE_CHEAT_OPTIONS: icon = xmb->textures.list[XMB_TEXTURE_CHEAT_OPTIONS]; break; case MENU_LABEL_DISK_OPTIONS: icon = xmb->textures.list[XMB_TEXTURE_DISK_OPTIONS]; break; case MENU_LABEL_SHADER_OPTIONS: icon = xmb->textures.list[XMB_TEXTURE_SHADER_OPTIONS]; break; case MENU_LABEL_ACHIEVEMENT_LIST: icon = xmb->textures.list[XMB_TEXTURE_ACHIEVEMENT_LIST]; break; case MENU_LABEL_SAVESTATE: icon = xmb->textures.list[XMB_TEXTURE_SAVESTATE]; break; case MENU_LABEL_LOADSTATE: icon = xmb->textures.list[XMB_TEXTURE_LOADSTATE]; break; case MENU_LABEL_TAKE_SCREENSHOT: icon = xmb->textures.list[XMB_TEXTURE_SCREENSHOT]; break; case MENU_LABEL_RESTART_CONTENT: icon = xmb->textures.list[XMB_TEXTURE_RELOAD]; break; case MENU_LABEL_RESUME_CONTENT: icon = xmb->textures.list[XMB_TEXTURE_RESUME]; break; } if (string_is_equal(entry.value, "disabled") || string_is_equal(entry.value, "off")) { if (xmb->textures.list[XMB_TEXTURE_SWITCH_OFF]) texture_switch = xmb->textures.list[XMB_TEXTURE_SWITCH_OFF]; else do_draw_text = true; } else if (string_is_equal(entry.value, "enabled") || string_is_equal(entry.value, "on")) { if (xmb->textures.list[XMB_TEXTURE_SWITCH_ON]) texture_switch = xmb->textures.list[XMB_TEXTURE_SWITCH_ON]; else do_draw_text = true; } else { switch (hash_value) { case MENU_VALUE_COMP: break; case MENU_VALUE_MORE: break; case MENU_VALUE_CORE: break; case MENU_VALUE_RDB: break; case MENU_VALUE_CURSOR: break; case MENU_VALUE_FILE: break; case MENU_VALUE_DIR: break; case MENU_VALUE_MUSIC: break; case MENU_VALUE_IMAGE: break; case MENU_VALUE_MOVIE: break; case MENU_VALUE_ON: if (xmb->textures.list[XMB_TEXTURE_SWITCH_ON]) texture_switch = xmb->textures.list[XMB_TEXTURE_SWITCH_ON]; else do_draw_text = true; break; case MENU_VALUE_OFF: if (xmb->textures.list[XMB_TEXTURE_SWITCH_OFF]) texture_switch = xmb->textures.list[XMB_TEXTURE_SWITCH_OFF]; else do_draw_text = true; break; default: do_draw_text = true; break; } } ticker_limit = 35; if (string_is_empty(entry.value)) { if (strcmp(xmb_thumbnails_ident(), "OFF") && xmb->thumbnail) ticker_limit = 40; else ticker_limit = 70; } ticker.s = name; ticker.len = ticker_limit; ticker.idx = *frame_count / 20; ticker.str = entry.path; ticker.selected = (i == current); menu_animation_ctl(MENU_ANIMATION_CTL_TICKER, &ticker); xmb_draw_text(xmb, name, node->x + xmb->margins.screen.left + xmb->icon.spacing.horizontal + xmb->margins.label.left, xmb->margins.screen.top + node->y + xmb->margins.label.top, 1, node->label_alpha, TEXT_ALIGN_LEFT, width, height); ticker.s = value; ticker.len = 35; ticker.idx = *frame_count / 20; ticker.str = entry.value; ticker.selected = (i == current); menu_animation_ctl(MENU_ANIMATION_CTL_TICKER, &ticker); if (do_draw_text) xmb_draw_text(xmb, value, node->x + + xmb->margins.screen.left + xmb->icon.spacing.horizontal + xmb->margins.label.left + xmb->margins.setting.left, xmb->margins.screen.top + node->y + xmb->margins.label.top, 1, node->label_alpha, TEXT_ALIGN_LEFT, width, height); menu_display_ctl(MENU_DISPLAY_CTL_BLEND_BEGIN, NULL); /* set alpha components of color */ color[3] = color[7] = color[11] = color[15] = (node->alpha > xmb->alpha) ? xmb->alpha : node->alpha; if (color[3] != 0) xmb_draw_icon(xmb, icon, icon_x, icon_y, width, height, 0, node->zoom, &color[0]); /* set alpha components of color */ color[3] = color[7] = color[11] = color[15] = (node->alpha > xmb->alpha) ? xmb->alpha : node->alpha; if (texture_switch != 0 && color[3] != 0) xmb_draw_icon_predone(xmb, &mymat, texture_switch, node->x + xmb->margins.screen.left + xmb->icon.spacing.horizontal + xmb->icon.size / 2.0 + xmb->margins.setting.left, xmb->margins.screen.top + node->y + xmb->icon.size / 2.0, width, height, node->alpha, 0, 1, &color[0]); menu_display_ctl(MENU_DISPLAY_CTL_BLEND_END, NULL); } } static void xmb_render(void *data) { float delta_time; size_t i, selection; menu_animation_ctx_delta_t delta; unsigned end, height = 0; settings_t *settings = config_get_ptr(); xmb_handle_t *xmb = (xmb_handle_t*)data; if (!xmb) return; menu_animation_ctl(MENU_ANIMATION_CTL_DELTA_TIME, &delta_time); delta.current = delta_time; if (menu_animation_ctl(MENU_ANIMATION_CTL_IDEAL_DELTA_TIME_GET, &delta)) menu_animation_ctl(MENU_ANIMATION_CTL_UPDATE, &delta.ideal); video_driver_get_size(NULL, &height); if (!menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SELECTION, &selection)) return; end = menu_entries_get_size(); if (settings->menu.pointer.enable || settings->menu.mouse.enable) { for (i = 0; i < end; i++) { float item_y1 = xmb->margins.screen.top + xmb_item_y(xmb, i, selection); float item_y2 = item_y1 + xmb->icon.size; int16_t pointer_y = menu_input_pointer_state(MENU_POINTER_Y_AXIS); int16_t mouse_y = menu_input_mouse_state(MENU_MOUSE_Y_AXIS) + (xmb->cursor.size/2); if (settings->menu.pointer.enable) { if (pointer_y > item_y1 && pointer_y < item_y2) menu_input_ctl(MENU_INPUT_CTL_POINTER_PTR, &i); } if (settings->menu.mouse.enable) { if (mouse_y > item_y1 && mouse_y < item_y2) menu_input_ctl(MENU_INPUT_CTL_MOUSE_PTR, &i); } } } menu_entries_ctl(MENU_ENTRIES_CTL_START_GET, &i); if (i >= end) { i = 0; menu_entries_ctl(MENU_ENTRIES_CTL_SET_START, &i); } menu_animation_ctl(MENU_ANIMATION_CTL_CLEAR_ACTIVE, NULL); } static void xmb_frame_horizontal_list(xmb_handle_t *xmb, unsigned width, unsigned height, float *color) { unsigned i; size_t list_size = xmb_list_get_size(xmb, MENU_LIST_HORIZONTAL) + XMB_SYSTEM_TAB_END; for (i = 0; i <= list_size; i++) { xmb_node_t *node = xmb_get_node(xmb, i); if (!node) continue; menu_display_ctl(MENU_DISPLAY_CTL_BLEND_BEGIN, NULL); /* set alpha components of color */ color[3] = color[7] = color[11] = color[15] = (node->alpha > xmb->alpha) ? xmb->alpha : node->alpha; if (color[3] != 0) xmb_draw_icon(xmb, node->icon, xmb->x + xmb->categories.x_pos + xmb->margins.screen.left + xmb->icon.spacing.horizontal * (i + 1) - xmb->icon.size / 2.0, xmb->margins.screen.top + xmb->icon.size / 2.0, width, height, 0, node->zoom, &color[0]); menu_display_ctl(MENU_DISPLAY_CTL_BLEND_END, NULL); } } #ifdef XMB_RIBBON_ENABLE static void xmb_draw_ribbon(xmb_handle_t *xmb, menu_display_ctx_draw_t *draw) { struct uniform_info uniform_param = {0}; static float t = 0; video_shader_ctx_info_t shader_info; gfx_coord_array_t *ca = NULL; menu_display_ctl(MENU_DISPLAY_CTL_COORDS_ARRAY_GET, &ca); if (menu_display_ctl(MENU_DISPLAY_CTL_LIBRETRO_RUNNING, NULL)) draw->handle_alpha = 0.75; else draw->handle_alpha = 0.90; menu_display_ctl(MENU_DISPLAY_CTL_DRAW_GRADIENT, draw); draw->x = 0; draw->y = 0; draw->coords = (struct gfx_coords*)(&ca->coords); draw->matrix_data = NULL; shader_info.data = NULL; shader_info.idx = VIDEO_SHADER_MENU; video_shader_driver_ctl(SHADER_CTL_USE, &shader_info); t += 0.01; uniform_param.enabled = true; uniform_param.lookup.enable = true; uniform_param.lookup.add_prefix = true; uniform_param.lookup.idx = VIDEO_SHADER_MENU; uniform_param.lookup.type = SHADER_PROGRAM_VERTEX; uniform_param.type = UNIFORM_1F; uniform_param.lookup.ident = "time"; uniform_param.result.f.v0 = t; video_shader_driver_ctl(SHADER_CTL_SET_PARAMETER, &uniform_param); menu_display_ctl(MENU_DISPLAY_CTL_DRAW, draw); } #endif static void xmb_draw_bg(xmb_handle_t *xmb, menu_display_ctx_draw_t *draw) { menu_display_ctl(MENU_DISPLAY_CTL_BLEND_BEGIN, NULL); menu_display_ctl(MENU_DISPLAY_CTL_SET_VIEWPORT, NULL); #ifdef XMB_RIBBON_ENABLE xmb_draw_ribbon(xmb, draw); #else draw->x = 0; draw->y = 0; menu_display_ctl(MENU_DISPLAY_CTL_DRAW_BG, draw); #endif menu_display_ctl(MENU_DISPLAY_CTL_BLEND_END, NULL); } static void xmb_frame(void *data) { size_t selection; math_matrix_4x4 mymat; unsigned depth, i, width, height; char msg[PATH_MAX_LENGTH]; char title_msg[256]; float item_color[16]; float coord_color[16]; float coord_color2[16]; menu_display_ctx_draw_t draw; menu_display_ctx_rotate_draw_t rotate_draw; bool display_kb; bool render_background = false; xmb_handle_t *xmb = (xmb_handle_t*)data; settings_t *settings = config_get_ptr(); file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0); file_list_t *menu_stack = menu_entries_get_menu_stack_ptr(0); if (!xmb) return; if (!menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SELECTION, &selection)) return; msg[0] = '\0'; title_msg[0] = '\0'; video_driver_get_size(&width, &height); menu_display_ctl(MENU_DISPLAY_CTL_FONT_BIND_BLOCK, &xmb->raster_block); xmb->raster_block.carr.coords.vertices = 0; for (i = 0; i < 16; i++) { coord_color[i] = 0; coord_color2[i] = 1.0f; item_color[i] = 1.0f; } /* set alpha components of colors */ coord_color[3] = coord_color[7] = coord_color[11] = coord_color[15] = ((float)settings->menu.xmb_alpha_factor/100 > xmb->alpha) ? xmb->alpha : (float)settings->menu.xmb_alpha_factor/100; coord_color2[3] = coord_color2[7] = coord_color2[11] = coord_color2[15] = xmb->alpha; memset(&draw, 0, sizeof(menu_display_ctx_draw_t)); draw.width = width; draw.height = height; draw.texture = xmb->textures.bg; draw.handle_alpha = xmb->alpha; draw.force_transparency = false; draw.color = &coord_color[0]; draw.vertex = NULL; draw.tex_coord = NULL; draw.vertex_count = 4; draw.prim_type = MENU_DISPLAY_PRIM_TRIANGLESTRIP; if ( (settings->menu.pause_libretro || !rarch_ctl(RARCH_CTL_IS_INITED, NULL) || rarch_ctl(RARCH_CTL_IS_DUMMY_CORE, NULL) ) && !draw.force_transparency && draw.texture) draw.color = &coord_color2[0]; xmb_draw_bg(xmb, &draw); xmb_draw_text(xmb, xmb->title_name, xmb->margins.title.left, xmb->margins.title.top, 1, 1, TEXT_ALIGN_LEFT, width, height); if (settings->menu.timedate_enable) { menu_display_ctx_datetime_t datetime; char timedate[256]; datetime.s = timedate; datetime.len = sizeof(timedate); datetime.time_mode = 4; menu_display_ctl(MENU_DISPLAY_CTL_TIMEDATE, &datetime); xmb_draw_text(xmb, timedate, width - xmb->margins.title.left - xmb->icon.size / 4, xmb->margins.title.top, 1, 1, TEXT_ALIGN_RIGHT, width, height); } if (menu_entries_get_core_title(title_msg, sizeof(title_msg)) == 0) xmb_draw_text(xmb, title_msg, xmb->margins.title.left, height - xmb->margins.title.bottom, 1, 1, TEXT_ALIGN_LEFT, width, height); depth = xmb_list_get_size(xmb, MENU_LIST_PLAIN); xmb_draw_items(xmb, xmb->selection_buf_old, xmb->menu_stack_old, xmb->selection_ptr_old, depth > 1 ? xmb->categories.selection_ptr : xmb->categories.selection_ptr_old, &item_color[0], width, height); xmb_draw_items(xmb, selection_buf, menu_stack, selection, xmb->categories.selection_ptr, &item_color[0], width, height); rotate_draw.matrix = &mymat; rotate_draw.rotation = 0; rotate_draw.scale_x = 1; rotate_draw.scale_y = 1; rotate_draw.scale_z = 1; rotate_draw.scale_enable = true; menu_display_ctl(MENU_DISPLAY_CTL_ROTATE_Z, &rotate_draw); menu_display_ctl(MENU_DISPLAY_CTL_BLEND_BEGIN, NULL); if (strcmp(xmb_thumbnails_ident(), "OFF") && xmb->thumbnail) xmb_draw_thumbnail(xmb, &coord_color2[0], width, height); /* set alpha components of colors */ coord_color2[3] = coord_color2[7] = coord_color2[11] = coord_color2[15] = (1.00f > xmb->alpha) ? xmb->alpha : 1.00f; if (settings->menu.timedate_enable && coord_color2[3] != 0) xmb_draw_icon_predone(xmb, &mymat, xmb->textures.list[XMB_TEXTURE_CLOCK], width - xmb->icon.size, xmb->icon.size,width, height, 1, 0, 1, &coord_color2[0]); /* set alpha components of colors */ coord_color2[3] = coord_color2[7] = coord_color2[11] = coord_color2[15] = (xmb->textures.arrow.alpha > xmb->alpha) ? xmb->alpha : xmb->textures.arrow.alpha; if (coord_color2[3] != 0) xmb_draw_icon_predone( xmb, &mymat, xmb->textures.list[XMB_TEXTURE_ARROW], xmb->x + xmb->margins.screen.left + xmb->icon.spacing.horizontal - xmb->icon.size / 2.0 + xmb->icon.size, xmb->margins.screen.top + xmb->icon.size / 2.0 + xmb->icon.spacing.vertical * XMB_ITEM_ACTIVE_FACTOR, width, height, xmb->textures.arrow.alpha, 0, 1, &coord_color2[0]); xmb_frame_horizontal_list(xmb, width, height, &item_color[0]); menu_display_ctl(MENU_DISPLAY_CTL_FONT_FLUSH_BLOCK, NULL); menu_input_ctl(MENU_INPUT_CTL_KEYBOARD_DISPLAY, &display_kb); if (display_kb) { const char *str = NULL, *label = NULL; menu_input_ctl(MENU_INPUT_CTL_KEYBOARD_BUFF_PTR, &str); menu_input_ctl(MENU_INPUT_CTL_KEYBOARD_LABEL, &label); if (!str) str = ""; snprintf(msg, sizeof(msg), "%s\n%s", label, str); render_background = true; } if (!string_is_empty(xmb->box_message)) { strlcpy(msg, xmb->box_message, sizeof(msg)); xmb->box_message[0] = '\0'; render_background = true; } if (render_background) { memset(&draw, 0, sizeof(menu_display_ctx_draw_t)); draw.width = width; draw.height = height; draw.texture = xmb->textures.bg; draw.handle_alpha = xmb->alpha; draw.force_transparency = true; draw.color = &coord_color[0]; draw.vertex = NULL; draw.tex_coord = NULL; draw.vertex_count = 4; draw.prim_type = MENU_DISPLAY_PRIM_TRIANGLESTRIP; if ( (settings->menu.pause_libretro || !rarch_ctl(RARCH_CTL_IS_INITED, NULL) || rarch_ctl(RARCH_CTL_IS_DUMMY_CORE, NULL) ) && !draw.force_transparency && draw.texture) draw.color = &coord_color2[0]; xmb_draw_bg(xmb, &draw); xmb_render_messagebox_internal(xmb, msg); } /* set alpha components of colors */ coord_color2[3] = coord_color2[7] = coord_color2[11] = coord_color2[15] = (1.00f > xmb->alpha) ? xmb->alpha : 1.00f; if ( settings->menu.mouse.enable && (settings->video.fullscreen || !video_driver_ctl(RARCH_DISPLAY_CTL_HAS_WINDOWED, NULL))) menu_display_draw_cursor( &coord_color2[0], xmb->cursor.size, xmb->textures.list[XMB_TEXTURE_POINTER], menu_input_mouse_state(MENU_MOUSE_X_AXIS), menu_input_mouse_state(MENU_MOUSE_Y_AXIS), width, height); menu_display_ctl(MENU_DISPLAY_CTL_UNSET_VIEWPORT, NULL); } static void xmb_font(xmb_handle_t *xmb) { int font_size; char mediapath[PATH_MAX_LENGTH], themepath[PATH_MAX_LENGTH], fontpath[PATH_MAX_LENGTH]; menu_display_ctx_font_t font_info; settings_t *settings = config_get_ptr(); menu_display_ctl(MENU_DISPLAY_CTL_FONT_SIZE, &font_size); fill_pathname_join(mediapath, settings->assets_directory, "xmb", sizeof(mediapath)); fill_pathname_join(themepath, mediapath, xmb_theme_ident(), sizeof(themepath)); if (string_is_empty(settings->menu.xmb_font)) fill_pathname_join(fontpath, themepath, "font.ttf", sizeof(fontpath)); else strlcpy(fontpath, settings->menu.xmb_font,sizeof(fontpath)); font_info.path = fontpath; font_info.size = font_size; if (!menu_display_ctl(MENU_DISPLAY_CTL_FONT_MAIN_INIT, &font_info)) RARCH_WARN("Failed to load font."); } static void xmb_layout(xmb_handle_t *xmb) { int new_font_size; size_t selection; float scale_factor; unsigned width, height, i, current, end, new_header_height; file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0); settings_t *settings = config_get_ptr(); if (!menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SELECTION, &selection)) return; video_driver_get_size(&width, &height); scale_factor = (settings->menu.xmb_scale_factor * width) / (1920.0 * 100); new_font_size = 32.0 * scale_factor; xmb->margins.screen.left = 336.0 * scale_factor; /* Mimic the layout of the PSP instead of the PS3 on tiny screens */ if (width <= 640) { scale_factor = scale_factor * 1.5; xmb->margins.screen.left = 136.0 * scale_factor; new_font_size = 42.0 * scale_factor; } new_header_height = 128.0 * scale_factor; xmb->margins.screen.top = (256+32) * scale_factor; xmb->thumbnail_width = 460.0 * scale_factor; xmb->cursor.size = 64.0; xmb->icon.spacing.horizontal = 200.0 * scale_factor; xmb->icon.spacing.vertical = 64.0 * scale_factor; xmb->margins.title.left = 60 * scale_factor; xmb->margins.title.top = 60 * scale_factor + new_font_size / 3; xmb->margins.title.bottom = 60 * scale_factor - new_font_size / 3; xmb->margins.label.left = 85.0 * scale_factor; xmb->margins.label.top = new_font_size / 3.0; xmb->margins.setting.left = 600.0 * scale_factor; xmb->icon.size = 128.0 * scale_factor; menu_display_ctl(MENU_DISPLAY_CTL_SET_FONT_SIZE, &new_font_size); menu_display_ctl(MENU_DISPLAY_CTL_SET_HEADER_HEIGHT, &new_header_height); current = selection; end = menu_entries_get_end(); for (i = 0; i < end; i++) { float ia = XMB_ITEM_PASSIVE_ALPHA; float iz = XMB_ITEM_PASSIVE_ZOOM; xmb_node_t *node = (xmb_node_t*)menu_entries_get_userdata_at_offset( selection_buf, i); if (!node) continue; if (i == current) { ia = XMB_ITEM_ACTIVE_ALPHA; iz = XMB_ITEM_ACTIVE_ZOOM; } node->alpha = ia; node->label_alpha = ia; node->zoom = iz; node->y = xmb_item_y(xmb, i, current); } if (xmb->depth <= 1) return; current = xmb->selection_ptr_old; end = file_list_get_size(xmb->selection_buf_old); for (i = 0; i < end; i++) { float ia = 0; float iz = XMB_ITEM_PASSIVE_ZOOM; xmb_node_t *node = (xmb_node_t*)menu_entries_get_userdata_at_offset( xmb->selection_buf_old, i); if (!node) continue; if (i == current) { ia = XMB_ITEM_ACTIVE_ALPHA; iz = XMB_ITEM_ACTIVE_ZOOM; } node->alpha = ia; node->label_alpha = 0; node->zoom = iz; node->y = xmb_item_y(xmb, i, current); node->x = xmb->icon.size * 1 * -2; } } #ifdef XMB_RIBBON_ENABLE static void xmb_ribbon_set_vertex(float *ribbon_verts, unsigned idx, unsigned row, unsigned col) { ribbon_verts[idx++] = ((float)col) / 15.5f - 1.0f; ribbon_verts[idx++] = ((float)row) / 7.5f - 1.0f; } static void xmb_init_ribbon(xmb_handle_t * xmb) { gfx_coords_t coords; float ribbon_verts[2 * XMB_RIBBON_VERTICES]; unsigned i, r, c, col; gfx_coord_array_t *ca = NULL; float dummy[4 * XMB_RIBBON_VERTICES] = { }; menu_display_ctl(MENU_DISPLAY_CTL_COORDS_ARRAY_GET, &ca); /* Set up vertices */ i = 0; for (r = 0; r < XMB_RIBBON_ROWS - 1; r++) { for (c = 0; c < XMB_RIBBON_COLS; c++) { col = r % 2 ? XMB_RIBBON_COLS - c - 1 : c; xmb_ribbon_set_vertex(ribbon_verts, i, r, col); xmb_ribbon_set_vertex(ribbon_verts, i + 2, r + 1, col); i += 4; } } coords.color = dummy; coords.vertex = dummy; coords.tex_coord = dummy; coords.lut_tex_coord = ribbon_verts; coords.vertices = XMB_RIBBON_VERTICES; gfx_coord_array_append(ca, &coords, XMB_RIBBON_VERTICES); } #endif static void *xmb_init(void **userdata) { unsigned width, height; xmb_handle_t *xmb = NULL; menu_handle_t *menu = (menu_handle_t*)calloc(1, sizeof(*menu)); if (!menu) goto error; if (!menu_display_ctl(MENU_DISPLAY_CTL_INIT_FIRST_DRIVER, NULL)) goto error; video_driver_get_size(&width, &height); xmb = (xmb_handle_t*)calloc(1, sizeof(xmb_handle_t)); if (!xmb) goto error; *userdata = xmb; xmb->menu_stack_old = (file_list_t*)calloc(1, sizeof(file_list_t)); if (!xmb->menu_stack_old) goto error; xmb->selection_buf_old = (file_list_t*)calloc(1, sizeof(file_list_t)); if (!xmb->selection_buf_old) goto error; xmb->categories.active.idx = 0; xmb->categories.active.idx_old = 0; xmb->x = 0; xmb->categories.x_pos = 0; xmb->textures.arrow.alpha = 0; xmb->depth = 1; xmb->old_depth = 1; xmb->alpha = 0; menu_driver_ctl(RARCH_MENU_CTL_UNSET_PREVENT_POPULATE, NULL); /* TODO/FIXME - we don't use framebuffer at all * for XMB, we should refactor this dependency * away. */ menu_display_ctl(MENU_DISPLAY_CTL_SET_WIDTH, &width); menu_display_ctl(MENU_DISPLAY_CTL_SET_HEIGHT, &height); menu_display_allocate_white_texture(); xmb_init_horizontal_list(xmb); xmb_font(xmb); #ifdef XMB_RIBBON_ENABLE xmb_init_ribbon(xmb); #endif return menu; error: if (menu) free(menu); if (xmb) { if (xmb->menu_stack_old) free(xmb->menu_stack_old); xmb->menu_stack_old = NULL; if (xmb->selection_buf_old) free(xmb->selection_buf_old); xmb->selection_buf_old = NULL; if (xmb->horizontal_list) free(xmb->horizontal_list); xmb->horizontal_list = NULL; } return NULL; } static void xmb_free(void *data) { xmb_handle_t *xmb = (xmb_handle_t*)data; if (xmb) { if (xmb->menu_stack_old) file_list_free(xmb->menu_stack_old); xmb->menu_stack_old = NULL; if (xmb->selection_buf_old) file_list_free(xmb->selection_buf_old); xmb->selection_buf_old = NULL; if (xmb->horizontal_list) file_list_free(xmb->horizontal_list); xmb->horizontal_list = NULL; gfx_coord_array_free(&xmb->raster_block.carr); } font_driver_bind_block(NULL, NULL); } static void xmb_context_bg_destroy(xmb_handle_t *xmb) { if (!xmb) return; video_driver_texture_unload(&xmb->textures.bg); video_driver_texture_unload(&menu_display_white_texture); } static bool xmb_load_image(void *userdata, void *data, enum menu_image_type type) { xmb_handle_t *xmb = (xmb_handle_t*)userdata; if (!xmb || !data) return false; switch (type) { case MENU_IMAGE_NONE: break; case MENU_IMAGE_WALLPAPER: xmb_context_bg_destroy(xmb); video_driver_texture_load(data, TEXTURE_FILTER_MIPMAP_LINEAR, &xmb->textures.bg); menu_display_allocate_white_texture(); break; case MENU_IMAGE_THUMBNAIL: { struct texture_image *img = (struct texture_image*)data; xmb->thumbnail_height = xmb->thumbnail_width * (float)img->height / (float)img->width; video_driver_texture_load(data, TEXTURE_FILTER_MIPMAP_LINEAR, &xmb->thumbnail); } break; } return true; } static const char *xmb_texture_path(unsigned id) { switch (id) { case XMB_TEXTURE_MAIN_MENU: #if defined(HAVE_LAKKA) return "lakka.png"; #else return "retroarch.png"; #endif case XMB_TEXTURE_SETTINGS: return "settings.png"; case XMB_TEXTURE_HISTORY: return "history.png"; case XMB_TEXTURE_SETTING: return "setting.png"; case XMB_TEXTURE_SUBSETTING: return "subsetting.png"; case XMB_TEXTURE_ARROW: return "arrow.png"; case XMB_TEXTURE_RUN: return "run.png"; case XMB_TEXTURE_CLOSE: return "close.png"; case XMB_TEXTURE_RESUME: return "resume.png"; case XMB_TEXTURE_CLOCK: return "clock.png"; case XMB_TEXTURE_POINTER: return "pointer.png"; case XMB_TEXTURE_SAVESTATE: return "savestate.png"; case XMB_TEXTURE_LOADSTATE: return "loadstate.png"; case XMB_TEXTURE_CORE_INFO: return "core-infos.png"; case XMB_TEXTURE_CORE_OPTIONS: return "core-options.png"; case XMB_TEXTURE_INPUT_REMAPPING_OPTIONS: return "core-input-remapping-options.png"; case XMB_TEXTURE_CHEAT_OPTIONS: return "core-cheat-options.png"; case XMB_TEXTURE_DISK_OPTIONS: return "core-disk-options.png"; case XMB_TEXTURE_SHADER_OPTIONS: return "core-shader-options.png"; case XMB_TEXTURE_ACHIEVEMENT_LIST: return "achievement-list.png"; case XMB_TEXTURE_SCREENSHOT: return "screenshot.png"; case XMB_TEXTURE_RELOAD: return "reload.png"; case XMB_TEXTURE_FILE: return "file.png"; case XMB_TEXTURE_FOLDER: return "folder.png"; case XMB_TEXTURE_ZIP: return "zip.png"; case XMB_TEXTURE_MUSIC: return "music.png"; case XMB_TEXTURE_IMAGE: return "image.png"; case XMB_TEXTURE_MOVIE: return "movie.png"; case XMB_TEXTURE_CORE: return "core.png"; case XMB_TEXTURE_RDB: return "database.png"; case XMB_TEXTURE_CURSOR: return "cursor.png"; case XMB_TEXTURE_SWITCH_ON: return "on.png"; case XMB_TEXTURE_SWITCH_OFF: return "off.png"; case XMB_TEXTURE_ADD: return "add.png"; } return NULL; } static void xmb_context_reset_textures( xmb_handle_t *xmb, const char *iconpath) { unsigned i; for (i = 0; i < XMB_TEXTURE_LAST; i++) { struct texture_image ti = {0}; char path[PATH_MAX_LENGTH] = {0}; const char *texture_path = xmb_texture_path(i); if (texture_path != NULL) fill_pathname_join(path, iconpath, texture_path, sizeof(path)); if (string_is_empty(path) || !path_file_exists(path)) continue; video_texture_image_load(&ti, path); video_driver_texture_load(&ti, TEXTURE_FILTER_MIPMAP_LINEAR, &xmb->textures.list[i]); video_texture_image_free(&ti); } menu_display_allocate_white_texture(); xmb->main_menu_node.icon = xmb->textures.list[XMB_TEXTURE_MAIN_MENU]; xmb->main_menu_node.alpha = XMB_CATEGORIES_ACTIVE_ALPHA; xmb->main_menu_node.zoom = XMB_CATEGORIES_ACTIVE_ZOOM; xmb->settings_tab_node.icon = xmb->textures.list[XMB_TEXTURE_SETTINGS]; xmb->settings_tab_node.alpha = XMB_CATEGORIES_ACTIVE_ALPHA; xmb->settings_tab_node.zoom = XMB_CATEGORIES_ACTIVE_ZOOM; xmb->history_tab_node.icon = xmb->textures.list[XMB_TEXTURE_HISTORY]; xmb->history_tab_node.alpha = XMB_CATEGORIES_ACTIVE_ALPHA; xmb->history_tab_node.zoom = XMB_CATEGORIES_ACTIVE_ZOOM; xmb->add_tab_node.icon = xmb->textures.list[XMB_TEXTURE_ADD]; xmb->add_tab_node.alpha = XMB_CATEGORIES_ACTIVE_ALPHA; xmb->add_tab_node.zoom = XMB_CATEGORIES_ACTIVE_ZOOM; } static void xmb_context_reset_background(const char *iconpath) { char path[PATH_MAX_LENGTH] = {0}; settings_t *settings = config_get_ptr(); fill_pathname_join(path, iconpath, "bg.png", sizeof(path)); if (*settings->menu.wallpaper) strlcpy(path, settings->menu.wallpaper, sizeof(path)); if (path_file_exists(path)) rarch_task_push_image_load(path, "cb_menu_wallpaper", menu_display_handle_wallpaper_upload, NULL); } static void xmb_context_reset(void *data) { char mediapath[PATH_MAX_LENGTH] = {0}; char themepath[PATH_MAX_LENGTH] = {0}; char iconpath[PATH_MAX_LENGTH] = {0}; settings_t *settings = config_get_ptr(); xmb_handle_t *xmb = (xmb_handle_t*)data; if (!xmb) return; strlcpy(xmb->icon.dir, "png", sizeof(xmb->icon.dir)); xmb_fill_default_background_path(xmb, xmb->background_file_path, sizeof(xmb->background_file_path)); fill_pathname_join(mediapath, settings->assets_directory, "xmb", sizeof(mediapath)); fill_pathname_join(themepath, mediapath, xmb_theme_ident(), sizeof(themepath)); fill_pathname_join(iconpath, themepath, xmb->icon.dir, sizeof(iconpath)); fill_pathname_slash(iconpath, sizeof(iconpath)); xmb_layout(xmb); xmb_font(xmb); xmb_context_reset_textures(xmb, iconpath); xmb_context_reset_background(iconpath); xmb_context_reset_horizontal_list(xmb, themepath); if (strcmp(xmb_thumbnails_ident(), "OFF")) xmb_update_thumbnail_image(xmb); } static void xmb_navigation_clear(void *data, bool pending_push) { xmb_handle_t *xmb = (xmb_handle_t*)data; if (!pending_push) xmb_selection_pointer_changed(xmb, true); } static void xmb_navigation_pointer_changed(void *data) { xmb_handle_t *xmb = (xmb_handle_t*)data; xmb_selection_pointer_changed(xmb, true); } static void xmb_navigation_set(void *data, bool scroll) { xmb_handle_t *xmb = (xmb_handle_t*)data; xmb_selection_pointer_changed(xmb, true); } static void xmb_navigation_alphabet(void *data, size_t *unused) { xmb_handle_t *xmb = (xmb_handle_t*)data; xmb_selection_pointer_changed(xmb, true); } static void xmb_list_insert(void *userdata, file_list_t *list, const char *path, const char *unused, size_t list_size) { size_t selection; int current = 0; int i = list_size; xmb_node_t *node = NULL; xmb_handle_t *xmb = (xmb_handle_t*)userdata; if (!xmb || !list) return; if (!menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SELECTION, &selection)) return; node = (xmb_node_t*)menu_entries_get_userdata_at_offset(list, i); if (!node) node = (xmb_node_t*)calloc(1, sizeof(xmb_node_t)); if (!node) { RARCH_ERR("XMB node could not be allocated.\n"); return; } current = selection; node->alpha = XMB_ITEM_PASSIVE_ALPHA; node->zoom = XMB_ITEM_PASSIVE_ZOOM; node->label_alpha = node->alpha; node->y = xmb_item_y(xmb, i, current); node->x = 0; if (i == current) { node->alpha = XMB_ITEM_ACTIVE_ALPHA; node->label_alpha = XMB_ITEM_ACTIVE_ALPHA; node->zoom = XMB_ITEM_ACTIVE_ZOOM; } file_list_set_userdata(list, i, node); } static void xmb_list_clear(file_list_t *list) { size_t i; size_t size = list->size; for (i = 0; i < size; ++i) { menu_animation_ctx_subject_t subject; float *subjects[5] = {NULL}; xmb_node_t *node = (xmb_node_t*) menu_entries_get_userdata_at_offset(list, i); if (!node) continue; subjects[0] = &node->alpha; subjects[1] = &node->label_alpha; subjects[2] = &node->zoom; subjects[3] = &node->x; subjects[4] = &node->y; subject.count = 5; subject.data = subjects; menu_animation_ctl(MENU_ANIMATION_CTL_KILL_BY_SUBJECT, &subject); file_list_free_userdata(list, i); } } static void xmb_list_deep_copy(const file_list_t *src, file_list_t *dst) { size_t i; size_t size = dst->size; for (i = 0; i < size; ++i) { xmb_node_t *node = (xmb_node_t*) menu_entries_get_userdata_at_offset(dst, i); if (node) { menu_animation_ctx_subject_t subject; float *subjects[5] = {NULL}; subjects[0] = &node->alpha; subjects[1] = &node->label_alpha; subjects[2] = &node->zoom; subjects[3] = &node->x; subjects[4] = &node->y; subject.count = 5; subject.data = subjects; menu_animation_ctl(MENU_ANIMATION_CTL_KILL_BY_SUBJECT, &subject); } file_list_free_userdata(dst, i); file_list_free_actiondata(dst, i); /* this one was allocated by us */ } file_list_copy(src, dst); size = dst->size; for (i = 0; i < size; ++i) { void *src_udata = menu_entries_get_userdata_at_offset(src, i); void *src_adata = (void*)menu_entries_get_actiondata_at_offset(src, i); if (src_udata) { void *data = calloc(1, sizeof(xmb_node_t)); memcpy(data, src_udata, sizeof(xmb_node_t)); file_list_set_userdata(dst, i, data); } if (src_adata) { void *data = calloc(1, sizeof(menu_file_list_cbs_t)); memcpy(data, src_adata, sizeof(menu_file_list_cbs_t)); file_list_set_actiondata(dst, i, data); } } } static void xmb_list_cache(void *data, enum menu_list_type type, unsigned action) { size_t stack_size, list_size, selection; xmb_handle_t *xmb = (xmb_handle_t*)data; file_list_t *menu_stack = menu_entries_get_menu_stack_ptr(0); file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0); if (!xmb) return; if (!menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SELECTION, &selection)) return; xmb_list_deep_copy(selection_buf, xmb->selection_buf_old); xmb_list_deep_copy(menu_stack, xmb->menu_stack_old); xmb->selection_ptr_old = selection; list_size = xmb_list_get_size(xmb, MENU_LIST_HORIZONTAL) + XMB_SYSTEM_TAB_END; switch (type) { case MENU_LIST_PLAIN: break; case MENU_LIST_HORIZONTAL: xmb->categories.selection_ptr_old = xmb->categories.selection_ptr; switch (action) { case MENU_ACTION_LEFT: if (xmb->categories.selection_ptr == 0) { xmb->categories.selection_ptr = list_size; xmb->categories.active.idx = list_size - 1; } else xmb->categories.selection_ptr--; break; default: if (xmb->categories.selection_ptr == list_size) { xmb->categories.selection_ptr = 0; xmb->categories.active.idx = 1; } else xmb->categories.selection_ptr++; break; } stack_size = menu_stack->size; if (menu_stack->list[stack_size - 1].label) free(menu_stack->list[stack_size - 1].label); menu_stack->list[stack_size - 1].label = NULL; switch (xmb->categories.selection_ptr) { case XMB_SYSTEM_TAB_MAIN: menu_stack->list[stack_size - 1].label = strdup(menu_hash_to_str(MENU_VALUE_MAIN_MENU)); menu_stack->list[stack_size - 1].type = MENU_SETTINGS; break; case XMB_SYSTEM_TAB_SETTINGS: menu_stack->list[stack_size - 1].label = strdup(menu_hash_to_str(MENU_VALUE_SETTINGS_TAB)); menu_stack->list[stack_size - 1].type = MENU_SETTINGS_TAB; break; case XMB_SYSTEM_TAB_HISTORY: menu_stack->list[stack_size - 1].label = strdup(menu_hash_to_str(MENU_VALUE_HISTORY_TAB)); menu_stack->list[stack_size - 1].type = MENU_HISTORY_TAB; break; case XMB_SYSTEM_TAB_ADD: menu_stack->list[stack_size - 1].label = strdup(menu_hash_to_str(MENU_VALUE_ADD_TAB)); menu_stack->list[stack_size - 1].type = MENU_ADD_TAB; break; default: menu_stack->list[stack_size - 1].label = strdup(menu_hash_to_str(MENU_VALUE_HORIZONTAL_MENU)); menu_stack->list[stack_size - 1].type = MENU_SETTING_HORIZONTAL_MENU; break; } break; default: break; } } static void xmb_context_destroy(void *data) { unsigned i; xmb_handle_t *xmb = (xmb_handle_t*)data; if (!xmb) return; for (i = 0; i < XMB_TEXTURE_LAST; i++) video_driver_texture_unload(&xmb->textures.list[i]); xmb_context_destroy_horizontal_list(xmb); xmb_context_bg_destroy(xmb); menu_display_ctl(MENU_DISPLAY_CTL_FONT_MAIN_DEINIT, NULL); } static void xmb_toggle(void *userdata, bool menu_on) { menu_animation_ctx_entry_t entry; bool tmp = false; xmb_handle_t *xmb = (xmb_handle_t*)userdata; if (!xmb) return; xmb->depth = xmb_list_get_size(xmb, MENU_LIST_PLAIN); if (!menu_on) { xmb->alpha = 0; return; } entry.duration = XMB_DELAY; entry.target_value = 1.0f; entry.subject = &xmb->alpha; entry.easing_enum = EASING_IN_OUT_QUAD; entry.tag = -1; entry.cb = NULL; menu_animation_ctl(MENU_ANIMATION_CTL_PUSH, &entry); tmp = !menu_entries_ctl(MENU_ENTRIES_CTL_NEEDS_REFRESH, NULL); if (tmp) menu_driver_ctl(RARCH_MENU_CTL_SET_PREVENT_POPULATE, NULL); else menu_driver_ctl(RARCH_MENU_CTL_UNSET_PREVENT_POPULATE, NULL); xmb_toggle_horizontal_list(xmb); } static int deferred_push_content_actions(menu_displaylist_info_t *info) { if (!menu_displaylist_ctl( DISPLAYLIST_HORIZONTAL_CONTENT_ACTIONS, info)) return -1; menu_displaylist_ctl(DISPLAYLIST_PROCESS, info); return 0; } static int xmb_list_bind_init_compare_label(menu_file_list_cbs_t *cbs, uint32_t label_hash) { switch (label_hash) { case MENU_LABEL_CONTENT_ACTIONS: cbs->action_deferred_push = deferred_push_content_actions; break; default: return -1; } return 0; } static int xmb_list_bind_init(menu_file_list_cbs_t *cbs, const char *path, const char *label, unsigned type, size_t idx, const char *elem0, const char *elem1, uint32_t label_hash, uint32_t menu_label_hash) { if (xmb_list_bind_init_compare_label(cbs, label_hash) == 0) return 0; return -1; } static int xmb_list_push(void *data, void *userdata, menu_displaylist_info_t *info, unsigned type) { menu_displaylist_ctx_parse_entry_t entry; int ret = -1; menu_handle_t *menu = (menu_handle_t*)data; switch (type) { case DISPLAYLIST_MAIN_MENU: menu_entries_ctl(MENU_ENTRIES_CTL_CLEAR, info->list); entry.data = menu; entry.info = info; entry.parse_type = PARSE_ACTION; entry.add_empty_entry = false; if (!rarch_ctl(RARCH_CTL_IS_DUMMY_CORE, NULL)) { entry.info_label = menu_hash_to_str(MENU_LABEL_CONTENT_SETTINGS); menu_displaylist_ctl(DISPLAYLIST_SETTING, &entry); } entry.info_label = menu_hash_to_str(MENU_LABEL_START_CORE); menu_displaylist_ctl(DISPLAYLIST_SETTING, &entry); #ifndef HAVE_DYNAMIC if (frontend_driver_has_fork()) #endif { entry.info_label = menu_hash_to_str(MENU_LABEL_CORE_LIST); menu_displaylist_ctl(DISPLAYLIST_SETTING, &entry); } entry.info_label = menu_hash_to_str(MENU_LABEL_LOAD_CONTENT_LIST); menu_displaylist_ctl(DISPLAYLIST_SETTING, &entry); #if defined(HAVE_NETWORKING) #if defined(HAVE_LIBRETRODB) entry.info_label = menu_hash_to_str(MENU_LABEL_ADD_CONTENT_LIST); menu_displaylist_ctl(DISPLAYLIST_SETTING, &entry); #endif entry.info_label = menu_hash_to_str(MENU_LABEL_ONLINE_UPDATER); menu_displaylist_ctl(DISPLAYLIST_SETTING, &entry); #endif entry.info_label = menu_hash_to_str(MENU_LABEL_INFORMATION_LIST); menu_displaylist_ctl(DISPLAYLIST_SETTING, &entry); #ifndef HAVE_DYNAMIC entry.info_label = menu_hash_to_str(MENU_LABEL_RESTART_RETROARCH); menu_displaylist_ctl(DISPLAYLIST_SETTING, &entry); #endif entry.info_label = menu_hash_to_str(MENU_LABEL_CONFIGURATIONS); menu_displaylist_ctl(DISPLAYLIST_SETTING, &entry); entry.info_label = menu_hash_to_str(MENU_LABEL_SAVE_CURRENT_CONFIG); menu_displaylist_ctl(DISPLAYLIST_SETTING, &entry); entry.info_label = menu_hash_to_str(MENU_LABEL_SAVE_NEW_CONFIG); menu_displaylist_ctl(DISPLAYLIST_SETTING, &entry); entry.info_label = menu_hash_to_str(MENU_LABEL_HELP_LIST); menu_displaylist_ctl(DISPLAYLIST_SETTING, &entry); #if !defined(IOS) entry.info_label = menu_hash_to_str(MENU_LABEL_QUIT_RETROARCH); menu_displaylist_ctl(DISPLAYLIST_SETTING, &entry); #endif entry.info_label = menu_hash_to_str(MENU_LABEL_SHUTDOWN); menu_displaylist_ctl(DISPLAYLIST_SETTING, &entry); entry.info_label = menu_hash_to_str(MENU_LABEL_REBOOT); menu_displaylist_ctl(DISPLAYLIST_SETTING, &entry); info->need_push = true; ret = 0; break; } return ret; } static bool xmb_menu_init_list(void *data) { menu_displaylist_info_t info = {0}; file_list_t *menu_stack = menu_entries_get_menu_stack_ptr(0); file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0); strlcpy(info.label, menu_hash_to_str(MENU_VALUE_MAIN_MENU), sizeof(info.label)); menu_entries_add(menu_stack, info.path, info.label, info.type, info.flags, 0); info.list = selection_buf; if (!menu_displaylist_ctl(DISPLAYLIST_MAIN_MENU, &info)) return false; info.need_push = true; if (!menu_displaylist_ctl(DISPLAYLIST_PROCESS, &info)) return false; return true; } static int xmb_pointer_tap(void *userdata, unsigned x, unsigned y, unsigned ptr, menu_file_list_cbs_t *cbs, menu_entry_t *entry, unsigned action) { size_t selection, idx; unsigned header_height; bool scroll = false; menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SELECTION, &selection); menu_display_ctl(MENU_DISPLAY_CTL_HEADER_HEIGHT, &header_height); if (y < header_height) { menu_entries_pop_stack(&selection, 0); menu_navigation_ctl(MENU_NAVIGATION_CTL_SET_SELECTION, &selection); } else if (ptr <= (menu_entries_get_size() - 1)) { if (ptr == selection && cbs && cbs->action_select) return menu_entry_action(entry, selection, MENU_ACTION_SELECT); idx = ptr; menu_navigation_ctl(MENU_NAVIGATION_CTL_SET_SELECTION, &idx); menu_navigation_ctl(MENU_NAVIGATION_CTL_SET, &scroll); } return 0; } menu_ctx_driver_t menu_ctx_xmb = { NULL, xmb_messagebox, generic_menu_iterate, xmb_render, xmb_frame, xmb_init, xmb_free, xmb_context_reset, xmb_context_destroy, xmb_populate_entries, xmb_toggle, xmb_navigation_clear, xmb_navigation_pointer_changed, xmb_navigation_pointer_changed, xmb_navigation_set, xmb_navigation_pointer_changed, xmb_navigation_alphabet, xmb_navigation_alphabet, xmb_menu_init_list, xmb_list_insert, NULL, NULL, xmb_list_clear, xmb_list_cache, xmb_list_push, xmb_list_get_selection, xmb_list_get_size, xmb_list_get_entry, NULL, xmb_list_bind_init, xmb_load_image, "xmb", xmb_environ, xmb_pointer_tap, };