2014-09-11 02:07:07 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2015-01-07 16:46:50 +00:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
|
|
|
* Copyright (C) 2014-2015 - Jean-André Santoni
|
2014-09-11 02:07:07 +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/>.
|
|
|
|
*/
|
|
|
|
|
2015-01-26 09:54:13 +00:00
|
|
|
#include <stdint.h>
|
2014-09-11 02:07:07 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <limits.h>
|
|
|
|
|
2015-06-29 22:38:10 +00:00
|
|
|
#include <retro_log.h>
|
2015-06-05 16:22:15 +00:00
|
|
|
#include <compat/posix_string.h>
|
|
|
|
#include <file/file_path.h>
|
|
|
|
|
2015-01-10 03:53:37 +00:00
|
|
|
#include "../menu.h"
|
2015-06-04 08:39:48 +00:00
|
|
|
#include "../menu_driver.h"
|
2015-07-09 16:39:40 +00:00
|
|
|
#include "../menu_hash.h"
|
2015-04-21 12:44:14 +00:00
|
|
|
#include "../menu_display.h"
|
2015-07-09 16:39:40 +00:00
|
|
|
#include "../menu_video.h"
|
2015-02-11 02:40:29 +00:00
|
|
|
|
2015-04-21 07:20:18 +00:00
|
|
|
#include "../../gfx/video_thread_wrapper.h"
|
2015-03-20 01:19:19 +00:00
|
|
|
#include "../../gfx/video_texture.h"
|
2014-09-11 02:07:07 +00:00
|
|
|
|
2015-07-09 16:39:40 +00:00
|
|
|
#include "../../runloop_data.h"
|
2014-09-11 02:07:07 +00:00
|
|
|
|
2014-10-10 14:23:12 +00:00
|
|
|
typedef struct glui_handle
|
|
|
|
{
|
|
|
|
unsigned line_height;
|
2014-10-11 01:15:02 +00:00
|
|
|
unsigned margin;
|
2015-07-16 01:38:07 +00:00
|
|
|
unsigned glyph_width;
|
2015-01-07 19:42:36 +00:00
|
|
|
char box_message[PATH_MAX_LENGTH];
|
2015-04-21 07:20:18 +00:00
|
|
|
|
2015-02-12 23:20:39 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
2015-07-12 04:14:01 +00:00
|
|
|
GRuint id;
|
2015-02-12 23:20:39 +00:00
|
|
|
char path[PATH_MAX_LENGTH];
|
|
|
|
} bg;
|
2015-07-12 04:14:01 +00:00
|
|
|
GRuint white;
|
2015-02-12 23:20:39 +00:00
|
|
|
} textures;
|
2015-03-25 14:04:53 +00:00
|
|
|
|
2015-07-12 02:07:06 +00:00
|
|
|
gfx_font_raster_block_t list_block;
|
2014-10-10 14:23:12 +00:00
|
|
|
} glui_handle_t;
|
2014-09-11 02:07:07 +00:00
|
|
|
|
2015-09-06 16:03:26 +00:00
|
|
|
static const GRfloat glui_vertexes[] = {
|
|
|
|
0, 0,
|
|
|
|
1, 0,
|
|
|
|
0, 1,
|
|
|
|
1, 1
|
|
|
|
};
|
|
|
|
|
|
|
|
static const GRfloat glui_tex_coords[] = {
|
|
|
|
0, 1,
|
|
|
|
1, 1,
|
|
|
|
0, 0,
|
|
|
|
1, 0
|
|
|
|
};
|
|
|
|
|
2015-09-06 18:14:40 +00:00
|
|
|
static void glui_blit_line(float x, float y, unsigned width, unsigned height,
|
2015-04-21 14:59:02 +00:00
|
|
|
const char *message, uint32_t color, enum text_alignment text_align)
|
2014-09-11 02:07:07 +00:00
|
|
|
{
|
2015-06-12 14:20:45 +00:00
|
|
|
glui_handle_t *glui = NULL;
|
2015-06-05 16:12:57 +00:00
|
|
|
struct font_params params = {0};
|
2015-06-12 14:20:45 +00:00
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
2015-06-14 13:34:05 +00:00
|
|
|
menu_display_t *disp = menu_display_get_ptr();
|
2015-04-21 01:36:09 +00:00
|
|
|
|
|
|
|
if (!menu)
|
|
|
|
return;
|
|
|
|
|
|
|
|
glui = (glui_handle_t*)menu->userdata;
|
|
|
|
|
2015-05-19 22:26:50 +00:00
|
|
|
params.x = x / width;
|
2015-06-14 13:34:05 +00:00
|
|
|
params.y = 1.0f - (y + glui->line_height/2 + disp->font.size/3)
|
2015-07-08 15:26:51 +00:00
|
|
|
/ height;
|
2015-01-19 05:44:46 +00:00
|
|
|
params.scale = 1.0;
|
2015-03-14 22:44:27 +00:00
|
|
|
params.color = color;
|
2014-09-11 02:07:07 +00:00
|
|
|
params.full_screen = true;
|
2015-04-04 19:26:11 +00:00
|
|
|
params.text_align = text_align;
|
2015-01-19 05:44:46 +00:00
|
|
|
|
2015-06-14 13:34:05 +00:00
|
|
|
video_driver_set_osd_msg(message, ¶ms, disp->font.buf);
|
2014-09-11 02:07:07 +00:00
|
|
|
}
|
|
|
|
|
2015-04-04 19:26:11 +00:00
|
|
|
static void glui_render_quad(gl_t *gl, int x, int y, int w, int h,
|
2015-09-06 18:36:17 +00:00
|
|
|
GRfloat *coord_color)
|
2014-10-26 23:55:14 +00:00
|
|
|
{
|
2015-09-06 18:04:00 +00:00
|
|
|
unsigned height;
|
2015-07-12 01:57:06 +00:00
|
|
|
struct gfx_coords coords;
|
2015-05-09 10:24:24 +00:00
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
|
|
|
glui_handle_t *glui = (glui_handle_t*)menu->userdata;
|
2015-06-30 16:53:57 +00:00
|
|
|
|
2015-09-06 15:54:01 +00:00
|
|
|
video_driver_get_size(NULL, &height);
|
2015-05-19 22:26:50 +00:00
|
|
|
|
2015-01-10 22:45:14 +00:00
|
|
|
coords.vertices = 4;
|
2015-09-06 16:03:26 +00:00
|
|
|
coords.vertex = glui_vertexes;
|
|
|
|
coords.tex_coord = glui_tex_coords;
|
|
|
|
coords.lut_tex_coord = glui_tex_coords;
|
2015-09-06 18:36:17 +00:00
|
|
|
coords.color = coord_color;
|
2014-10-26 23:55:14 +00:00
|
|
|
|
2015-09-06 16:16:24 +00:00
|
|
|
menu_video_draw_frame(
|
|
|
|
x,
|
|
|
|
height - y - h,
|
|
|
|
w,
|
|
|
|
h,
|
|
|
|
gl->shader, &coords,
|
2015-06-25 06:26:59 +00:00
|
|
|
&gl->mvp_no_rot, true, glui->textures.white);
|
2014-10-26 23:55:14 +00:00
|
|
|
|
2015-09-06 16:03:26 +00:00
|
|
|
gl->coords.color = gl->white_color_ptr;
|
2014-10-26 23:55:14 +00:00
|
|
|
}
|
|
|
|
|
2015-09-06 18:36:17 +00:00
|
|
|
static void glui_draw_scrollbar(gl_t *gl, GRfloat *coord_color)
|
2015-04-21 02:47:02 +00:00
|
|
|
{
|
2015-05-19 22:26:50 +00:00
|
|
|
unsigned width, height;
|
|
|
|
float content_height, total_height, scrollbar_height, y;
|
2015-06-14 13:34:05 +00:00
|
|
|
int scrollbar_width = 4;
|
|
|
|
glui_handle_t *glui = NULL;
|
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
|
|
|
menu_display_t *disp = menu_display_get_ptr();
|
2015-04-21 02:47:02 +00:00
|
|
|
|
|
|
|
if (!menu)
|
|
|
|
return;
|
|
|
|
|
2015-05-19 22:29:46 +00:00
|
|
|
video_driver_get_size(&width, &height);
|
2015-05-19 22:26:50 +00:00
|
|
|
|
2015-04-21 14:59:02 +00:00
|
|
|
glui = (glui_handle_t*)menu->userdata;
|
2015-05-14 22:03:06 +00:00
|
|
|
content_height = menu_entries_get_end() * glui->line_height;
|
2015-06-14 13:34:05 +00:00
|
|
|
total_height = height - disp->header_height * 2;
|
2015-05-19 22:26:50 +00:00
|
|
|
scrollbar_height = total_height / (content_height / total_height);
|
2015-04-21 14:59:02 +00:00
|
|
|
y = total_height * menu->scroll_y / content_height;
|
2015-04-21 02:47:02 +00:00
|
|
|
|
2015-09-06 18:14:40 +00:00
|
|
|
if (content_height >= total_height)
|
|
|
|
glui_render_quad(gl,
|
|
|
|
width - scrollbar_width,
|
|
|
|
disp->header_height + y,
|
|
|
|
scrollbar_width,
|
|
|
|
scrollbar_height,
|
2015-09-06 18:36:17 +00:00
|
|
|
coord_color);
|
2015-04-21 02:47:02 +00:00
|
|
|
}
|
|
|
|
|
2015-02-13 18:00:34 +00:00
|
|
|
static void glui_get_message(const char *message)
|
2014-09-15 10:36:52 +00:00
|
|
|
{
|
2014-10-10 14:23:12 +00:00
|
|
|
glui_handle_t *glui = NULL;
|
2015-03-21 22:56:42 +00:00
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
2014-09-15 10:36:52 +00:00
|
|
|
|
2015-02-13 18:00:34 +00:00
|
|
|
if (!menu)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!message || !*message)
|
2014-09-15 10:36:52 +00:00
|
|
|
return;
|
|
|
|
|
2015-02-11 19:28:54 +00:00
|
|
|
glui = (glui_handle_t*)menu->userdata;
|
2014-10-10 14:23:12 +00:00
|
|
|
|
2015-02-02 17:51:48 +00:00
|
|
|
if (glui)
|
|
|
|
strlcpy(glui->box_message, message, sizeof(glui->box_message));
|
2014-09-15 10:36:52 +00:00
|
|
|
}
|
|
|
|
|
2015-02-13 18:00:34 +00:00
|
|
|
static void glui_render_messagebox(const char *message)
|
2014-09-11 02:07:07 +00:00
|
|
|
{
|
2014-10-10 14:23:12 +00:00
|
|
|
unsigned i;
|
2015-05-19 22:26:50 +00:00
|
|
|
unsigned width, height;
|
2015-03-16 15:57:27 +00:00
|
|
|
uint32_t normal_color;
|
2014-10-10 14:23:12 +00:00
|
|
|
int x, y;
|
|
|
|
struct string_list *list = NULL;
|
2015-06-05 16:12:57 +00:00
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
2015-06-14 13:34:05 +00:00
|
|
|
menu_display_t *disp = menu_display_get_ptr();
|
2015-06-05 16:12:57 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
2014-09-15 10:36:52 +00:00
|
|
|
|
2015-06-14 13:34:05 +00:00
|
|
|
if (!menu || !disp || !menu->userdata)
|
2014-10-10 14:23:12 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
list = (struct string_list*)string_split(message, "\n");
|
|
|
|
|
2014-09-15 10:36:52 +00:00
|
|
|
if (!list)
|
|
|
|
return;
|
2014-10-10 14:23:12 +00:00
|
|
|
|
2014-09-15 10:36:52 +00:00
|
|
|
if (list->elems == 0)
|
2015-02-02 17:51:48 +00:00
|
|
|
goto end;
|
2014-09-15 10:36:52 +00:00
|
|
|
|
2015-05-19 22:29:46 +00:00
|
|
|
video_driver_get_size(&width, &height);
|
2015-05-19 22:26:50 +00:00
|
|
|
|
|
|
|
x = width / 2;
|
2015-06-14 13:34:05 +00:00
|
|
|
y = height / 2 - list->size * disp->font.size / 2;
|
2014-10-10 14:23:12 +00:00
|
|
|
|
2015-03-20 21:22:06 +00:00
|
|
|
normal_color = FONT_COLOR_ARGB_TO_RGBA(settings->menu.entry_normal_color);
|
2015-03-15 15:51:55 +00:00
|
|
|
|
2014-09-15 10:36:52 +00:00
|
|
|
for (i = 0; i < list->size; i++)
|
|
|
|
{
|
|
|
|
const char *msg = list->elems[i].data;
|
2015-02-02 17:51:48 +00:00
|
|
|
if (msg)
|
2015-06-25 06:26:59 +00:00
|
|
|
glui_blit_line(x, y + i * disp->font.size,
|
2015-09-06 18:14:40 +00:00
|
|
|
width, height,
|
2015-06-25 06:26:59 +00:00
|
|
|
msg, normal_color, TEXT_ALIGN_CENTER);
|
2014-09-15 10:36:52 +00:00
|
|
|
}
|
|
|
|
|
2015-02-02 17:51:48 +00:00
|
|
|
end:
|
2014-09-15 10:36:52 +00:00
|
|
|
string_list_free(list);
|
2014-09-11 02:07:07 +00:00
|
|
|
}
|
|
|
|
|
2015-03-08 18:50:12 +00:00
|
|
|
static void glui_render(void)
|
2014-09-11 02:07:07 +00:00
|
|
|
{
|
2015-04-04 19:26:11 +00:00
|
|
|
int bottom;
|
2015-05-19 22:26:50 +00:00
|
|
|
unsigned width, height;
|
2015-06-13 15:06:03 +00:00
|
|
|
glui_handle_t *glui = NULL;
|
2015-06-14 13:34:05 +00:00
|
|
|
menu_display_t *disp = menu_display_get_ptr();
|
2015-06-13 15:06:03 +00:00
|
|
|
menu_framebuf_t *frame_buf = menu_display_fb_get_ptr();
|
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
2015-06-13 20:57:55 +00:00
|
|
|
menu_input_t *menu_input = menu_input_get_ptr();
|
2015-06-13 15:06:03 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
2015-02-13 18:00:34 +00:00
|
|
|
|
2015-05-01 12:35:27 +00:00
|
|
|
if (!menu || !menu->userdata)
|
2015-02-13 18:00:34 +00:00
|
|
|
return;
|
2014-09-11 02:07:07 +00:00
|
|
|
|
2015-05-19 22:29:46 +00:00
|
|
|
video_driver_get_size(&width, &height);
|
2015-05-19 22:26:50 +00:00
|
|
|
|
2015-02-11 19:28:54 +00:00
|
|
|
glui = (glui_handle_t*)menu->userdata;
|
2014-10-10 14:23:12 +00:00
|
|
|
|
2015-06-15 15:34:12 +00:00
|
|
|
menu_animation_update(disp->animation,
|
2015-09-06 00:41:36 +00:00
|
|
|
menu_animation_get_delta_time(disp->animation) / IDEAL_DT);
|
2015-04-20 14:22:55 +00:00
|
|
|
|
2015-06-13 15:06:03 +00:00
|
|
|
/* TODO/FIXME - we don't use framebuffer at all
|
|
|
|
* for GLUI, we should refactor this dependency
|
|
|
|
* away. */
|
|
|
|
frame_buf->width = width;
|
|
|
|
frame_buf->height = height;
|
2015-02-27 06:27:58 +00:00
|
|
|
|
2015-04-04 19:26:11 +00:00
|
|
|
if (settings->menu.pointer.enable)
|
|
|
|
{
|
2015-06-13 20:57:55 +00:00
|
|
|
menu_input->pointer.ptr =
|
2015-07-08 15:26:51 +00:00
|
|
|
(menu_input->pointer.y - glui->line_height + menu->scroll_y - 16)
|
|
|
|
/ glui->line_height;
|
2015-04-04 19:26:11 +00:00
|
|
|
|
2015-07-15 01:04:44 +00:00
|
|
|
menu->scroll_y -= menu_input->pointer.accel / 60.0;
|
|
|
|
menu_input->pointer.accel = menu_input->pointer.accel * 0.96;
|
2015-04-04 19:26:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (settings->menu.mouse.enable)
|
|
|
|
{
|
2015-06-13 20:57:55 +00:00
|
|
|
if (menu_input->mouse.scrolldown)
|
2015-04-04 19:26:11 +00:00
|
|
|
menu->scroll_y += 10;
|
2014-10-26 23:55:14 +00:00
|
|
|
|
2015-06-13 20:57:55 +00:00
|
|
|
if (menu_input->mouse.scrollup)
|
2015-04-04 19:26:11 +00:00
|
|
|
menu->scroll_y -= 10;
|
2014-09-11 02:07:07 +00:00
|
|
|
|
2015-06-13 20:57:55 +00:00
|
|
|
menu_input->mouse.ptr =
|
2015-07-08 15:26:51 +00:00
|
|
|
(menu_input->mouse.y - glui->line_height + menu->scroll_y - 16)
|
|
|
|
/ glui->line_height;
|
2015-04-04 19:26:11 +00:00
|
|
|
}
|
2014-09-11 02:07:07 +00:00
|
|
|
|
2015-04-04 19:26:11 +00:00
|
|
|
if (menu->scroll_y < 0)
|
|
|
|
menu->scroll_y = 0;
|
|
|
|
|
2015-05-14 22:03:06 +00:00
|
|
|
bottom = menu_entries_get_end() * glui->line_height
|
2015-07-08 15:26:51 +00:00
|
|
|
- height + disp->header_height * 2;
|
2015-04-04 19:26:11 +00:00
|
|
|
if (menu->scroll_y > bottom)
|
|
|
|
menu->scroll_y = bottom;
|
|
|
|
|
2015-05-14 22:03:06 +00:00
|
|
|
if (menu_entries_get_end() * glui->line_height
|
2015-07-08 15:26:51 +00:00
|
|
|
< height - disp->header_height*2)
|
2015-04-04 19:26:11 +00:00
|
|
|
menu->scroll_y = 0;
|
2015-07-13 22:38:16 +00:00
|
|
|
|
|
|
|
if (menu_entries_get_end() < height / glui->line_height)
|
|
|
|
menu_entries_set_start(0);
|
|
|
|
else
|
|
|
|
menu_entries_set_start(menu->scroll_y / glui->line_height);
|
2015-03-08 18:50:12 +00:00
|
|
|
}
|
|
|
|
|
2015-09-06 18:14:40 +00:00
|
|
|
static void glui_render_label_value(glui_handle_t *glui,
|
|
|
|
int y, unsigned width, unsigned height,
|
2015-07-15 22:27:19 +00:00
|
|
|
uint64_t index, uint32_t color, bool selected, const char *label, const char *value)
|
|
|
|
{
|
|
|
|
char label_str[PATH_MAX_LENGTH];
|
|
|
|
char value_str[PATH_MAX_LENGTH];
|
2015-07-15 23:55:43 +00:00
|
|
|
int value_len = strlen(value);
|
2015-07-16 01:38:07 +00:00
|
|
|
int ticker_limit = 0;
|
2015-09-06 14:20:17 +00:00
|
|
|
size_t usable_width = 0;
|
2015-07-15 22:27:19 +00:00
|
|
|
|
|
|
|
label_str[0] = '\0';
|
|
|
|
value_str[0] = '\0';
|
|
|
|
|
2015-07-16 01:38:07 +00:00
|
|
|
usable_width = width - (glui->margin * 2);
|
2015-07-15 23:55:43 +00:00
|
|
|
|
2015-07-16 01:38:07 +00:00
|
|
|
if (value_len * glui->glyph_width > usable_width / 2)
|
|
|
|
value_len = (usable_width/2) / glui->glyph_width;
|
|
|
|
|
|
|
|
ticker_limit = (usable_width / glui->glyph_width) - (value_len + 2);
|
|
|
|
|
|
|
|
menu_animation_ticker_str(label_str, ticker_limit, index, label, selected);
|
|
|
|
menu_animation_ticker_str(value_str, value_len, index, value, selected);
|
2015-07-15 22:27:19 +00:00
|
|
|
|
2015-09-06 18:14:40 +00:00
|
|
|
glui_blit_line(glui->margin, y, width, height, label_str, color, TEXT_ALIGN_LEFT);
|
|
|
|
glui_blit_line(width - glui->margin, y, width, height, value_str, color, TEXT_ALIGN_RIGHT);
|
2015-07-15 22:27:19 +00:00
|
|
|
}
|
|
|
|
|
2015-05-20 01:09:28 +00:00
|
|
|
static void glui_render_menu_list(glui_handle_t *glui,
|
2015-09-06 18:14:40 +00:00
|
|
|
unsigned width, unsigned height,
|
2015-05-20 01:09:28 +00:00
|
|
|
menu_handle_t *menu,
|
2015-05-07 08:15:33 +00:00
|
|
|
uint32_t normal_color,
|
2015-04-21 14:59:02 +00:00
|
|
|
uint32_t hover_color)
|
2015-04-15 19:53:35 +00:00
|
|
|
{
|
2015-07-13 22:38:16 +00:00
|
|
|
size_t i = 0;
|
2015-08-03 21:01:07 +00:00
|
|
|
uint64_t *frame_count = video_driver_get_frame_count();
|
2015-07-13 22:38:16 +00:00
|
|
|
size_t end = menu_entries_get_end();
|
|
|
|
menu_display_t *disp = menu_display_get_ptr();
|
2015-08-21 19:19:29 +00:00
|
|
|
menu_navigation_t *nav = menu_navigation_get_ptr();
|
2015-04-15 19:53:35 +00:00
|
|
|
|
|
|
|
if (!menu_display_update_pending())
|
2015-04-24 20:46:19 +00:00
|
|
|
return;
|
2015-04-15 19:53:35 +00:00
|
|
|
|
|
|
|
glui->list_block.carr.coords.vertices = 0;
|
|
|
|
|
2015-06-15 23:59:26 +00:00
|
|
|
for (i = menu_entries_get_start(); i < end; i++)
|
2015-04-15 19:53:35 +00:00
|
|
|
{
|
2015-06-05 17:05:05 +00:00
|
|
|
bool entry_selected;
|
2015-07-13 22:38:16 +00:00
|
|
|
menu_entry_t entry;
|
2015-07-15 22:27:19 +00:00
|
|
|
|
2015-06-14 13:34:05 +00:00
|
|
|
int y = disp->header_height - menu->scroll_y + (glui->line_height * i);
|
2015-06-05 17:05:05 +00:00
|
|
|
|
2015-06-26 11:47:36 +00:00
|
|
|
if (y > (int)height || ((y + (int)glui->line_height) < 0))
|
2015-06-05 17:05:05 +00:00
|
|
|
continue;
|
|
|
|
|
2015-07-13 22:38:16 +00:00
|
|
|
menu_entries_get(i, &entry);
|
|
|
|
|
2015-09-06 00:06:02 +00:00
|
|
|
entry_selected = (menu_navigation_get_selection(nav) == i);
|
2015-04-15 19:53:35 +00:00
|
|
|
|
2015-09-06 18:14:40 +00:00
|
|
|
glui_render_label_value(glui, y, width, height, *frame_count / 40,
|
2015-07-15 22:27:19 +00:00
|
|
|
entry_selected ? hover_color : normal_color, entry_selected,
|
|
|
|
entry.path, entry.value);
|
2015-04-15 19:53:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-08 18:50:12 +00:00
|
|
|
static void glui_frame(void)
|
|
|
|
{
|
2015-09-06 15:45:16 +00:00
|
|
|
unsigned i;
|
|
|
|
GRfloat coord_color[16];
|
2015-09-06 15:54:01 +00:00
|
|
|
GRfloat black_bg[16];
|
2015-09-06 18:08:11 +00:00
|
|
|
GRfloat bar_bg[16];
|
2015-09-06 18:36:17 +00:00
|
|
|
GRfloat highlight_bg[16];
|
|
|
|
GRfloat white_bg[16];
|
2015-07-16 01:38:07 +00:00
|
|
|
unsigned width, height, ticker_limit;
|
2015-06-15 20:39:19 +00:00
|
|
|
char title[PATH_MAX_LENGTH];
|
|
|
|
char title_buf[PATH_MAX_LENGTH];
|
|
|
|
char title_msg[PATH_MAX_LENGTH];
|
|
|
|
char timedate[PATH_MAX_LENGTH];
|
2015-06-12 14:20:45 +00:00
|
|
|
gl_t *gl = NULL;
|
|
|
|
glui_handle_t *glui = NULL;
|
2015-05-09 14:04:12 +00:00
|
|
|
const struct font_renderer *font_driver = NULL;
|
2015-06-12 14:20:45 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
2015-09-06 03:00:08 +00:00
|
|
|
menu_animation_t *anim = menu_animation_get_ptr();
|
2015-06-13 14:22:05 +00:00
|
|
|
menu_navigation_t *nav = menu_navigation_get_ptr();
|
2015-06-14 13:34:05 +00:00
|
|
|
menu_display_t *disp = menu_display_get_ptr();
|
2015-06-12 14:20:45 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
2015-06-13 20:57:55 +00:00
|
|
|
menu_input_t *menu_input = menu_input_get_ptr();
|
2015-08-03 21:01:07 +00:00
|
|
|
uint64_t *frame_count = video_driver_get_frame_count();
|
2015-06-12 17:28:12 +00:00
|
|
|
const uint32_t normal_color = FONT_COLOR_ARGB_TO_RGBA(
|
2015-04-21 14:59:02 +00:00
|
|
|
settings->menu.entry_normal_color);
|
2015-06-12 17:28:12 +00:00
|
|
|
const uint32_t hover_color = FONT_COLOR_ARGB_TO_RGBA(
|
2015-04-21 14:59:02 +00:00
|
|
|
settings->menu.entry_hover_color);
|
2015-06-12 17:28:12 +00:00
|
|
|
const uint32_t title_color = FONT_COLOR_ARGB_TO_RGBA(
|
2015-04-21 14:59:02 +00:00
|
|
|
settings->menu.title_color);
|
2015-03-08 18:50:12 +00:00
|
|
|
|
2015-05-01 12:35:27 +00:00
|
|
|
if (!menu || !menu->userdata)
|
2015-03-08 18:50:12 +00:00
|
|
|
return;
|
|
|
|
|
2015-03-21 22:46:49 +00:00
|
|
|
gl = (gl_t*)video_driver_get_ptr(NULL);
|
2015-03-08 18:50:12 +00:00
|
|
|
|
|
|
|
if (!gl)
|
|
|
|
return;
|
|
|
|
|
|
|
|
glui = (glui_handle_t*)menu->userdata;
|
|
|
|
|
2015-06-15 20:39:19 +00:00
|
|
|
title[0] = '\0';
|
|
|
|
title_buf[0] = '\0';
|
|
|
|
title_msg[0] = '\0';
|
|
|
|
timedate[0] = '\0';
|
|
|
|
|
2015-05-19 22:29:46 +00:00
|
|
|
video_driver_get_size(&width, &height);
|
2015-05-19 22:26:50 +00:00
|
|
|
|
2015-05-12 12:41:01 +00:00
|
|
|
menu_display_set_viewport();
|
2014-09-11 02:07:07 +00:00
|
|
|
|
2015-09-06 15:45:16 +00:00
|
|
|
for (i = 0; i < 16; i++)
|
|
|
|
{
|
2015-09-06 18:36:17 +00:00
|
|
|
coord_color[i] = 0;
|
|
|
|
black_bg[i] = 0;
|
|
|
|
bar_bg[i] = 0.2;
|
|
|
|
highlight_bg[i] = 1;
|
|
|
|
white_bg[i] = 1;
|
|
|
|
|
2015-09-06 15:45:16 +00:00
|
|
|
if (i == 3 || i == 7 || i == 11 || i == 15)
|
2015-09-06 15:54:01 +00:00
|
|
|
{
|
2015-09-06 18:36:17 +00:00
|
|
|
black_bg[i] = 0.75f;
|
|
|
|
coord_color[i] = 0.75f;
|
|
|
|
bar_bg[i] = 1.00f;
|
|
|
|
highlight_bg[i] = 0.1f;
|
2015-09-06 15:54:01 +00:00
|
|
|
}
|
2015-09-06 15:45:16 +00:00
|
|
|
}
|
2015-07-09 16:39:40 +00:00
|
|
|
menu_video_frame_background(menu, settings,
|
2015-09-06 15:45:16 +00:00
|
|
|
gl, glui->textures.bg.id, 0.75f, false, &coord_color[0]);
|
2015-03-25 14:44:54 +00:00
|
|
|
|
2015-05-14 22:07:07 +00:00
|
|
|
menu_entries_get_title(title, sizeof(title));
|
2014-09-11 02:07:07 +00:00
|
|
|
|
2015-04-24 22:32:01 +00:00
|
|
|
font_driver = driver->font_osd_driver;
|
2015-04-24 20:46:19 +00:00
|
|
|
|
2015-04-24 21:22:47 +00:00
|
|
|
menu_display_font_bind_block(menu, font_driver, &glui->list_block);
|
2015-04-24 20:46:19 +00:00
|
|
|
|
2015-09-06 18:14:40 +00:00
|
|
|
glui_render_menu_list(glui, width, height, menu, normal_color, hover_color);
|
2014-09-11 02:07:07 +00:00
|
|
|
|
2015-04-24 22:45:25 +00:00
|
|
|
menu_display_font_flush_block(menu, font_driver);
|
|
|
|
|
2015-05-09 12:01:50 +00:00
|
|
|
glui_render_quad(gl, 0,
|
2015-06-14 13:34:05 +00:00
|
|
|
disp->header_height - menu->scroll_y + glui->line_height *
|
2015-09-06 18:36:17 +00:00
|
|
|
menu_navigation_get_selection(nav), width, glui->line_height,
|
|
|
|
&highlight_bg[0]);
|
2015-05-09 12:01:50 +00:00
|
|
|
|
2015-09-06 00:41:36 +00:00
|
|
|
menu_animation_set_active(anim);
|
2015-04-04 19:26:11 +00:00
|
|
|
|
2015-05-19 22:26:50 +00:00
|
|
|
glui_render_quad(gl, 0, 0, width,
|
2015-09-06 18:36:17 +00:00
|
|
|
disp->header_height,
|
2015-09-06 18:08:11 +00:00
|
|
|
&bar_bg[0]);
|
2015-04-04 19:26:11 +00:00
|
|
|
|
2015-07-16 01:38:07 +00:00
|
|
|
ticker_limit = (width - glui->margin*2) / glui->glyph_width -
|
|
|
|
strlen(menu_hash_to_str(MENU_VALUE_BACK)) * 2;
|
|
|
|
menu_animation_ticker_str(title_buf, ticker_limit,
|
2015-08-03 21:01:07 +00:00
|
|
|
*frame_count / 100, title, true);
|
2015-09-06 18:14:40 +00:00
|
|
|
glui_blit_line(width / 2, 0, width, height, title_buf,
|
2015-04-21 14:59:02 +00:00
|
|
|
title_color, TEXT_ALIGN_CENTER);
|
2015-04-04 19:26:11 +00:00
|
|
|
|
2015-05-14 22:16:39 +00:00
|
|
|
if (menu_entries_show_back())
|
2015-09-06 18:14:40 +00:00
|
|
|
glui_blit_line(glui->margin, 0, width, height, menu_hash_to_str(MENU_VALUE_BACK),
|
2015-04-21 14:59:02 +00:00
|
|
|
title_color, TEXT_ALIGN_LEFT);
|
2015-04-04 19:26:11 +00:00
|
|
|
|
2015-06-14 13:34:05 +00:00
|
|
|
glui_render_quad(gl,
|
|
|
|
0,
|
|
|
|
height - disp->header_height,
|
|
|
|
width,
|
|
|
|
disp->header_height,
|
2015-09-06 18:36:17 +00:00
|
|
|
&bar_bg[0]);
|
2015-04-04 19:26:11 +00:00
|
|
|
|
2015-09-06 18:36:17 +00:00
|
|
|
glui_draw_scrollbar(gl, &white_bg[0]);
|
2015-04-21 02:47:02 +00:00
|
|
|
|
2015-08-17 16:14:51 +00:00
|
|
|
if (menu_entries_get_core_title(title_msg, sizeof(title_msg)) == 0)
|
2015-09-06 18:14:40 +00:00
|
|
|
glui_blit_line(
|
|
|
|
glui->margin,
|
|
|
|
height - glui->line_height,
|
|
|
|
width, height,
|
|
|
|
title_msg,
|
2015-04-04 19:26:11 +00:00
|
|
|
title_color, TEXT_ALIGN_LEFT);
|
|
|
|
|
|
|
|
if (settings->menu.timedate_enable)
|
|
|
|
{
|
2015-06-08 12:57:46 +00:00
|
|
|
menu_display_timedate(timedate, sizeof(timedate), 0);
|
2015-09-06 18:14:40 +00:00
|
|
|
glui_blit_line(
|
|
|
|
width - glui->margin,
|
|
|
|
height - glui->line_height,
|
|
|
|
width, height,
|
|
|
|
timedate, hover_color,
|
2015-04-04 19:26:11 +00:00
|
|
|
TEXT_ALIGN_RIGHT);
|
2014-09-11 02:07:07 +00:00
|
|
|
}
|
|
|
|
|
2015-06-13 20:57:55 +00:00
|
|
|
if (menu_input->keyboard.display)
|
2014-09-11 02:07:07 +00:00
|
|
|
{
|
2015-06-15 20:39:19 +00:00
|
|
|
char msg[PATH_MAX_LENGTH];
|
2015-06-13 20:57:55 +00:00
|
|
|
const char *str = *menu_input->keyboard.buffer;
|
2015-06-15 20:39:19 +00:00
|
|
|
msg[0] = '\0';
|
2015-06-12 22:09:09 +00:00
|
|
|
|
2014-09-11 02:07:07 +00:00
|
|
|
if (!str)
|
|
|
|
str = "";
|
2015-09-06 18:36:17 +00:00
|
|
|
glui_render_quad(gl, 0, 0, width, height, &black_bg[0]);
|
2015-06-13 20:57:55 +00:00
|
|
|
snprintf(msg, sizeof(msg), "%s\n%s", menu_input->keyboard.label, str);
|
2015-02-13 18:00:34 +00:00
|
|
|
glui_render_messagebox(msg);
|
2014-09-11 02:07:07 +00:00
|
|
|
}
|
|
|
|
|
2014-10-10 14:23:12 +00:00
|
|
|
if (glui->box_message[0] != '\0')
|
2014-09-15 10:36:52 +00:00
|
|
|
{
|
2015-09-06 18:36:17 +00:00
|
|
|
glui_render_quad(gl, 0, 0, width, height, &black_bg[0]);
|
2015-02-13 18:00:34 +00:00
|
|
|
glui_render_messagebox(glui->box_message);
|
2014-10-10 14:23:12 +00:00
|
|
|
glui->box_message[0] = '\0';
|
2014-09-15 10:36:52 +00:00
|
|
|
}
|
|
|
|
|
2015-03-27 19:17:11 +00:00
|
|
|
if (settings->menu.mouse.enable)
|
2015-09-06 18:36:17 +00:00
|
|
|
glui_render_quad(gl, menu_input->mouse.x - 5, menu_input->mouse.y - 5, 10, 10, &white_bg[0]);
|
2015-03-27 19:17:11 +00:00
|
|
|
|
2015-04-25 00:40:51 +00:00
|
|
|
gl->shader->use(gl, GL_SHADER_STOCK_BLEND);
|
|
|
|
|
2015-05-12 12:41:01 +00:00
|
|
|
menu_display_unset_viewport();
|
2014-09-11 02:07:07 +00:00
|
|
|
}
|
|
|
|
|
2015-05-09 11:12:43 +00:00
|
|
|
static void glui_allocate_white_texture(glui_handle_t *glui)
|
|
|
|
{
|
|
|
|
struct texture_image ti;
|
2015-06-12 14:20:45 +00:00
|
|
|
static const uint8_t white_data[] = { 0xff, 0xff, 0xff, 0xff };
|
2015-05-09 11:12:43 +00:00
|
|
|
|
|
|
|
ti.width = 1;
|
|
|
|
ti.height = 1;
|
|
|
|
ti.pixels = (uint32_t*)&white_data;
|
|
|
|
|
|
|
|
glui->textures.white = video_texture_load(&ti,
|
|
|
|
TEXTURE_BACKEND_OPENGL, TEXTURE_FILTER_NEAREST);
|
|
|
|
}
|
|
|
|
|
2015-07-15 21:13:13 +00:00
|
|
|
static void glui_font(menu_handle_t *menu)
|
|
|
|
{
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
const char *font_path = NULL;
|
|
|
|
|
|
|
|
font_path = settings->video.font_enable ? settings->video.font_path : NULL;
|
|
|
|
|
|
|
|
if (!menu_display_init_main_font(menu, font_path, menu->display.font.size))
|
|
|
|
RARCH_ERR("Failed to load font.");
|
|
|
|
}
|
|
|
|
|
2015-07-06 12:38:34 +00:00
|
|
|
static void glui_layout(menu_handle_t *menu, glui_handle_t *glui)
|
|
|
|
{
|
2015-07-15 21:13:13 +00:00
|
|
|
menu_display_t *disp = menu_display_get_ptr();
|
2015-07-16 08:11:28 +00:00
|
|
|
float scale_factor;
|
2015-07-06 12:38:34 +00:00
|
|
|
unsigned width, height;
|
|
|
|
video_driver_get_size(&width, &height);
|
|
|
|
|
2015-07-08 15:26:51 +00:00
|
|
|
/* Mobiles platforms may have very small display metrics coupled to a high
|
|
|
|
resolution, so we should be dpi aware to ensure the entries hitboxes are big
|
|
|
|
enough. On desktops, we just care about readability, with every widget size
|
|
|
|
proportional to the display width. */
|
2015-07-06 18:36:53 +00:00
|
|
|
scale_factor = menu_display_get_dpi();
|
2015-07-06 12:38:34 +00:00
|
|
|
|
|
|
|
glui->line_height = scale_factor / 3;
|
|
|
|
glui->margin = scale_factor / 6;
|
|
|
|
menu->display.header_height = scale_factor / 3;
|
2015-08-06 12:21:15 +00:00
|
|
|
menu->display.font.size = scale_factor / 10;
|
2015-07-06 18:36:53 +00:00
|
|
|
/* we assume the average glyph aspect ratio is close to 3:4 */
|
2015-07-16 01:38:07 +00:00
|
|
|
glui->glyph_width = menu->display.font.size * 3/4;
|
2015-07-15 21:13:13 +00:00
|
|
|
|
|
|
|
glui_font(menu);
|
|
|
|
|
|
|
|
if (disp && disp->font.buf) /* calculate a more realistic ticker_limit */
|
|
|
|
{
|
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-08-06 12:21:15 +00:00
|
|
|
int m_width = driver->font_osd_driver->get_message_width(disp->font.buf, "a", 1, 1);
|
2015-07-15 21:13:13 +00:00
|
|
|
|
|
|
|
if (m_width)
|
2015-07-16 01:38:07 +00:00
|
|
|
glui->glyph_width = m_width;
|
2015-07-15 21:13:13 +00:00
|
|
|
}
|
2015-07-06 12:38:34 +00:00
|
|
|
}
|
|
|
|
|
2014-09-11 02:07:07 +00:00
|
|
|
static void *glui_init(void)
|
|
|
|
{
|
2015-04-21 14:59:02 +00:00
|
|
|
glui_handle_t *glui = NULL;
|
|
|
|
const video_driver_t *video_driver = NULL;
|
|
|
|
menu_handle_t *menu = NULL;
|
|
|
|
gl_t *gl = (gl_t*)
|
|
|
|
video_driver_get_ptr(&video_driver);
|
2014-09-12 20:18:44 +00:00
|
|
|
|
|
|
|
if (video_driver != &video_gl || !gl)
|
|
|
|
{
|
|
|
|
RARCH_ERR("Cannot initialize GLUI menu driver: gl video driver is not active.\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-09-11 02:07:07 +00:00
|
|
|
|
2015-04-21 14:59:02 +00:00
|
|
|
menu = (menu_handle_t*)calloc(1, sizeof(*menu));
|
2014-09-12 20:18:44 +00:00
|
|
|
|
|
|
|
if (!menu)
|
2015-02-02 17:51:48 +00:00
|
|
|
goto error;
|
2014-09-11 02:07:07 +00:00
|
|
|
|
2015-04-21 14:59:02 +00:00
|
|
|
menu->userdata = (glui_handle_t*)calloc(1, sizeof(glui_handle_t));
|
2014-10-10 14:23:12 +00:00
|
|
|
|
|
|
|
if (!menu->userdata)
|
2015-02-02 17:51:48 +00:00
|
|
|
goto error;
|
2014-10-10 14:23:12 +00:00
|
|
|
|
2015-06-14 13:34:05 +00:00
|
|
|
glui = (glui_handle_t*)menu->userdata;
|
2014-10-10 14:23:12 +00:00
|
|
|
|
2015-07-06 12:38:34 +00:00
|
|
|
glui_layout(menu, glui);
|
2015-05-09 11:12:43 +00:00
|
|
|
glui_allocate_white_texture(glui);
|
2015-05-09 10:24:24 +00:00
|
|
|
|
2014-09-11 02:07:07 +00:00
|
|
|
return menu;
|
2015-02-02 17:51:48 +00:00
|
|
|
error:
|
|
|
|
if (menu)
|
|
|
|
free(menu);
|
|
|
|
return NULL;
|
2014-09-11 02:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void glui_free(void *data)
|
|
|
|
{
|
2015-04-21 14:59:02 +00:00
|
|
|
gl_t *gl = NULL;
|
2015-03-29 22:55:39 +00:00
|
|
|
const struct font_renderer *font_driver = NULL;
|
2015-04-21 14:59:02 +00:00
|
|
|
menu_handle_t *menu = (menu_handle_t*)data;
|
2015-04-24 22:32:01 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-04-21 14:59:02 +00:00
|
|
|
glui_handle_t *glui = (glui_handle_t*)menu->userdata;
|
2015-03-24 20:28:53 +00:00
|
|
|
|
2015-04-21 14:59:02 +00:00
|
|
|
if (!glui || !menu)
|
2015-03-29 17:25:48 +00:00
|
|
|
return;
|
|
|
|
|
2015-07-12 03:30:04 +00:00
|
|
|
gfx_coord_array_free(&glui->list_block.carr);
|
2015-03-24 20:28:53 +00:00
|
|
|
|
2015-04-21 14:59:02 +00:00
|
|
|
gl = (gl_t*)video_driver_get_ptr(NULL);
|
2015-03-28 19:50:51 +00:00
|
|
|
|
2015-04-24 22:32:01 +00:00
|
|
|
font_driver = gl ? (const struct font_renderer*)driver->font_osd_driver : NULL;
|
2015-04-21 14:59:02 +00:00
|
|
|
|
2015-04-24 20:17:08 +00:00
|
|
|
if (font_driver && font_driver->bind_block)
|
2015-04-24 22:32:01 +00:00
|
|
|
font_driver->bind_block(driver->font_osd_data, NULL);
|
2015-03-25 14:44:54 +00:00
|
|
|
|
2014-10-10 14:23:12 +00:00
|
|
|
if (menu->userdata)
|
|
|
|
free(menu->userdata);
|
2015-06-11 19:12:08 +00:00
|
|
|
menu->userdata = NULL;
|
2014-09-11 02:07:07 +00:00
|
|
|
}
|
|
|
|
|
2015-04-25 04:03:26 +00:00
|
|
|
static void glui_context_bg_destroy(glui_handle_t *glui)
|
|
|
|
{
|
2015-05-10 18:21:34 +00:00
|
|
|
if (glui)
|
|
|
|
{
|
|
|
|
if (glui->textures.bg.id)
|
|
|
|
glDeleteTextures(1, &glui->textures.bg.id);
|
|
|
|
if (glui->textures.white)
|
|
|
|
glDeleteTextures(1, &glui->textures.white);
|
2015-05-11 16:49:46 +00:00
|
|
|
|
|
|
|
glui->textures.bg.id = 0;
|
|
|
|
glui->textures.white = 0;
|
2015-05-10 18:21:34 +00:00
|
|
|
}
|
2015-04-25 04:03:26 +00:00
|
|
|
}
|
|
|
|
|
2015-02-13 18:00:34 +00:00
|
|
|
static void glui_context_destroy(void)
|
2015-02-12 23:20:39 +00:00
|
|
|
{
|
2015-05-01 12:02:03 +00:00
|
|
|
gl_t *gl = (gl_t*)video_driver_get_ptr(NULL);
|
|
|
|
glui_handle_t *glui = NULL;
|
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-07-08 15:26:51 +00:00
|
|
|
|
2015-05-01 12:02:03 +00:00
|
|
|
if (!menu || !menu->userdata || !gl || !driver)
|
2015-02-12 23:20:39 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
glui = (glui_handle_t*)menu->userdata;
|
|
|
|
|
2015-05-01 12:02:03 +00:00
|
|
|
menu_display_free_main_font(menu);
|
|
|
|
|
2015-04-25 04:03:26 +00:00
|
|
|
glui_context_bg_destroy(glui);
|
2015-02-12 23:20:39 +00:00
|
|
|
}
|
|
|
|
|
2015-06-04 08:39:48 +00:00
|
|
|
static bool glui_load_image(void *data, menu_image_type_t type)
|
2015-02-12 23:20:39 +00:00
|
|
|
{
|
|
|
|
glui_handle_t *glui = NULL;
|
2015-03-21 22:56:42 +00:00
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
2015-02-12 23:20:39 +00:00
|
|
|
|
2015-05-01 12:35:27 +00:00
|
|
|
if (!menu || !menu->userdata)
|
2015-02-12 23:20:39 +00:00
|
|
|
return false;
|
2015-07-08 15:26:51 +00:00
|
|
|
|
2015-02-12 23:20:39 +00:00
|
|
|
glui = (glui_handle_t*)menu->userdata;
|
|
|
|
|
2015-06-04 08:39:48 +00:00
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case MENU_IMAGE_NONE:
|
|
|
|
break;
|
|
|
|
case MENU_IMAGE_WALLPAPER:
|
|
|
|
glui_context_bg_destroy(glui);
|
|
|
|
|
|
|
|
glui->textures.bg.id = video_texture_load(data,
|
|
|
|
TEXTURE_BACKEND_OPENGL, TEXTURE_FILTER_MIPMAP_LINEAR);
|
|
|
|
glui_allocate_white_texture(glui);
|
|
|
|
break;
|
|
|
|
case MENU_IMAGE_BOXART:
|
|
|
|
break;
|
|
|
|
}
|
2015-02-12 23:20:39 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-24 22:54:17 +00:00
|
|
|
static float glui_get_scroll(void)
|
2014-10-26 23:55:14 +00:00
|
|
|
{
|
2015-07-07 15:16:48 +00:00
|
|
|
int half = 0;
|
2015-07-13 20:05:14 +00:00
|
|
|
unsigned width, height;
|
2015-06-12 14:13:12 +00:00
|
|
|
glui_handle_t *glui = NULL;
|
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
|
|
|
menu_navigation_t *nav = menu_navigation_get_ptr();
|
2015-09-06 00:06:02 +00:00
|
|
|
size_t selection = menu_navigation_get_selection(nav);
|
2014-10-26 23:55:14 +00:00
|
|
|
|
2015-05-01 12:35:27 +00:00
|
|
|
if (!menu || !menu->userdata)
|
2015-04-21 04:43:52 +00:00
|
|
|
return 0;
|
2015-04-21 14:59:02 +00:00
|
|
|
|
2015-07-13 20:05:14 +00:00
|
|
|
video_driver_get_size(&width, &height);
|
2015-05-19 22:26:50 +00:00
|
|
|
|
2014-10-26 23:55:14 +00:00
|
|
|
glui = (glui_handle_t*)menu->userdata;
|
2015-07-07 15:16:48 +00:00
|
|
|
if (glui->line_height)
|
2015-07-08 15:26:51 +00:00
|
|
|
half = (height / glui->line_height) / 2;
|
2015-04-04 19:26:11 +00:00
|
|
|
|
2015-09-05 16:49:48 +00:00
|
|
|
if (selection < (unsigned)half)
|
2015-04-21 04:43:52 +00:00
|
|
|
return 0;
|
2015-09-05 16:49:48 +00:00
|
|
|
return ((selection + 2 - half) * glui->line_height);
|
2015-04-21 04:43:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void glui_navigation_set(bool scroll)
|
|
|
|
{
|
2015-06-15 15:34:12 +00:00
|
|
|
menu_display_t *disp = menu_display_get_ptr();
|
2015-06-15 21:21:08 +00:00
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
2015-09-06 00:10:44 +00:00
|
|
|
float scroll_pos = glui_get_scroll();
|
2015-04-20 14:22:55 +00:00
|
|
|
|
2015-07-13 20:05:14 +00:00
|
|
|
if (!menu || !disp || !scroll)
|
2015-04-21 04:43:52 +00:00
|
|
|
return;
|
|
|
|
|
2015-07-13 20:05:14 +00:00
|
|
|
menu_animation_push(disp->animation, 10, scroll_pos,
|
|
|
|
&menu->scroll_y, EASING_IN_OUT_QUAD, -1, NULL);
|
2014-10-26 23:55:14 +00:00
|
|
|
}
|
|
|
|
|
2015-09-05 23:47:54 +00:00
|
|
|
static void glui_list_set_selection(file_list_t *list)
|
|
|
|
{
|
|
|
|
glui_navigation_set(true);
|
|
|
|
}
|
|
|
|
|
2015-04-21 04:43:52 +00:00
|
|
|
static void glui_navigation_clear(bool pending_push)
|
2014-12-15 18:03:47 +00:00
|
|
|
{
|
2015-03-21 22:56:42 +00:00
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
2015-04-21 04:43:52 +00:00
|
|
|
if (!menu)
|
|
|
|
return;
|
|
|
|
|
2015-06-15 23:59:26 +00:00
|
|
|
menu_entries_set_start(0);
|
2015-04-21 14:59:02 +00:00
|
|
|
menu->scroll_y = 0;
|
2015-04-21 04:43:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void glui_navigation_set_last(void)
|
|
|
|
{
|
|
|
|
glui_navigation_set(true);
|
2014-12-15 18:03:47 +00:00
|
|
|
}
|
|
|
|
|
2015-06-06 22:48:50 +00:00
|
|
|
static void glui_navigation_alphabet(size_t *unused)
|
2015-04-21 04:43:52 +00:00
|
|
|
{
|
|
|
|
glui_navigation_set(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void glui_populate_entries(const char *path,
|
|
|
|
const char *label, unsigned i)
|
2014-12-15 18:03:47 +00:00
|
|
|
{
|
2015-03-21 22:56:42 +00:00
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
2015-04-21 04:43:52 +00:00
|
|
|
if (!menu)
|
|
|
|
return;
|
|
|
|
|
2015-07-13 20:05:14 +00:00
|
|
|
menu->scroll_y = glui_get_scroll();
|
2014-12-15 18:03:47 +00:00
|
|
|
}
|
|
|
|
|
2015-04-21 07:20:18 +00:00
|
|
|
static void glui_context_reset(void)
|
|
|
|
{
|
2015-05-01 12:02:03 +00:00
|
|
|
glui_handle_t *glui = NULL;
|
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
|
2015-05-01 12:35:27 +00:00
|
|
|
if (!menu || !menu->userdata || !settings)
|
2015-04-21 07:20:18 +00:00
|
|
|
return;
|
2015-04-21 14:59:02 +00:00
|
|
|
|
2015-05-01 12:35:27 +00:00
|
|
|
glui = (glui_handle_t*)menu->userdata;
|
2015-04-25 04:03:26 +00:00
|
|
|
|
2015-07-06 12:38:34 +00:00
|
|
|
glui_layout(menu, glui);
|
2015-04-25 04:03:26 +00:00
|
|
|
glui_context_bg_destroy(glui);
|
2015-05-09 11:12:43 +00:00
|
|
|
glui_allocate_white_texture(glui);
|
2015-04-25 04:03:26 +00:00
|
|
|
|
|
|
|
rarch_main_data_msg_queue_push(DATA_TYPE_IMAGE,
|
|
|
|
settings->menu.wallpaper, "cb_menu_wallpaper", 0, 1, true);
|
2015-04-21 07:20:18 +00:00
|
|
|
}
|
|
|
|
|
2015-07-07 23:01:41 +00:00
|
|
|
static int glui_environ(menu_environ_cb_t type, void *data)
|
2015-07-07 22:37:44 +00:00
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
2015-07-08 22:24:10 +00:00
|
|
|
case 0:
|
2015-07-07 22:37:44 +00:00
|
|
|
default:
|
2015-07-14 14:21:08 +00:00
|
|
|
break;
|
2015-07-07 22:37:44 +00:00
|
|
|
}
|
|
|
|
|
2015-07-14 14:21:08 +00:00
|
|
|
return -1;
|
2015-07-07 22:37:44 +00:00
|
|
|
}
|
|
|
|
|
2014-09-11 05:06:20 +00:00
|
|
|
menu_ctx_driver_t menu_ctx_glui = {
|
2014-09-11 02:07:07 +00:00
|
|
|
NULL,
|
2014-09-15 10:36:52 +00:00
|
|
|
glui_get_message,
|
2015-03-08 18:50:12 +00:00
|
|
|
glui_render,
|
2014-09-11 02:07:07 +00:00
|
|
|
glui_frame,
|
|
|
|
glui_init,
|
|
|
|
glui_free,
|
2015-04-21 07:20:18 +00:00
|
|
|
glui_context_reset,
|
2015-02-12 23:20:39 +00:00
|
|
|
glui_context_destroy,
|
2015-04-21 04:43:52 +00:00
|
|
|
glui_populate_entries,
|
2014-09-11 02:07:07 +00:00
|
|
|
NULL,
|
2014-10-26 23:55:14 +00:00
|
|
|
glui_navigation_clear,
|
2014-09-11 02:07:07 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2014-10-26 23:55:14 +00:00
|
|
|
glui_navigation_set,
|
2014-12-15 18:03:47 +00:00
|
|
|
glui_navigation_set_last,
|
2015-06-06 22:48:50 +00:00
|
|
|
glui_navigation_alphabet,
|
|
|
|
glui_navigation_alphabet,
|
2014-09-11 02:07:07 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2014-11-27 15:28:45 +00:00
|
|
|
NULL,
|
2015-06-07 13:43:03 +00:00
|
|
|
NULL,
|
2015-06-08 14:01:57 +00:00
|
|
|
NULL,
|
2015-09-05 23:47:54 +00:00
|
|
|
glui_list_set_selection,
|
2015-06-15 17:00:52 +00:00
|
|
|
NULL,
|
2015-06-04 08:39:48 +00:00
|
|
|
glui_load_image,
|
2014-09-11 02:07:07 +00:00
|
|
|
"glui",
|
2015-08-17 03:05:29 +00:00
|
|
|
MENU_VIDEO_DRIVER_OPENGL,
|
2015-07-07 22:37:44 +00:00
|
|
|
glui_environ,
|
2014-09-11 02:07:07 +00:00
|
|
|
};
|