2014-06-17 14:49:13 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2015-01-07 16:46:50 +00:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
2014-06-17 14:49:13 +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-12 20:22:50 +00:00
|
|
|
#ifndef __MENU_DRIVER_H__
|
|
|
|
#define __MENU_DRIVER_H__
|
2014-06-17 14:49:13 +00:00
|
|
|
|
2014-06-17 15:12:07 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
2014-10-21 03:05:52 +00:00
|
|
|
#include <boolean.h>
|
2015-01-12 19:00:43 +00:00
|
|
|
#include <retro_miscellaneous.h>
|
2015-02-23 23:01:45 +00:00
|
|
|
#include <queues/message_queue.h>
|
2015-02-01 21:52:06 +00:00
|
|
|
#include "menu_animation.h"
|
2014-10-17 23:17:00 +00:00
|
|
|
#include "menu_list.h"
|
2015-02-16 06:53:27 +00:00
|
|
|
#include "menu_database.h"
|
2014-10-28 18:54:23 +00:00
|
|
|
#include "../settings_list.h"
|
2015-02-02 23:58:55 +00:00
|
|
|
#include "../playlist.h"
|
2015-03-06 15:00:46 +00:00
|
|
|
#include "../../libretro.h"
|
2014-09-15 22:52:07 +00:00
|
|
|
|
2014-06-17 15:12:07 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-06-17 14:49:13 +00:00
|
|
|
#define MENU_MAX_BUTTONS 219
|
|
|
|
|
|
|
|
#define MENU_MAX_AXES 32
|
|
|
|
#define MENU_MAX_HATS 4
|
|
|
|
|
2015-01-05 00:58:00 +00:00
|
|
|
#ifndef MAX_USERS
|
|
|
|
#define MAX_USERS 16
|
2014-06-17 14:49:13 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
struct menu_bind_state_port
|
|
|
|
{
|
|
|
|
bool buttons[MENU_MAX_BUTTONS];
|
|
|
|
int16_t axes[MENU_MAX_AXES];
|
|
|
|
uint16_t hats[MENU_MAX_HATS];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct menu_bind_axis_state
|
|
|
|
{
|
2014-09-02 14:13:42 +00:00
|
|
|
/* Default axis state. */
|
2014-06-17 14:49:13 +00:00
|
|
|
int16_t rested_axes[MENU_MAX_AXES];
|
2014-09-02 14:13:42 +00:00
|
|
|
/* Locked axis state. If we configured an axis,
|
|
|
|
* avoid having the same axis state trigger something again right away. */
|
2014-06-17 14:49:13 +00:00
|
|
|
int16_t locked_axes[MENU_MAX_AXES];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct menu_bind_state
|
|
|
|
{
|
|
|
|
struct retro_keybind *target;
|
2014-09-02 14:13:42 +00:00
|
|
|
/* For keyboard binding. */
|
|
|
|
int64_t timeout_end;
|
2014-06-17 14:49:13 +00:00
|
|
|
unsigned begin;
|
|
|
|
unsigned last;
|
2014-12-05 12:48:54 +00:00
|
|
|
unsigned user;
|
2015-01-05 00:58:00 +00:00
|
|
|
struct menu_bind_state_port state[MAX_USERS];
|
|
|
|
struct menu_bind_axis_state axis_state[MAX_USERS];
|
2014-06-17 14:49:13 +00:00
|
|
|
bool skip;
|
|
|
|
};
|
|
|
|
|
2015-02-13 18:00:34 +00:00
|
|
|
typedef struct menu_framebuf
|
|
|
|
{
|
|
|
|
uint16_t *data;
|
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
|
|
|
size_t pitch;
|
|
|
|
} menu_framebuf_t;
|
|
|
|
|
2015-02-13 23:47:42 +00:00
|
|
|
typedef struct menu_navigation
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
/* Quick jumping indices with L/R.
|
|
|
|
* Rebuilt when parsing directory. */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
size_t list[2 * (26 + 2) + 1];
|
|
|
|
unsigned size;
|
|
|
|
} indices;
|
|
|
|
unsigned acceleration;
|
|
|
|
} scroll;
|
|
|
|
size_t selection_ptr;
|
|
|
|
} menu_navigation_t;
|
|
|
|
|
2014-06-17 14:49:13 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2014-10-10 13:52:12 +00:00
|
|
|
void *userdata;
|
|
|
|
|
2015-03-06 15:00:46 +00:00
|
|
|
/* Delta timing */
|
|
|
|
float dt;
|
|
|
|
retro_time_t cur_time;
|
|
|
|
retro_time_t old_time;
|
|
|
|
|
2014-09-28 10:19:44 +00:00
|
|
|
/* Used for key repeat */
|
2015-02-11 20:48:20 +00:00
|
|
|
struct
|
|
|
|
{
|
2015-03-06 15:00:46 +00:00
|
|
|
float timer;
|
|
|
|
float count;
|
2015-02-11 20:48:20 +00:00
|
|
|
} delay;
|
2014-06-17 14:49:13 +00:00
|
|
|
|
2014-10-26 21:31:53 +00:00
|
|
|
size_t begin;
|
2014-06-17 14:49:13 +00:00
|
|
|
|
2014-10-17 23:17:00 +00:00
|
|
|
menu_list_t *menu_list;
|
2015-02-13 23:47:42 +00:00
|
|
|
menu_navigation_t navigation;
|
2015-02-11 20:43:16 +00:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
size_t selection_ptr;
|
|
|
|
size_t size;
|
|
|
|
} categories;
|
|
|
|
|
2014-06-17 14:49:13 +00:00
|
|
|
bool need_refresh;
|
2015-02-27 07:52:44 +00:00
|
|
|
bool nonblocking_refresh;
|
2014-06-17 14:49:13 +00:00
|
|
|
bool msg_force;
|
|
|
|
bool push_start_screen;
|
|
|
|
|
|
|
|
bool defer_core;
|
2015-01-07 19:42:36 +00:00
|
|
|
char deferred_path[PATH_MAX_LENGTH];
|
2014-06-17 14:49:13 +00:00
|
|
|
|
2014-09-19 18:31:18 +00:00
|
|
|
/* This buffer can be used to display generic OK messages to the user.
|
|
|
|
* Fill it and call
|
2015-03-21 21:55:50 +00:00
|
|
|
* menu_list_push(driver->menu->menu_stack, "", "message", 0, 0);
|
2014-09-19 18:31:18 +00:00
|
|
|
*/
|
2015-01-07 19:42:36 +00:00
|
|
|
char message_contents[PATH_MAX_LENGTH];
|
2014-09-19 18:31:18 +00:00
|
|
|
|
2015-02-23 23:01:45 +00:00
|
|
|
msg_queue_t *msg_queue;
|
2014-06-17 14:49:13 +00:00
|
|
|
|
2015-01-07 19:42:36 +00:00
|
|
|
char default_glslp[PATH_MAX_LENGTH];
|
|
|
|
char default_cgp[PATH_MAX_LENGTH];
|
2014-06-17 14:49:13 +00:00
|
|
|
|
2015-02-13 18:00:34 +00:00
|
|
|
menu_framebuf_t frame_buf;
|
2015-02-11 04:08:07 +00:00
|
|
|
|
2014-06-17 14:49:13 +00:00
|
|
|
const uint8_t *font;
|
|
|
|
bool alloc_font;
|
|
|
|
|
2014-07-28 17:37:25 +00:00
|
|
|
bool load_no_content;
|
2014-06-17 14:49:13 +00:00
|
|
|
|
2015-01-19 20:24:08 +00:00
|
|
|
struct video_shader *shader;
|
2014-06-17 14:49:13 +00:00
|
|
|
|
|
|
|
struct menu_bind_state binds;
|
2014-10-25 20:42:19 +00:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2014-10-25 22:37:33 +00:00
|
|
|
int16_t dx;
|
|
|
|
int16_t dy;
|
2014-10-25 20:42:19 +00:00
|
|
|
int16_t x;
|
|
|
|
int16_t y;
|
2015-03-30 01:09:25 +00:00
|
|
|
int16_t screen_x;
|
|
|
|
int16_t screen_y;
|
2014-10-25 22:37:33 +00:00
|
|
|
bool left;
|
|
|
|
bool right;
|
|
|
|
bool oldleft;
|
|
|
|
bool oldright;
|
|
|
|
bool wheelup;
|
|
|
|
bool wheeldown;
|
2015-03-12 04:38:37 +00:00
|
|
|
bool hwheelup;
|
|
|
|
bool hwheeldown;
|
2015-03-10 14:22:46 +00:00
|
|
|
bool scrollup;
|
|
|
|
bool scrolldown;
|
2014-10-26 23:55:14 +00:00
|
|
|
unsigned ptr;
|
2014-10-25 20:42:19 +00:00
|
|
|
} mouse;
|
|
|
|
|
2015-03-28 21:35:18 +00:00
|
|
|
struct
|
|
|
|
{
|
2015-03-30 04:22:06 +00:00
|
|
|
int16_t old_x;
|
|
|
|
int16_t old_y;
|
|
|
|
bool pressed[2];
|
|
|
|
bool oldpressed[2];
|
2015-03-28 21:35:18 +00:00
|
|
|
bool back;
|
|
|
|
bool oldback;
|
|
|
|
bool cancel;
|
|
|
|
} pointer;
|
|
|
|
|
2014-06-17 14:49:13 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
const char **buffer;
|
|
|
|
const char *label;
|
2014-08-25 12:53:03 +00:00
|
|
|
const char *label_setting;
|
2014-06-17 14:49:13 +00:00
|
|
|
bool display;
|
2014-12-06 14:47:25 +00:00
|
|
|
unsigned type;
|
|
|
|
unsigned idx;
|
2014-06-17 14:49:13 +00:00
|
|
|
} keyboard;
|
|
|
|
|
2014-10-08 22:50:35 +00:00
|
|
|
rarch_setting_t *list_settings;
|
2015-02-10 23:40:18 +00:00
|
|
|
animation_t *animation;
|
2015-02-02 23:58:55 +00:00
|
|
|
|
|
|
|
content_playlist_t *db_playlist;
|
2015-02-03 01:01:00 +00:00
|
|
|
char db_playlist_file[PATH_MAX_LENGTH];
|
2015-02-16 06:53:27 +00:00
|
|
|
database_info_rdl_handle_t *rdl;
|
2014-06-17 14:49:13 +00:00
|
|
|
} menu_handle_t;
|
|
|
|
|
2015-01-12 18:11:51 +00:00
|
|
|
typedef struct menu_file_list_cbs
|
|
|
|
{
|
2015-01-26 09:18:13 +00:00
|
|
|
int (*action_iterate)(const char *label, unsigned action);
|
2015-01-12 18:11:51 +00:00
|
|
|
int (*action_deferred_push)(void *data, void *userdata, const char
|
|
|
|
*path, const char *label, unsigned type);
|
|
|
|
int (*action_ok)(const char *path, const char *label, unsigned type,
|
|
|
|
size_t idx);
|
|
|
|
int (*action_cancel)(const char *path, const char *label, unsigned type,
|
|
|
|
size_t idx);
|
|
|
|
int (*action_start)(unsigned type, const char *label, unsigned action);
|
2015-01-26 07:45:36 +00:00
|
|
|
int (*action_select)(unsigned type, const char *label, unsigned action);
|
2015-01-12 18:11:51 +00:00
|
|
|
int (*action_content_list_switch)(void *data, void *userdata, const char
|
|
|
|
*path, const char *label, unsigned type);
|
2015-03-09 03:10:57 +00:00
|
|
|
int (*action_toggle)(unsigned type, const char *label, unsigned action,
|
|
|
|
bool wraparound);
|
2015-01-26 07:10:05 +00:00
|
|
|
int (*action_refresh)(file_list_t *list, file_list_t *menu_list);
|
2015-01-22 22:52:02 +00:00
|
|
|
int (*action_up_or_down)(unsigned type, const char *label, unsigned action);
|
2015-01-31 16:46:14 +00:00
|
|
|
void (*action_get_representation)(file_list_t* list,
|
|
|
|
unsigned *w, unsigned type, unsigned i,
|
|
|
|
const char *label,
|
|
|
|
char *type_str, size_t type_str_size,
|
|
|
|
const char *entry_label,
|
|
|
|
const char *path,
|
|
|
|
char *path_buf, size_t path_buf_size);
|
2015-01-12 18:11:51 +00:00
|
|
|
} menu_file_list_cbs_t;
|
|
|
|
|
|
|
|
typedef struct menu_ctx_driver
|
|
|
|
{
|
2015-02-13 18:00:34 +00:00
|
|
|
void (*set_texture)(void);
|
|
|
|
void (*render_messagebox)(const char *msg);
|
|
|
|
void (*render)(void);
|
|
|
|
void (*frame)(void);
|
2015-01-12 18:11:51 +00:00
|
|
|
void* (*init)(void);
|
|
|
|
void (*free)(void*);
|
2015-02-13 18:00:34 +00:00
|
|
|
void (*context_reset)(void);
|
|
|
|
void (*context_destroy)(void);
|
|
|
|
void (*populate_entries)(const char *path, const char *label,
|
2015-02-11 19:40:48 +00:00
|
|
|
unsigned k);
|
2015-02-13 18:00:34 +00:00
|
|
|
void (*toggle)(bool);
|
|
|
|
void (*navigation_clear)(bool);
|
|
|
|
void (*navigation_decrement)(void);
|
|
|
|
void (*navigation_increment)(void);
|
|
|
|
void (*navigation_set)(bool);
|
|
|
|
void (*navigation_set_last)(void);
|
|
|
|
void (*navigation_descend_alphabet)(size_t *);
|
|
|
|
void (*navigation_ascend_alphabet)(size_t *);
|
|
|
|
void (*list_insert)(file_list_t *list, const char *, const char *, size_t);
|
|
|
|
void (*list_delete)(file_list_t *list, size_t, size_t);
|
|
|
|
void (*list_clear)(file_list_t *list);
|
|
|
|
void (*list_cache)(bool, unsigned);
|
2015-02-11 19:40:48 +00:00
|
|
|
void (*list_set_selection)(file_list_t *list);
|
2015-02-13 18:00:34 +00:00
|
|
|
int (*entry_iterate)(unsigned);
|
2015-02-23 22:32:59 +00:00
|
|
|
bool (*load_background)(void *data);
|
2015-01-12 18:11:51 +00:00
|
|
|
const char *ident;
|
|
|
|
} menu_ctx_driver_t;
|
|
|
|
|
2015-01-12 20:22:50 +00:00
|
|
|
extern menu_ctx_driver_t menu_ctx_rmenu;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_rmenu_xui;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_rgui;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_glui;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_xmb;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_ios;
|
2015-03-09 13:39:39 +00:00
|
|
|
extern menu_ctx_driver_t menu_ctx_null;
|
2015-01-12 20:22:50 +00:00
|
|
|
|
2015-01-12 19:00:43 +00:00
|
|
|
/**
|
|
|
|
* menu_driver_find_handle:
|
|
|
|
* @index : index of driver to get handle to.
|
|
|
|
*
|
|
|
|
* Returns: handle to menu driver at index. Can be NULL
|
|
|
|
* if nothing found.
|
|
|
|
**/
|
|
|
|
const void *menu_driver_find_handle(int index);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* menu_driver_find_ident:
|
|
|
|
* @index : index of driver to get handle to.
|
|
|
|
*
|
|
|
|
* Returns: Human-readable identifier of menu driver at index. Can be NULL
|
|
|
|
* if nothing found.
|
|
|
|
**/
|
|
|
|
const char *menu_driver_find_ident(int index);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* config_get_menu_driver_options:
|
|
|
|
*
|
|
|
|
* Get an enumerated list of all menu driver names,
|
|
|
|
* separated by '|'.
|
|
|
|
*
|
|
|
|
* Returns: string listing of all menu driver names,
|
|
|
|
* separated by '|'.
|
|
|
|
**/
|
|
|
|
const char* config_get_menu_driver_options(void);
|
|
|
|
|
|
|
|
void find_menu_driver(void);
|
|
|
|
|
|
|
|
void init_menu(void);
|
|
|
|
|
2015-03-21 22:56:42 +00:00
|
|
|
menu_handle_t *menu_driver_get_ptr(void);
|
2015-02-13 18:00:34 +00:00
|
|
|
|
2015-03-22 04:21:14 +00:00
|
|
|
void menu_driver_navigation_increment(void);
|
|
|
|
|
|
|
|
void menu_driver_navigation_decrement(void);
|
|
|
|
|
|
|
|
void menu_driver_navigation_clear(bool pending_push);
|
|
|
|
|
|
|
|
void menu_driver_navigation_set(bool scroll);
|
|
|
|
|
|
|
|
void menu_driver_navigation_set_last(void);
|
|
|
|
|
|
|
|
void menu_driver_set_texture(void);
|
|
|
|
|
2015-03-22 04:27:19 +00:00
|
|
|
void menu_driver_frame(void);
|
|
|
|
|
2015-03-22 04:21:14 +00:00
|
|
|
void menu_driver_context_reset(void);
|
|
|
|
|
2015-03-22 04:32:43 +00:00
|
|
|
void menu_driver_entry_iterate(unsigned action);
|
|
|
|
|
|
|
|
void menu_driver_free(menu_handle_t *menu);
|
|
|
|
|
2015-03-22 04:35:46 +00:00
|
|
|
void menu_driver_render(void);
|
|
|
|
|
2015-03-22 05:02:02 +00:00
|
|
|
void menu_driver_toggle(bool latch);
|
|
|
|
|
2015-03-22 05:37:26 +00:00
|
|
|
void menu_driver_render_messagebox(const char *msg);
|
|
|
|
|
2015-03-22 05:43:35 +00:00
|
|
|
void menu_driver_populate_entries(const char *path, const char *label,
|
|
|
|
unsigned k);
|
|
|
|
|
2015-03-22 05:48:03 +00:00
|
|
|
bool menu_driver_load_background(void *data);
|
|
|
|
|
2015-03-22 06:07:07 +00:00
|
|
|
void menu_driver_navigation_descend_alphabet(size_t *);
|
|
|
|
|
|
|
|
void menu_driver_navigation_ascend_alphabet(size_t *);
|
|
|
|
|
2014-06-17 15:12:07 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2014-06-17 14:49:13 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|