RetroArch/frontend/menu/disp/xmb.c

882 lines
22 KiB
C
Raw Normal View History

2014-10-08 23:21:22 +00:00
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
* Copyright (C) 2011-2014 - Daniel De Matteis
* Copyright (C) 2012-2014 - Michael Lelli
*
* 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 <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <stddef.h>
#include <stdio.h>
#include <string.h>
#include <limits.h>
#include "../menu_common.h"
#include "../menu_driver.h"
#include "menu_display.h"
#include "../../../general.h"
#include "../../../gfx/gfx_common.h"
#include "../../../gfx/gl_common.h"
#include "../../../gfx/video_thread_wrapper.h"
#include "../../../config.def.h"
#include "../../../file.h"
#include "../../../dynamic.h"
#include "../../../compat/posix_string.h"
#include "../../../performance.h"
#include "../../../input/input_common.h"
#include "../../../settings_data.h"
#include "../../../screenshot.h"
#include "shared.h"
2014-10-09 00:41:08 +00:00
#include "tween.h"
2014-10-08 23:21:22 +00:00
2014-10-09 00:41:08 +00:00
#ifndef XMB_THEME
#define XMB_THEME "monochrome"
#endif
#ifndef XMB_DELAY
#define XMB_DELAY 0.02
#endif
typedef struct
{
char name[256];
float alpha;
float zoom;
float y;
} xmb_node_t;
enum
{
2014-10-09 20:59:05 +00:00
XMB_TEXTURE_MAIN = 0,
XMB_TEXTURE_FONT,
XMB_TEXTURE_BG,
XMB_TEXTURE_SETTINGS,
XMB_TEXTURE_SETTING,
XMB_TEXTURE_SUBSETTING,
XMB_TEXTURE_ARROW,
XMB_TEXTURE_RUN,
XMB_TEXTURE_RESUME,
XMB_TEXTURE_SAVESTATE,
XMB_TEXTURE_LOADSTATE,
XMB_TEXTURE_SCREENSHOT,
XMB_TEXTURE_RELOAD,
XMB_TEXTURE_LAST
};
2014-10-08 23:21:22 +00:00
struct xmb_texture_item
{
GLuint id;
char path[PATH_MAX];
};
2014-10-08 23:21:22 +00:00
typedef struct xmb_handle
{
int xmb_depth;
GLuint xmb_bg;
unsigned line_height;
unsigned glyph_width;
unsigned xmb_margin;
unsigned xmb_term_width;
unsigned xmb_term_height;
char icon_dir[4];
char box_message[PATH_MAX];
char xmb_title[PATH_MAX];
2014-10-09 20:59:05 +00:00
struct xmb_texture_item textures[XMB_TEXTURE_LAST];
int xmb_icon_size;
float xmb_alpha;
float xmb_hspacing;
float xmb_vspacing;
float xmb_font_size;
float xmb_margin_left;
float xmb_margin_top;
float xmb_title_margin_left;
float xmb_title_margin_top;
float xmb_label_margin_left;
float xmb_label_margin_top;
float xmb_setting_margin_left;
float xmb_above_item_offset;
float xmb_active_item_factor;
float xmb_under_item_offset;
xmb_node_t *xmb_nodes;
} xmb_handle_t;
static const GLfloat rmb_vertex[] = {
2014-10-08 23:21:22 +00:00
0, 0,
1, 0,
0, 1,
1, 1,
};
static const GLfloat rmb_tex_coord[] = {
2014-10-08 23:21:22 +00:00
0, 1,
1, 1,
0, 0,
1, 0,
};
2014-10-08 23:24:54 +00:00
static void xmb_draw_icon(GLuint texture, float x, float y,
2014-10-08 23:21:22 +00:00
float alpha, float rotation, float scale)
{
struct gl_coords coords;
2014-10-10 13:52:12 +00:00
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
if (!xmb)
return;
if (alpha > xmb->xmb_alpha)
alpha = xmb->xmb_alpha;
2014-10-08 23:21:22 +00:00
if (alpha == 0)
return;
gl_t *gl = (gl_t*)driver_video_resolve(NULL);
if (!gl)
return;
if (x < -xmb->xmb_icon_size || x > gl->win_width + xmb->xmb_icon_size
|| y < -xmb->xmb_icon_size || y > gl->win_height + xmb->xmb_icon_size)
2014-10-08 23:21:22 +00:00
return;
GLfloat color[] = {
1.0f, 1.0f, 1.0f, alpha,
1.0f, 1.0f, 1.0f, alpha,
1.0f, 1.0f, 1.0f, alpha,
1.0f, 1.0f, 1.0f, alpha,
};
if (gl->shader && gl->shader->use)
gl->shader->use(gl, GL_SHADER_STOCK_BLEND);
glViewport(x, gl->win_height - y, xmb->xmb_icon_size, xmb->xmb_icon_size);
2014-10-08 23:21:22 +00:00
coords.vertices = 4;
coords.vertex = rmb_vertex;
coords.tex_coord = rmb_tex_coord;
coords.lut_tex_coord = rmb_tex_coord;
2014-10-08 23:21:22 +00:00
coords.color = color;
glBindTexture(GL_TEXTURE_2D, texture);
math_matrix mymat;
math_matrix mrot;
matrix_rotate_z(&mrot, rotation);
matrix_multiply(&mymat, &mrot, &gl->mvp_no_rot);
math_matrix mscal;
matrix_scale(&mscal, scale, scale, 1);
matrix_multiply(&mymat, &mscal, &mymat);
gl->shader->set_coords(&coords);
gl->shader->set_mvp(gl, &mymat);
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
glDisable(GL_BLEND);
}
static void xmb_draw_text(const char *str, float x,
float y, float scale, float alpha)
{
uint8_t a8 = 0;
struct font_params params = {0};
2014-10-10 13:52:12 +00:00
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
if (!xmb)
return;
if (alpha > xmb->xmb_alpha)
alpha = xmb->xmb_alpha;
a8 = 255 * alpha;
2014-10-08 23:21:22 +00:00
if (a8 == 0)
return;
gl_t *gl = (gl_t*)driver_video_resolve(NULL);
if (!gl)
return;
if (x < -xmb->xmb_icon_size || x > gl->win_width + xmb->xmb_icon_size
|| y < -xmb->xmb_icon_size || y > gl->win_height + xmb->xmb_icon_size)
2014-10-08 23:21:22 +00:00
return;
gl_set_viewport(gl, gl->win_width, gl->win_height, false, false);
params.x = x / gl->win_width;
params.y = 1.0f - y / gl->win_height;
params.scale = scale;
params.color = FONT_COLOR_RGBA(255, 255, 255, a8);
params.full_screen = true;
if (driver.video_data && driver.video_poke
&& driver.video_poke->set_osd_msg)
driver.video_poke->set_osd_msg(driver.video_data,
str, &params);
}
static void xmb_render_background(void)
{
2014-10-10 13:52:12 +00:00
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
if (!xmb)
return;
2014-10-08 23:21:22 +00:00
GLfloat black_color[] = {
0.0f, 0.0f, 0.0f, 0.8f,
0.0f, 0.0f, 0.0f, 0.8f,
0.0f, 0.0f, 0.0f, 0.8f,
0.0f, 0.0f, 0.0f, 0.8f,
};
static const GLfloat vertex[] = {
0, 0,
1, 0,
0, 1,
1, 1,
};
static const GLfloat tex_coord[] = {
0, 1,
1, 1,
0, 0,
1, 0,
};
gl_t *gl = (gl_t*)driver_video_resolve(NULL);
if (!gl)
return;
glViewport(0, 0, gl->win_width, gl->win_height);
glEnable(GL_BLEND);
gl->coords.vertex = vertex;
gl->coords.tex_coord = tex_coord;
gl->coords.color = xmb->xmb_bg ? gl->white_color_ptr : black_color;
glBindTexture(GL_TEXTURE_2D, xmb->xmb_bg);
2014-10-08 23:21:22 +00:00
if (gl->shader && gl->shader->use)
gl->shader->use(gl, GL_SHADER_STOCK_BLEND);
gl->coords.vertices = 4;
gl->shader->set_coords(&gl->coords);
gl->shader->set_mvp(gl, &gl->mvp_no_rot);
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
glDisable(GL_BLEND);
gl->coords.color = gl->white_color_ptr;
}
static void xmb_get_message(const char *message)
{
size_t i;
(void)i;
2014-10-10 13:52:12 +00:00
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
2014-10-08 23:21:22 +00:00
if (!xmb || !message || !*message)
2014-10-08 23:21:22 +00:00
return;
strlcpy(xmb->box_message, message, sizeof(xmb->box_message));
2014-10-08 23:21:22 +00:00
}
static void xmb_render_messagebox(const char *message)
{
unsigned i;
2014-10-08 23:21:22 +00:00
gl_t *gl = (gl_t*)driver_video_resolve(NULL);
2014-10-10 13:52:12 +00:00
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
2014-10-08 23:21:22 +00:00
if (!gl || !xmb)
2014-10-08 23:21:22 +00:00
return;
struct string_list *list = string_split(message, "\n");
if (!list)
return;
if (list->elems == 0)
{
string_list_free(list);
return;
}
int x = gl->win_width / 2 - strlen(list->elems[0].data) * xmb->glyph_width / 2;
int y = gl->win_height / 2 - list->size * xmb->line_height / 2;
2014-10-08 23:21:22 +00:00
for (i = 0; i < list->size; i++)
{
const char *msg = list->elems[i].data;
2014-10-09 20:45:29 +00:00
if (msg)
xmb_draw_text(msg, x, y + i * xmb->xmb_vspacing, 1, 1);
2014-10-08 23:21:22 +00:00
}
string_list_free(list);
}
static void xmb_selection_pointer_changed(void)
2014-10-09 00:41:08 +00:00
{
2014-10-09 20:45:29 +00:00
int i, current, end;
2014-10-10 13:52:12 +00:00
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
2014-10-09 00:41:08 +00:00
2014-10-10 13:52:12 +00:00
if (!xmb)
return;
2014-10-09 00:41:08 +00:00
2014-10-09 20:45:29 +00:00
current = driver.menu->selection_ptr;
end = file_list_get_size(driver.menu->selection_buf);
for (i = 0; i < end; i++)
2014-10-09 00:41:08 +00:00
{
float iy;
float ia = 0.5;
float iz = 0.5;
xmb_node_t *node = (xmb_node_t*)&xmb->xmb_nodes[i];
2014-10-09 00:41:08 +00:00
if (!node)
continue;
iy = (i < current) ? xmb->xmb_vspacing *
(i - current + xmb->xmb_above_item_offset) :
xmb->xmb_vspacing * (i - current + xmb->xmb_under_item_offset);
2014-10-09 00:41:08 +00:00
if (i == current)
2014-10-09 00:41:08 +00:00
{
ia = 1.0;
iz = 1.0;
iy = xmb->xmb_vspacing * xmb->xmb_active_item_factor;
2014-10-09 00:41:08 +00:00
}
add_tween(XMB_DELAY, ia, &node->alpha, &inOutQuad, NULL);
add_tween(XMB_DELAY, iz, &node->zoom, &inOutQuad, NULL);
add_tween(XMB_DELAY, iy, &node->y, &inOutQuad, NULL);
}
}
static void xmb_populate_entries(void *data, const char *path,
const char *labell, unsigned ii)
2014-10-09 00:41:08 +00:00
{
int i, num_nodes, end;
2014-10-09 00:41:08 +00:00
const char *dir = NULL;
const char *label = NULL;
unsigned menu_type = 0;
2014-10-10 13:52:12 +00:00
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
2014-10-09 00:41:08 +00:00
2014-10-10 13:52:12 +00:00
if (!xmb)
return;
2014-10-09 20:45:29 +00:00
int current = driver.menu->selection_ptr;
end = num_nodes = file_list_get_size(driver.menu->selection_buf);
2014-10-09 03:35:18 +00:00
xmb->xmb_nodes = (xmb_node_t*)
realloc(xmb->xmb_nodes, num_nodes * sizeof(xmb_node_t));
2014-10-09 19:47:40 +00:00
if (!xmb->xmb_nodes)
return;
file_list_get_last(driver.menu->menu_stack, &dir, &label, &menu_type);
2014-10-09 00:41:08 +00:00
for (i = 0; i < end; i++)
2014-10-09 00:41:08 +00:00
{
2014-10-09 17:22:42 +00:00
char name[PATH_MAX], value[PATH_MAX], path_buf[PATH_MAX];
2014-10-09 03:35:18 +00:00
float iy;
xmb_node_t *node = NULL;
2014-10-09 00:41:08 +00:00
const char *path = NULL, *entry_label = NULL;
unsigned type = 0, w = 0;
2014-10-09 03:35:18 +00:00
2014-10-09 00:41:08 +00:00
file_list_get_at_offset(driver.menu->selection_buf, i, &path,
&entry_label, &type);
rarch_setting_t *setting = (rarch_setting_t*)setting_data_find_setting(
2014-10-09 00:58:05 +00:00
driver.menu->list_settings,
2014-10-09 00:41:08 +00:00
driver.menu->selection_buf->list[i].label);
(void)setting;
disp_set_label(&w, type, i, label,
value, sizeof(value),
entry_label, path,
path_buf, sizeof(path_buf));
2014-10-09 19:47:40 +00:00
strlcpy(name, path_buf, sizeof(name));
2014-10-09 00:41:08 +00:00
iy = (i < current) ? xmb->xmb_vspacing *
(i - current + xmb->xmb_above_item_offset) :
xmb->xmb_vspacing * (i - current + xmb->xmb_under_item_offset);
2014-10-09 00:41:08 +00:00
if (i == current)
iy = xmb->xmb_vspacing * xmb->xmb_active_item_factor;
2014-10-09 00:41:08 +00:00
2014-10-09 03:35:18 +00:00
node = (xmb_node_t*)&xmb->xmb_nodes[i];
if (!xmb)
continue;
2014-10-09 00:41:08 +00:00
strlcpy(node->name, name, sizeof(node->name));
node->alpha = (i == current) ? 1.0 : 0.5;
node->zoom = (i == current) ? 1.0 : 0.5;
2014-10-09 00:41:08 +00:00
node->y = iy;
}
}
2014-10-08 23:21:22 +00:00
static void xmb_frame(void)
{
2014-10-09 19:47:40 +00:00
int i;
char title_msg[64];
size_t end;
const char *dir = NULL;
const char *label = NULL;
unsigned menu_type = 0;
2014-10-10 13:52:12 +00:00
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
2014-10-08 23:21:22 +00:00
gl_t *gl = (gl_t*)driver_video_resolve(NULL);
2014-10-10 13:52:12 +00:00
if (!xmb || !gl)
2014-10-08 23:21:22 +00:00
return;
if (driver.menu->need_refresh
&& g_extern.is_menu
&& !driver.menu->msg_force)
return;
2014-10-09 00:41:08 +00:00
update_tweens(0.002);
2014-10-08 23:21:22 +00:00
glViewport(0, 0, gl->win_width, gl->win_height);
xmb_render_background();
file_list_get_last(driver.menu->menu_stack, &dir, &label, &menu_type);
get_title(label, dir, menu_type, xmb->xmb_title, sizeof(xmb->xmb_title));
2014-10-09 00:41:08 +00:00
xmb_draw_text(xmb->xmb_title, 30, 40, 1, 1);
2014-10-08 23:21:22 +00:00
const char *core_name = g_extern.menu.info.library_name;
if (!core_name)
core_name = g_extern.system.info.library_name;
if (!core_name)
core_name = "No Core";
const char *core_version = g_extern.menu.info.library_version;
if (!core_version)
core_version = g_extern.system.info.library_version;
if (!core_version)
core_version = "";
snprintf(title_msg, sizeof(title_msg), "%s - %s %s", PACKAGE_VERSION,
core_name, core_version);
xmb_draw_text(title_msg, 30, gl->win_height - 30, 1, 1);
2014-10-09 19:47:40 +00:00
end = file_list_get_size(driver.menu->selection_buf);
2014-10-08 23:21:22 +00:00
2014-10-09 19:47:40 +00:00
for (i = 0; i < end; i++)
2014-10-08 23:21:22 +00:00
{
2014-10-09 17:22:42 +00:00
char value[PATH_MAX], path_buf[PATH_MAX];
const char *path = NULL, *entry_label = NULL;
unsigned type = 0, w = 0;
xmb_node_t *node = (xmb_node_t*)&xmb->xmb_nodes[i];
2014-10-08 23:21:22 +00:00
2014-10-09 17:22:42 +00:00
file_list_get_at_offset(driver.menu->selection_buf, i, &path,
&entry_label, &type);
rarch_setting_t *setting = (rarch_setting_t*)setting_data_find_setting(
driver.menu->list_settings,
driver.menu->selection_buf->list[i].label);
(void)setting;
disp_set_label(&w, type, i, label,
value, sizeof(value),
entry_label, path,
path_buf, sizeof(path_buf));
2014-10-09 20:59:05 +00:00
xmb_draw_icon(xmb->textures[XMB_TEXTURE_SETTING].id,
xmb->xmb_margin_left + xmb->xmb_hspacing - xmb->xmb_icon_size/2.0,
xmb->xmb_margin_top + node->y + xmb->xmb_icon_size/2.0,
2014-10-09 00:41:08 +00:00
node->alpha,
2014-10-08 23:21:22 +00:00
0,
2014-10-09 00:41:08 +00:00
node->zoom);
2014-10-08 23:21:22 +00:00
2014-10-09 00:41:08 +00:00
xmb_draw_text(node->name,
xmb->xmb_margin_left + xmb->xmb_hspacing + xmb->xmb_label_margin_left,
xmb->xmb_margin_top + node->y + xmb->xmb_label_margin_top,
2014-10-08 23:21:22 +00:00
1,
2014-10-09 00:41:08 +00:00
node->alpha);
2014-10-08 23:21:22 +00:00
2014-10-09 17:22:42 +00:00
xmb_draw_text(value,
xmb->xmb_margin_left + xmb->xmb_hspacing +
xmb->xmb_label_margin_left + xmb->xmb_setting_margin_left,
xmb->xmb_margin_top + node->y + xmb->xmb_label_margin_top,
2014-10-08 23:21:22 +00:00
1,
2014-10-09 00:41:08 +00:00
node->alpha);
2014-10-08 23:21:22 +00:00
}
2014-10-09 20:59:05 +00:00
xmb_draw_icon(xmb->textures[XMB_TEXTURE_SETTINGS].id,
xmb->xmb_margin_left + xmb->xmb_hspacing - xmb->xmb_icon_size / 2.0,
xmb->xmb_margin_top + xmb->xmb_icon_size / 2.0,
2014-10-08 23:21:22 +00:00
1.0,
0,
1.0);
#ifdef GEKKO
const char *message_queue;
if (driver.menu->msg_force)
{
message_queue = msg_queue_pull(g_extern.msg_queue);
driver.menu->msg_force = false;
}
else
message_queue = driver.current_msg;
xmb_render_messagebox(message_queue);
#endif
if (driver.menu->keyboard.display)
{
char msg[PATH_MAX];
const char *str = *driver.menu->keyboard.buffer;
if (!str)
str = "";
snprintf(msg, sizeof(msg), "%s\n%s",
driver.menu->keyboard.label, str);
2014-10-08 23:21:22 +00:00
xmb_render_messagebox(msg);
}
if (xmb->box_message[0] != '\0')
2014-10-08 23:21:22 +00:00
{
xmb_render_background();
xmb_render_messagebox(xmb->box_message);
xmb->box_message[0] = '\0';
2014-10-08 23:21:22 +00:00
}
gl_set_viewport(gl, gl->win_width, gl->win_height, false, false);
}
static void xmb_init_core_info(void *data)
{
(void)data;
core_info_list_free(g_extern.core_info);
g_extern.core_info = NULL;
if (*g_settings.libretro_directory)
{
g_extern.core_info = core_info_list_new(g_settings.libretro_directory);
}
}
static void *xmb_init(void)
{
menu_handle_t *menu = NULL;
2014-10-10 13:52:12 +00:00
xmb_handle_t *xmb = NULL;
2014-10-08 23:21:22 +00:00
const video_driver_t *video_driver = NULL;
gl_t *gl = (gl_t*)driver_video_resolve(&video_driver);
if (video_driver != &video_gl || !gl)
{
RARCH_ERR("Cannot initialize GLUI menu driver: gl video driver is not active.\n");
return NULL;
}
menu = (menu_handle_t*)calloc(1, sizeof(*menu));
if (!menu)
return NULL;
2014-10-10 13:52:12 +00:00
menu->userdata = (xmb_handle_t*)calloc(1, sizeof(xmb_handle_t));
2014-10-10 13:52:12 +00:00
if (!menu->userdata)
return NULL;
2014-10-10 13:52:12 +00:00
xmb = (xmb_handle_t*)menu->userdata;
if (!xmb)
return NULL;
xmb->xmb_icon_size = 96;
xmb->xmb_hspacing = 150.0;
xmb->xmb_vspacing = 48.0;
xmb->xmb_font_size = 18;
xmb->xmb_margin_left = 224;
xmb->xmb_margin_top = 192;
xmb->xmb_title_margin_left = 15.0;
xmb->xmb_title_margin_top = 30.0;
xmb->xmb_label_margin_left = 64;
xmb->xmb_label_margin_top = 6.0;
xmb->xmb_setting_margin_left = 400;
xmb->xmb_above_item_offset = -1.0;
xmb->xmb_active_item_factor = 2.75;
xmb->xmb_under_item_offset = 4.0;
xmb->xmb_alpha = 1.0f;
xmb->xmb_depth = 0;
xmb->xmb_bg = 0;
strlcpy(xmb->icon_dir, "96", sizeof(xmb->icon_dir));
2014-10-08 23:21:22 +00:00
xmb_init_core_info(menu);
return menu;
}
static void xmb_free(void *data)
{
menu_handle_t *menu = (menu_handle_t*)data;
if (g_extern.core_info)
core_info_list_free(g_extern.core_info);
2014-10-10 13:52:12 +00:00
if (menu->userdata)
free(menu->userdata);
2014-10-08 23:21:22 +00:00
g_extern.core_info = NULL;
}
static GLuint xmb_png_texture_load_(const char * file_name)
{
struct texture_image ti = {0};
GLuint texture = 0;
2014-10-08 23:21:22 +00:00
if (! path_file_exists(file_name))
return 0;
texture_image_load(&ti, file_name);
/* Generate the OpenGL texture object */
glGenTextures(1, &texture);
glBindTexture(GL_TEXTURE_2D, texture);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, ti.width, ti.height, 0,
GL_RGBA, GL_UNSIGNED_BYTE, ti.pixels);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
free(ti.pixels);
return texture;
}
static int xmb_png_texture_load_wrap(void * file_name)
{
return xmb_png_texture_load_(file_name);
}
static GLuint xmb_png_texture_load(const char* file_name)
{
if (g_settings.video.threaded
&& !g_extern.system.hw_render_callback.context_type)
{
thread_video_t *thr = (thread_video_t*)driver.video_data;
thr->cmd_data.custom_command.method = xmb_png_texture_load_wrap;
thr->cmd_data.custom_command.data = (void*)file_name;
thr->send_cmd_func(thr, CMD_CUSTOM_COMMAND);
thr->wait_reply_func(thr, CMD_CUSTOM_COMMAND);
return thr->cmd_data.custom_command.return_value;
}
return xmb_png_texture_load_(file_name);
}
static void xmb_context_reset(void *data)
{
int k;
char bgpath[PATH_MAX];
char mediapath[PATH_MAX], themepath[PATH_MAX], iconpath[PATH_MAX];
2014-10-10 13:52:12 +00:00
gl_t *gl = NULL;
xmb_handle_t *xmb = NULL;
2014-10-08 23:21:22 +00:00
menu_handle_t *menu = (menu_handle_t*)data;
2014-10-10 13:52:12 +00:00
if (!menu)
return;
gl = (gl_t*)driver_video_resolve(NULL);
if (!gl)
return;
xmb = (xmb_handle_t*)menu->userdata;
if (!xmb)
return;
2014-10-08 23:21:22 +00:00
(void)gl;
driver.gfx_use_rgba = true;
if (!menu || !xmb)
2014-10-08 23:21:22 +00:00
return;
fill_pathname_join(bgpath, g_settings.assets_directory,
"xmb", sizeof(bgpath));
fill_pathname_join(bgpath, bgpath, "bg.png", sizeof(bgpath));
if (path_file_exists(bgpath))
xmb->xmb_bg = xmb_png_texture_load(bgpath);
2014-10-08 23:21:22 +00:00
fill_pathname_join(mediapath, g_settings.assets_directory,
"lakka", sizeof(mediapath));
2014-10-09 00:41:08 +00:00
fill_pathname_join(themepath, mediapath, XMB_THEME, sizeof(themepath));
fill_pathname_join(iconpath, themepath, xmb->icon_dir, sizeof(iconpath));
2014-10-08 23:21:22 +00:00
fill_pathname_slash(iconpath, sizeof(iconpath));
2014-10-09 20:59:05 +00:00
fill_pathname_join(xmb->textures[XMB_TEXTURE_BG].path, iconpath,
"bg.png", sizeof(xmb->textures[XMB_TEXTURE_BG].path));
fill_pathname_join(xmb->textures[XMB_TEXTURE_SETTINGS].path, iconpath,
"settings.png", sizeof(xmb->textures[XMB_TEXTURE_SETTINGS].path));
fill_pathname_join(xmb->textures[XMB_TEXTURE_SETTING].path, iconpath,
"setting.png", sizeof(xmb->textures[XMB_TEXTURE_SETTING].path));
fill_pathname_join(xmb->textures[XMB_TEXTURE_SUBSETTING].path, iconpath,
"subsetting.png", sizeof(xmb->textures[XMB_TEXTURE_SUBSETTING].path));
fill_pathname_join(xmb->textures[XMB_TEXTURE_ARROW].path, iconpath,
"arrow.png", sizeof(xmb->textures[XMB_TEXTURE_ARROW].path));
fill_pathname_join(xmb->textures[XMB_TEXTURE_RUN].path, iconpath,
"run.png", sizeof(xmb->textures[XMB_TEXTURE_RUN].path));
fill_pathname_join(xmb->textures[XMB_TEXTURE_RESUME].path, iconpath,
"resume.png", sizeof(xmb->textures[XMB_TEXTURE_RESUME].path));
fill_pathname_join(xmb->textures[XMB_TEXTURE_SAVESTATE].path, iconpath,
"savestate.png", sizeof(xmb->textures[XMB_TEXTURE_SAVESTATE].path));
fill_pathname_join(xmb->textures[XMB_TEXTURE_LOADSTATE].path, iconpath,
"loadstate.png", sizeof(xmb->textures[XMB_TEXTURE_LOADSTATE].path));
fill_pathname_join(xmb->textures[XMB_TEXTURE_SCREENSHOT].path, iconpath,
"screenshot.png", sizeof(xmb->textures[XMB_TEXTURE_SCREENSHOT].path));
fill_pathname_join(xmb->textures[XMB_TEXTURE_RELOAD].path, iconpath,
"reload.png", sizeof(xmb->textures[XMB_TEXTURE_RELOAD].path));
for (k = 0; k < XMB_TEXTURE_LAST; k++)
xmb->textures[k].id = xmb_png_texture_load(xmb->textures[k].path);
2014-10-08 23:21:22 +00:00
}
static void xmb_navigation_clear(void *data)
{
(void)data;
xmb_selection_pointer_changed();
}
static void xmb_navigation_decrement(void *data)
{
(void)data;
xmb_selection_pointer_changed();
}
static void xmb_navigation_increment(void *data)
{
(void)data;
xmb_selection_pointer_changed();
}
static void xmb_navigation_set(void *data)
{
(void)data;
xmb_selection_pointer_changed();
}
static void xmb_navigation_set_last(void *data)
{
(void)data;
xmb_selection_pointer_changed();
}
static void xmb_navigation_descend_alphabet(void *data, size_t *unused)
{
(void)data;
(void)unused;
xmb_selection_pointer_changed();
}
static void xmb_navigation_ascend_alphabet(void *data, size_t *unused)
{
(void)data;
(void)unused;
xmb_selection_pointer_changed();
}
static void xmb_list_insert(void *data,
const char *path, const char *unused, size_t list_size)
{
(void)data;
(void)path;
(void)unused;
(void)list_size;
}
static void xmb_list_delete(void *data, size_t list_size)
{
(void)data;
(void)list_size;
}
static void xmb_list_clear(void *data)
{
(void)data;
}
static void xmb_list_set_selection(void *data)
{
(void)data;
}
2014-10-09 20:59:05 +00:00
static void xmb_context_destroy(void *data)
{
2014-10-10 13:52:12 +00:00
int i;
xmb_handle_t *xmb = NULL;
menu_handle_t *menu = (menu_handle_t*)driver.menu;
if (!menu)
return;
2014-10-09 20:59:05 +00:00
2014-10-10 13:52:12 +00:00
xmb = (xmb_handle_t*)menu->userdata;
2014-10-09 20:59:05 +00:00
if (!xmb)
return;
for (i = 0; i < XMB_TEXTURE_LAST; i++)
glDeleteTextures(1, &xmb->textures[i].id);
}
2014-10-08 23:21:22 +00:00
menu_ctx_driver_t menu_ctx_xmb = {
NULL,
xmb_get_message,
NULL,
xmb_frame,
xmb_init,
2014-10-09 00:58:05 +00:00
NULL,
2014-10-08 23:21:22 +00:00
xmb_free,
xmb_context_reset,
2014-10-09 20:59:05 +00:00
xmb_context_destroy,
xmb_populate_entries,
2014-10-08 23:21:22 +00:00
NULL,
NULL,
xmb_navigation_clear,
xmb_navigation_decrement,
xmb_navigation_increment,
xmb_navigation_set,
xmb_navigation_set_last,
xmb_navigation_descend_alphabet,
xmb_navigation_ascend_alphabet,
xmb_list_insert,
xmb_list_delete,
xmb_list_clear,
xmb_list_set_selection,
2014-10-08 23:21:22 +00:00
xmb_init_core_info,
&menu_ctx_backend_common,
"xmb",
};