2013-04-17 23:31:49 +02:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 01:50:59 +01:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2015-01-07 17:46:50 +01:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
2014-04-13 12:12:12 +02:00
|
|
|
*
|
2013-04-17 23:31:49 +02: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-10 04:53:37 +01:00
|
|
|
#ifndef __RETROARCH_MENU_H__
|
|
|
|
#define __RETROARCH_MENU_H__
|
2013-04-17 23:31:49 +02:00
|
|
|
|
2014-05-31 16:48:07 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
2014-10-21 05:05:52 +02:00
|
|
|
#include <boolean.h>
|
2013-10-04 17:05:15 -04:00
|
|
|
#include "../../general.h"
|
2015-01-11 06:24:44 +01:00
|
|
|
#include "menu_input.h"
|
2013-04-17 23:31:49 +02:00
|
|
|
|
2014-03-30 17:35:22 +02:00
|
|
|
#ifndef GFX_MAX_SHADERS
|
|
|
|
#define GFX_MAX_SHADERS 16
|
|
|
|
#endif
|
2013-04-17 23:31:49 +02:00
|
|
|
|
2014-09-24 08:27:53 +02:00
|
|
|
#ifndef MAX_COUNTERS
|
|
|
|
#define MAX_COUNTERS 64
|
|
|
|
#endif
|
|
|
|
|
2014-12-06 15:47:25 +01:00
|
|
|
#ifndef MAX_CHEAT_COUNTERS
|
|
|
|
#define MAX_CHEAT_COUNTERS 100
|
|
|
|
#endif
|
|
|
|
|
2014-06-10 01:42:26 +02: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 15:35:42 +02:00
|
|
|
|
2014-05-31 16:48:07 +02:00
|
|
|
|
2014-06-10 01:42:26 +02:00
|
|
|
#define MENU_KEYBOARD_BIND_TIMEOUT_SECONDS 5
|
2014-05-31 16:48:07 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-04-17 23:31:49 +02:00
|
|
|
typedef enum
|
|
|
|
{
|
2014-09-04 17:45:02 +02:00
|
|
|
MENU_FILE_NONE,
|
|
|
|
MENU_FILE_PLAIN,
|
2014-06-10 01:42:26 +02:00
|
|
|
MENU_FILE_DIRECTORY,
|
2014-09-11 05:48:35 +02:00
|
|
|
MENU_FILE_PATH,
|
2014-06-10 01:42:26 +02:00
|
|
|
MENU_FILE_DEVICE,
|
2014-09-04 03:40:48 +02:00
|
|
|
MENU_FILE_CORE,
|
2014-09-02 23:42:40 +02:00
|
|
|
MENU_FILE_PLAYLIST_ENTRY,
|
2014-11-24 14:43:01 +07:00
|
|
|
MENU_FILE_CONTENTLIST_ENTRY,
|
2014-09-10 18:36:35 +02:00
|
|
|
MENU_FILE_SHADER_PRESET,
|
|
|
|
MENU_FILE_SHADER,
|
2014-09-10 20:59:16 +02:00
|
|
|
MENU_FILE_VIDEOFILTER,
|
|
|
|
MENU_FILE_AUDIOFILTER,
|
2014-12-15 23:51:11 +01:00
|
|
|
MENU_FILE_CHEAT,
|
2014-09-10 20:59:16 +02:00
|
|
|
MENU_FILE_OVERLAY,
|
2014-09-11 05:48:35 +02:00
|
|
|
MENU_FILE_FONT,
|
2014-09-10 20:59:16 +02:00
|
|
|
MENU_FILE_CONFIG,
|
2014-06-10 01:42:26 +02:00
|
|
|
MENU_FILE_USE_DIRECTORY,
|
2014-09-06 20:56:14 +02:00
|
|
|
MENU_FILE_CARCHIVE,
|
|
|
|
MENU_FILE_IN_CARCHIVE,
|
2015-01-17 18:15:22 +01:00
|
|
|
MENU_FILE_IMAGE,
|
2015-01-19 07:37:24 +01:00
|
|
|
MENU_FILE_REMAP,
|
2015-01-21 05:47:52 +01:00
|
|
|
MENU_FILE_DOWNLOAD_CORE,
|
|
|
|
MENU_FILE_DOWNLOAD_CORE_INFO,
|
2015-01-22 03:45:48 +01:00
|
|
|
MENU_FILE_RDB,
|
2015-01-22 04:41:34 +01:00
|
|
|
MENU_FILE_RDB_ENTRY,
|
2015-01-25 09:50:09 +01:00
|
|
|
MENU_FILE_CURSOR,
|
2014-06-10 01:42:26 +02:00
|
|
|
MENU_SETTINGS,
|
2014-10-28 06:31:34 +01:00
|
|
|
MENU_SETTING_DRIVER,
|
2014-10-28 06:36:52 +01:00
|
|
|
MENU_SETTING_ACTION,
|
2014-11-25 11:20:15 +07:00
|
|
|
MENU_SETTING_ACTION_RUN,
|
2015-01-26 22:50:38 +01:00
|
|
|
MENU_SETTING_ACTION_CORE_OPTIONS,
|
2015-01-28 19:43:41 +01:00
|
|
|
MENU_SETTING_ACTION_CORE_INPUT_REMAPPING_OPTIONS,
|
2015-01-26 22:50:38 +01:00
|
|
|
MENU_SETTING_ACTION_CORE_CHEAT_OPTIONS,
|
|
|
|
MENU_SETTING_ACTION_CORE_INFORMATION,
|
|
|
|
MENU_SETTING_ACTION_CORE_DISK_OPTIONS,
|
2014-11-25 11:20:15 +07:00
|
|
|
MENU_SETTING_ACTION_SAVESTATE,
|
|
|
|
MENU_SETTING_ACTION_LOADSTATE,
|
|
|
|
MENU_SETTING_ACTION_SCREENSHOT,
|
|
|
|
MENU_SETTING_ACTION_RESET,
|
2014-10-28 18:49:35 +01:00
|
|
|
MENU_SETTING_GROUP,
|
|
|
|
MENU_SETTING_SUBGROUP,
|
2014-11-24 17:23:02 +07:00
|
|
|
MENU_SETTING_HORIZONTAL_MENU,
|
2014-10-28 06:45:42 +01:00
|
|
|
MENU_FILE_TYPE_T_LAST,
|
2014-06-10 02:06:10 +02:00
|
|
|
} menu_file_type_t;
|
2013-04-17 23:31:49 +02:00
|
|
|
|
2014-09-01 00:27:09 +02:00
|
|
|
typedef enum
|
|
|
|
{
|
2014-10-28 06:45:42 +01:00
|
|
|
MENU_SETTINGS_VIDEO_RESOLUTION = MENU_FILE_TYPE_T_LAST + 1,
|
2014-09-01 00:27:09 +02:00
|
|
|
MENU_SETTINGS_CUSTOM_VIEWPORT,
|
|
|
|
MENU_SETTINGS_SHADER_PARAMETER_0,
|
|
|
|
MENU_SETTINGS_SHADER_PARAMETER_LAST = MENU_SETTINGS_SHADER_PARAMETER_0 + (GFX_MAX_PARAMETERS - 1),
|
2014-11-29 21:03:31 +01:00
|
|
|
MENU_SETTINGS_SHADER_PRESET_PARAMETER_0,
|
|
|
|
MENU_SETTINGS_SHADER_PRESET_PARAMETER_LAST = MENU_SETTINGS_SHADER_PRESET_PARAMETER_0 + (GFX_MAX_PARAMETERS - 1),
|
2014-09-05 02:23:35 +02:00
|
|
|
MENU_SETTINGS_SHADER_PASS_0,
|
|
|
|
MENU_SETTINGS_SHADER_PASS_LAST = MENU_SETTINGS_SHADER_PASS_0 + (GFX_MAX_SHADERS - 1),
|
|
|
|
MENU_SETTINGS_SHADER_PASS_FILTER_0,
|
|
|
|
MENU_SETTINGS_SHADER_PASS_FILTER_LAST = MENU_SETTINGS_SHADER_PASS_FILTER_0 + (GFX_MAX_SHADERS - 1),
|
|
|
|
MENU_SETTINGS_SHADER_PASS_SCALE_0,
|
|
|
|
MENU_SETTINGS_SHADER_PASS_SCALE_LAST = MENU_SETTINGS_SHADER_PASS_SCALE_0 + (GFX_MAX_SHADERS - 1),
|
2014-09-01 00:27:09 +02:00
|
|
|
|
2014-10-13 03:26:44 +02:00
|
|
|
MENU_SETTINGS_CORE_DISK_OPTIONS_DISK_INDEX,
|
|
|
|
MENU_SETTINGS_CORE_DISK_OPTIONS_DISK_IMAGE_APPEND,
|
2014-10-13 05:30:14 +02:00
|
|
|
MENU_SETTINGS_CORE_DISK_OPTIONS_DISK_CYCLE_TRAY_STATUS,
|
2014-10-13 03:26:44 +02:00
|
|
|
|
2014-09-01 00:27:09 +02:00
|
|
|
MENU_SETTINGS_BIND_BEGIN,
|
|
|
|
MENU_SETTINGS_BIND_LAST = MENU_SETTINGS_BIND_BEGIN + RARCH_ANALOG_RIGHT_Y_MINUS,
|
|
|
|
MENU_SETTINGS_BIND_ALL_LAST = MENU_SETTINGS_BIND_BEGIN + RARCH_MENU_TOGGLE,
|
|
|
|
|
|
|
|
MENU_SETTINGS_CUSTOM_BIND,
|
|
|
|
MENU_SETTINGS_CUSTOM_BIND_KEYBOARD,
|
|
|
|
MENU_SETTINGS_CUSTOM_BIND_ALL,
|
|
|
|
MENU_SETTINGS_CUSTOM_BIND_DEFAULT_ALL,
|
|
|
|
MENU_SETTINGS_LIBRETRO_PERF_COUNTERS_BEGIN,
|
|
|
|
MENU_SETTINGS_LIBRETRO_PERF_COUNTERS_END = MENU_SETTINGS_LIBRETRO_PERF_COUNTERS_BEGIN + (MAX_COUNTERS - 1),
|
|
|
|
MENU_SETTINGS_PERF_COUNTERS_BEGIN,
|
2014-12-06 15:47:25 +01:00
|
|
|
MENU_SETTINGS_PERF_COUNTERS_END = MENU_SETTINGS_PERF_COUNTERS_BEGIN + (MAX_COUNTERS - 1),
|
|
|
|
MENU_SETTINGS_CHEAT_BEGIN,
|
|
|
|
MENU_SETTINGS_CHEAT_END = MENU_SETTINGS_CHEAT_BEGIN + (MAX_CHEAT_COUNTERS - 1),
|
2015-01-05 19:49:11 +01:00
|
|
|
MENU_SETTINGS_INPUT_DESC_BEGIN,
|
2015-01-05 22:53:21 +01:00
|
|
|
MENU_SETTINGS_INPUT_DESC_END = MENU_SETTINGS_INPUT_DESC_BEGIN + (MAX_USERS * RARCH_CUSTOM_BIND_LIST_END),
|
2014-09-01 00:27:09 +02:00
|
|
|
} menu_settings_t;
|
|
|
|
|
2015-01-09 21:54:08 +01:00
|
|
|
/**
|
|
|
|
* menu_init:
|
|
|
|
* @data : Menu context handle.
|
|
|
|
*
|
|
|
|
* Create and initialize menu handle.
|
|
|
|
*
|
|
|
|
* Returns: menu handle on success, otherwise NULL.
|
|
|
|
**/
|
2014-05-30 17:49:04 +02:00
|
|
|
void *menu_init(const void *data);
|
2014-09-02 05:32:04 +02:00
|
|
|
|
2015-01-10 06:13:12 +01:00
|
|
|
/**
|
|
|
|
* menu_free_list:
|
|
|
|
* @data : Menu handle.
|
|
|
|
*
|
|
|
|
* Frees menu lists.
|
|
|
|
**/
|
2014-10-09 00:23:39 +02:00
|
|
|
void menu_free_list(void *data);
|
|
|
|
|
2015-01-09 21:54:08 +01:00
|
|
|
/**
|
|
|
|
* menu_iterate:
|
|
|
|
* @input : input sample for this frame
|
|
|
|
* @old_input : input sample of the previous frame
|
|
|
|
* @trigger_input : difference' input sample - difference
|
|
|
|
* between 'input' and 'old_input'
|
|
|
|
*
|
|
|
|
* Runs RetroArch menu for one frame.
|
|
|
|
*
|
|
|
|
* Returns: 0 on success, -1 if we need to quit out of the loop.
|
|
|
|
**/
|
2014-10-04 16:20:28 +02:00
|
|
|
int menu_iterate(retro_input_t input,
|
|
|
|
retro_input_t old_input, retro_input_t trigger_input);
|
2014-09-02 05:32:04 +02:00
|
|
|
|
2015-01-09 21:54:08 +01:00
|
|
|
/**
|
|
|
|
* menu_free:
|
|
|
|
* @info : Menu handle.
|
|
|
|
*
|
|
|
|
* Frees a menu handle
|
|
|
|
**/
|
2014-05-09 05:47:32 +02:00
|
|
|
void menu_free(void *data);
|
2013-04-17 23:31:49 +02:00
|
|
|
|
2015-01-10 06:09:30 +01:00
|
|
|
/**
|
|
|
|
* menu_load_content:
|
|
|
|
*
|
|
|
|
* Loads content into currently selected core.
|
|
|
|
* Will also optionally push the content entry to the history playlist.
|
|
|
|
*
|
|
|
|
* Returns: true (1) if successful, otherwise false (0).
|
|
|
|
**/
|
|
|
|
bool menu_load_content(void);
|
2014-09-02 05:32:04 +02:00
|
|
|
|
2014-07-28 19:37:25 +02:00
|
|
|
void menu_update_system_info(menu_handle_t *menu, bool *load_no_content);
|
2014-09-02 05:32:04 +02:00
|
|
|
|
2015-01-09 21:54:08 +01:00
|
|
|
/**
|
|
|
|
* menu_update_libretro_info:
|
|
|
|
* @info : Pointer to system info
|
|
|
|
*
|
|
|
|
* Update menu state which depends on config.
|
|
|
|
**/
|
2014-11-25 03:49:26 +01:00
|
|
|
void menu_update_libretro_info(struct retro_system_info *info);
|
|
|
|
|
2015-01-10 06:37:27 +01:00
|
|
|
void menu_apply_deferred_settings(void);
|
2014-10-09 11:09:36 +01:00
|
|
|
|
2013-04-17 23:31:49 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|