2013-04-17 21:31:49 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 00:50:59 +00:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
|
|
* Copyright (C) 2011-2014 - Daniel De Matteis
|
2014-04-13 10:12:12 +00:00
|
|
|
*
|
2013-04-17 21:31:49 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MENU_COMMON_H__
|
|
|
|
#define MENU_COMMON_H__
|
|
|
|
|
2014-05-31 14:48:07 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include "../../boolean.h"
|
2013-10-04 21:05:15 +00:00
|
|
|
#include "../../general.h"
|
2014-05-31 14:48:07 +00:00
|
|
|
#include "menu_navigation.h"
|
2014-03-01 10:53:04 +00:00
|
|
|
#include "../info/core_info.h"
|
2014-07-26 16:52:15 +00:00
|
|
|
#include "../../file_list.h"
|
2014-07-25 20:07:05 +00:00
|
|
|
#include "../../history.h"
|
2014-05-31 14:48:07 +00:00
|
|
|
#include "../../input/input_common.h"
|
|
|
|
#include "../../input/keyboard_line.h"
|
2014-06-01 20:06:52 +00:00
|
|
|
#include "../../performance.h"
|
2013-04-17 21:31:49 +00:00
|
|
|
|
|
|
|
#if defined(HAVE_CG) || defined(HAVE_HLSL) || defined(HAVE_GLSL)
|
2014-05-31 19:23:53 +00:00
|
|
|
|
|
|
|
#ifndef HAVE_SHADER_MANAGER
|
2013-04-17 21:31:49 +00:00
|
|
|
#define HAVE_SHADER_MANAGER
|
2014-05-31 19:23:53 +00:00
|
|
|
#endif
|
|
|
|
|
2013-04-17 21:31:49 +00:00
|
|
|
#include "../../gfx/shader_parse.h"
|
|
|
|
#endif
|
|
|
|
|
2014-05-31 14:48:07 +00:00
|
|
|
#ifdef HAVE_RGUI
|
|
|
|
#define MENU_TEXTURE_FULLSCREEN false
|
|
|
|
#else
|
|
|
|
#define MENU_TEXTURE_FULLSCREEN true
|
|
|
|
#endif
|
2013-04-27 22:35:20 +00:00
|
|
|
|
2014-03-30 15:35:22 +00:00
|
|
|
#ifndef GFX_MAX_SHADERS
|
|
|
|
#define GFX_MAX_SHADERS 16
|
|
|
|
#endif
|
2013-04-17 21:31:49 +00:00
|
|
|
|
2014-06-09 23:42:26 +00:00
|
|
|
#define MENU_SETTINGS_CORE_INFO_NONE 0xffff
|
|
|
|
#define MENU_SETTINGS_CORE_OPTION_NONE 0xffff
|
|
|
|
#define MENU_SETTINGS_CORE_OPTION_START 0x10000
|
2014-04-26 13:35:42 +00:00
|
|
|
|
2014-05-31 14:48:07 +00:00
|
|
|
|
2014-06-09 23:42:26 +00:00
|
|
|
#define MENU_KEYBOARD_BIND_TIMEOUT_SECONDS 5
|
2014-05-31 14:48:07 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-04-17 21:31:49 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2014-06-09 23:42:26 +00:00
|
|
|
MENU_FILE_PLAIN,
|
|
|
|
MENU_FILE_DIRECTORY,
|
|
|
|
MENU_FILE_DEVICE,
|
|
|
|
MENU_FILE_USE_DIRECTORY,
|
|
|
|
MENU_SETTINGS,
|
|
|
|
MENU_INFO_SCREEN,
|
|
|
|
MENU_START_SCREEN,
|
2014-06-10 00:06:10 +00:00
|
|
|
} menu_file_type_t;
|
2013-04-17 21:31:49 +00:00
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2014-06-09 23:42:26 +00:00
|
|
|
MENU_ACTION_UP,
|
|
|
|
MENU_ACTION_DOWN,
|
|
|
|
MENU_ACTION_LEFT,
|
|
|
|
MENU_ACTION_RIGHT,
|
|
|
|
MENU_ACTION_OK,
|
|
|
|
MENU_ACTION_CANCEL,
|
|
|
|
MENU_ACTION_REFRESH,
|
|
|
|
MENU_ACTION_SELECT,
|
|
|
|
MENU_ACTION_START,
|
|
|
|
MENU_ACTION_MESSAGE,
|
|
|
|
MENU_ACTION_SCROLL_DOWN,
|
|
|
|
MENU_ACTION_SCROLL_UP,
|
|
|
|
MENU_ACTION_MAPPING_PREVIOUS,
|
|
|
|
MENU_ACTION_MAPPING_NEXT,
|
|
|
|
MENU_ACTION_NOOP
|
2014-06-10 00:06:10 +00:00
|
|
|
} menu_action_t;
|
2013-04-17 21:31:49 +00:00
|
|
|
|
2014-06-17 14:57:19 +00:00
|
|
|
void menu_poll_bind_get_rested_axes(struct menu_bind_state *state);
|
|
|
|
void menu_poll_bind_state(struct menu_bind_state *state);
|
|
|
|
bool menu_poll_find_trigger(struct menu_bind_state *state, struct menu_bind_state *new_state);
|
2014-05-31 19:31:31 +00:00
|
|
|
bool menu_custom_bind_keyboard_cb(void *data, unsigned code);
|
|
|
|
|
2014-05-30 15:49:04 +00:00
|
|
|
void *menu_init(const void *data);
|
2014-05-30 18:53:10 +00:00
|
|
|
bool menu_iterate(void);
|
2014-05-09 03:47:32 +00:00
|
|
|
void menu_free(void *data);
|
2013-04-17 21:31:49 +00:00
|
|
|
|
2013-05-05 19:42:14 +00:00
|
|
|
void menu_ticker_line(char *buf, size_t len, unsigned tick, const char *str, bool selected);
|
2013-05-05 09:26:02 +00:00
|
|
|
|
2014-07-27 23:55:59 +00:00
|
|
|
bool load_menu_content(void);
|
|
|
|
void load_menu_content_history(unsigned game_index);
|
2014-07-22 03:01:35 +00:00
|
|
|
void menu_content_history_push_current(void);
|
2013-04-28 14:38:13 +00:00
|
|
|
|
2014-05-30 17:33:10 +00:00
|
|
|
bool menu_replace_config(const char *path);
|
2013-09-15 13:36:45 +00:00
|
|
|
|
2013-09-22 10:48:33 +00:00
|
|
|
bool menu_save_new_config(void);
|
|
|
|
|
2014-07-22 04:58:49 +00:00
|
|
|
int menu_defer_core(core_info_list_t *data, const char *dir, const char *path, char *deferred_path, size_t sizeof_deferred_path);
|
2014-05-22 01:12:56 +00:00
|
|
|
|
2014-05-30 17:33:10 +00:00
|
|
|
uint64_t menu_input(void);
|
2014-02-01 21:30:03 +00:00
|
|
|
|
2014-05-30 17:33:10 +00:00
|
|
|
void menu_flush_stack_type(unsigned final_type);
|
2014-07-22 02:55:04 +00:00
|
|
|
void menu_update_system_info(menu_handle_t *menu, bool *load_no_rom);
|
2014-07-22 04:58:49 +00:00
|
|
|
void menu_build_scroll_indices(file_list_t *buf);
|
2014-04-14 00:32:54 +00:00
|
|
|
|
2013-04-17 21:31:49 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|