RetroArch/frontend/frontend.c

395 lines
10 KiB
C
Raw Normal View History

/* 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
* Copyright (C) 2012-2014 - Michael Lelli
*
* 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/>.
*/
#include "frontend.h"
#include "../general.h"
2013-03-20 00:17:10 +00:00
#include "../conf/config_file.h"
#include "../file.h"
#include "frontend_context.h"
frontend_ctx_driver_t *frontend_ctx;
#if defined(HAVE_MENU)
#include "menu/menu_input_line_cb.h"
2013-09-15 16:49:18 +00:00
#include "menu/menu_common.h"
2013-04-28 13:23:57 +00:00
#endif
#include "../file_ext.h"
#ifdef RARCH_CONSOLE
#include "../config.def.h"
default_paths_t default_paths;
static void rarch_get_environment_console(void)
{
path_mkdir(default_paths.port_dir);
path_mkdir(default_paths.system_dir);
path_mkdir(default_paths.savestate_dir);
path_mkdir(default_paths.sram_dir);
config_load();
init_libretro_sym(false);
rarch_init_system_info();
global_init_drivers();
}
#endif
2013-12-28 03:40:23 +00:00
#if defined(ANDROID)
#define main_entry android_app_entry
#define returntype void
#define signature_expand() data
#define returnfunc() exit(0)
2013-11-03 15:38:56 +00:00
#define return_negative() return
#define return_var(var) return
#define declare_argc() int argc = 0;
#define declare_argv() char *argv[1]
#define args_initial_ptr() data
#else
#if defined(__APPLE__) || defined(HAVE_BB10)
#define main_entry rarch_main
2013-12-29 21:19:07 +00:00
#elif defined(EMSCRIPTEN)
#define main_entry _fakemain
#else
#define main_entry main
#endif
#define returntype int
#define signature_expand() argc, argv
#define returnfunc() return 0
#define return_negative() return 1
2013-11-03 15:38:56 +00:00
#define return_var(var) return var
#define declare_argc()
#define declare_argv()
#define args_initial_ptr() NULL
#endif
2013-12-28 03:40:23 +00:00
#if defined(HAVE_BB10) || defined(ANDROID)
2013-11-03 03:46:03 +00:00
#define ra_preinited true
#else
#define ra_preinited false
#endif
#if defined(HAVE_BB10) || defined(RARCH_CONSOLE)
2013-11-03 03:46:03 +00:00
#define attempt_load_game false
#else
#define attempt_load_game true
#endif
#if defined(RARCH_CONSOLE) || defined(HAVE_BB10) || defined(ANDROID)
2013-11-03 03:46:03 +00:00
#define initial_menu_lifecycle_state (1ULL << MODE_LOAD_GAME)
#else
#define initial_menu_lifecycle_state (1ULL << MODE_GAME)
#endif
#if !defined(RARCH_CONSOLE) && !defined(HAVE_BB10) && !defined(ANDROID)
2013-11-03 03:46:03 +00:00
#define attempt_load_game_push_history true
#else
#define attempt_load_game_push_history false
2013-11-03 03:46:03 +00:00
#endif
#ifndef RARCH_CONSOLE
#define rarch_get_environment_console() (void)0
#endif
2013-11-03 03:46:03 +00:00
2013-11-03 05:14:02 +00:00
static retro_keyboard_event_t key_event;
#ifdef HAVE_MENU
static int main_entry_iterate_clear_input(args_type() args)
{
rarch_input_poll();
if (!menu_input(driver.menu))
{
// Restore libretro keyboard callback.
g_extern.system.key_event = key_event;
g_extern.lifecycle_state &= ~(1ULL << MODE_CLEAR_INPUT);
}
2013-07-15 18:49:36 +00:00
return 0;
}
static int main_entry_iterate_shutdown(args_type() args)
{
#ifdef HAVE_MENU
// Load dummy core instead of exiting RetroArch completely.
if (g_settings.load_dummy_on_core_shutdown)
load_menu_game_prepare_dummy(driver.menu);
else
#endif
return 1;
2013-07-15 18:49:36 +00:00
return 0;
}
static int main_entry_iterate_content(args_type() args)
{
bool r;
if (g_extern.is_paused && !g_extern.is_oneshot)
r = rarch_main_idle_iterate();
else
r = rarch_main_iterate();
if (r)
{
if (frontend_ctx && frontend_ctx->process_events)
frontend_ctx->process_events(args);
2013-11-03 03:46:03 +00:00
}
else
g_extern.lifecycle_state &= ~(1ULL << MODE_GAME);
return 0;
}
static int main_entry_iterate_load_content(args_type() args)
{
load_menu_game_prepare(driver.menu);
if (load_menu_game(driver.menu))
{
g_extern.lifecycle_state |= (1ULL << MODE_GAME);
if (driver.video_data && driver.video_poke && driver.video_poke->set_aspect_ratio)
driver.video_poke->set_aspect_ratio(driver.video_data, g_settings.video.aspect_ratio_idx);
}
else
{
2014-05-12 14:01:00 +00:00
#if defined(RARCH_CONSOLE) || defined(RARCH_MOBILE)
// If ROM load fails, we go back to menu.
g_extern.lifecycle_state = (1ULL << MODE_MENU_PREINIT);
#else
// If ROM load fails, we exit RetroArch.
g_extern.system.shutdown = true;
#endif
}
g_extern.lifecycle_state &= ~(1ULL << MODE_LOAD_GAME);
return 0;
}
static int main_entry_iterate_menu_preinit(args_type() args)
{
int i;
rgui_handle_t *rgui = (rgui_handle_t*)driver.menu;
// Menu should always run with vsync on.
video_set_nonblock_state_func(false);
// Stop all rumbling when entering RGUI.
for (i = 0; i < MAX_PLAYERS; i++)
{
driver_set_rumble_state(i, RETRO_RUMBLE_STRONG, 0);
driver_set_rumble_state(i, RETRO_RUMBLE_WEAK, 0);
}
// Override keyboard callback to redirect to menu instead.
// We'll use this later for something ...
// FIXME: This should probably be moved to menu_common somehow.
key_event = g_extern.system.key_event;
g_extern.system.key_event = menu_key_event;
if (driver.audio_data)
audio_stop_func();
if (!rgui)
{
driver.menu = (rgui_handle_t*)menu_init();
rgui = (rgui_handle_t*)driver.menu;
}
rgui->need_refresh = true;
rgui->old_input_state |= 1ULL << RARCH_MENU_TOGGLE;
2013-07-27 15:40:21 +00:00
g_extern.lifecycle_state &= ~(1ULL << MODE_MENU_PREINIT);
g_extern.lifecycle_state |= (1ULL << MODE_MENU);
2013-11-03 05:14:02 +00:00
return 0;
}
static int main_entry_iterate_menu(args_type() args)
{
if (menu_iterate(driver.menu))
{
if (frontend_ctx && frontend_ctx->process_events)
frontend_ctx->process_events(args);
}
else
{
g_extern.lifecycle_state &= ~(1ULL << MODE_MENU);
driver_set_nonblock_state(driver.nonblock_state);
if (driver.audio_data && !g_extern.audio_data.mute && !audio_start_func())
{
RARCH_ERR("Failed to resume audio driver. Will continue without audio.\n");
g_extern.audio_active = false;
}
2013-06-02 21:10:03 +00:00
g_extern.lifecycle_state |= (1ULL << MODE_CLEAR_INPUT);
2013-06-02 21:10:03 +00:00
// If QUIT state came from command interface, we'll only see it once due to MODE_CLEAR_INPUT.
if (input_key_pressed_func(RARCH_QUIT_KEY) || !video_alive_func())
return 1;
}
return 0;
}
int main_entry_iterate(signature(), args_type() args)
{
if (g_extern.system.shutdown)
return main_entry_iterate_shutdown(args);
else if (g_extern.lifecycle_state & (1ULL << MODE_CLEAR_INPUT))
return main_entry_iterate_clear_input(args);
else if (g_extern.lifecycle_state & (1ULL << MODE_LOAD_GAME))
return main_entry_iterate_load_content(args);
else if (g_extern.lifecycle_state & (1ULL << MODE_GAME))
return main_entry_iterate_content(args);
#ifdef HAVE_MENU
else if (g_extern.lifecycle_state & (1ULL << MODE_MENU_PREINIT))
main_entry_iterate_menu_preinit(args);
else if (g_extern.lifecycle_state & (1ULL << MODE_MENU))
return main_entry_iterate_menu(args);
#endif
else
return 1;
return 0;
}
#endif
void main_exit(args_type() args)
{
#ifdef HAVE_MENU
g_extern.system.shutdown = false;
menu_free(driver.menu);
2013-05-22 13:35:28 +00:00
if (g_extern.config_save_on_exit && *g_extern.config_path)
2014-01-01 19:44:20 +00:00
{
// save last core-specific config to the default config location, needed on
// consoles for core switching and reusing last good config for new cores.
config_save_file(g_extern.config_path);
2014-01-01 19:44:20 +00:00
// Flush out the core specific config.
if (*g_extern.core_specific_config_path && g_settings.core_specific_config)
config_save_file(g_extern.core_specific_config_path);
2014-01-01 19:44:20 +00:00
}
#endif
if (g_extern.main_is_init)
rarch_main_deinit();
rarch_deinit_msg_queue();
global_uninit_drivers();
#ifdef PERF_TEST
rarch_perf_log();
#endif
2013-11-03 15:38:56 +00:00
#if defined(HAVE_LOGGER) && !defined(ANDROID)
logger_shutdown();
#elif defined(HAVE_FILE_LOGGER)
if (g_extern.log_file)
fclose(g_extern.log_file);
g_extern.log_file = NULL;
#endif
if (frontend_ctx && frontend_ctx->deinit)
2013-11-03 15:38:56 +00:00
frontend_ctx->deinit(args);
if (g_extern.lifecycle_state & (1ULL << MODE_EXITSPAWN) && frontend_ctx
&& frontend_ctx->exitspawn)
frontend_ctx->exitspawn();
rarch_main_clear_state();
2013-07-27 15:30:05 +00:00
if (frontend_ctx && frontend_ctx->shutdown)
2013-07-27 15:40:21 +00:00
frontend_ctx->shutdown(false);
}
returntype main_entry(signature())
{
declare_argc();
declare_argv();
args_type() args = (args_type())args_initial_ptr();
frontend_ctx = (frontend_ctx_driver_t*)frontend_ctx_init_first();
if (!frontend_ctx)
{
RARCH_WARN("Frontend context could not be initialized.\n");
}
if (frontend_ctx && frontend_ctx->init)
frontend_ctx->init(args);
if (!ra_preinited)
{
rarch_main_clear_state();
rarch_init_msg_queue();
}
if (frontend_ctx && frontend_ctx->environment_get)
{
frontend_ctx->environment_get(argc, argv, args);
rarch_get_environment_console();
}
if (attempt_load_game)
{
int init_ret;
if ((init_ret = rarch_main_init(argc, argv))) return_var(init_ret);
}
#if defined(HAVE_MENU)
driver.menu = (rgui_handle_t*)menu_init();
if (!driver.menu)
{
RARCH_ERR("Couldn't initialize menu, exiting...\n");
returnfunc();
}
if (frontend_ctx && frontend_ctx->process_args)
frontend_ctx->process_args(argc, argv, args);
g_extern.lifecycle_state |= initial_menu_lifecycle_state;
if (attempt_load_game_push_history)
{
// If we started a ROM directly from command line,
// push it to ROM history.
if (!g_extern.libretro_dummy)
menu_rom_history_push_current(driver.menu);
}
while (!main_entry_iterate(signature_expand(), args));
#else
while ((g_extern.is_paused && !g_extern.is_oneshot) ? rarch_main_idle_iterate() : rarch_main_iterate());
#endif
main_exit(args);
returnfunc();
}