RetroArch/runloop.h

320 lines
7.4 KiB
C
Raw Normal View History

2015-01-09 17:40:33 +00:00
/* RetroArch - A frontend for libretro.
2016-01-10 03:06:50 +00:00
* Copyright (C) 2011-2016 - Daniel De Matteis
2015-01-09 17:40:33 +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 __RETROARCH_RUNLOOP_H
#define __RETROARCH_RUNLOOP_H
#include <retro_miscellaneous.h>
#include "configuration.h"
2015-01-09 17:40:33 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2015-11-30 20:42:59 +00:00
enum runloop_ctl_state
2015-09-26 10:57:52 +00:00
{
RUNLOOP_CTL_NONE = 0,
2016-05-16 10:21:38 +00:00
RUNLOOP_CTL_SET_FRAME_LIMIT,
RUNLOOP_CTL_UNSET_FRAME_LIMIT,
RUNLOOP_CTL_SHOULD_SET_FRAME_LIMIT,
2016-05-16 10:21:38 +00:00
RUNLOOP_CTL_TASK_INIT,
RUNLOOP_CTL_FRAME_TIME_FREE,
RUNLOOP_CTL_SET_FRAME_TIME_LAST,
RUNLOOP_CTL_UNSET_FRAME_TIME_LAST,
RUNLOOP_CTL_IS_FRAME_TIME_LAST,
2016-05-16 10:21:38 +00:00
RUNLOOP_CTL_SET_FRAME_TIME,
RUNLOOP_CTL_IS_IDLE,
2016-05-16 10:21:38 +00:00
RUNLOOP_CTL_SET_IDLE,
2015-12-01 02:46:56 +00:00
RUNLOOP_CTL_GET_WINDOWED_SCALE,
2015-11-30 20:35:50 +00:00
RUNLOOP_CTL_SET_WINDOWED_SCALE,
2016-05-16 10:21:38 +00:00
RUNLOOP_CTL_IS_OVERRIDES_ACTIVE,
RUNLOOP_CTL_SET_OVERRIDES_ACTIVE,
RUNLOOP_CTL_UNSET_OVERRIDES_ACTIVE,
2016-05-16 10:21:38 +00:00
RUNLOOP_CTL_IS_GAME_OPTIONS_ACTIVE,
RUNLOOP_CTL_SET_GAME_OPTIONS_ACTIVE,
RUNLOOP_CTL_UNSET_GAME_OPTIONS_ACTIVE,
2016-05-16 10:21:38 +00:00
RUNLOOP_CTL_IS_NONBLOCK_FORCED,
RUNLOOP_CTL_SET_NONBLOCK_FORCED,
RUNLOOP_CTL_UNSET_NONBLOCK_FORCED,
2016-05-16 10:21:38 +00:00
2015-11-30 20:35:50 +00:00
RUNLOOP_CTL_GET_CONTENT_PATH,
RUNLOOP_CTL_SET_CONTENT_PATH,
RUNLOOP_CTL_CLEAR_CONTENT_PATH,
2016-05-16 10:21:38 +00:00
2015-11-30 20:35:50 +00:00
RUNLOOP_CTL_SET_LIBRETRO_PATH,
2016-05-16 10:21:38 +00:00
2015-11-30 20:35:50 +00:00
RUNLOOP_CTL_IS_SLOWMOTION,
RUNLOOP_CTL_SET_SLOWMOTION,
2016-05-16 10:21:38 +00:00
2015-11-30 20:35:50 +00:00
RUNLOOP_CTL_IS_PAUSED,
RUNLOOP_CTL_SET_PAUSED,
RUNLOOP_CTL_SET_MAX_FRAMES,
RUNLOOP_CTL_CLEAR_STATE,
RUNLOOP_CTL_STATE_FREE,
RUNLOOP_CTL_GLOBAL_FREE,
2016-05-16 10:21:38 +00:00
2015-11-30 20:35:50 +00:00
RUNLOOP_CTL_SET_CORE_SHUTDOWN,
RUNLOOP_CTL_UNSET_CORE_SHUTDOWN,
RUNLOOP_CTL_IS_CORE_SHUTDOWN,
2016-05-16 10:21:38 +00:00
RUNLOOP_CTL_SET_SHUTDOWN,
RUNLOOP_CTL_UNSET_SHUTDOWN,
RUNLOOP_CTL_IS_SHUTDOWN,
2016-05-16 10:21:38 +00:00
2015-11-30 20:35:50 +00:00
RUNLOOP_CTL_SET_EXEC,
RUNLOOP_CTL_UNSET_EXEC,
RUNLOOP_CTL_IS_EXEC,
2016-05-16 10:21:38 +00:00
2015-12-10 11:37:24 +00:00
RUNLOOP_CTL_GET_PERFCNT,
2015-11-30 20:56:35 +00:00
RUNLOOP_CTL_SET_PERFCNT_ENABLE,
RUNLOOP_CTL_UNSET_PERFCNT_ENABLE,
RUNLOOP_CTL_IS_PERFCNT_ENABLE,
2016-05-16 10:21:38 +00:00
RUNLOOP_CTL_FRONTEND_KEY_EVENT_GET,
2015-12-13 13:31:06 +00:00
RUNLOOP_CTL_KEY_EVENT_GET,
2015-11-30 22:29:46 +00:00
RUNLOOP_CTL_DATA_DEINIT,
2016-02-04 19:56:22 +00:00
/* Initializes message queue. */
2015-11-30 20:35:50 +00:00
RUNLOOP_CTL_MSG_QUEUE_INIT,
/* Deinitializes message queue. */
2015-11-30 20:35:50 +00:00
RUNLOOP_CTL_MSG_QUEUE_DEINIT,
RUNLOOP_CTL_MSG_QUEUE_FREE,
2016-02-03 16:48:01 +00:00
RUNLOOP_CTL_MSG_QUEUE_PULL,
2016-02-03 16:50:53 +00:00
RUNLOOP_CTL_MSG_QUEUE_CLEAR,
2016-05-15 08:14:23 +00:00
2015-12-09 08:34:19 +00:00
RUNLOOP_CTL_HAS_CORE_OPTIONS,
2015-12-09 08:37:54 +00:00
RUNLOOP_CTL_GET_CORE_OPTION_SIZE,
RUNLOOP_CTL_IS_CORE_OPTION_UPDATED,
2016-05-15 08:09:41 +00:00
RUNLOOP_CTL_CORE_OPTIONS_LIST_GET,
RUNLOOP_CTL_CORE_OPTION_PREV,
RUNLOOP_CTL_CORE_OPTION_NEXT,
RUNLOOP_CTL_CORE_OPTIONS_GET,
2015-12-07 13:16:34 +00:00
RUNLOOP_CTL_CORE_OPTIONS_INIT,
RUNLOOP_CTL_CORE_OPTIONS_DEINIT,
2016-04-06 00:30:20 +00:00
RUNLOOP_CTL_CORE_OPTIONS_FREE,
2016-05-15 08:14:23 +00:00
RUNLOOP_CTL_SHADER_DIR_DEINIT,
RUNLOOP_CTL_SHADER_DIR_INIT,
2016-05-15 08:14:23 +00:00
RUNLOOP_CTL_SYSTEM_INFO_GET,
RUNLOOP_CTL_SYSTEM_INFO_INIT,
RUNLOOP_CTL_SYSTEM_INFO_FREE
2015-09-26 10:57:52 +00:00
};
2016-01-28 17:53:25 +00:00
typedef int (*transfer_cb_t)(void *data, size_t len);
2016-05-11 17:25:15 +00:00
typedef struct rarch_dir_list rarch_dir_list_t;
2015-11-18 02:25:23 +00:00
typedef struct rarch_dir
{
/* Used on reentrancy to use a savestate dir. */
char savefile[PATH_MAX_LENGTH];
char savestate[PATH_MAX_LENGTH];
char systemdir[PATH_MAX_LENGTH];
#ifdef HAVE_OVERLAY
char osk_overlay[PATH_MAX_LENGTH];
#endif
} rarch_dir_t;
typedef struct rarch_path
{
char gb_rom[PATH_MAX_LENGTH];
char bsx_rom[PATH_MAX_LENGTH];
char sufami_rom[2][PATH_MAX_LENGTH];
/* Config associated with global "default" config. */
char config[PATH_MAX_LENGTH];
char append_config[PATH_MAX_LENGTH];
char input_config[PATH_MAX_LENGTH];
#ifdef HAVE_FILE_LOGGER
char default_log[PATH_MAX_LENGTH];
#endif
/* Config file associated with per-core configs. */
char core_specific_config[PATH_MAX_LENGTH];
2016-03-02 04:29:12 +00:00
char core_options_path[PATH_MAX_LENGTH];
2015-11-18 02:25:23 +00:00
} rarch_path_t;
2015-08-03 18:15:46 +00:00
typedef struct rarch_resolution
{
unsigned idx;
unsigned id;
} rarch_resolution_t;
2015-08-03 18:15:46 +00:00
/* All run-time- / command line flag-related globals go here. */
typedef struct global
{
2015-11-18 02:25:23 +00:00
rarch_path_t path;
rarch_dir_t dir;
2015-07-27 15:18:10 +00:00
struct
{
bool save_path;
bool state_path;
2016-04-05 22:30:21 +00:00
bool verbosity;
2015-07-27 15:18:10 +00:00
bool libretro_device[MAX_USERS];
bool libretro;
bool libretro_directory;
bool netplay_mode;
bool netplay_ip_address;
bool netplay_delay_frames;
bool netplay_ip_port;
bool ups_pref;
bool bps_pref;
bool ips_pref;
} has_set;
2015-03-21 00:59:47 +00:00
2015-07-27 15:18:10 +00:00
struct
{
char base[PATH_MAX_LENGTH];
char savefile[PATH_MAX_LENGTH];
char savestate[PATH_MAX_LENGTH];
char cheatfile[PATH_MAX_LENGTH];
char ups[PATH_MAX_LENGTH];
char bps[PATH_MAX_LENGTH];
char ips[PATH_MAX_LENGTH];
char remapfile[PATH_MAX_LENGTH];
2015-07-27 15:18:10 +00:00
} name;
2015-03-21 00:59:47 +00:00
/* A list of save types and associated paths for all content. */
struct string_list *savefiles;
/* For --subsystem content. */
char subsystem[PATH_MAX_LENGTH];
struct string_list *subsystem_fullpaths;
2015-07-27 15:18:10 +00:00
struct
{
bool block_patch;
bool ups_pref;
bool bps_pref;
bool ips_pref;
} patch;
2015-03-21 00:59:47 +00:00
2015-07-27 15:18:10 +00:00
struct
{
bool load_disable;
bool save_disable;
bool use;
} sram;
2015-03-21 00:59:47 +00:00
#ifdef HAVE_NETPLAY
/* Netplay. */
2015-07-27 15:18:10 +00:00
struct
{
char server[PATH_MAX_LENGTH];
bool enable;
2015-07-27 15:18:10 +00:00
bool is_client;
bool is_spectate;
unsigned sync_frames;
unsigned port;
} netplay;
2015-03-21 00:59:47 +00:00
#endif
/* Recording. */
struct
{
char path[PATH_MAX_LENGTH];
char config[PATH_MAX_LENGTH];
unsigned width;
unsigned height;
size_t gpu_width;
size_t gpu_height;
2015-04-15 10:42:36 +00:00
char output_dir[PATH_MAX_LENGTH];
char config_dir[PATH_MAX_LENGTH];
bool use_output_dir;
2015-03-21 00:59:47 +00:00
} record;
/* Settings and/or global state that is specific to
* a console-style implementation. */
struct
{
struct
{
struct
{
rarch_resolution_t current;
rarch_resolution_t initial;
uint32_t *list;
unsigned count;
bool check;
} resolutions;
unsigned gamma_correction;
unsigned char flicker_filter_index;
unsigned char soft_filter_index;
bool pal_enable;
bool pal60_enable;
} screen;
struct
{
bool system_bgm_enable;
} sound;
bool flickerfilter_enable;
bool softfilter_enable;
} console;
} global_t;
2016-02-03 16:56:40 +00:00
typedef struct runloop_ctx_msg_info
{
const char *msg;
unsigned prio;
unsigned duration;
bool flush;
} runloop_ctx_msg_info_t;
2015-03-21 00:59:47 +00:00
global_t *global_get_ptr(void);
2015-01-09 17:40:33 +00:00
/**
* runloop_iterate:
2015-01-09 17:40:33 +00:00
*
2015-01-09 23:59:05 +00:00
* Run Libretro core in RetroArch for one frame.
2015-01-09 17:40:33 +00:00
*
2016-01-28 17:53:25 +00:00
* Returns: 0 on successful run,
* Returns 1 if we have to wait until button input in order
* to wake up the loop.
2016-02-04 19:56:22 +00:00
* Returns -1 if we forcibly quit out of the
* RetroArch iteration loop.
2015-01-09 17:40:33 +00:00
**/
int runloop_iterate(unsigned *sleep_ms);
2015-01-09 17:40:33 +00:00
2015-12-07 14:32:14 +00:00
void runloop_msg_queue_push(const char *msg, unsigned prio,
unsigned duration, bool flush);
2016-05-08 03:21:31 +00:00
char* runloop_msg_queue_pull(void);
bool runloop_ctl(enum runloop_ctl_state state, void *data);
2015-11-30 14:35:57 +00:00
2015-01-09 17:40:33 +00:00
#ifdef __cplusplus
}
#endif
#endif