RetroArch/menu/drivers/zarch.c

1332 lines
34 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
* Copyright (C) 2011-2015 - Daniel De Matteis
* Copyright (C) 2014-2015 - Jean-André Santoni
*
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdint.h>
#include <stdlib.h>
#include <stddef.h>
#include <stdio.h>
#include <string.h>
#include <limits.h>
#include <file/file_path.h>
#include <file/dir_list.h>
#include <compat/posix_string.h>
2015-10-26 20:59:26 +00:00
#include <compat/strl.h>
#include <retro_log.h>
#include <retro_stat.h>
2015-10-03 01:15:47 +00:00
#include "menu_generic.h"
#include "../../config.def.h"
2015-10-26 20:59:26 +00:00
#include "../../dir_list_special.h"
#include "../menu.h"
#include "../menu_animation.h"
#include "../menu_entry.h"
#include "../menu_display.h"
#include "../menu_hash.h"
#include "../../runloop_data.h"
#include "../../gfx/video_thread_wrapper.h"
#include "../../gfx/font_driver.h"
#include "../../gfx/video_texture.h"
2015-10-25 01:25:17 +00:00
const GRfloat ZUI_NORMAL[] = {
1, 1, 1, 1,
1, 1, 1, 1,
1, 1, 1, 1,
1, 1, 1, 1,
};
2015-10-25 01:25:17 +00:00
const GRfloat ZUI_HILITE[] = {
1, 0, 0, 1,
1, 0, 0, 1,
1, 0, 0, 1,
1, 0, 0, 1,
};
2015-10-25 01:25:17 +00:00
const GRfloat ZUI_PRESS[] = {
0, 1, 0, 1,
0, 1, 0, 1,
0, 1, 0, 1,
0, 1, 0, 1,
};
2015-10-25 01:25:17 +00:00
const GRfloat ZUI_BARBG[] = {
0, 0, 1, 1,
0, 0, 1, 1,
0, 0, 1, 1,
0, 0, 1, 1,
};
const uint32_t ZUI_FG_NORMAL = ~0;
2015-10-25 01:25:17 +00:00
const GRfloat ZUI_BG_PANEL[] = {
0, 0, 0, 0.25,
0, 0, 0, 0.25,
0, 0, 0, 0.25,
0, 0, 0, 0.25,
};
2015-10-25 01:25:17 +00:00
const GRfloat ZUI_BG_SCREEN[] = {
2015-10-24 23:27:18 +00:00
0.07, 0.19, 0.26, 0.75,
0.07, 0.19, 0.26, 0.75,
0.15, 0.31, 0.47, 0.75,
0.15, 0.31, 0.47, 0.75,
};
2015-10-25 01:25:17 +00:00
const GRfloat ZUI_BG_HILITE[] = {
0.22, 0.60, 0.74, 1,
0.22, 0.60, 0.74, 1,
0.22, 0.60, 0.74, 1,
0.22, 0.60, 0.74, 1,
};
2015-10-25 01:25:17 +00:00
const GRfloat ZUI_BG_PAD_HILITE[] = {
2015-10-24 19:11:07 +00:00
0.30, 0.76, 0.93, 1,
0.30, 0.76, 0.93, 1,
0.30, 0.76, 0.93, 1,
0.30, 0.76, 0.93, 1,
};
#define ZUI_MAX_MAINMENU_TABS 4
typedef struct zarch_handle
{
ssize_t header_selection;
size_t entries_selection;
bool rendering;
menu_handle_t *menu;
math_matrix_4x4 mvp;
unsigned width;
unsigned height;
gfx_font_raster_block_t tmp_block;
unsigned hash;
bool time_to_exit;
2015-10-25 02:11:26 +00:00
bool time_to_quit;
struct {
bool enable;
size_t idx;
} pending_action_ok;
struct {
unsigned active;
unsigned hot;
} item;
gfx_coord_array_t ca;
struct
{
int wheel;
} mouse;
/* LAY_ROOT's "Load" file browser */
struct string_list *load_dlist;
char *load_cwd;
int load_dlist_first;
2015-10-02 03:34:12 +00:00
struct
{
struct
{
GRuint id;
char path[PATH_MAX_LENGTH];
} bg;
2015-10-24 22:55:02 +00:00
GRuint white;
2015-10-02 03:34:12 +00:00
} textures;
/* LAY_ROOT's "Recent" */
int recent_dlist_first;
/* LAY_PICK_CORE */
int pick_first;
char pick_content[PATH_MAX_LENGTH];
const core_info_t *pick_cores;
size_t pick_supported;
void *fb_buf;
int font_size;
int header_height;
} zui_t;
2015-10-02 02:03:34 +00:00
typedef struct
{
unsigned active;
int x, y;
int width;
int height; /* unused */
int tabline_size;
bool update_width;
bool vertical;
int tab_width;
} zui_tabbed_t;
typedef struct
{
float x, y;
float xspeed, yspeed;
float alpha;
2015-10-02 02:03:34 +00:00
bool alive;
} part_t;
static enum
{
LAY_HOME,
LAY_PICK_CORE,
LAY_SETTINGS
} layout = LAY_HOME;
2015-10-02 03:34:12 +00:00
static const GRfloat zarch_vertexes[] = {
0, 0,
1, 0,
0, 1,
1, 1
};
static const GRfloat zarch_tex_coords[] = {
0, 1,
1, 1,
0, 0,
1, 0
};
2015-10-25 01:19:26 +00:00
static void zarch_zui_font(menu_handle_t *menu)
{
int font_size;
char mediapath[PATH_MAX_LENGTH], fontpath[PATH_MAX_LENGTH];
settings_t *settings = config_get_ptr();
menu_display_ctl(MENU_DISPLAY_CTL_FONT_SIZE, &font_size);
fill_pathname_join(mediapath, settings->assets_directory, "zarch", sizeof(mediapath));
fill_pathname_join(fontpath, mediapath, "Roboto-Condensed.ttf", sizeof(fontpath));
if (!menu_display_init_main_font(menu, fontpath, font_size))
RARCH_WARN("Failed to load font.");
}
2015-10-25 01:19:26 +00:00
static float zarch_zui_strwidth(void *fb_buf, const char *text, float scale)
{
driver_t *driver = (driver_t*)driver_get_ptr();
return driver->font_osd_driver->get_message_width(fb_buf, text, strlen(text), scale);
}
2015-10-25 02:49:35 +00:00
enum zarch_zui_input_state
{
2015-10-25 03:08:51 +00:00
MENU_ZARCH_MOUSE_X = 0,
MENU_ZARCH_MOUSE_Y,
MENU_POINTER_ZARCH_X,
MENU_POINTER_ZARCH_Y,
2015-10-25 02:49:35 +00:00
MENU_ZARCH_PRESSED
};
static int16_t zarch_zui_input_state(enum zarch_zui_input_state state)
{
switch (state)
{
2015-10-25 03:08:51 +00:00
case MENU_ZARCH_MOUSE_X:
return menu_input_mouse_state(MENU_MOUSE_X_AXIS);
case MENU_ZARCH_MOUSE_Y:
return menu_input_mouse_state(MENU_MOUSE_Y_AXIS);
case MENU_POINTER_ZARCH_X:
return menu_input_pointer_state(MENU_POINTER_X_AXIS);
case MENU_POINTER_ZARCH_Y:
return menu_input_pointer_state(MENU_POINTER_Y_AXIS);
2015-10-25 02:49:35 +00:00
case MENU_ZARCH_PRESSED:
2015-10-25 03:04:46 +00:00
if (menu_input_mouse_state(MENU_MOUSE_LEFT_BUTTON) || menu_input_pointer_state(MENU_POINTER_PRESSED))
2015-10-25 02:49:35 +00:00
return 1;
break;
}
return 0;
}
2015-10-25 01:19:26 +00:00
static bool zarch_zui_check_button_down(zui_t *zui, unsigned id, int x1, int y1, int x2, int y2)
{
bool result = false;
2015-10-24 01:19:06 +00:00
bool inside = menu_input_mouse_check_hitbox(x1, y1, x2, y2);
if (inside)
zui->item.hot = id;
2015-10-25 02:49:35 +00:00
if (zui->item.hot == id && zarch_zui_input_state(MENU_ZARCH_PRESSED))
{
result = true;
zui->item.active = id;
}
return result;
}
2015-10-25 01:19:26 +00:00
static bool zarch_zui_check_button_up(zui_t *zui, unsigned id, int x1, int y1, int x2, int y2)
{
bool result = false;
2015-10-24 01:19:06 +00:00
bool inside = menu_input_mouse_check_hitbox(x1, y1, x2, y2);
if (inside)
zui->item.hot = id;
2015-10-25 02:49:35 +00:00
if (zui->item.active == id && !zarch_zui_input_state(MENU_ZARCH_PRESSED))
{
if (zui->item.hot == id)
result = true;
zui->item.active = 0;
}
2015-10-25 01:19:26 +00:00
zarch_zui_check_button_down(zui, id, x1, y1, x2, y2);
return result;
}
2015-10-25 01:19:26 +00:00
static unsigned zarch_zui_hash(zui_t *zui, const char *s)
{
unsigned hval = zui->hash;
2015-10-02 02:03:34 +00:00
while(*s!=0)
{
hval+=*s++;
hval+=(hval<<10);
hval^=(hval>>6);
hval+=(hval<<3);
hval^=(hval>>11);
hval+=(hval<<15);
}
return zui->hash = hval;
}
2015-10-25 01:19:26 +00:00
static void zarch_zui_draw_text(zui_t *zui, uint32_t color, int x, int y, const char *text)
{
struct font_params params = {0};
/* need to use height-y because the gl font renderer uses a different mvp */
params.x = x / (float)zui->width;
params.y = (zui->height - y) / (float)zui->height;
params.scale = 1.0;
params.color = color;
params.full_screen = true;
params.text_align = TEXT_ALIGN_LEFT;
video_driver_set_osd_msg(text, &params, zui->fb_buf);
}
2015-10-26 04:30:41 +00:00
static void zarch_zui_push_quad(unsigned width, unsigned height,
const GRfloat *colors, gfx_coord_array_t *ca, int x1, int y1,
int x2, int y2)
{
2015-10-04 00:34:18 +00:00
gfx_coords_t coords;
2015-10-25 01:25:17 +00:00
GRfloat vertex[8];
2015-10-04 00:34:18 +00:00
2015-10-26 04:28:08 +00:00
vertex[0] = x1 / (float)width;
vertex[1] = y1 / (float)height;
vertex[2] = x2 / (float)width;
vertex[3] = y1 / (float)height;
vertex[4] = x1 / (float)width;
vertex[5] = y2 / (float)height;
vertex[6] = x2 / (float)width;
vertex[7] = y2 / (float)height;
2015-10-04 00:34:18 +00:00
coords.color = colors;
coords.vertex = vertex;
coords.tex_coord = zarch_tex_coords;
coords.lut_tex_coord = zarch_tex_coords;
coords.vertices = 3;
2015-10-26 04:30:41 +00:00
gfx_coord_array_add(ca, &coords, 3);
coords.color += 4;
coords.vertex += 2;
coords.tex_coord += 2;
coords.lut_tex_coord += 2;
2015-10-26 04:30:41 +00:00
gfx_coord_array_add(ca, &coords, 3);
}
2015-10-25 01:19:26 +00:00
static float zarch_zui_randf(float min, float max)
{
return (rand() * ((max - min) / RAND_MAX)) + min;
}
2015-10-25 01:19:26 +00:00
static float zarch_zui_scalef(float val, float oldmin, float oldmax, float newmin, float newmax)
{
return (((val - oldmin) * (newmax - newmin)) / (oldmax - oldmin)) + newmin;
}
2015-10-02 02:03:34 +00:00
#define NPARTICLES 100
static void zarch_zui_snow(gfx_coord_array_t *ca, int width, int height)
{
static part_t particles[NPARTICLES];
static bool initialized = false;
2015-10-02 02:03:34 +00:00
static int timeout = 0;
2015-10-10 09:10:59 +00:00
unsigned i, max_gen = 2;
if (!initialized)
{
memset(particles, 0, sizeof(particles));
initialized = true;
}
for (i = 0; i < NPARTICLES; ++i)
{
2015-10-25 01:22:00 +00:00
part_t *p = (part_t*)&particles[i];
2015-10-02 02:03:34 +00:00
if (p->alive)
{
2015-10-25 03:08:51 +00:00
int16_t mouse_x = zarch_zui_input_state(MENU_ZARCH_MOUSE_X);
2015-10-25 01:22:00 +00:00
p->y += p->yspeed;
2015-10-26 04:28:08 +00:00
p->x += zarch_zui_scalef(mouse_x, 0, width, -0.3, 0.3) + p->xspeed;
2015-10-26 04:28:08 +00:00
p->alive = p->y >= 0 && p->y < height && p->x >= 0 && p->x < width;
2015-10-25 03:04:46 +00:00
}
else if (max_gen > 0 && timeout <= 0)
{
2015-10-25 01:19:26 +00:00
p->xspeed = zarch_zui_randf(-0.2, 0.2);
p->yspeed = zarch_zui_randf(1, 2);
2015-10-25 01:22:00 +00:00
p->y = 0;
2015-10-26 04:28:08 +00:00
p->x = rand() % width;
2015-10-25 01:22:00 +00:00
p->alpha = (float)rand() / (float)RAND_MAX;
p->alive = true;
max_gen--;
}
}
if (max_gen == 0)
timeout = 3;
else
timeout--;
for (i = 0; i < NPARTICLES; ++i)
{
2015-10-10 09:10:59 +00:00
unsigned j;
2015-10-25 01:25:17 +00:00
GRfloat alpha;
GRfloat colors[16];
part_t *p = &particles[i];
if (!p->alive)
continue;
2015-10-25 01:19:26 +00:00
alpha = zarch_zui_randf(0, 100) > 90 ? p->alpha/2 : p->alpha;
2015-10-10 09:10:59 +00:00
for (j = 0; j < 16; j++)
{
colors[j] = 1;
if (j == 3 || j == 7 || j == 11 || j == 15)
colors[j] = alpha;
}
zarch_zui_push_quad(width, height, colors, ca, p->x-2, p->y-2, p->x+2, p->y+2);
j++;
}
}
2015-10-25 01:19:26 +00:00
static bool zarch_zui_button_full(zui_t *zui, int x1, int y1, int x2, int y2, const char *label)
{
2015-10-25 01:19:26 +00:00
unsigned id = zarch_zui_hash(zui, label);
bool active = zarch_zui_check_button_up(zui, id, x1, y1, x2, y2);
2015-10-25 01:25:17 +00:00
const GRfloat *bg = ZUI_BG_PANEL;
if (zui->item.active == id || zui->item.hot == id)
bg = ZUI_BG_HILITE;
2015-10-26 04:30:41 +00:00
zarch_zui_push_quad(zui->width, zui->height, bg, &zui->ca, x1, y1, x2, y2);
2015-10-25 01:19:26 +00:00
zarch_zui_draw_text(zui, ZUI_FG_NORMAL, x1+12, y1 + 41, label);
return active;
}
2015-10-25 01:19:26 +00:00
static bool zarch_zui_button(zui_t *zui, int x1, int y1, const char *label)
{
2015-10-25 01:19:26 +00:00
return zarch_zui_button_full(zui, x1, y1, x1 + zarch_zui_strwidth(zui->fb_buf, label, 1.0) + 24, y1 + 64, label);
}
2015-10-25 06:50:13 +00:00
static bool zarch_zui_list_item(zui_t *zui, int x1, int y1,
const char *label, bool selected, const char *entry)
{
char title_buf[PATH_MAX_LENGTH];
unsigned ticker_size;
2015-10-25 01:19:26 +00:00
unsigned id = zarch_zui_hash(zui, label);
2015-10-24 03:57:19 +00:00
int x2 = x1 + zui->width - 290 - 40;
int y2 = y1 + 50;
2015-10-25 01:19:26 +00:00
bool active = zarch_zui_check_button_up(zui, id, x1, y1, x2, y2);
2015-10-25 01:25:17 +00:00
const GRfloat *bg = ZUI_BG_PANEL;
uint64_t *frame_count = video_driver_get_frame_count();
if (zui->item.active == id || zui->item.hot == id)
bg = ZUI_BG_HILITE;
else if (selected)
bg = ZUI_BG_PAD_HILITE;
ticker_size = x2 / 14;
menu_animation_ticker_str(title_buf,
ticker_size,
*frame_count / 50,
label,
(bg == ZUI_BG_HILITE || bg == ZUI_BG_PAD_HILITE));
2015-10-26 04:30:41 +00:00
zarch_zui_push_quad(zui->width, zui->height, bg, &zui->ca, x1, y1, x2, y2);
2015-10-25 01:19:26 +00:00
zarch_zui_draw_text(zui, ZUI_FG_NORMAL, 12, y1 + 35, title_buf);
2015-10-25 06:50:13 +00:00
if (entry)
zarch_zui_draw_text(zui, ZUI_FG_NORMAL, x2 - 200, y1 + 35, entry);
return active;
}
2015-10-25 01:19:26 +00:00
static void zarch_zui_tabbed_begin(zui_t *zui, zui_tabbed_t *tab, int x, int y)
{
2015-10-25 01:22:00 +00:00
tab->x = x;
tab->y = y;
tab->tabline_size = 60 + 4;
}
2015-10-25 01:19:26 +00:00
static bool zarch_zui_tab(zui_t *zui, zui_tabbed_t *tab, const char *label, bool selected)
{
2015-10-02 02:03:34 +00:00
bool active;
int x1, y1, x2, y2;
2015-10-25 01:19:26 +00:00
unsigned id = zarch_zui_hash(zui, label);
2015-10-24 03:57:19 +00:00
int width = tab->tab_width;
2015-10-25 01:25:17 +00:00
const GRfloat *bg = ZUI_BG_PANEL;
if (!width)
2015-10-25 01:19:26 +00:00
width = zarch_zui_strwidth(zui->fb_buf, label, 1.0) + 24;
x1 = tab->x;
y1 = tab->y;
x2 = x1 + width;
y2 = y1 + 60;
2015-10-25 01:19:26 +00:00
active = zarch_zui_check_button_up(zui, id, x1, y1, x2, y2);
2015-10-24 21:08:44 +00:00
if (zui->item.active == id || tab->active == ~0 || selected)
tab->active = id;
if (selected)
bg = ZUI_BG_PAD_HILITE;
else if (tab->active == id || zui->item.active == id || zui->item.hot == id)
bg = ZUI_BG_HILITE;
2015-10-26 04:30:41 +00:00
zarch_zui_push_quad(zui->width, zui->height, bg, &zui->ca, x1+0, y1+0, x2, y2);
2015-10-25 01:19:26 +00:00
zarch_zui_draw_text(zui, ZUI_FG_NORMAL, x1+12, y1 + 41, label);
if (tab->vertical)
tab->y += y2 - y1;
else
tab->x = x2;
2015-10-24 21:08:44 +00:00
return (active || (tab->active == id) || selected);
}
2015-10-25 01:19:26 +00:00
static void zarch_zui_render_lay_settings(zui_t *zui)
{
int width, x1, y1;
static zui_tabbed_t tabbed = {~0};
2015-10-25 01:22:00 +00:00
tabbed.vertical = true;
tabbed.tab_width = 100;
2015-10-25 01:19:26 +00:00
zarch_zui_tabbed_begin(zui, &tabbed, zui->width - 100, 20);
2015-10-25 01:22:00 +00:00
width = 290;
x1 = zui->width - width - 20;
y1 = 20;
y1 += 64;
2015-10-25 01:19:26 +00:00
if (zarch_zui_button_full(zui, x1, y1, x1 + width, y1 + 64, "Back"))
layout = LAY_HOME;
}
2015-10-25 01:19:26 +00:00
static int zarch_zui_render_lay_root_recent(zui_t *zui, zui_tabbed_t *tabbed)
{
2015-10-25 01:19:26 +00:00
if (zarch_zui_tab(zui, tabbed, "Recent", (zui->header_selection == 0)))
{
size_t end = menu_entries_get_end();
2015-10-25 08:22:00 +00:00
unsigned size = menu_entries_get_size();
unsigned i, j = 0;
zui->recent_dlist_first += zui->mouse.wheel;
if (zui->recent_dlist_first < 0)
zui->recent_dlist_first = 0;
else if (zui->recent_dlist_first > size - 5)
zui->recent_dlist_first = size - 5;
zui->recent_dlist_first = min(max(zui->recent_dlist_first, 0), size - 5);
for (i = zui->recent_dlist_first; i < size; ++i)
{
menu_entry_t entry;
2015-10-25 06:50:13 +00:00
int x2 = 12 + zui->width - 290 - 50;
menu_entries_get(i, &entry);
if (zarch_zui_list_item(zui, 0, tabbed->tabline_size + j * 54,
2015-10-25 06:50:13 +00:00
entry.path, zui->entries_selection == i, entry.value))
2015-10-06 14:07:02 +00:00
{
zui->pending_action_ok.enable = true;
zui->pending_action_ok.idx = i;
return 1;
2015-10-06 14:07:02 +00:00
}
j++;
}
}
return 0;
}
2015-10-26 21:13:30 +00:00
static void zarch_zui_render_lay_root_load_free(zui_t *zui)
{
if (!zui)
return;
free(zui->load_cwd);
dir_list_free(zui->load_dlist);
zui->load_cwd = NULL;
zui->load_dlist = NULL;
}
2015-10-25 01:19:26 +00:00
static int zarch_zui_render_lay_root_load(zui_t *zui, zui_tabbed_t *tabbed)
{
2015-10-26 20:59:26 +00:00
char parent_dir[PATH_MAX_LENGTH];
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
2015-10-25 01:19:26 +00:00
if (zarch_zui_tab(zui, tabbed, "Load", (zui->header_selection == 1)))
{
2015-10-02 02:03:34 +00:00
unsigned cwd_offset;
if (!zui->load_cwd)
2015-10-24 05:00:51 +00:00
zui->load_cwd = strdup(settings->menu_content_directory);
if (!zui->load_dlist)
{
zui->load_dlist = dir_list_new(zui->load_cwd, global->core_info.current->supported_extensions, true, true);
dir_list_sort(zui->load_dlist, true);
zui->load_dlist_first = 0;
}
2015-10-26 20:59:26 +00:00
cwd_offset = min(strlen(zui->load_cwd), 60);
2015-10-25 01:19:26 +00:00
zarch_zui_draw_text(zui, ZUI_FG_NORMAL, 15, tabbed->tabline_size + 5 + 41, &zui->load_cwd[strlen(zui->load_cwd) - cwd_offset]);
2015-10-25 01:19:26 +00:00
if (zarch_zui_button(zui, zui->width - 290 - 129, tabbed->tabline_size + 5, "Home"))
2015-10-26 21:13:30 +00:00
zarch_zui_render_lay_root_load_free(zui);
if (zui->load_dlist)
{
2015-10-26 21:01:22 +00:00
fill_pathname_parent_dir(parent_dir, zui->load_cwd, sizeof(parent_dir));
2015-10-26 20:59:26 +00:00
if (parent_dir[0] != '\0' &&
zarch_zui_list_item(zui, 0, tabbed->tabline_size + 73, " ..", false, NULL /* TODO/FIXME */))
{
dir_list_free(zui->load_dlist);
2015-10-26 20:59:26 +00:00
free(zui->load_cwd);
zui->load_dlist = NULL;
2015-10-26 20:59:26 +00:00
zui->load_cwd = NULL;
zui->load_cwd = strdup(parent_dir);
}
else
{
unsigned size = zui->load_dlist->size;
unsigned i, j = 1;
unsigned skip = 0;
2015-10-24 03:57:19 +00:00
for (i = 0; i < size; ++i)
{
const char *basename = path_basename(zui->load_dlist->elems[i].data);
2015-10-26 21:13:30 +00:00
if (basename[0] != '.')
break;
2015-10-26 21:13:30 +00:00
skip++;
}
zui->load_dlist_first += zui->mouse.wheel;
if (zui->load_dlist_first < 0)
zui->load_dlist_first = 0;
else if (zui->load_dlist_first > size - 5)
zui->load_dlist_first = size - 5;
zui->load_dlist_first = min(max(zui->load_dlist_first, 0), size - 5 - skip);
for (i = skip + zui->load_dlist_first; i < size; ++i)
{
2015-10-02 02:03:34 +00:00
char label[PATH_MAX_LENGTH];
const char *path = NULL;
const char *basename = NULL;
if (j > 10)
break;
2015-10-02 02:03:34 +00:00
path = zui->load_dlist->elems[i].data;
basename = path_basename(path);
*label = 0;
strncat(label, " ", sizeof(label)-1);
strncat(label, basename, sizeof(label)-1);
if (path_is_directory(path))
strncat(label, "/", sizeof(label)-1);
2015-10-25 01:19:26 +00:00
if (zarch_zui_list_item(zui, 0, tabbed->tabline_size + 73 + j * 54,
2015-10-25 06:50:13 +00:00
label, zui->entries_selection == i, NULL))
{
if (path_is_directory(path))
{
free(zui->load_cwd);
zui->load_cwd = strdup(path);
dir_list_free(zui->load_dlist);
zui->load_dlist = NULL;
break;
}
else
{
zui->pick_cores = NULL;
zui->pick_supported = 0;
strncpy(zui->pick_content, path, sizeof(zui->pick_content)-1);
core_info_list_get_supported_cores(global->core_info.list, path,
&zui->pick_cores, &zui->pick_supported);
layout = LAY_PICK_CORE;
break;
}
}
j++;
}
}
}
}
2015-10-04 07:10:25 +00:00
else if (zui->load_dlist)
{
dir_list_free(zui->load_dlist);
zui->load_dlist = NULL;
}
return 0;
}
2015-10-25 01:19:26 +00:00
static int zarch_zui_render_lay_root_collections(zui_t *zui, zui_tabbed_t *tabbed)
{
2015-10-25 01:19:26 +00:00
if (zarch_zui_tab(zui, tabbed, "Collections", zui->header_selection == 2))
{
/* STUB/FIXME */
}
return 0;
}
2015-10-25 01:19:26 +00:00
static int zarch_zui_render_lay_root_downloads(zui_t *zui, zui_tabbed_t *tabbed)
{
2015-10-25 01:19:26 +00:00
if (zarch_zui_tab(zui, tabbed, "Download", zui->header_selection == 3))
{
/* STUB/FIXME */
}
return 0;
}
2015-10-25 01:19:26 +00:00
static int zarch_zui_render_lay_root(zui_t *zui)
{
static zui_tabbed_t tabbed = {~0};
2015-10-25 01:19:26 +00:00
zarch_zui_tabbed_begin(zui, &tabbed, 0, 0);
tabbed.width = zui->width - 290 - 40;
2015-10-25 01:19:26 +00:00
if (zarch_zui_render_lay_root_recent(zui, &tabbed))
return 0;
2015-10-25 01:19:26 +00:00
if (zarch_zui_render_lay_root_load (zui, &tabbed))
return 0;
2015-10-25 01:19:26 +00:00
if (zarch_zui_render_lay_root_collections(zui, &tabbed))
return 0;
2015-10-25 01:19:26 +00:00
if (zarch_zui_render_lay_root_downloads(zui, &tabbed))
return 0;
2015-10-26 04:30:41 +00:00
zarch_zui_push_quad(zui->width, zui->height, ZUI_BG_HILITE, &zui->ca, 0, 60, zui->width - 290 - 40, 60+4);
return 0;
}
2015-10-25 02:11:26 +00:00
static int zarch_zui_render_sidebar(zui_t *zui)
{
2015-10-02 02:03:34 +00:00
int width, x1, y1;
static zui_tabbed_t tabbed = {~0};
tabbed.vertical = true;
tabbed.tab_width = 100;
2015-10-25 01:19:26 +00:00
zarch_zui_tabbed_begin(zui, &tabbed, zui->width - 100, 20);
width = 290;
x1 = zui->width - width - 20;
y1 = 20;
2015-10-25 01:19:26 +00:00
if (zarch_zui_button_full(zui, x1, y1, x1 + width, y1 + 64, "Settings"))
layout = LAY_SETTINGS;
y1 += 64;
2015-10-25 01:19:26 +00:00
if (zarch_zui_button_full(zui, x1, y1, x1 + width, y1 + 64, "Exit"))
2015-10-25 02:11:26 +00:00
{
zui->time_to_quit = true;
return 1;
}
return 0;
}
2015-10-25 01:19:26 +00:00
static int zarch_zui_load_content(zui_t *zui, unsigned i)
{
2015-10-09 18:14:30 +00:00
int ret = menu_common_load_content(zui->pick_cores[i].path,
zui->pick_content, false, CORE_TYPE_PLAIN);
layout = LAY_HOME;
return ret;
}
2015-10-25 01:19:26 +00:00
static void zarch_zui_draw_cursor(gl_t *gl, float x, float y)
{
2015-10-24 21:48:53 +00:00
}
static void zarch_get_message(const char *message)
{
}
static void zarch_render(void)
{
int bottom;
unsigned width, height;
zui_t *zarch = NULL;
2015-10-24 21:34:59 +00:00
menu_handle_t *menu = menu_driver_get_ptr();
2015-10-24 21:48:53 +00:00
settings_t *settings = config_get_ptr();
2015-10-24 21:48:53 +00:00
if (!menu || !menu->userdata)
return;
2015-10-24 21:48:53 +00:00
(void)settings;
(void)bottom;
(void)zarch;
2015-10-24 21:48:53 +00:00
video_driver_get_size(&width, &height);
}
2015-10-24 21:48:53 +00:00
static void zarch_frame(void)
{
unsigned i;
GRfloat coord_color[16];
GRfloat coord_color2[16];
zui_t *zui = NULL;
2015-10-25 02:20:37 +00:00
const struct font_renderer *font_driver = NULL;
2015-10-24 21:48:53 +00:00
driver_t *driver = driver_get_ptr();
settings_t *settings = config_get_ptr();
menu_handle_t *menu = menu_driver_get_ptr();
gl_t *gl = (gl_t*)video_driver_get_ptr(NULL);
if (!menu || !gl)
return;
2015-10-24 21:48:53 +00:00
(void)driver;
zui = (zui_t*)menu->userdata;
zui->menu = menu;
video_driver_get_size(&zui->width, &zui->height);
menu_display_ctl(MENU_DISPLAY_CTL_SET_VIEWPORT, NULL);
menu_display_ctl(MENU_DISPLAY_CTL_FONT_BUF, &zui->fb_buf);
for (i = 0; i < 16; i++)
{
coord_color[i] = 0;
coord_color2[i] = 2.0f;
if (i == 3 || i == 7 || i == 11 || i == 15)
{
coord_color[i] = 0.10f;
coord_color2[i] = 0.10f;
}
}
2015-10-24 21:34:59 +00:00
zui->rendering = true;
zui->hash = 0;
zui->item.hot = 0;
/* why do i need this? */
zui->mouse.wheel = menu_input_mouse_state(MENU_MOUSE_WHEEL_DOWN) -
menu_input_mouse_state(MENU_MOUSE_WHEEL_UP);
zui->ca.coords.vertices = 0;
zui->tmp_block.carr.coords.vertices = 0;
2015-10-25 02:20:37 +00:00
font_driver = driver->font_osd_driver;
menu_display_font_bind_block(zui->menu, font_driver, &zui->tmp_block);
2015-10-26 04:30:41 +00:00
zarch_zui_push_quad(zui->width, zui->height, ZUI_BG_SCREEN, &zui->ca, 0, 0, zui->width, zui->height);
zarch_zui_snow(&zui->ca, zui->width, zui->height);
2015-10-02 01:55:23 +00:00
switch (layout)
{
2015-10-02 01:55:23 +00:00
case LAY_HOME:
2015-10-25 02:27:00 +00:00
if (zarch_zui_render_sidebar(zui))
2015-10-25 02:11:26 +00:00
return;
2015-10-25 02:27:00 +00:00
if (zarch_zui_render_lay_root(zui))
return;
2015-10-02 01:55:23 +00:00
break;
case LAY_SETTINGS:
2015-10-25 01:19:26 +00:00
zarch_zui_render_lay_settings(zui);
2015-10-02 01:55:23 +00:00
break;
case LAY_PICK_CORE:
2015-10-25 02:27:00 +00:00
if (zarch_zui_render_sidebar(zui))
2015-10-25 02:11:26 +00:00
return;
2015-10-02 01:55:23 +00:00
if (zui->pick_supported == 1)
{
2015-10-25 01:19:26 +00:00
int ret = zarch_zui_load_content(zui, 0);
2015-10-09 18:14:30 +00:00
(void)ret;
layout = LAY_HOME;
zui->time_to_exit = true;
return;
2015-10-02 01:55:23 +00:00
}
else
{
2015-10-25 01:19:26 +00:00
zarch_zui_draw_text(zui, ~0, 8, 18, "Select a core: ");
2015-10-25 01:19:26 +00:00
if (zarch_zui_button(zui, 0, 18 + zui->font_size, "<- Back"))
2015-10-02 01:55:23 +00:00
layout = LAY_HOME;
if (zui->pick_supported)
{
2015-10-02 01:55:23 +00:00
unsigned i, j = 0;
zui->pick_first += zui->mouse.wheel;
2015-10-24 02:15:58 +00:00
2015-10-02 01:55:23 +00:00
zui->pick_first = min(max(zui->pick_first, 0), zui->pick_supported - 5);
2015-10-02 01:55:23 +00:00
for (i = zui->pick_first; i < zui->pick_supported; ++i)
{
2015-10-02 01:55:23 +00:00
if (j > 10)
break;
2015-10-25 01:19:26 +00:00
if (zarch_zui_list_item(zui, 0, 54 + j * 54,
2015-10-25 06:50:13 +00:00
zui->pick_cores[i].display_name, zui->entries_selection == i, NULL))
2015-10-02 01:55:23 +00:00
{
2015-10-25 01:19:26 +00:00
int ret = zarch_zui_load_content(zui, i);
2015-10-09 18:14:30 +00:00
(void)ret;
2015-10-02 01:55:23 +00:00
layout = LAY_HOME;
zui->time_to_exit = true;
2015-10-02 01:55:23 +00:00
break;
}
j++;
}
2015-10-02 01:55:23 +00:00
}
else
{
2015-10-25 06:50:13 +00:00
zarch_zui_list_item(zui, 0, 54, "Content unsupported", false, NULL /* TODO/FIXME */);
}
}
2015-10-02 01:55:23 +00:00
break;
}
/* fetch it again in case the pointer was invalidated by a core load */
gl = (gl_t*)video_driver_get_ptr(NULL);
2015-10-24 05:00:51 +00:00
if (settings->menu.mouse.enable)
2015-10-25 03:08:51 +00:00
zarch_zui_draw_cursor(gl, zarch_zui_input_state(MENU_ZARCH_MOUSE_X), zarch_zui_input_state(MENU_ZARCH_MOUSE_Y));
2015-10-24 05:54:07 +00:00
gl->shader->use(gl, GL_SHADER_STOCK_BLEND);
2015-10-25 02:49:35 +00:00
if (!zarch_zui_input_state(MENU_ZARCH_PRESSED))
zui->item.active = 0;
else if (zui->item.active == 0)
zui->item.active = -1;
2015-10-24 21:37:59 +00:00
menu_display_draw_frame(
0,
0,
zui->width,
zui->height,
gl->shader, (struct gfx_coords*)&zui->ca,
2015-10-24 22:55:02 +00:00
&zui->mvp, true, zui->textures.white, zui->ca.coords.vertices,
2015-10-24 21:37:59 +00:00
MENU_DISPLAY_PRIM_TRIANGLES);
2015-10-24 21:44:34 +00:00
menu_display_frame_background(menu, settings,
gl, zui->width, zui->height,
zui->textures.bg.id, 0.75f, false,
&coord_color[0], &coord_color2[0],
&zarch_vertexes[0], &zarch_tex_coords[0], 4,
MENU_DISPLAY_PRIM_TRIANGLESTRIP);
2015-10-24 21:37:59 +00:00
menu_display_font_flush_block(zui->menu, driver->font_osd_driver);
zui->rendering = false;
2015-10-24 21:21:18 +00:00
2015-10-02 03:17:40 +00:00
menu_display_ctl(MENU_DISPLAY_CTL_UNSET_VIEWPORT, NULL);
}
static void *zarch_init(void)
{
2015-10-25 02:14:08 +00:00
int unused;
2015-10-02 02:03:34 +00:00
zui_t *zui = NULL;
const video_driver_t *video_driver = NULL;
menu_handle_t *menu = NULL;
settings_t *settings = config_get_ptr();
gl_t *gl = (gl_t*)
video_driver_get_ptr(&video_driver);
if (video_driver != &video_gl || !gl)
{
RARCH_ERR("Cannot initialize GLUI menu driver: gl video driver is not active.\n");
return NULL;
}
if (settings->menu.mouse.enable)
{
RARCH_WARN("Forcing menu_mouse_enable=false\n");
settings->menu.mouse.enable = false;
}
menu = (menu_handle_t*)calloc(1, sizeof(*menu));
if (!menu)
goto error;
menu->userdata = (zui_t*)calloc(1, sizeof(zui_t));
if (!menu->userdata)
goto error;
zui = (zui_t*)menu->userdata;
2015-10-25 02:14:08 +00:00
unused = 1000;
menu_display_ctl(MENU_DISPLAY_CTL_SET_HEADER_HEIGHT, &unused);
2015-10-25 02:14:08 +00:00
unused = 28;
menu_display_ctl(MENU_DISPLAY_CTL_SET_FONT_SIZE, &unused);
(void)unused;
2015-10-02 02:03:34 +00:00
zui->header_height = 1000; /* dpi / 3; */
zui->font_size = 28;
if (settings->menu.wallpaper[0] != '\0')
rarch_main_data_msg_queue_push(DATA_TYPE_IMAGE,
settings->menu.wallpaper, "cb_menu_wallpaper", 0, 1, true);
zui->ca.allocated = 0;
zui->header_selection = -1;
matrix_4x4_ortho(&zui->mvp, 0, 1, 1, 0, 0, 1);
2015-10-25 01:19:26 +00:00
zarch_zui_font(menu);
return menu;
error:
if (menu)
free(menu);
return NULL;
}
static void zarch_free(void *data)
{
menu_handle_t *menu = (menu_handle_t*)data;
driver_t *driver = driver_get_ptr();
2015-10-24 03:57:19 +00:00
zui_t *zarch = (zui_t*)menu->userdata;
const struct font_renderer *font_driver =
(const struct font_renderer*)driver->font_osd_driver;
if (!zarch || !menu)
return;
gfx_coord_array_free(&zarch->tmp_block.carr);
if (menu->userdata)
free(menu->userdata);
menu->userdata = NULL;
if (font_driver->bind_block)
font_driver->bind_block(driver->font_osd_data, NULL);
}
static void zarch_context_bg_destroy(zui_t *zarch)
{
2015-10-25 01:33:23 +00:00
video_texture_unload((uintptr_t*)&zarch->textures.bg.id);
video_texture_unload((uintptr_t*)&zarch->textures.white);
}
static void zarch_context_destroy(void)
{
menu_handle_t *menu = menu_driver_get_ptr();
driver_t *driver = driver_get_ptr();
zui_t *zarch = menu ? (zui_t*)menu->userdata : NULL;
if (!menu || !zarch || !driver)
return;
menu_display_free_main_font();
zarch_context_bg_destroy(zarch);
}
2015-10-02 03:34:12 +00:00
static bool zarch_load_image(void *data, menu_image_type_t type)
{
2015-10-24 03:57:19 +00:00
zui_t *zarch = NULL;
menu_handle_t *menu = menu_driver_get_ptr();
if (!menu)
return false;
zarch = (zui_t*)menu->userdata;
if (!zarch || !data)
return false;
switch (type)
{
case MENU_IMAGE_NONE:
break;
case MENU_IMAGE_WALLPAPER:
zarch_context_bg_destroy(zarch);
zarch->textures.bg.id = video_texture_load(data,
TEXTURE_BACKEND_OPENGL, TEXTURE_FILTER_MIPMAP_LINEAR);
break;
case MENU_IMAGE_BOXART:
break;
}
return true;
}
2015-10-24 22:55:02 +00:00
static void zarch_allocate_white_texture(zui_t *zui)
{
struct texture_image ti;
static const uint32_t data = UINT32_MAX;
ti.width = 1;
ti.height = 1;
ti.pixels = (uint32_t*)&data;
zui->textures.white = video_texture_load(&ti,
TEXTURE_BACKEND_OPENGL, TEXTURE_FILTER_NEAREST);
}
static void zarch_context_reset(void)
{
2015-10-24 03:57:19 +00:00
zui_t *zui = NULL;
menu_handle_t *menu = menu_driver_get_ptr();
settings_t *settings = config_get_ptr();
const char *font_path = NULL;
if (!menu || !menu->userdata || !settings)
return;
zui = (zui_t*)menu->userdata;
font_path = settings->video.font_enable ? settings->video.font_path : NULL;
if (!menu_display_init_main_font(menu, font_path, zui->font_size))
RARCH_WARN("Failed to load font.");
zarch_context_bg_destroy(zui);
rarch_main_data_msg_queue_push(DATA_TYPE_IMAGE,
settings->menu.wallpaper, "cb_menu_wallpaper", 0, 1, true);
2015-10-24 22:55:02 +00:00
zarch_allocate_white_texture(zui);
menu_display_ctl(MENU_DISPLAY_CTL_SET_FONT_SIZE, &zui->font_size);
2015-10-25 01:19:26 +00:00
zarch_zui_font(menu);
}
static int zarch_iterate(enum menu_action action)
2015-10-03 03:24:03 +00:00
{
int ret = 0;
2015-10-25 02:38:59 +00:00
size_t entries_selection = 0;
menu_entry_t entry;
zui_t *zui = NULL;
2015-10-24 21:13:11 +00:00
static ssize_t header_selection_last = 0;
menu_handle_t *menu = menu_driver_get_ptr();
enum menu_action act = (enum menu_action)action;
bool perform_action = true;
2015-10-03 03:24:03 +00:00
if (!menu)
return 0;
zui = (zui_t*)menu->userdata;
if (!zui)
return -1;
if (!menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SELECTION, &zui->entries_selection))
return 0;
BIT64_SET(menu->state, MENU_STATE_RENDER_FRAMEBUFFER);
BIT64_SET(menu->state, MENU_STATE_BLIT);
2015-10-03 03:24:03 +00:00
/* FIXME: Crappy hack, needed for mouse controls to not be completely broken
* in case we press back.
*
* We need to fix this entire mess, mouse controls should not rely on a
* hack like this in order to work. */
zui->entries_selection = max(min(zui->entries_selection, (menu_entries_get_size() - 1)), 0);
menu_entry_get(&entry, zui->entries_selection, NULL, false);
if (zui->pending_action_ok.enable)
{
menu_entry_get(&entry, zui->pending_action_ok.idx, NULL, false);
zui->pending_action_ok.enable = false;
2015-10-25 02:38:59 +00:00
act = MENU_ACTION_OK;
entries_selection = zui->pending_action_ok.idx;
zui->pending_action_ok.idx = 0;
}
2015-10-25 02:38:59 +00:00
else
{
2015-10-25 02:38:59 +00:00
switch (act)
{
case MENU_ACTION_UP:
if (zui->entries_selection == 0)
{
zui->header_selection = header_selection_last;
perform_action = false;
}
break;
2015-10-25 02:38:59 +00:00
case MENU_ACTION_DOWN:
if (zui->header_selection != -1)
{
header_selection_last = zui->header_selection;
zui->header_selection = -1;
zui->entries_selection = 0;
perform_action = false;
}
break;
case MENU_ACTION_LEFT:
if (zui->header_selection > 0)
{
zui->header_selection--;
zui->entries_selection = 0;
perform_action = false;
}
break;
case MENU_ACTION_RIGHT:
if (zui->header_selection > -1 &&
zui->header_selection < (ZUI_MAX_MAINMENU_TABS-1))
{
zui->header_selection++;
zui->entries_selection = 0;
perform_action = false;
}
break;
default:
break;
}
entries_selection = zui->entries_selection;
}
if (zui->header_selection != -1)
perform_action = false;
if (perform_action)
2015-10-25 02:38:59 +00:00
ret = menu_entry_action(&entry, entries_selection, act);
if (zui->time_to_exit)
{
zui->time_to_exit = false;
return -1;
}
2015-10-25 02:11:26 +00:00
if (zui->time_to_quit)
{
zui->time_to_quit = false;
if (!event_command(EVENT_CMD_QUIT))
return -1;
return 0;
}
return ret;
2015-10-03 03:24:03 +00:00
}
static bool zarch_menu_init_list(void *data)
{
int ret;
menu_displaylist_info_t info = {0};
file_list_t *menu_stack = menu_entries_get_menu_stack_ptr();
file_list_t *selection_buf = menu_entries_get_selection_buf_ptr();
strlcpy(info.label, menu_hash_to_str(MENU_VALUE_HISTORY_TAB), sizeof(info.label));
2015-10-26 20:30:58 +00:00
menu_entries_push(menu_stack, info.path, info.label, info.type, info.flags, 0);
menu_entries_push(menu_stack, info.path, info.label, info.type, info.flags, 0);
event_command(EVENT_CMD_HISTORY_INIT);
info.list = selection_buf;
menu_displaylist_push_list(&info, DISPLAYLIST_HISTORY);
info.need_push = true;
(void)ret;
menu_displaylist_push_list_process(&info);
return true;
}
menu_ctx_driver_t menu_ctx_zarch = {
NULL,
zarch_get_message,
2015-10-03 03:24:03 +00:00
zarch_iterate,
zarch_render,
zarch_frame,
zarch_init,
zarch_free,
zarch_context_reset,
zarch_context_destroy,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
zarch_menu_init_list,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
2015-10-02 03:34:12 +00:00
zarch_load_image,
"zarch",
MENU_VIDEO_DRIVER_OPENGL,
NULL,
};