mirror of
https://github.com/libretro/RetroArch
synced 2025-02-06 09:40:06 +00:00
(GLUI) Implement menu->userdata for GLUI
This commit is contained in:
parent
e853eb88d7
commit
ca25d46742
@ -40,9 +40,16 @@
|
|||||||
|
|
||||||
#include "shared.h"
|
#include "shared.h"
|
||||||
|
|
||||||
unsigned line_height, glyph_width, glui_margin, glui_term_width, glui_term_height;
|
typedef struct glui_handle
|
||||||
GLuint glui_bg = 0;
|
{
|
||||||
char box_message[PATH_MAX];
|
unsigned line_height;
|
||||||
|
unsigned glyph_width;
|
||||||
|
unsigned glui_margin;
|
||||||
|
unsigned glui_term_width;
|
||||||
|
unsigned glui_term_height;
|
||||||
|
char box_message[PATH_MAX];
|
||||||
|
GLuint glui_bg;
|
||||||
|
} glui_handle_t;
|
||||||
|
|
||||||
static void glui_blit_line(float x, float y, const char *message, bool green)
|
static void glui_blit_line(float x, float y, const char *message, bool green)
|
||||||
{
|
{
|
||||||
@ -70,6 +77,9 @@ static void glui_blit_line(float x, float y, const char *message, bool green)
|
|||||||
|
|
||||||
static void glui_render_background(void)
|
static void glui_render_background(void)
|
||||||
{
|
{
|
||||||
|
gl_t *gl = NULL;
|
||||||
|
glui_handle_t *glui = NULL;
|
||||||
|
|
||||||
GLfloat black_color[] = {
|
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,
|
||||||
@ -91,19 +101,25 @@ static void glui_render_background(void)
|
|||||||
1, 0,
|
1, 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
gl_t *gl = (gl_t*)driver_video_resolve(NULL);
|
gl = (gl_t*)driver_video_resolve(NULL);
|
||||||
|
|
||||||
if (!gl)
|
if (!gl)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
glui = (glui_handle_t*)driver.menu->userdata;
|
||||||
|
|
||||||
|
if (!glui)
|
||||||
|
return;
|
||||||
|
|
||||||
glViewport(0, 0, gl->win_width, gl->win_height);
|
glViewport(0, 0, gl->win_width, gl->win_height);
|
||||||
|
|
||||||
glEnable(GL_BLEND);
|
glEnable(GL_BLEND);
|
||||||
|
|
||||||
gl->coords.vertex = vertex;
|
gl->coords.vertex = vertex;
|
||||||
gl->coords.tex_coord = tex_coord;
|
gl->coords.tex_coord = tex_coord;
|
||||||
gl->coords.color = glui_bg ? gl->white_color_ptr : black_color;
|
gl->coords.color = glui->glui_bg
|
||||||
glBindTexture(GL_TEXTURE_2D, glui_bg);
|
? gl->white_color_ptr : black_color;
|
||||||
|
glBindTexture(GL_TEXTURE_2D, glui->glui_bg);
|
||||||
|
|
||||||
if (gl->shader && gl->shader->use)
|
if (gl->shader && gl->shader->use)
|
||||||
gl->shader->use(gl, GL_SHADER_STOCK_BLEND);
|
gl->shader->use(gl, GL_SHADER_STOCK_BLEND);
|
||||||
@ -120,37 +136,54 @@ static void glui_render_background(void)
|
|||||||
static void glui_get_message(const char *message)
|
static void glui_get_message(const char *message)
|
||||||
{
|
{
|
||||||
size_t i;
|
size_t i;
|
||||||
|
glui_handle_t *glui = NULL;
|
||||||
(void)i;
|
(void)i;
|
||||||
|
|
||||||
if (!driver.menu || !message || !*message)
|
if (!driver.menu || !message || !*message)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
strlcpy(box_message, message, sizeof(box_message));
|
glui = (glui_handle_t*)driver.menu->userdata;
|
||||||
|
|
||||||
|
if (!glui)
|
||||||
|
return;
|
||||||
|
|
||||||
|
strlcpy(glui->box_message, message, sizeof(glui->box_message));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void glui_render_messagebox(const char *message)
|
static void glui_render_messagebox(const char *message)
|
||||||
{
|
{
|
||||||
|
unsigned i;
|
||||||
|
int x, y;
|
||||||
|
struct string_list *list = NULL;
|
||||||
|
glui_handle_t *glui = NULL;
|
||||||
gl_t *gl = (gl_t*)driver_video_resolve(NULL);
|
gl_t *gl = (gl_t*)driver_video_resolve(NULL);
|
||||||
|
|
||||||
if (!driver.menu || !gl)
|
if (!driver.menu || !gl)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
struct string_list *list = string_split(message, "\n");
|
glui = (glui_handle_t*)driver.menu->userdata;
|
||||||
|
|
||||||
|
if (!glui)
|
||||||
|
return;
|
||||||
|
|
||||||
|
list = (struct string_list*)string_split(message, "\n");
|
||||||
|
|
||||||
if (!list)
|
if (!list)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (list->elems == 0)
|
if (list->elems == 0)
|
||||||
{
|
{
|
||||||
string_list_free(list);
|
string_list_free(list);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned i;
|
x = gl->win_width / 2 - strlen(list->elems[0].data) * glui->glyph_width / 2;
|
||||||
int x = gl->win_width / 2 - strlen(list->elems[0].data) * glyph_width / 2;
|
y = gl->win_height / 2 - list->size * glui->line_height / 2;
|
||||||
int y = gl->win_height / 2 - list->size * line_height / 2;
|
|
||||||
for (i = 0; i < list->size; i++)
|
for (i = 0; i < list->size; i++)
|
||||||
{
|
{
|
||||||
const char *msg = list->elems[i].data;
|
const char *msg = list->elems[i].data;
|
||||||
glui_blit_line(x, y + i * line_height, msg, false);
|
glui_blit_line(x, y + i * glui->line_height, msg, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
string_list_free(list);
|
string_list_free(list);
|
||||||
@ -158,58 +191,64 @@ static void glui_render_messagebox(const char *message)
|
|||||||
|
|
||||||
static void glui_frame(void)
|
static void glui_frame(void)
|
||||||
{
|
{
|
||||||
|
unsigned x, y;
|
||||||
|
size_t i;
|
||||||
|
char title[PATH_MAX], title_buf[PATH_MAX],
|
||||||
|
title_msg[PATH_MAX];
|
||||||
|
const char *dir = NULL;
|
||||||
|
const char *label = NULL;
|
||||||
|
unsigned menu_type = 0;
|
||||||
|
size_t begin = 0, end;
|
||||||
gl_t *gl = (gl_t*)driver_video_resolve(NULL);
|
gl_t *gl = (gl_t*)driver_video_resolve(NULL);
|
||||||
|
glui_handle_t *glui = NULL;
|
||||||
|
|
||||||
if (!driver.menu || !gl)
|
if (!driver.menu || !gl)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
glui = (glui_handle_t*)driver.menu->userdata;
|
||||||
|
|
||||||
|
if (!glui)
|
||||||
|
return;
|
||||||
|
|
||||||
if (driver.menu->need_refresh
|
if (driver.menu->need_refresh
|
||||||
&& g_extern.is_menu
|
&& g_extern.is_menu
|
||||||
&& !driver.menu->msg_force)
|
&& !driver.menu->msg_force)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
line_height = g_settings.video.font_size * 4 / 3;
|
glui->line_height = g_settings.video.font_size * 4 / 3;
|
||||||
glyph_width = line_height / 2;
|
glui->glyph_width = glui->line_height / 2;
|
||||||
glui_margin = gl->win_width / 20 ;
|
glui->glui_margin = gl->win_width / 20 ;
|
||||||
glui_term_width = (gl->win_width - glui_margin * 2) / glyph_width;
|
glui->glui_term_width = (gl->win_width - glui->glui_margin * 2) / glui->glyph_width;
|
||||||
glui_term_height = (gl->win_height - glui_margin * 2) / line_height - 2;
|
glui->glui_term_height = (gl->win_height - glui->glui_margin * 2) / glui->line_height - 2;
|
||||||
|
|
||||||
glViewport(0, 0, gl->win_width, gl->win_height);
|
glViewport(0, 0, gl->win_width, gl->win_height);
|
||||||
|
|
||||||
size_t begin = 0;
|
|
||||||
size_t end;
|
|
||||||
|
|
||||||
if (driver.menu->selection_ptr >= glui_term_height / 2)
|
if (driver.menu->selection_ptr >= glui->glui_term_height / 2)
|
||||||
begin = driver.menu->selection_ptr - glui_term_height / 2;
|
begin = driver.menu->selection_ptr - glui->glui_term_height / 2;
|
||||||
end = (driver.menu->selection_ptr + glui_term_height <=
|
end = (driver.menu->selection_ptr + glui->glui_term_height <=
|
||||||
file_list_get_size(driver.menu->selection_buf)) ?
|
file_list_get_size(driver.menu->selection_buf)) ?
|
||||||
driver.menu->selection_ptr + glui_term_height :
|
driver.menu->selection_ptr + glui->glui_term_height :
|
||||||
file_list_get_size(driver.menu->selection_buf);
|
file_list_get_size(driver.menu->selection_buf);
|
||||||
|
|
||||||
/* Do not scroll if all items are visible. */
|
/* Do not scroll if all items are visible. */
|
||||||
if (file_list_get_size(driver.menu->selection_buf) <= glui_term_height)
|
if (file_list_get_size(driver.menu->selection_buf) <= glui->glui_term_height)
|
||||||
begin = 0;
|
begin = 0;
|
||||||
|
|
||||||
if (end - begin > glui_term_height)
|
if (end - begin > glui->glui_term_height)
|
||||||
end = begin + glui_term_height;
|
end = begin + glui->glui_term_height;
|
||||||
|
|
||||||
glui_render_background();
|
glui_render_background();
|
||||||
|
|
||||||
char title[256];
|
|
||||||
const char *dir = NULL;
|
|
||||||
const char *label = NULL;
|
|
||||||
unsigned menu_type = 0;
|
|
||||||
file_list_get_last(driver.menu->menu_stack, &dir, &label, &menu_type);
|
file_list_get_last(driver.menu->menu_stack, &dir, &label, &menu_type);
|
||||||
|
|
||||||
get_title(label, dir, menu_type, title, sizeof(title));
|
get_title(label, dir, menu_type, title, sizeof(title));
|
||||||
|
|
||||||
char title_buf[256];
|
menu_ticker_line(title_buf, glui->glui_term_width - 3,
|
||||||
menu_ticker_line(title_buf, glui_term_width - 3,
|
g_extern.frame_count / glui->glui_margin, title, true);
|
||||||
g_extern.frame_count / glui_margin, title, true);
|
glui_blit_line(glui->glui_margin * 2, glui->glui_margin + glui->line_height,
|
||||||
glui_blit_line(glui_margin * 2, glui_margin + line_height,
|
|
||||||
title_buf, true);
|
title_buf, true);
|
||||||
|
|
||||||
char title_msg[64];
|
|
||||||
const char *core_name = g_extern.menu.info.library_name;
|
const char *core_name = g_extern.menu.info.library_name;
|
||||||
if (!core_name)
|
if (!core_name)
|
||||||
core_name = g_extern.system.info.library_name;
|
core_name = g_extern.system.info.library_name;
|
||||||
@ -225,16 +264,15 @@ static void glui_frame(void)
|
|||||||
snprintf(title_msg, sizeof(title_msg), "%s - %s %s", PACKAGE_VERSION,
|
snprintf(title_msg, sizeof(title_msg), "%s - %s %s", PACKAGE_VERSION,
|
||||||
core_name, core_version);
|
core_name, core_version);
|
||||||
glui_blit_line(
|
glui_blit_line(
|
||||||
glui_margin * 2,
|
glui->glui_margin * 2,
|
||||||
glui_margin + glui_term_height * line_height + line_height * 2, title_msg, true);
|
glui->glui_margin + glui->glui_term_height * glui->line_height
|
||||||
|
+ glui->line_height * 2, title_msg, true);
|
||||||
|
|
||||||
unsigned x, y;
|
|
||||||
size_t i;
|
|
||||||
|
|
||||||
x = glui_margin;
|
x = glui->glui_margin;
|
||||||
y = glui_margin + line_height*2;
|
y = glui->glui_margin + glui->line_height * 2;
|
||||||
|
|
||||||
for (i = begin; i < end; i++, y += line_height)
|
for (i = begin; i < end; i++, y += glui->line_height)
|
||||||
{
|
{
|
||||||
char message[PATH_MAX], type_str[PATH_MAX],
|
char message[PATH_MAX], type_str[PATH_MAX],
|
||||||
entry_title_buf[PATH_MAX], type_str_buf[PATH_MAX],
|
entry_title_buf[PATH_MAX], type_str_buf[PATH_MAX],
|
||||||
@ -257,16 +295,16 @@ static void glui_frame(void)
|
|||||||
|
|
||||||
selected = (i == driver.menu->selection_ptr);
|
selected = (i == driver.menu->selection_ptr);
|
||||||
|
|
||||||
menu_ticker_line(entry_title_buf, glui_term_width - (w + 1 + 2),
|
menu_ticker_line(entry_title_buf, glui->glui_term_width - (w + 1 + 2),
|
||||||
g_extern.frame_count / glui_margin, path_buf, selected);
|
g_extern.frame_count / glui->glui_margin, path_buf, selected);
|
||||||
menu_ticker_line(type_str_buf, w,
|
menu_ticker_line(type_str_buf, w,
|
||||||
g_extern.frame_count / glui_margin, type_str, selected);
|
g_extern.frame_count / glui->glui_margin, type_str, selected);
|
||||||
|
|
||||||
snprintf(message, sizeof(message), "%s", entry_title_buf);
|
strlcpy(message, entry_title_buf, sizeof(message));
|
||||||
|
|
||||||
glui_blit_line(x, y, message, selected);
|
glui_blit_line(x, y, message, selected);
|
||||||
|
|
||||||
glui_blit_line(gl->win_width - glyph_width * w - glui_margin ,
|
glui_blit_line(gl->win_width - glui->glyph_width * w - glui->glui_margin ,
|
||||||
y, type_str_buf, selected);
|
y, type_str_buf, selected);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -294,11 +332,11 @@ static void glui_frame(void)
|
|||||||
glui_render_messagebox(msg);
|
glui_render_messagebox(msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (box_message[0] != '\0')
|
if (glui->box_message[0] != '\0')
|
||||||
{
|
{
|
||||||
glui_render_background();
|
glui_render_background();
|
||||||
glui_render_messagebox(box_message);
|
glui_render_messagebox(glui->box_message);
|
||||||
box_message[0] = '\0';
|
glui->box_message[0] = '\0';
|
||||||
}
|
}
|
||||||
|
|
||||||
gl_set_viewport(gl, gl->win_width, gl->win_height, false, false);
|
gl_set_viewport(gl, gl->win_width, gl->win_height, false, false);
|
||||||
@ -319,6 +357,7 @@ static void glui_init_core_info(void *data)
|
|||||||
static void *glui_init(void)
|
static void *glui_init(void)
|
||||||
{
|
{
|
||||||
menu_handle_t *menu;
|
menu_handle_t *menu;
|
||||||
|
glui_handle_t *glui = NULL;
|
||||||
const video_driver_t *video_driver = NULL;
|
const video_driver_t *video_driver = NULL;
|
||||||
gl_t *gl = (gl_t*)driver_video_resolve(&video_driver);
|
gl_t *gl = (gl_t*)driver_video_resolve(&video_driver);
|
||||||
|
|
||||||
@ -333,6 +372,18 @@ static void *glui_init(void)
|
|||||||
if (!menu)
|
if (!menu)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
menu->userdata = (glui_handle_t*)calloc(1, sizeof(glui_handle_t));
|
||||||
|
|
||||||
|
if (!menu->userdata)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
glui = (glui_handle_t*)menu->userdata;
|
||||||
|
|
||||||
|
if (!glui)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
glui->glui_bg = 0;
|
||||||
|
|
||||||
glui_init_core_info(menu);
|
glui_init_core_info(menu);
|
||||||
|
|
||||||
return menu;
|
return menu;
|
||||||
@ -345,6 +396,9 @@ static void glui_free(void *data)
|
|||||||
if (menu->alloc_font)
|
if (menu->alloc_font)
|
||||||
free((uint8_t*)menu->font);
|
free((uint8_t*)menu->font);
|
||||||
|
|
||||||
|
if (menu->userdata)
|
||||||
|
free(menu->userdata);
|
||||||
|
|
||||||
if (g_extern.core_info)
|
if (g_extern.core_info)
|
||||||
core_info_list_free(g_extern.core_info);
|
core_info_list_free(g_extern.core_info);
|
||||||
g_extern.core_info = NULL;
|
g_extern.core_info = NULL;
|
||||||
@ -371,6 +425,8 @@ static GLuint glui_png_texture_load(const char * file_name)
|
|||||||
|
|
||||||
static void glui_context_reset(void *data)
|
static void glui_context_reset(void *data)
|
||||||
{
|
{
|
||||||
|
char bgpath[PATH_MAX];
|
||||||
|
glui_handle_t *glui = NULL;
|
||||||
menu_handle_t *menu = (menu_handle_t*)data;
|
menu_handle_t *menu = (menu_handle_t*)data;
|
||||||
gl_t *gl = (gl_t*)driver_video_resolve(NULL);
|
gl_t *gl = (gl_t*)driver_video_resolve(NULL);
|
||||||
|
|
||||||
@ -381,7 +437,10 @@ static void glui_context_reset(void *data)
|
|||||||
if (!menu)
|
if (!menu)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
char bgpath[PATH_MAX];
|
glui = (glui_handle_t*)menu->userdata;
|
||||||
|
|
||||||
|
if (!glui)
|
||||||
|
return;
|
||||||
|
|
||||||
fill_pathname_join(bgpath, g_settings.assets_directory,
|
fill_pathname_join(bgpath, g_settings.assets_directory,
|
||||||
"glui", sizeof(bgpath));
|
"glui", sizeof(bgpath));
|
||||||
@ -389,7 +448,7 @@ static void glui_context_reset(void *data)
|
|||||||
fill_pathname_join(bgpath, bgpath, "bg.png", sizeof(bgpath));
|
fill_pathname_join(bgpath, bgpath, "bg.png", sizeof(bgpath));
|
||||||
|
|
||||||
if (path_file_exists(bgpath))
|
if (path_file_exists(bgpath))
|
||||||
glui_bg = glui_png_texture_load(bgpath);
|
glui->glui_bg = glui_png_texture_load(bgpath);
|
||||||
}
|
}
|
||||||
|
|
||||||
menu_ctx_driver_t menu_ctx_glui = {
|
menu_ctx_driver_t menu_ctx_glui = {
|
||||||
|
@ -288,7 +288,7 @@ static void xmb_get_message(const char *message)
|
|||||||
(void)i;
|
(void)i;
|
||||||
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
|
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
|
||||||
|
|
||||||
if (!driver.menu || !message || !*message)
|
if (!xmb || !message || !*message)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
strlcpy(xmb->box_message, message, sizeof(xmb->box_message));
|
strlcpy(xmb->box_message, message, sizeof(xmb->box_message));
|
||||||
@ -300,7 +300,7 @@ static void xmb_render_messagebox(const char *message)
|
|||||||
gl_t *gl = (gl_t*)driver_video_resolve(NULL);
|
gl_t *gl = (gl_t*)driver_video_resolve(NULL);
|
||||||
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
|
xmb_handle_t *xmb = (xmb_handle_t*)driver.menu->userdata;
|
||||||
|
|
||||||
if (!driver.menu || !gl || !xmb)
|
if (!gl || !xmb)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
struct string_list *list = string_split(message, "\n");
|
struct string_list *list = string_split(message, "\n");
|
||||||
@ -643,14 +643,15 @@ static void xmb_free(void *data)
|
|||||||
|
|
||||||
static GLuint xmb_png_texture_load_(const char * file_name)
|
static GLuint xmb_png_texture_load_(const char * file_name)
|
||||||
{
|
{
|
||||||
|
struct texture_image ti = {0};
|
||||||
|
GLuint texture = 0;
|
||||||
|
|
||||||
if (! path_file_exists(file_name))
|
if (! path_file_exists(file_name))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
struct texture_image ti = {0};
|
|
||||||
texture_image_load(&ti, file_name);
|
texture_image_load(&ti, file_name);
|
||||||
|
|
||||||
/* Generate the OpenGL texture object */
|
/* Generate the OpenGL texture object */
|
||||||
GLuint texture = 0;
|
|
||||||
glGenTextures(1, &texture);
|
glGenTextures(1, &texture);
|
||||||
glBindTexture(GL_TEXTURE_2D, texture);
|
glBindTexture(GL_TEXTURE_2D, texture);
|
||||||
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, ti.width, ti.height, 0,
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, ti.width, ti.height, 0,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user