2014-06-17 14:49:13 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
|
|
* Copyright (C) 2011-2014 - Daniel De Matteis
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DRIVER_MENU_H__
|
|
|
|
#define DRIVER_MENU_H__
|
|
|
|
|
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>
|
2014-10-17 23:17:00 +00:00
|
|
|
#include "menu_list.h"
|
2014-10-28 18:54:23 +00:00
|
|
|
#include "../settings_list.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;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2014-10-10 13:52:12 +00:00
|
|
|
void *userdata;
|
|
|
|
|
2014-09-28 10:19:44 +00:00
|
|
|
/* Used for key repeat */
|
2014-06-17 14:49:13 +00:00
|
|
|
unsigned delay_timer;
|
|
|
|
unsigned delay_count;
|
|
|
|
|
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
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;
|
2014-11-14 20:56:21 +00:00
|
|
|
size_t cat_selection_ptr;
|
2014-06-17 14:49:13 +00:00
|
|
|
size_t selection_ptr;
|
|
|
|
bool need_refresh;
|
|
|
|
bool msg_force;
|
|
|
|
bool push_start_screen;
|
|
|
|
|
|
|
|
bool defer_core;
|
|
|
|
char deferred_path[PATH_MAX];
|
|
|
|
|
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
|
2014-10-17 18:36:02 +00:00
|
|
|
* menu_list_push(driver.menu->menu_stack, "", "message", 0, 0);
|
2014-09-19 18:31:18 +00:00
|
|
|
*/
|
|
|
|
char message_contents[PATH_MAX];
|
|
|
|
|
2014-09-02 14:13:42 +00:00
|
|
|
/* Quick jumping indices with L/R.
|
|
|
|
* Rebuilt when parsing directory. */
|
2014-06-17 14:49:13 +00:00
|
|
|
size_t scroll_indices[2 * (26 + 2) + 1];
|
|
|
|
unsigned scroll_indices_size;
|
|
|
|
unsigned scroll_accel;
|
|
|
|
|
|
|
|
char default_glslp[PATH_MAX];
|
|
|
|
char default_cgp[PATH_MAX];
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
struct gfx_shader *shader;
|
|
|
|
|
|
|
|
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;
|
2014-10-26 17:06:57 +00:00
|
|
|
bool enable;
|
2014-10-25 22:37:33 +00:00
|
|
|
bool left;
|
|
|
|
bool right;
|
|
|
|
bool oldleft;
|
|
|
|
bool oldright;
|
|
|
|
bool wheelup;
|
|
|
|
bool wheeldown;
|
2014-10-26 23:55:14 +00:00
|
|
|
unsigned ptr;
|
2014-10-25 20:42:19 +00:00
|
|
|
} mouse;
|
|
|
|
|
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_mainmenu;
|
|
|
|
rarch_setting_t *list_settings;
|
2014-06-17 14:49:13 +00:00
|
|
|
} menu_handle_t;
|
|
|
|
|
2014-06-17 15:12:07 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2014-06-17 14:49:13 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|