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-08-02 12:04:43 +00:00
|
|
|
#include "../../core_info.h"
|
2014-07-26 16:52:15 +00:00
|
|
|
#include "../../file_list.h"
|
2014-08-15 15:24:28 +00:00
|
|
|
#include "../../playlist.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"
|
2014-10-02 11:21:45 +00:00
|
|
|
#include "../../gfx/shader/shader_context.h"
|
2013-04-17 21:31:49 +00:00
|
|
|
|
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-09-24 06:27:53 +00:00
|
|
|
#ifndef MAX_COUNTERS
|
|
|
|
#define MAX_COUNTERS 64
|
|
|
|
#endif
|
|
|
|
|
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-09-04 15:45:02 +00:00
|
|
|
MENU_FILE_NONE,
|
|
|
|
MENU_FILE_PLAIN,
|
2014-06-09 23:42:26 +00:00
|
|
|
MENU_FILE_DIRECTORY,
|
2014-09-11 03:48:35 +00:00
|
|
|
MENU_FILE_PATH,
|
2014-06-09 23:42:26 +00:00
|
|
|
MENU_FILE_DEVICE,
|
2014-09-11 04:28:52 +00:00
|
|
|
MENU_FILE_DRIVER,
|
2014-09-05 22:12:58 +00:00
|
|
|
MENU_FILE_LINEFEED,
|
2014-09-05 23:34:05 +00:00
|
|
|
MENU_FILE_LINEFEED_SWITCH,
|
2014-09-04 01:40:48 +00:00
|
|
|
MENU_FILE_CORE,
|
2014-09-02 21:42:40 +00:00
|
|
|
MENU_FILE_PLAYLIST_ENTRY,
|
2014-09-10 16:36:35 +00:00
|
|
|
MENU_FILE_SHADER_PRESET,
|
|
|
|
MENU_FILE_SHADER,
|
2014-09-10 18:59:16 +00:00
|
|
|
MENU_FILE_VIDEOFILTER,
|
|
|
|
MENU_FILE_AUDIOFILTER,
|
|
|
|
MENU_FILE_OVERLAY,
|
2014-09-11 03:48:35 +00:00
|
|
|
MENU_FILE_FONT,
|
2014-09-10 18:59:16 +00:00
|
|
|
MENU_FILE_CONFIG,
|
2014-06-09 23:42:26 +00:00
|
|
|
MENU_FILE_USE_DIRECTORY,
|
2014-09-03 19:18:01 +00:00
|
|
|
MENU_FILE_SWITCH,
|
2014-09-06 18:56:14 +00:00
|
|
|
MENU_FILE_CARCHIVE,
|
|
|
|
MENU_FILE_IN_CARCHIVE,
|
2014-06-09 23:42:26 +00:00
|
|
|
MENU_SETTINGS,
|
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,
|
2014-09-19 18:28:30 +00:00
|
|
|
MENU_ACTION_Y,
|
2014-06-09 23:42:26 +00:00
|
|
|
MENU_ACTION_CANCEL,
|
|
|
|
MENU_ACTION_REFRESH,
|
|
|
|
MENU_ACTION_SELECT,
|
|
|
|
MENU_ACTION_START,
|
|
|
|
MENU_ACTION_MESSAGE,
|
|
|
|
MENU_ACTION_SCROLL_DOWN,
|
|
|
|
MENU_ACTION_SCROLL_UP,
|
2014-09-14 16:07:00 +00:00
|
|
|
MENU_ACTION_TOGGLE,
|
2014-06-09 23:42:26 +00:00
|
|
|
MENU_ACTION_NOOP
|
2014-06-10 00:06:10 +00:00
|
|
|
} menu_action_t;
|
2013-04-17 21:31:49 +00:00
|
|
|
|
2014-08-31 22:27:09 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
// Shader stuff
|
2014-09-04 17:02:42 +00:00
|
|
|
MENU_SETTINGS_VIDEO_RESOLUTION = MENU_SETTINGS + 1,
|
2014-08-31 22:27:09 +00:00
|
|
|
MENU_SETTINGS_CUSTOM_VIEWPORT,
|
|
|
|
MENU_SETTINGS_SHADER_OPTIONS,
|
|
|
|
MENU_SETTINGS_SHADER_PARAMETER_0,
|
|
|
|
MENU_SETTINGS_SHADER_PARAMETER_LAST = MENU_SETTINGS_SHADER_PARAMETER_0 + (GFX_MAX_PARAMETERS - 1),
|
2014-09-05 00:23:35 +00: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-08-31 22:27:09 +00:00
|
|
|
|
|
|
|
// Match up with libretro order for simplicity.
|
|
|
|
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_MODE,
|
|
|
|
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,
|
|
|
|
MENU_SETTINGS_PERF_COUNTERS_END = MENU_SETTINGS_PERF_COUNTERS_BEGIN + (MAX_COUNTERS - 1)
|
|
|
|
} menu_settings_t;
|
|
|
|
|
2014-05-30 15:49:04 +00:00
|
|
|
void *menu_init(const void *data);
|
2014-09-02 03:32:04 +00:00
|
|
|
|
2014-09-21 07:18:26 +00:00
|
|
|
bool menu_iterate(retro_input_t input, retro_input_t old_input, retro_input_t trigger_input);
|
2014-09-02 03:32:04 +00:00
|
|
|
|
2014-05-09 03:47:32 +00:00
|
|
|
void menu_free(void *data);
|
2013-04-17 21:31:49 +00:00
|
|
|
|
2014-09-02 03:32:04 +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);
|
2014-09-02 03:32:04 +00:00
|
|
|
|
2014-07-28 17:37:25 +00:00
|
|
|
void menu_update_system_info(menu_handle_t *menu, bool *load_no_content);
|
2014-09-02 03:32:04 +00:00
|
|
|
|
2014-09-03 20:04:46 +00:00
|
|
|
unsigned menu_common_type_is(const char *label, unsigned type);
|
2014-04-14 00:32:54 +00:00
|
|
|
|
2014-09-24 04:46:18 +00:00
|
|
|
int menu_common_core_setting_toggle(unsigned setting, unsigned action);
|
|
|
|
|
|
|
|
int menu_common_setting_set_perf(unsigned setting, unsigned action,
|
|
|
|
struct retro_perf_counter **counters, unsigned offset);
|
|
|
|
|
2013-04-17 21:31:49 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|