2014-10-08 23:21:22 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2011-2014 - Daniel De Matteis
|
2014-10-10 17:53:13 +00:00
|
|
|
* Copyright (C) 2014 - Jean-André Santoni
|
2014-10-08 23:21:22 +00:00
|
|
|
*
|
|
|
|
* 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>
|
2014-10-16 05:27:42 +00:00
|
|
|
#include <stdint.h>
|
2014-10-08 23:21:22 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
|
|
#include "../menu_common.h"
|
2014-10-28 18:54:23 +00:00
|
|
|
#include "../../general.h"
|
2014-10-21 22:23:06 +00:00
|
|
|
#include <file/file_path.h>
|
2014-10-28 18:54:23 +00:00
|
|
|
#include "../../gfx/gl_common.h"
|
|
|
|
#include "../../gfx/video_thread_wrapper.h"
|
2014-10-21 05:58:58 +00:00
|
|
|
#include <compat/posix_string.h>
|
2014-10-08 23:21:22 +00:00
|
|
|
|
|
|
|
#include "shared.h"
|
2014-10-10 17:53:13 +00:00
|
|
|
#include "../menu_animation.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
|
|
|
|
{
|
|
|
|
float alpha;
|
2014-10-20 18:00:39 +00:00
|
|
|
float label_alpha;
|
2014-10-09 00:41:08 +00:00
|
|
|
float zoom;
|
2014-10-20 18:00:39 +00:00
|
|
|
float x;
|
2014-10-09 00:41:08 +00:00
|
|
|
float y;
|
|
|
|
} xmb_node_t;
|
|
|
|
|
2014-10-09 02:34:16 +00:00
|
|
|
enum
|
|
|
|
{
|
2014-10-10 20:31:43 +00:00
|
|
|
XMB_TEXTURE_BG = 0,
|
2014-10-09 20:59:05 +00:00
|
|
|
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,
|
2014-10-14 21:05:53 +00:00
|
|
|
XMB_TEXTURE_FILE,
|
|
|
|
XMB_TEXTURE_FOLDER,
|
|
|
|
XMB_TEXTURE_ZIP,
|
2014-10-18 14:26:02 +00:00
|
|
|
XMB_TEXTURE_CORE,
|
2014-10-22 00:41:28 +00:00
|
|
|
XMB_TEXTURE_SWITCH_ON,
|
|
|
|
XMB_TEXTURE_SWITCH_OFF,
|
2014-10-09 20:59:05 +00:00
|
|
|
XMB_TEXTURE_LAST
|
2014-10-09 02:34:16 +00:00
|
|
|
};
|
2014-10-08 23:21:22 +00:00
|
|
|
|
2014-10-09 02:34:16 +00:00
|
|
|
struct xmb_texture_item
|
|
|
|
{
|
|
|
|
GLuint id;
|
|
|
|
char path[PATH_MAX];
|
|
|
|
};
|
2014-10-08 23:21:22 +00:00
|
|
|
|
2014-10-09 02:34:16 +00:00
|
|
|
typedef struct xmb_handle
|
|
|
|
{
|
2014-10-10 20:42:56 +00:00
|
|
|
int depth;
|
2014-10-11 23:27:31 +00:00
|
|
|
int old_depth;
|
2014-10-09 02:34:16 +00:00
|
|
|
char icon_dir[4];
|
|
|
|
char box_message[PATH_MAX];
|
2014-10-10 20:42:56 +00:00
|
|
|
char title[PATH_MAX];
|
2014-10-09 20:59:05 +00:00
|
|
|
struct xmb_texture_item textures[XMB_TEXTURE_LAST];
|
2014-10-10 20:42:56 +00:00
|
|
|
int icon_size;
|
2014-10-11 23:27:31 +00:00
|
|
|
float x;
|
2014-10-10 20:42:56 +00:00
|
|
|
float alpha;
|
2014-10-20 18:00:39 +00:00
|
|
|
float arrow_alpha;
|
2014-10-10 20:42:56 +00:00
|
|
|
float hspacing;
|
|
|
|
float vspacing;
|
|
|
|
float margin_left;
|
|
|
|
float margin_top;
|
|
|
|
float title_margin_left;
|
|
|
|
float title_margin_top;
|
2014-10-18 12:51:50 +00:00
|
|
|
float title_margin_bottom;
|
2014-10-10 20:42:56 +00:00
|
|
|
float label_margin_left;
|
|
|
|
float label_margin_top;
|
|
|
|
float setting_margin_left;
|
|
|
|
float above_item_offset;
|
|
|
|
float active_item_factor;
|
|
|
|
float under_item_offset;
|
2014-10-12 00:52:33 +00:00
|
|
|
float above_subitem_offset;
|
|
|
|
float c_active_zoom;
|
|
|
|
float c_active_alpha;
|
|
|
|
float i_active_zoom;
|
|
|
|
float i_active_alpha;
|
|
|
|
float c_passive_zoom;
|
|
|
|
float c_passive_alpha;
|
|
|
|
float i_passive_zoom;
|
|
|
|
float i_passive_alpha;
|
2014-11-07 16:08:44 +00:00
|
|
|
void *font;
|
|
|
|
int font_size;
|
2014-10-09 02:34:16 +00:00
|
|
|
} xmb_handle_t;
|
|
|
|
|
2014-10-09 02:51:42 +00:00
|
|
|
static const GLfloat rmb_vertex[] = {
|
2014-10-08 23:21:22 +00:00
|
|
|
0, 0,
|
|
|
|
1, 0,
|
|
|
|
0, 1,
|
|
|
|
1, 1,
|
|
|
|
};
|
|
|
|
|
2014-10-09 02:51:42 +00:00
|
|
|
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-14 20:37:01 +00:00
|
|
|
float alpha, float rotation, float scale_factor)
|
2014-10-08 23:21:22 +00:00
|
|
|
{
|
2014-10-09 02:34:16 +00:00
|
|
|
struct gl_coords coords;
|
2014-10-26 01:32:10 +00:00
|
|
|
math_matrix_4x4 mymat, mrot, mscal;
|
2014-10-10 13:52:12 +00:00
|
|
|
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
|
2014-10-09 02:34:16 +00:00
|
|
|
|
|
|
|
if (!xmb)
|
|
|
|
return;
|
|
|
|
|
2014-10-10 20:42:56 +00:00
|
|
|
if (alpha > xmb->alpha)
|
|
|
|
alpha = 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;
|
|
|
|
|
2014-10-10 20:42:56 +00:00
|
|
|
if (x < -xmb->icon_size || x > gl->win_width + xmb->icon_size
|
|
|
|
|| y < -xmb->icon_size || y > gl->win_height + 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);
|
|
|
|
|
2014-10-10 20:42:56 +00:00
|
|
|
glViewport(x, gl->win_height - y, xmb->icon_size, xmb->icon_size);
|
2014-10-08 23:21:22 +00:00
|
|
|
|
|
|
|
coords.vertices = 4;
|
2014-10-09 02:51:42 +00:00
|
|
|
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);
|
|
|
|
|
2014-10-26 01:32:10 +00:00
|
|
|
matrix_4x4_rotate_z(&mrot, rotation);
|
|
|
|
matrix_4x4_multiply(&mymat, &mrot, &gl->mvp_no_rot);
|
2014-10-08 23:21:22 +00:00
|
|
|
|
2014-10-26 01:32:10 +00:00
|
|
|
matrix_4x4_scale(&mscal, scale_factor, scale_factor, 1);
|
|
|
|
matrix_4x4_multiply(&mymat, &mscal, &mymat);
|
2014-10-08 23:21:22 +00:00
|
|
|
|
|
|
|
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,
|
2014-10-14 20:37:01 +00:00
|
|
|
float y, float scale_factor, float alpha)
|
2014-10-08 23:21:22 +00:00
|
|
|
{
|
2014-10-09 02:34:16 +00:00
|
|
|
uint8_t a8 = 0;
|
2014-10-09 19:57:05 +00:00
|
|
|
struct font_params params = {0};
|
2014-10-10 13:52:12 +00:00
|
|
|
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
|
2014-10-09 02:34:16 +00:00
|
|
|
|
|
|
|
if (!xmb)
|
|
|
|
return;
|
|
|
|
|
2014-10-10 20:42:56 +00:00
|
|
|
if (alpha > xmb->alpha)
|
|
|
|
alpha = xmb->alpha;
|
2014-10-09 02:34:16 +00:00
|
|
|
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;
|
|
|
|
|
2014-10-10 20:42:56 +00:00
|
|
|
if (x < -xmb->icon_size || x > gl->win_width + xmb->icon_size
|
|
|
|
|| y < -xmb->icon_size || y > gl->win_height + 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;
|
|
|
|
|
2014-10-14 20:37:01 +00:00
|
|
|
params.scale = scale_factor;
|
2014-10-08 23:21:22 +00:00
|
|
|
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,
|
2014-11-07 16:08:44 +00:00
|
|
|
str, ¶ms, xmb->font);
|
2014-10-08 23:21:22 +00:00
|
|
|
}
|
|
|
|
|
2014-10-12 16:22:51 +00:00
|
|
|
static void xmb_render_background(bool force_transparency)
|
2014-10-08 23:21:22 +00:00
|
|
|
{
|
2014-10-12 16:22:51 +00:00
|
|
|
float alpha = 0.75f;
|
2014-10-12 00:35:50 +00:00
|
|
|
gl_t *gl = NULL;
|
|
|
|
xmb_handle_t *xmb = NULL;
|
|
|
|
|
|
|
|
if (!driver.menu)
|
|
|
|
return;
|
|
|
|
|
|
|
|
xmb = (xmb_handle_t*)driver.menu->userdata;
|
2014-10-09 02:34:16 +00:00
|
|
|
|
|
|
|
if (!xmb)
|
|
|
|
return;
|
|
|
|
|
2014-10-12 00:35:50 +00:00
|
|
|
GLfloat color[] = {
|
|
|
|
1.0f, 1.0f, 1.0f, xmb->alpha,
|
|
|
|
1.0f, 1.0f, 1.0f, xmb->alpha,
|
|
|
|
1.0f, 1.0f, 1.0f, xmb->alpha,
|
|
|
|
1.0f, 1.0f, 1.0f, xmb->alpha,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (alpha > xmb->alpha)
|
|
|
|
alpha = xmb->alpha;
|
|
|
|
|
2014-10-08 23:21:22 +00:00
|
|
|
GLfloat black_color[] = {
|
2014-10-12 00:35:50 +00:00
|
|
|
0.0f, 0.0f, 0.0f, alpha,
|
|
|
|
0.0f, 0.0f, 0.0f, alpha,
|
|
|
|
0.0f, 0.0f, 0.0f, alpha,
|
|
|
|
0.0f, 0.0f, 0.0f, alpha,
|
2014-10-08 23:21:22 +00:00
|
|
|
};
|
|
|
|
|
2014-10-12 00:35:50 +00:00
|
|
|
gl = (gl_t*)driver_video_resolve(NULL);
|
|
|
|
|
|
|
|
if (!gl)
|
|
|
|
return;
|
|
|
|
|
|
|
|
glViewport(0, 0, gl->win_width, gl->win_height);
|
|
|
|
|
2014-10-08 23:21:22 +00:00
|
|
|
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,
|
|
|
|
};
|
|
|
|
|
2014-10-12 00:35:50 +00:00
|
|
|
struct gl_coords coords;
|
|
|
|
coords.vertices = 4;
|
|
|
|
coords.vertex = vertex;
|
|
|
|
coords.tex_coord = tex_coord;
|
|
|
|
coords.lut_tex_coord = tex_coord;
|
2014-10-12 01:24:12 +00:00
|
|
|
|
|
|
|
if ((g_settings.menu.pause_libretro
|
|
|
|
|| !g_extern.main_is_init || g_extern.libretro_dummy)
|
2014-10-12 16:22:51 +00:00
|
|
|
&& !force_transparency
|
2014-10-12 01:24:12 +00:00
|
|
|
&& xmb->textures[XMB_TEXTURE_BG].id)
|
|
|
|
{
|
|
|
|
coords.color = color;
|
|
|
|
glBindTexture(GL_TEXTURE_2D, xmb->textures[XMB_TEXTURE_BG].id);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
coords.color = black_color;
|
|
|
|
glBindTexture(GL_TEXTURE_2D, 0);
|
|
|
|
}
|
2014-10-08 23:21:22 +00:00
|
|
|
|
2014-10-19 20:24:29 +00:00
|
|
|
gl->shader->use(gl, GL_SHADER_STOCK_BLEND);
|
2014-10-12 00:35:50 +00:00
|
|
|
gl->shader->set_coords(&coords);
|
2014-10-08 23:21:22 +00:00
|
|
|
gl->shader->set_mvp(gl, &gl->mvp_no_rot);
|
|
|
|
|
2014-10-12 00:35:50 +00:00
|
|
|
glEnable(GL_BLEND);
|
2014-10-08 23:21:22 +00:00
|
|
|
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
|
|
|
|
glDisable(GL_BLEND);
|
2014-10-12 17:22:01 +00:00
|
|
|
|
|
|
|
gl->coords.color = gl->white_color_ptr;
|
2014-10-08 23:21:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
2014-10-10 14:23:12 +00:00
|
|
|
if (!xmb || !message || !*message)
|
2014-10-08 23:21:22 +00:00
|
|
|
return;
|
|
|
|
|
2014-10-09 02:34:16 +00:00
|
|
|
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)
|
|
|
|
{
|
2014-10-09 02:34:16 +00:00
|
|
|
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
|
|
|
|
2014-10-10 14:23:12 +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;
|
|
|
|
}
|
|
|
|
|
2014-11-07 16:08:44 +00:00
|
|
|
int x = gl->win_width / 2 - strlen(list->elems[0].data) * xmb->font_size / 4;
|
|
|
|
int y = gl->win_height / 2 - list->size * xmb->font_size / 2;
|
2014-10-09 02:34:16 +00:00
|
|
|
|
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)
|
2014-11-07 16:08:44 +00:00
|
|
|
xmb_draw_text(msg, x, y + i * xmb->font_size, 1, 1);
|
2014-10-08 23:21:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
string_list_free(list);
|
|
|
|
}
|
|
|
|
|
2014-10-09 02:34:16 +00:00
|
|
|
static void xmb_selection_pointer_changed(void)
|
2014-10-09 00:41:08 +00:00
|
|
|
{
|
2014-10-28 01:00:56 +00:00
|
|
|
int i;
|
2014-10-21 23:04:59 +00:00
|
|
|
unsigned 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)
|
2014-10-09 02:34:16 +00:00
|
|
|
return;
|
2014-10-09 00:41:08 +00:00
|
|
|
|
2014-10-09 20:45:29 +00:00
|
|
|
current = driver.menu->selection_ptr;
|
2014-10-18 00:32:59 +00:00
|
|
|
end = menu_list_get_size(driver.menu->menu_list);
|
2014-10-09 20:45:29 +00:00
|
|
|
|
2014-10-09 20:33:23 +00:00
|
|
|
for (i = 0; i < end; i++)
|
2014-10-09 00:41:08 +00:00
|
|
|
{
|
|
|
|
float iy;
|
2014-10-12 00:52:33 +00:00
|
|
|
float ia = xmb->i_passive_alpha;
|
|
|
|
float iz = xmb->i_passive_zoom;
|
2014-10-10 20:08:11 +00:00
|
|
|
xmb_node_t *node = (xmb_node_t*)file_list_get_userdata_at_offset(
|
2014-10-17 23:17:00 +00:00
|
|
|
driver.menu->menu_list->selection_buf, i);
|
2014-10-09 00:41:08 +00:00
|
|
|
|
|
|
|
if (!node)
|
|
|
|
continue;
|
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
if (i < current)
|
|
|
|
if (xmb->depth > 1)
|
2014-10-28 01:00:56 +00:00
|
|
|
iy = xmb->vspacing * (i - (int)current + xmb->above_subitem_offset);
|
2014-10-20 18:00:39 +00:00
|
|
|
else
|
2014-10-28 01:00:56 +00:00
|
|
|
iy = xmb->vspacing * (i - (int)current + xmb->above_item_offset);
|
2014-10-20 18:00:39 +00:00
|
|
|
else
|
2014-10-28 01:00:56 +00:00
|
|
|
iy = xmb->vspacing * (i - (int)current + xmb->under_item_offset);
|
2014-10-09 00:41:08 +00:00
|
|
|
|
2014-10-09 20:30:17 +00:00
|
|
|
if (i == current)
|
2014-10-09 00:41:08 +00:00
|
|
|
{
|
2014-10-12 00:52:33 +00:00
|
|
|
ia = xmb->i_active_alpha;
|
|
|
|
iz = xmb->i_active_zoom;
|
2014-10-10 20:42:56 +00:00
|
|
|
iy = xmb->vspacing * xmb->active_item_factor;
|
2014-10-09 00:41:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
add_tween(XMB_DELAY, ia, &node->alpha, &inOutQuad, NULL);
|
2014-10-20 18:00:39 +00:00
|
|
|
add_tween(XMB_DELAY, ia, &node->label_alpha, &inOutQuad, NULL);
|
2014-10-09 00:41:08 +00:00
|
|
|
add_tween(XMB_DELAY, iz, &node->zoom, &inOutQuad, NULL);
|
|
|
|
add_tween(XMB_DELAY, iy, &node->y, &inOutQuad, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
static void xmb_list_open_old(file_list_t *list, int dir, size_t current)
|
2014-10-09 00:41:08 +00:00
|
|
|
{
|
2014-10-28 01:00:56 +00:00
|
|
|
int i;
|
2014-10-11 23:27:31 +00:00
|
|
|
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
|
|
|
|
|
|
|
|
if (!xmb)
|
|
|
|
return;
|
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
for (i = 0; i < file_list_get_size(list); i++)
|
|
|
|
{
|
|
|
|
xmb_node_t *node = NULL;
|
|
|
|
node = (xmb_node_t*)file_list_get_userdata_at_offset(list, i);
|
|
|
|
float ia = i == current ? xmb->i_active_alpha : 0;
|
|
|
|
if (dir == -1) ia = 0;
|
|
|
|
add_tween(XMB_DELAY, ia, &node->alpha, &inOutQuad, NULL);
|
|
|
|
add_tween(XMB_DELAY, 0, &node->label_alpha, &inOutQuad, NULL);
|
|
|
|
//if (i == current)
|
|
|
|
add_tween(XMB_DELAY, xmb->icon_size*dir*-2, &node->x, &inOutQuad, NULL);
|
|
|
|
//else
|
|
|
|
// add_tween(XMB_DELAY, xmb->icon_size*dir*-1, &node->x, &inOutQuad, NULL);
|
|
|
|
}
|
|
|
|
}
|
2014-10-11 23:27:31 +00:00
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
static void xmb_list_open_new(file_list_t *list, int dir, size_t current)
|
|
|
|
{
|
2014-10-28 01:00:56 +00:00
|
|
|
int i;
|
2014-10-20 18:00:39 +00:00
|
|
|
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
|
2014-10-17 23:24:14 +00:00
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
if (!xmb)
|
|
|
|
return;
|
2014-10-17 23:24:14 +00:00
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
for (i = 0; i < file_list_get_size(list); i++)
|
2014-10-17 23:24:14 +00:00
|
|
|
{
|
2014-10-20 21:07:24 +00:00
|
|
|
xmb_node_t *node = (xmb_node_t*)file_list_get_userdata_at_offset(list, i);
|
|
|
|
|
|
|
|
if (!xmb)
|
|
|
|
continue;
|
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
node->label_alpha = 0;
|
|
|
|
if (dir == 1 || (dir == -1 && i != current))
|
|
|
|
node->alpha = 0;
|
|
|
|
//if (dir == 1 || (dir == -1 && i == current))
|
|
|
|
node->x = xmb->icon_size*dir*2;
|
|
|
|
//else
|
|
|
|
// node->x = xmb->icon_size*dir;
|
|
|
|
|
|
|
|
float iy = 0;
|
|
|
|
|
|
|
|
if (i < current)
|
|
|
|
if (xmb->depth > 1)
|
2014-10-28 01:00:56 +00:00
|
|
|
iy = xmb->vspacing * (i - (int)current + xmb->above_subitem_offset);
|
2014-10-20 18:00:39 +00:00
|
|
|
else
|
2014-10-28 01:00:56 +00:00
|
|
|
iy = xmb->vspacing * (i - (int)current + xmb->above_item_offset);
|
2014-10-20 18:00:39 +00:00
|
|
|
else
|
2014-10-28 01:00:56 +00:00
|
|
|
iy = xmb->vspacing * (i - (int)current + xmb->under_item_offset);
|
2014-10-17 23:24:14 +00:00
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
if (i == current)
|
|
|
|
iy = xmb->vspacing * xmb->active_item_factor;
|
2014-10-17 23:24:14 +00:00
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
node->y = iy;
|
2014-10-17 23:24:14 +00:00
|
|
|
|
|
|
|
if (i == current)
|
2014-10-20 18:00:39 +00:00
|
|
|
node->zoom = 1;
|
|
|
|
}
|
|
|
|
for (i = 0; i < file_list_get_size(list); i++)
|
|
|
|
{
|
2014-10-20 21:07:24 +00:00
|
|
|
xmb_node_t *node = (xmb_node_t*)file_list_get_userdata_at_offset(list, i);
|
|
|
|
|
|
|
|
if (!xmb)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
float ia = (i == current) ? 1.0 : 0.5;
|
2014-10-20 18:00:39 +00:00
|
|
|
add_tween(XMB_DELAY, ia, &node->alpha, &inOutQuad, NULL);
|
|
|
|
add_tween(XMB_DELAY, ia, &node->label_alpha, &inOutQuad, NULL);
|
|
|
|
add_tween(XMB_DELAY, 0, &node->x, &inOutQuad, NULL);
|
2014-10-17 23:24:14 +00:00
|
|
|
}
|
2014-10-19 23:51:00 +00:00
|
|
|
|
|
|
|
xmb->old_depth = xmb->depth;
|
2014-10-09 00:41:08 +00:00
|
|
|
}
|
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
static void xmb_populate_entries(void *data, const char *path,
|
|
|
|
const char *label, unsigned j)
|
2014-10-08 23:21:22 +00:00
|
|
|
{
|
2014-10-21 03:51:30 +00:00
|
|
|
unsigned i, current, end;
|
2014-10-10 13:52:12 +00:00
|
|
|
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
|
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
if (!xmb)
|
2014-10-08 23:21:22 +00:00
|
|
|
return;
|
2014-10-20 19:53:16 +00:00
|
|
|
|
|
|
|
(void)current;
|
|
|
|
(void)end;
|
|
|
|
(void)i;
|
2014-10-08 23:21:22 +00:00
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
xmb->depth = file_list_get_size(driver.menu->menu_list->menu_stack);
|
2014-10-09 00:41:08 +00:00
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
int dir = 0;
|
|
|
|
if (xmb->depth > xmb->old_depth)
|
|
|
|
dir = 1;
|
|
|
|
else if (xmb->depth < xmb->old_depth)
|
|
|
|
dir = -1;
|
2014-10-08 23:21:22 +00:00
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
xmb_list_open_old(driver.menu->menu_list->selection_buf_old, dir, driver.menu->selection_ptr_old);
|
|
|
|
xmb_list_open_new(driver.menu->menu_list->selection_buf, dir, driver.menu->selection_ptr);
|
2014-10-08 23:21:22 +00:00
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
if (xmb->depth == 1 || xmb->depth == 2)
|
|
|
|
add_tween(XMB_DELAY, xmb->icon_size*-(xmb->depth*2-2), &xmb->x, &inOutQuad, NULL);
|
2014-10-08 23:21:22 +00:00
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
if (xmb->depth == 1)
|
|
|
|
add_tween(XMB_DELAY, 0, &xmb->arrow_alpha, &inOutQuad, NULL);
|
2014-10-09 00:41:08 +00:00
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
if (xmb->depth == 2)
|
|
|
|
add_tween(XMB_DELAY, 1, &xmb->arrow_alpha, &inOutQuad, NULL);
|
2014-10-08 23:21:22 +00:00
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
xmb->old_depth = xmb->depth;
|
|
|
|
}
|
2014-10-08 23:21:22 +00:00
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
static void xmb_draw_items(file_list_t *list, file_list_t *stack, size_t current)
|
|
|
|
{
|
2014-10-21 03:51:30 +00:00
|
|
|
unsigned i;
|
2014-10-20 18:00:39 +00:00
|
|
|
const char *dir = NULL;
|
|
|
|
const char *label = NULL;
|
|
|
|
unsigned menu_type = 0;
|
|
|
|
size_t end = file_list_get_size(list);
|
2014-10-08 23:21:22 +00:00
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
|
|
|
|
if (!xmb || !list->size)
|
|
|
|
return;
|
2014-10-08 23:21:22 +00:00
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
file_list_get_last(stack, &dir, &label, &menu_type);
|
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-12 18:30:19 +00:00
|
|
|
char val_buf[PATH_MAX], path_buf[PATH_MAX];
|
|
|
|
char name[256], value[256];
|
2014-10-09 17:22:42 +00:00
|
|
|
const char *path = NULL, *entry_label = NULL;
|
|
|
|
unsigned type = 0, w = 0;
|
2014-10-10 20:08:11 +00:00
|
|
|
xmb_node_t *node = NULL;
|
2014-10-08 23:21:22 +00:00
|
|
|
|
2014-10-20 18:00:39 +00:00
|
|
|
menu_list_get_at_offset(list, i, &path, &entry_label, &type);
|
|
|
|
node = (xmb_node_t*)file_list_get_userdata_at_offset(list, i);
|
|
|
|
|
|
|
|
disp_set_label(list, &w, type, i, label,
|
2014-10-12 18:30:19 +00:00
|
|
|
val_buf, sizeof(val_buf),
|
2014-10-09 17:22:42 +00:00
|
|
|
entry_label, path,
|
|
|
|
path_buf, sizeof(path_buf));
|
|
|
|
|
2014-10-14 21:05:53 +00:00
|
|
|
GLuint icon = 0;
|
|
|
|
switch(type)
|
|
|
|
{
|
|
|
|
case MENU_FILE_DIRECTORY:
|
|
|
|
icon = xmb->textures[XMB_TEXTURE_FOLDER].id;
|
|
|
|
break;
|
|
|
|
case MENU_FILE_PLAIN:
|
|
|
|
icon = xmb->textures[XMB_TEXTURE_FILE].id;
|
|
|
|
break;
|
|
|
|
case MENU_FILE_CARCHIVE:
|
|
|
|
icon = xmb->textures[XMB_TEXTURE_ZIP].id;
|
|
|
|
break;
|
2014-10-18 14:26:02 +00:00
|
|
|
case MENU_FILE_CORE:
|
|
|
|
icon = xmb->textures[XMB_TEXTURE_CORE].id;
|
|
|
|
break;
|
2014-10-14 21:05:53 +00:00
|
|
|
default:
|
|
|
|
icon = xmb->textures[XMB_TEXTURE_SETTING].id;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
xmb_draw_icon(icon,
|
2014-10-20 18:00:39 +00:00
|
|
|
node->x + xmb->margin_left + xmb->hspacing - xmb->icon_size/2.0,
|
2014-10-10 20:42:56 +00:00
|
|
|
xmb->margin_top + node->y + 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-12 18:30:19 +00:00
|
|
|
menu_ticker_line(name, 35, g_extern.frame_count / 20, path_buf,
|
2014-10-20 18:00:39 +00:00
|
|
|
(i == current));
|
2014-10-12 18:30:19 +00:00
|
|
|
|
|
|
|
xmb_draw_text(name,
|
2014-10-20 18:00:39 +00:00
|
|
|
node->x + xmb->margin_left + xmb->hspacing + xmb->label_margin_left,
|
2014-10-10 20:42:56 +00:00
|
|
|
xmb->margin_top + node->y + xmb->label_margin_top,
|
2014-10-08 23:21:22 +00:00
|
|
|
1,
|
2014-10-20 18:00:39 +00:00
|
|
|
node->label_alpha);
|
2014-10-08 23:21:22 +00:00
|
|
|
|
2014-10-12 18:30:19 +00:00
|
|
|
menu_ticker_line(value, 35, g_extern.frame_count / 20, val_buf,
|
|
|
|
(i == current));
|
|
|
|
|
2014-10-22 00:41:28 +00:00
|
|
|
if(( strcmp(val_buf, "...")
|
|
|
|
&& strcmp(val_buf, "(CORE)")
|
|
|
|
&& strcmp(val_buf, "(FILE)")
|
|
|
|
&& strcmp(val_buf, "(DIR)")
|
|
|
|
&& strcmp(val_buf, "(COMP)")
|
|
|
|
&& strcmp(val_buf, "ON")
|
|
|
|
&& strcmp(val_buf, "OFF"))
|
|
|
|
|| ((!strcmp(val_buf, "ON")
|
|
|
|
&& !xmb->textures[XMB_TEXTURE_SWITCH_ON].id)
|
|
|
|
|| (!strcmp(val_buf, "OFF")
|
|
|
|
&& !xmb->textures[XMB_TEXTURE_SWITCH_OFF].id)))
|
2014-10-21 23:37:55 +00:00
|
|
|
xmb_draw_text(value,
|
|
|
|
node->x + xmb->margin_left + xmb->hspacing +
|
|
|
|
xmb->label_margin_left + xmb->setting_margin_left,
|
|
|
|
xmb->margin_top + node->y + xmb->label_margin_top,
|
|
|
|
1,
|
|
|
|
node->label_alpha);
|
2014-10-22 00:41:28 +00:00
|
|
|
|
|
|
|
if (!strcmp(val_buf, "ON") && xmb->textures[XMB_TEXTURE_SWITCH_ON].id)
|
|
|
|
xmb_draw_icon(xmb->textures[XMB_TEXTURE_SWITCH_ON].id,
|
|
|
|
node->x + xmb->margin_left + xmb->hspacing
|
|
|
|
+ xmb->icon_size/2.0 + xmb->setting_margin_left,
|
|
|
|
xmb->margin_top + node->y + xmb->icon_size/2.0,
|
|
|
|
node->alpha,
|
|
|
|
0,
|
|
|
|
1);
|
|
|
|
|
|
|
|
if (!strcmp(val_buf, "OFF") && xmb->textures[XMB_TEXTURE_SWITCH_OFF].id)
|
|
|
|
xmb_draw_icon(xmb->textures[XMB_TEXTURE_SWITCH_OFF].id,
|
|
|
|
node->x + xmb->margin_left + xmb->hspacing
|
|
|
|
+ xmb->icon_size/2.0 + xmb->setting_margin_left,
|
|
|
|
xmb->margin_top + node->y + xmb->icon_size/2.0,
|
|
|
|
node->alpha,
|
|
|
|
0,
|
|
|
|
1);
|
2014-10-08 23:21:22 +00:00
|
|
|
}
|
2014-10-20 18:00:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void xmb_frame(void)
|
|
|
|
{
|
|
|
|
char title_msg[64];
|
|
|
|
const char *dir = NULL;
|
|
|
|
const char *label = NULL;
|
|
|
|
unsigned menu_type = 0;
|
|
|
|
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
|
|
|
|
|
|
|
|
gl_t *gl = (gl_t*)driver_video_resolve(NULL);
|
|
|
|
|
|
|
|
if (!xmb || !gl)
|
|
|
|
return;
|
|
|
|
|
|
|
|
update_tweens(0.002);
|
|
|
|
|
|
|
|
glViewport(0, 0, gl->win_width, gl->win_height);
|
|
|
|
|
|
|
|
xmb_render_background(false);
|
|
|
|
|
|
|
|
menu_list_get_last_stack(driver.menu->menu_list, &dir, &label, &menu_type);
|
|
|
|
|
|
|
|
get_title(label, dir, menu_type, xmb->title, sizeof(xmb->title));
|
|
|
|
|
|
|
|
xmb_draw_text(
|
|
|
|
xmb->title, xmb->title_margin_left, xmb->title_margin_top, 1, 1);
|
|
|
|
|
|
|
|
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, xmb->title_margin_left,
|
|
|
|
gl->win_height - xmb->title_margin_bottom, 1, 1);
|
|
|
|
|
|
|
|
xmb_draw_icon(xmb->textures[XMB_TEXTURE_ARROW].id,
|
|
|
|
xmb->x + xmb->margin_left + xmb->hspacing - xmb->icon_size/2.0 + xmb->icon_size,
|
|
|
|
xmb->margin_top + xmb->icon_size/2.0 + xmb->vspacing * xmb->active_item_factor,
|
|
|
|
xmb->arrow_alpha,
|
|
|
|
0,
|
|
|
|
1);
|
|
|
|
|
|
|
|
xmb_draw_items(
|
|
|
|
driver.menu->menu_list->selection_buf_old,
|
|
|
|
driver.menu->menu_list->menu_stack_old,
|
|
|
|
driver.menu->selection_ptr_old);
|
|
|
|
xmb_draw_items(
|
|
|
|
driver.menu->menu_list->selection_buf,
|
|
|
|
driver.menu->menu_list->menu_stack,
|
|
|
|
driver.menu->selection_ptr);
|
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,
|
2014-10-11 23:27:31 +00:00
|
|
|
xmb->x + xmb->margin_left + xmb->hspacing - xmb->icon_size / 2.0,
|
2014-10-10 20:42:56 +00:00
|
|
|
xmb->margin_top + 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 = "";
|
2014-10-09 02:34:16 +00:00
|
|
|
snprintf(msg, sizeof(msg), "%s\n%s",
|
|
|
|
driver.menu->keyboard.label, str);
|
2014-10-12 18:58:48 +00:00
|
|
|
xmb_render_background(true);
|
2014-10-08 23:21:22 +00:00
|
|
|
xmb_render_messagebox(msg);
|
|
|
|
}
|
|
|
|
|
2014-10-09 02:34:16 +00:00
|
|
|
if (xmb->box_message[0] != '\0')
|
2014-10-08 23:21:22 +00:00
|
|
|
{
|
2014-10-12 16:22:51 +00:00
|
|
|
xmb_render_background(true);
|
2014-10-09 02:34:16 +00:00
|
|
|
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)
|
|
|
|
{
|
2014-10-09 02:34:16 +00:00
|
|
|
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-09 02:34:16 +00:00
|
|
|
|
2014-10-10 13:52:12 +00:00
|
|
|
if (!menu->userdata)
|
2014-10-13 21:30:39 +00:00
|
|
|
{
|
|
|
|
free(menu);
|
2014-10-09 02:34:16 +00:00
|
|
|
return NULL;
|
2014-10-13 21:30:39 +00:00
|
|
|
}
|
2014-10-09 02:34:16 +00:00
|
|
|
|
2014-10-10 13:52:12 +00:00
|
|
|
xmb = (xmb_handle_t*)menu->userdata;
|
|
|
|
|
2014-10-12 17:22:01 +00:00
|
|
|
xmb->x = 0;
|
|
|
|
xmb->alpha = 1.0f;
|
2014-10-20 18:00:39 +00:00
|
|
|
xmb->arrow_alpha = 0;
|
2014-10-12 17:22:01 +00:00
|
|
|
xmb->depth = 1;
|
|
|
|
xmb->old_depth = 1;
|
2014-10-10 13:52:12 +00:00
|
|
|
|
2014-10-12 00:52:33 +00:00
|
|
|
xmb->c_active_zoom = 1.0;
|
|
|
|
xmb->c_passive_zoom = 0.5;
|
|
|
|
xmb->i_active_zoom = 1.0;
|
|
|
|
xmb->i_passive_zoom = 0.5;
|
2014-10-09 02:34:16 +00:00
|
|
|
|
2014-10-12 00:52:33 +00:00
|
|
|
xmb->c_active_alpha = 1.0;
|
|
|
|
xmb->c_passive_alpha = 0.5;
|
|
|
|
xmb->i_active_alpha = 1.0;
|
|
|
|
xmb->i_passive_alpha = 0.5;
|
|
|
|
|
|
|
|
xmb->above_subitem_offset = 1.5;
|
|
|
|
xmb->above_item_offset = -1.0;
|
2014-10-18 12:51:50 +00:00
|
|
|
xmb->active_item_factor = 3.0;
|
|
|
|
xmb->under_item_offset = 5.0;
|
2014-10-12 00:52:33 +00:00
|
|
|
|
2014-10-21 23:22:22 +00:00
|
|
|
float scale_factor = 1;
|
|
|
|
if (gl->win_width >= 3840) scale_factor = 2.0;
|
|
|
|
else if (gl->win_width >= 2560) scale_factor = 1.5;
|
|
|
|
else if (gl->win_width >= 1920) scale_factor = 1.0;
|
|
|
|
else if (gl->win_width >= 1280) scale_factor = 0.75;
|
|
|
|
else if (gl->win_width >= 640) scale_factor = 0.5;
|
|
|
|
else if (gl->win_width >= 320) scale_factor = 0.25;
|
2014-10-12 17:22:01 +00:00
|
|
|
|
2014-10-21 23:22:22 +00:00
|
|
|
strlcpy(xmb->icon_dir, "256", sizeof(xmb->icon_dir));
|
2014-10-08 23:21:22 +00:00
|
|
|
|
2014-10-12 17:22:01 +00:00
|
|
|
xmb->icon_size = 128.0 * scale_factor;
|
2014-11-07 16:08:44 +00:00
|
|
|
xmb->font_size = 32.0 * scale_factor;
|
2014-10-12 17:22:01 +00:00
|
|
|
xmb->hspacing = 200.0 * scale_factor;
|
|
|
|
xmb->vspacing = 64.0 * scale_factor;
|
|
|
|
xmb->margin_left = 336.0 * scale_factor;
|
2014-10-18 12:51:50 +00:00
|
|
|
xmb->margin_top = (256+32) * scale_factor;
|
|
|
|
xmb->title_margin_left = 60 * scale_factor;
|
2014-11-07 16:08:44 +00:00
|
|
|
xmb->title_margin_top = 60 * scale_factor + xmb->font_size/3;
|
|
|
|
xmb->title_margin_bottom = 60 * scale_factor - xmb->font_size/3;
|
2014-10-12 17:22:01 +00:00
|
|
|
xmb->label_margin_left = 85.0 * scale_factor;
|
2014-11-07 16:08:44 +00:00
|
|
|
xmb->label_margin_top = xmb->font_size/3.0;
|
2014-10-12 17:22:01 +00:00
|
|
|
xmb->setting_margin_left = 600.0 * scale_factor;
|
|
|
|
|
2014-10-12 00:52:33 +00:00
|
|
|
xmb_init_core_info(menu);
|
2014-10-08 23:21:22 +00:00
|
|
|
|
|
|
|
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-09 02:34:16 +00:00
|
|
|
|
2014-10-10 13:52:12 +00:00
|
|
|
if (menu->userdata)
|
|
|
|
free(menu->userdata);
|
2014-10-09 02:34:16 +00:00
|
|
|
|
2014-10-08 23:21:22 +00:00
|
|
|
g_extern.core_info = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GLuint xmb_png_texture_load_(const char * file_name)
|
|
|
|
{
|
2014-10-10 14:23:12 +00:00
|
|
|
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);
|
2014-10-21 23:22:22 +00:00
|
|
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_NEAREST);
|
2014-10-08 23:21:22 +00:00
|
|
|
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
2014-10-21 23:22:22 +00:00
|
|
|
glGenerateMipmap(GL_TEXTURE_2D);
|
2014-10-08 23:21:22 +00:00
|
|
|
|
|
|
|
free(ti.pixels);
|
|
|
|
|
|
|
|
return texture;
|
|
|
|
}
|
2014-10-21 03:38:23 +00:00
|
|
|
static int xmb_png_texture_load_wrap(void *data)
|
2014-10-08 23:21:22 +00:00
|
|
|
{
|
2014-10-21 03:38:23 +00:00
|
|
|
const char *filename = (const char*)data;
|
|
|
|
return xmb_png_texture_load_(filename);
|
2014-10-08 23:21:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2014-11-07 16:08:44 +00:00
|
|
|
static bool xmb_font_init_first(const gl_font_renderer_t **font_driver,
|
|
|
|
void **font_handle, void *video_data, const char *font_path,
|
|
|
|
float font_size)
|
|
|
|
{
|
|
|
|
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.font_init.method = gl_font_init_first;
|
|
|
|
thr->cmd_data.font_init.font_driver = font_driver;
|
|
|
|
thr->cmd_data.font_init.font_handle = font_handle;
|
|
|
|
thr->cmd_data.font_init.video_data = video_data;
|
|
|
|
thr->cmd_data.font_init.font_path = font_path;
|
|
|
|
thr->cmd_data.font_init.font_size = font_size;
|
|
|
|
thr->send_cmd_func(thr, CMD_FONT_INIT);
|
|
|
|
thr->wait_reply_func(thr, CMD_FONT_INIT);
|
|
|
|
|
|
|
|
return thr->cmd_data.font_init.return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return gl_font_init_first(font_driver, font_handle, video_data,
|
|
|
|
font_path, font_size);
|
|
|
|
}
|
|
|
|
|
2014-10-08 23:21:22 +00:00
|
|
|
static void xmb_context_reset(void *data)
|
|
|
|
{
|
2014-10-09 02:34:16 +00:00
|
|
|
int k;
|
|
|
|
char bgpath[PATH_MAX];
|
2014-11-07 16:08:44 +00:00
|
|
|
char mediapath[PATH_MAX], themepath[PATH_MAX], iconpath[PATH_MAX], fontpath[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;
|
|
|
|
|
2014-10-09 02:34:16 +00:00
|
|
|
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));
|
|
|
|
|
|
|
|
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));
|
2014-10-09 02:34:16 +00:00
|
|
|
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-11-07 16:08:44 +00:00
|
|
|
fill_pathname_join(fontpath, themepath, "font.ttf", sizeof(fontpath));
|
|
|
|
|
|
|
|
xmb_font_init_first(&gl->font_driver, &xmb->font, gl, fontpath, xmb->font_size);
|
|
|
|
|
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));
|
2014-10-14 21:05:53 +00:00
|
|
|
fill_pathname_join(xmb->textures[XMB_TEXTURE_FILE].path, iconpath,
|
2014-10-18 14:04:14 +00:00
|
|
|
"file.png", sizeof(xmb->textures[XMB_TEXTURE_FILE].path));
|
2014-10-14 21:05:53 +00:00
|
|
|
fill_pathname_join(xmb->textures[XMB_TEXTURE_FOLDER].path, iconpath,
|
2014-10-18 14:04:14 +00:00
|
|
|
"folder.png", sizeof(xmb->textures[XMB_TEXTURE_FOLDER].path));
|
2014-10-14 21:05:53 +00:00
|
|
|
fill_pathname_join(xmb->textures[XMB_TEXTURE_ZIP].path, iconpath,
|
2014-10-18 14:04:14 +00:00
|
|
|
"zip.png", sizeof(xmb->textures[XMB_TEXTURE_ZIP].path));
|
2014-10-18 14:26:02 +00:00
|
|
|
fill_pathname_join(xmb->textures[XMB_TEXTURE_CORE].path, iconpath,
|
|
|
|
"core.png", sizeof(xmb->textures[XMB_TEXTURE_CORE].path));
|
2014-10-22 00:41:28 +00:00
|
|
|
fill_pathname_join(xmb->textures[XMB_TEXTURE_SWITCH_ON].path, iconpath,
|
|
|
|
"on.png", sizeof(xmb->textures[XMB_TEXTURE_SWITCH_ON].path));
|
|
|
|
fill_pathname_join(xmb->textures[XMB_TEXTURE_SWITCH_OFF].path, iconpath,
|
|
|
|
"off.png", sizeof(xmb->textures[XMB_TEXTURE_SWITCH_OFF].path));
|
2014-10-09 20:59:05 +00:00
|
|
|
|
|
|
|
for (k = 0; k < XMB_TEXTURE_LAST; k++)
|
2014-10-09 02:34:16 +00:00
|
|
|
xmb->textures[k].id = xmb_png_texture_load(xmb->textures[k].path);
|
2014-10-08 23:21:22 +00:00
|
|
|
}
|
|
|
|
|
2014-10-12 21:44:10 +00:00
|
|
|
static void xmb_navigation_clear(void *data, bool pending_push)
|
2014-10-09 20:25:13 +00:00
|
|
|
{
|
|
|
|
(void)data;
|
2014-10-12 21:53:37 +00:00
|
|
|
|
|
|
|
if (!pending_push)
|
|
|
|
xmb_selection_pointer_changed();
|
2014-10-09 20:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void xmb_navigation_decrement(void *data)
|
|
|
|
{
|
|
|
|
(void)data;
|
2014-10-09 20:30:17 +00:00
|
|
|
|
|
|
|
xmb_selection_pointer_changed();
|
2014-10-09 20:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void xmb_navigation_increment(void *data)
|
|
|
|
{
|
|
|
|
(void)data;
|
2014-10-09 20:30:17 +00:00
|
|
|
|
|
|
|
xmb_selection_pointer_changed();
|
2014-10-09 20:25:13 +00:00
|
|
|
}
|
|
|
|
|
2014-10-26 21:31:53 +00:00
|
|
|
static void xmb_navigation_set(void *data, bool scroll)
|
2014-10-09 20:25:13 +00:00
|
|
|
{
|
|
|
|
(void)data;
|
2014-10-26 21:31:53 +00:00
|
|
|
(void)scroll;
|
2014-10-09 20:30:17 +00:00
|
|
|
|
|
|
|
xmb_selection_pointer_changed();
|
2014-10-09 20:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void xmb_navigation_set_last(void *data)
|
|
|
|
{
|
|
|
|
(void)data;
|
2014-10-09 20:30:17 +00:00
|
|
|
|
|
|
|
xmb_selection_pointer_changed();
|
2014-10-09 20:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void xmb_navigation_descend_alphabet(void *data, size_t *unused)
|
|
|
|
{
|
|
|
|
(void)data;
|
|
|
|
(void)unused;
|
2014-10-09 20:30:17 +00:00
|
|
|
|
|
|
|
xmb_selection_pointer_changed();
|
2014-10-09 20:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void xmb_navigation_ascend_alphabet(void *data, size_t *unused)
|
|
|
|
{
|
|
|
|
(void)data;
|
|
|
|
(void)unused;
|
2014-10-09 20:30:17 +00:00
|
|
|
|
|
|
|
xmb_selection_pointer_changed();
|
2014-10-09 20:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void xmb_list_insert(void *data,
|
|
|
|
const char *path, const char *unused, size_t list_size)
|
|
|
|
{
|
2014-10-10 20:08:11 +00:00
|
|
|
int current = 0, i = list_size;
|
|
|
|
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
|
|
|
|
file_list_t *list = (file_list_t*)data;
|
|
|
|
|
|
|
|
if (!list || !xmb)
|
|
|
|
return;
|
|
|
|
|
|
|
|
list->list[i].userdata = (xmb_node_t*)calloc(1, sizeof(xmb_node_t));
|
|
|
|
|
|
|
|
if (!list->list[i].userdata)
|
2014-10-11 22:33:17 +00:00
|
|
|
{
|
2014-10-10 20:08:11 +00:00
|
|
|
RARCH_ERR("XMB node could not be allocated.\n");
|
2014-10-11 22:33:17 +00:00
|
|
|
return;
|
|
|
|
}
|
2014-10-10 20:08:11 +00:00
|
|
|
|
|
|
|
xmb_node_t *node = (xmb_node_t*)list->list[i].userdata;
|
|
|
|
|
|
|
|
if (!node)
|
|
|
|
return;
|
|
|
|
|
|
|
|
current = driver.menu->selection_ptr;
|
|
|
|
|
2014-10-10 20:42:56 +00:00
|
|
|
float iy = (i < current) ? xmb->vspacing *
|
|
|
|
(i - current + xmb->above_item_offset) :
|
|
|
|
xmb->vspacing * (i - current + xmb->under_item_offset);
|
2014-10-10 20:08:11 +00:00
|
|
|
|
|
|
|
if (i == current)
|
2014-10-10 20:42:56 +00:00
|
|
|
iy = xmb->vspacing * xmb->active_item_factor;
|
2014-10-10 20:08:11 +00:00
|
|
|
|
2014-10-12 00:52:33 +00:00
|
|
|
node->alpha = (i == current) ? xmb->i_active_alpha : xmb->i_passive_alpha;
|
2014-10-20 18:00:39 +00:00
|
|
|
node->label_alpha = node->alpha;
|
2014-10-12 00:52:33 +00:00
|
|
|
node->zoom = (i == current) ? xmb->i_active_zoom : xmb->i_passive_zoom;
|
2014-10-10 20:08:11 +00:00
|
|
|
node->y = iy;
|
2014-10-20 18:00:39 +00:00
|
|
|
node->x = 0;
|
2014-10-09 20:25:13 +00:00
|
|
|
}
|
|
|
|
|
2014-10-20 17:18:18 +00:00
|
|
|
static void xmb_list_delete(void *data, size_t idx,
|
2014-10-10 20:36:30 +00:00
|
|
|
size_t list_size)
|
2014-10-09 20:25:13 +00:00
|
|
|
{
|
2014-10-10 20:08:11 +00:00
|
|
|
file_list_t *list = (file_list_t*)data;
|
|
|
|
|
|
|
|
if (!list)
|
|
|
|
return;
|
|
|
|
|
2014-10-20 17:18:18 +00:00
|
|
|
if (list->list[idx].userdata)
|
|
|
|
free(list->list[idx].userdata);
|
|
|
|
list->list[idx].userdata = NULL;
|
2014-10-09 20:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void xmb_list_clear(void *data)
|
|
|
|
{
|
2014-10-10 21:43:11 +00:00
|
|
|
(void)data;
|
2014-10-09 20:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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-21 03:51:30 +00:00
|
|
|
unsigned i;
|
2014-10-10 13:52:12 +00:00
|
|
|
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,
|
2014-10-09 17:06:07 +00:00
|
|
|
xmb_populate_entries,
|
2014-10-08 23:21:22 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2014-10-09 20:25:13 +00:00
|
|
|
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",
|
|
|
|
};
|