2013-02-25 06:01:16 +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
|
|
|
|
* Copyright (C) 2012-2014 - Michael Lelli
|
2013-02-25 06:01:16 +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/>.
|
|
|
|
*/
|
|
|
|
|
2013-12-28 20:08:30 +00:00
|
|
|
#include "frontend.h"
|
2013-02-25 06:01:16 +00:00
|
|
|
#include "../general.h"
|
2013-03-20 00:17:10 +00:00
|
|
|
#include "../conf/config_file.h"
|
2013-03-17 11:27:33 +00:00
|
|
|
#include "../file.h"
|
2013-02-25 06:01:16 +00:00
|
|
|
|
2013-07-26 18:58:47 +00:00
|
|
|
#include "frontend_context.h"
|
|
|
|
|
2013-11-08 03:36:16 +00:00
|
|
|
#if defined(HAVE_MENU)
|
2014-03-02 04:24:57 +00:00
|
|
|
#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
|
|
|
|
|
2013-07-15 12:54:40 +00:00
|
|
|
#include "../file_ext.h"
|
2013-07-15 12:19:29 +00:00
|
|
|
|
2014-06-10 17:13:54 +00:00
|
|
|
#if defined(RARCH_CONSOLE) || defined(RARCH_MOBILE)
|
2013-07-15 12:19:29 +00:00
|
|
|
#include "../config.def.h"
|
2013-08-10 18:59:10 +00:00
|
|
|
#endif
|
2013-07-15 11:40:47 +00:00
|
|
|
|
2013-12-28 03:40:23 +00:00
|
|
|
#if defined(ANDROID)
|
2014-02-23 00:18:27 +00:00
|
|
|
|
2013-10-07 11:29:51 +00:00
|
|
|
#define main_entry android_app_entry
|
2013-11-03 15:49:54 +00:00
|
|
|
#define returntype void
|
2013-12-28 20:08:30 +00:00
|
|
|
#define signature_expand() data
|
2013-10-07 11:29:51 +00:00
|
|
|
#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
|
2014-02-23 00:18:27 +00:00
|
|
|
#else
|
|
|
|
|
2014-07-23 05:18:27 +00:00
|
|
|
#if defined(__APPLE__) || defined(HAVE_BB10) || defined(EMSCRIPTEN)
|
2013-08-14 12:10:49 +00:00
|
|
|
#define main_entry rarch_main
|
2013-07-16 11:06:13 +00:00
|
|
|
#else
|
2013-08-14 12:10:49 +00:00
|
|
|
#define main_entry main
|
2014-02-23 00:18:27 +00:00
|
|
|
#endif
|
|
|
|
|
2013-10-07 11:29:51 +00:00
|
|
|
#define returntype int
|
2013-12-28 20:08:30 +00:00
|
|
|
#define signature_expand() argc, argv
|
2013-10-07 11:29:51 +00:00
|
|
|
#define returnfunc() return 0
|
2013-10-07 11:47:39 +00:00
|
|
|
#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
|
2014-02-23 00:18:27 +00:00
|
|
|
|
2013-08-14 04:48:58 +00:00
|
|
|
#endif
|
2013-08-14 12:10:49 +00:00
|
|
|
|
2014-07-22 03:07:40 +00:00
|
|
|
#if !defined(__APPLE__) && !defined(EMSCRIPTEN)
|
2014-07-21 05:41:11 +00:00
|
|
|
#define HAVE_MAIN_LOOP
|
|
|
|
#endif
|
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
static retro_keyboard_event_t key_event;
|
2013-11-04 12:08:19 +00:00
|
|
|
|
2014-01-23 19:00:25 +00:00
|
|
|
#ifdef HAVE_MENU
|
2014-04-30 02:00:39 +00:00
|
|
|
static int main_entry_iterate_clear_input(args_type() args)
|
|
|
|
{
|
2014-05-17 20:16:25 +00:00
|
|
|
(void)args;
|
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
rarch_input_poll();
|
2014-05-30 17:33:10 +00:00
|
|
|
if (!menu_input())
|
2014-02-18 01:18:34 +00:00
|
|
|
{
|
2014-04-30 02:00:39 +00:00
|
|
|
// Restore libretro keyboard callback.
|
|
|
|
g_extern.system.key_event = key_event;
|
2014-02-18 01:18:34 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
g_extern.lifecycle_state &= ~(1ULL << MODE_CLEAR_INPUT);
|
2014-02-18 01:18:34 +00:00
|
|
|
}
|
2013-07-15 18:49:36 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2013-03-16 09:35:22 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
static int main_entry_iterate_shutdown(args_type() args)
|
|
|
|
{
|
2014-05-17 20:16:25 +00:00
|
|
|
(void)args;
|
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
// Load dummy core instead of exiting RetroArch completely.
|
|
|
|
if (g_settings.load_dummy_on_core_shutdown)
|
2014-07-25 20:11:34 +00:00
|
|
|
rarch_main_command(RARCH_CMD_PREPARE_DUMMY);
|
2014-04-30 02:00:39 +00:00
|
|
|
else
|
|
|
|
return 1;
|
2013-07-15 18:49:36 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2013-07-27 14:36:55 +00:00
|
|
|
|
2013-03-16 09:35:22 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
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)
|
|
|
|
{
|
2014-05-13 18:23:15 +00:00
|
|
|
if (driver.frontend_ctx && driver.frontend_ctx->process_events)
|
|
|
|
driver.frontend_ctx->process_events(args);
|
2013-11-03 03:46:03 +00:00
|
|
|
}
|
2014-04-30 02:00:39 +00:00
|
|
|
else
|
|
|
|
g_extern.lifecycle_state &= ~(1ULL << MODE_GAME);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int main_entry_iterate_load_content(args_type() args)
|
|
|
|
{
|
2014-05-30 17:33:10 +00:00
|
|
|
if (load_menu_game())
|
2013-12-28 20:08:30 +00:00
|
|
|
{
|
2014-04-30 02:00:39 +00:00
|
|
|
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
|
2013-12-28 20:08:30 +00:00
|
|
|
}
|
2014-04-30 02:00:39 +00:00
|
|
|
|
|
|
|
g_extern.lifecycle_state &= ~(1ULL << MODE_LOAD_GAME);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int main_entry_iterate_menu_preinit(args_type() args)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2014-06-01 13:59:39 +00:00
|
|
|
if (!driver.menu)
|
2014-05-30 15:49:04 +00:00
|
|
|
return 1;
|
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
// Menu should always run with vsync on.
|
|
|
|
video_set_nonblock_state_func(false);
|
2014-06-10 00:44:19 +00:00
|
|
|
// Stop all rumbling when entering the menu.
|
2014-04-30 02:00:39 +00:00
|
|
|
for (i = 0; i < MAX_PLAYERS; i++)
|
2013-03-16 09:35:22 +00:00
|
|
|
{
|
2014-04-30 02:00:39 +00:00
|
|
|
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();
|
2013-04-28 13:00:37 +00:00
|
|
|
|
2014-06-01 13:59:39 +00:00
|
|
|
driver.menu->need_refresh = true;
|
|
|
|
driver.menu->old_input_state |= 1ULL << RARCH_MENU_TOGGLE;
|
2013-07-27 15:40:21 +00:00
|
|
|
|
2014-04-30 02:00:39 +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
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2013-04-28 13:00:37 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
static int main_entry_iterate_menu(args_type() args)
|
|
|
|
{
|
2014-05-30 18:53:10 +00:00
|
|
|
if (menu_iterate())
|
2014-04-30 02:00:39 +00:00
|
|
|
{
|
2014-05-13 18:23:15 +00:00
|
|
|
if (driver.frontend_ctx && driver.frontend_ctx->process_events)
|
|
|
|
driver.frontend_ctx->process_events(args);
|
2013-12-28 20:08:30 +00:00
|
|
|
}
|
2014-04-30 02:00:39 +00:00
|
|
|
else
|
2013-12-28 20:08:30 +00:00
|
|
|
{
|
2014-04-30 02:00:39 +00:00
|
|
|
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())
|
2013-03-16 09:35:22 +00:00
|
|
|
{
|
2014-04-30 02:00:39 +00:00
|
|
|
RARCH_ERR("Failed to resume audio driver. Will continue without audio.\n");
|
|
|
|
g_extern.audio_active = false;
|
2013-03-16 09:35:22 +00:00
|
|
|
}
|
2013-06-02 21:10:03 +00:00
|
|
|
|
2014-04-30 02:00:39 +00:00
|
|
|
g_extern.lifecycle_state |= (1ULL << MODE_CLEAR_INPUT);
|
2013-06-02 21:10:03 +00:00
|
|
|
|
2014-04-30 02:00:39 +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;
|
2013-12-28 20:08:30 +00:00
|
|
|
}
|
2014-04-30 02:00:39 +00:00
|
|
|
|
|
|
|
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);
|
2013-12-28 20:08:30 +00:00
|
|
|
#endif
|
|
|
|
else
|
|
|
|
return 1;
|
2013-03-16 09:35:22 +00:00
|
|
|
|
2013-12-28 20:08:30 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2014-04-30 02:00:39 +00:00
|
|
|
#endif
|
|
|
|
|
2013-11-04 12:08:19 +00:00
|
|
|
|
2013-12-28 20:08:30 +00:00
|
|
|
void main_exit(args_type() args)
|
|
|
|
{
|
2013-07-15 11:40:47 +00:00
|
|
|
g_extern.system.shutdown = false;
|
2013-11-04 12:08:19 +00:00
|
|
|
|
2013-05-22 17:49:51 +00:00
|
|
|
if (g_extern.config_save_on_exit && *g_extern.config_path)
|
2014-01-01 19:44:20 +00:00
|
|
|
{
|
2014-01-02 16:25:05 +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.
|
2013-05-22 17:44:00 +00:00
|
|
|
config_save_file(g_extern.config_path);
|
2014-01-01 19:44:20 +00:00
|
|
|
|
2014-01-02 16:25:05 +00:00
|
|
|
// Flush out the core specific config.
|
2014-01-02 17:01:01 +00:00
|
|
|
if (*g_extern.core_specific_config_path && g_settings.core_specific_config)
|
2014-01-02 16:25:05 +00:00
|
|
|
config_save_file(g_extern.core_specific_config_path);
|
2014-01-01 19:44:20 +00:00
|
|
|
}
|
2013-07-15 11:40:47 +00:00
|
|
|
|
2014-01-03 13:39:46 +00:00
|
|
|
if (g_extern.main_is_init)
|
2014-05-31 21:53:03 +00:00
|
|
|
{
|
|
|
|
driver.menu_data_own = false; // Do not want menu context to live any more.
|
2014-01-03 13:39:46 +00:00
|
|
|
rarch_main_deinit();
|
2014-05-31 21:53:03 +00:00
|
|
|
}
|
2013-02-25 06:01:16 +00:00
|
|
|
rarch_deinit_msg_queue();
|
|
|
|
|
2013-12-19 00:51:51 +00:00
|
|
|
rarch_perf_log();
|
2013-02-25 06:01:16 +00:00
|
|
|
|
2013-11-03 15:38:56 +00:00
|
|
|
#if defined(HAVE_LOGGER) && !defined(ANDROID)
|
2013-07-15 12:19:29 +00:00
|
|
|
logger_shutdown();
|
|
|
|
#endif
|
2013-07-27 14:36:55 +00:00
|
|
|
|
2014-05-13 18:23:15 +00:00
|
|
|
if (driver.frontend_ctx && driver.frontend_ctx->deinit)
|
|
|
|
driver.frontend_ctx->deinit(args);
|
2013-07-15 12:19:29 +00:00
|
|
|
|
2014-05-13 18:23:15 +00:00
|
|
|
if (g_extern.lifecycle_state & (1ULL << MODE_EXITSPAWN) && driver.frontend_ctx
|
|
|
|
&& driver.frontend_ctx->exitspawn)
|
2014-06-05 04:12:41 +00:00
|
|
|
driver.frontend_ctx->exitspawn(g_settings.libretro, sizeof(g_settings.libretro));
|
2013-07-15 12:19:29 +00:00
|
|
|
|
2013-02-25 06:01:16 +00:00
|
|
|
rarch_main_clear_state();
|
2013-07-15 11:40:47 +00:00
|
|
|
|
2014-05-13 18:23:15 +00:00
|
|
|
if (driver.frontend_ctx && driver.frontend_ctx->shutdown)
|
|
|
|
driver.frontend_ctx->shutdown(false);
|
2013-12-28 20:08:30 +00:00
|
|
|
}
|
|
|
|
|
2014-07-27 22:18:05 +00:00
|
|
|
static void check_defaults_dirs(void)
|
|
|
|
{
|
|
|
|
if (*g_defaults.autoconfig_dir)
|
|
|
|
path_mkdir(g_defaults.autoconfig_dir);
|
|
|
|
if (*g_defaults.audio_filter_dir)
|
|
|
|
path_mkdir(g_defaults.audio_filter_dir);
|
|
|
|
if (*g_defaults.assets_dir)
|
|
|
|
path_mkdir(g_defaults.assets_dir);
|
|
|
|
if (*g_defaults.core_dir)
|
|
|
|
path_mkdir(g_defaults.core_dir);
|
|
|
|
if (*g_defaults.core_info_dir)
|
|
|
|
path_mkdir(g_defaults.core_info_dir);
|
|
|
|
if (*g_defaults.overlay_dir)
|
|
|
|
path_mkdir(g_defaults.overlay_dir);
|
|
|
|
if (*g_defaults.port_dir)
|
|
|
|
path_mkdir(g_defaults.port_dir);
|
|
|
|
if (*g_defaults.shader_dir)
|
|
|
|
path_mkdir(g_defaults.shader_dir);
|
|
|
|
if (*g_defaults.savestate_dir)
|
|
|
|
path_mkdir(g_defaults.savestate_dir);
|
|
|
|
if (*g_defaults.sram_dir)
|
|
|
|
path_mkdir(g_defaults.sram_dir);
|
|
|
|
if (*g_defaults.system_dir)
|
|
|
|
path_mkdir(g_defaults.system_dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool main_load_content(int argc, char **argv, environment_get_t environ_get,
|
|
|
|
process_args_t process_args)
|
2013-12-28 20:08:30 +00:00
|
|
|
{
|
2014-07-27 22:18:05 +00:00
|
|
|
bool retval = true;
|
2014-06-03 01:35:12 +00:00
|
|
|
int *rarch_argc_ptr;
|
|
|
|
char **rarch_argv_ptr;
|
|
|
|
struct rarch_main_wrap *wrap_args;
|
2014-07-27 23:28:48 +00:00
|
|
|
int i, ret, rarch_argc = 0;
|
2014-06-03 09:36:09 +00:00
|
|
|
char *rarch_argv[MAX_ARGS] = {NULL};
|
|
|
|
char *argv_copy[MAX_ARGS] = {NULL};
|
2013-12-28 20:08:30 +00:00
|
|
|
|
2014-07-27 22:18:05 +00:00
|
|
|
rarch_argv_ptr = (char**)argv;
|
|
|
|
rarch_argc_ptr = (int*)&argc;
|
2014-05-09 04:12:53 +00:00
|
|
|
|
2014-07-27 22:18:05 +00:00
|
|
|
(void)rarch_argc_ptr;
|
|
|
|
(void)rarch_argv_ptr;
|
2013-12-28 20:08:30 +00:00
|
|
|
|
2014-07-27 18:24:06 +00:00
|
|
|
wrap_args = (struct rarch_main_wrap*)calloc(1, sizeof(*wrap_args));
|
|
|
|
rarch_assert(wrap_args);
|
|
|
|
|
2014-07-27 22:18:05 +00:00
|
|
|
if (environ_get)
|
|
|
|
environ_get(rarch_argc_ptr, rarch_argv_ptr, NULL, wrap_args);
|
2014-07-27 18:24:06 +00:00
|
|
|
|
2014-07-27 22:18:05 +00:00
|
|
|
check_defaults_dirs();
|
2014-06-03 01:35:12 +00:00
|
|
|
|
2014-07-27 18:24:06 +00:00
|
|
|
if (wrap_args->touched)
|
|
|
|
{
|
|
|
|
rarch_main_init_wrap(wrap_args, &rarch_argc, rarch_argv);
|
|
|
|
memcpy(argv_copy, rarch_argv, sizeof(rarch_argv));
|
|
|
|
rarch_argv_ptr = (char**)rarch_argv;
|
|
|
|
rarch_argc_ptr = (int*)&rarch_argc;
|
2013-12-28 20:08:30 +00:00
|
|
|
}
|
|
|
|
|
2014-07-27 06:17:38 +00:00
|
|
|
if (g_extern.main_is_init)
|
|
|
|
rarch_main_deinit();
|
|
|
|
|
2014-06-03 01:35:12 +00:00
|
|
|
if ((ret = rarch_main_init(*rarch_argc_ptr, rarch_argv_ptr)))
|
|
|
|
{
|
2014-07-27 22:18:05 +00:00
|
|
|
retval = false;
|
|
|
|
goto error;
|
2014-06-03 01:35:12 +00:00
|
|
|
}
|
2013-12-28 20:08:30 +00:00
|
|
|
|
2014-07-27 22:31:20 +00:00
|
|
|
g_extern.lifecycle_state |= (1ULL << MODE_GAME);
|
|
|
|
|
2014-07-27 22:18:05 +00:00
|
|
|
if (process_args)
|
|
|
|
process_args(rarch_argc_ptr, rarch_argv_ptr);
|
2013-12-28 20:08:30 +00:00
|
|
|
|
2014-07-27 22:18:05 +00:00
|
|
|
error:
|
2014-07-27 23:28:48 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(argv_copy); i++)
|
|
|
|
free(argv_copy[i]);
|
2014-07-27 22:18:05 +00:00
|
|
|
free(wrap_args);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
returntype main_entry(signature())
|
|
|
|
{
|
|
|
|
declare_argc();
|
|
|
|
declare_argv();
|
|
|
|
args_type() args = (args_type())args_initial_ptr();
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
driver.frontend_ctx = (frontend_ctx_driver_t*)frontend_ctx_init_first();
|
|
|
|
|
|
|
|
if (!driver.frontend_ctx)
|
|
|
|
RARCH_WARN("Frontend context could not be initialized.\n");
|
|
|
|
|
|
|
|
if (driver.frontend_ctx && driver.frontend_ctx->init)
|
|
|
|
driver.frontend_ctx->init(args);
|
|
|
|
|
|
|
|
rarch_main_clear_state();
|
|
|
|
rarch_init_msg_queue();
|
|
|
|
|
2014-07-27 22:31:20 +00:00
|
|
|
if (!(ret = (main_load_content(argc, argv, driver.frontend_ctx->environment_get,
|
|
|
|
driver.frontend_ctx->process_args))))
|
2014-07-27 22:18:05 +00:00
|
|
|
return_var(ret);
|
|
|
|
|
|
|
|
#if defined(HAVE_MENU)
|
2014-06-02 19:43:34 +00:00
|
|
|
#if defined(RARCH_CONSOLE) || defined(RARCH_MOBILE)
|
2014-07-27 22:31:20 +00:00
|
|
|
if (ret)
|
2014-06-02 19:43:34 +00:00
|
|
|
#endif
|
2014-06-02 16:15:26 +00:00
|
|
|
{
|
2014-07-22 03:01:35 +00:00
|
|
|
// If we started content directly from command line,
|
|
|
|
// push it to content history.
|
2014-06-02 16:15:26 +00:00
|
|
|
if (!g_extern.libretro_dummy)
|
2014-07-22 03:01:35 +00:00
|
|
|
menu_content_history_push_current();
|
2014-06-02 16:15:26 +00:00
|
|
|
}
|
2014-06-03 01:35:12 +00:00
|
|
|
#endif
|
|
|
|
|
2014-07-21 05:41:11 +00:00
|
|
|
#if defined(HAVE_MAIN_LOOP)
|
2014-06-03 01:35:12 +00:00
|
|
|
#if defined(HAVE_MENU)
|
2014-01-02 16:25:05 +00:00
|
|
|
while (!main_entry_iterate(signature_expand(), args));
|
2013-12-28 20:08:30 +00:00
|
|
|
#else
|
|
|
|
while ((g_extern.is_paused && !g_extern.is_oneshot) ? rarch_main_idle_iterate() : rarch_main_iterate());
|
|
|
|
#endif
|
|
|
|
|
|
|
|
main_exit(args);
|
2014-07-21 05:41:11 +00:00
|
|
|
#endif
|
2013-07-15 11:40:47 +00:00
|
|
|
|
2013-10-07 11:29:51 +00:00
|
|
|
returnfunc();
|
2013-07-15 11:40:47 +00:00
|
|
|
}
|