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/>.
|
|
|
|
*/
|
|
|
|
|
2014-09-15 20:47:22 +00:00
|
|
|
#include "../driver.h"
|
2013-12-28 20:08:30 +00:00
|
|
|
#include "frontend.h"
|
2013-02-25 06:01:16 +00:00
|
|
|
#include "../general.h"
|
2014-10-21 22:23:06 +00:00
|
|
|
#include <file/file_path.h>
|
2013-02-25 06:01:16 +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 returnfunc() exit(0)
|
2013-11-03 15:38:56 +00:00
|
|
|
#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
|
|
|
|
|
2013-10-07 11:29:51 +00:00
|
|
|
#define returnfunc() return 0
|
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-08-26 23:08:29 +00:00
|
|
|
#define MAX_ARGS 32
|
|
|
|
|
2014-09-14 13:23:40 +00:00
|
|
|
int main_entry_decide(signature(), args_type() args)
|
|
|
|
{
|
2014-10-04 12:14:45 +00:00
|
|
|
int ret = rarch_main_iterate();
|
|
|
|
|
|
|
|
if (ret == -1)
|
2014-09-24 06:33:43 +00:00
|
|
|
{
|
|
|
|
if (g_extern.core_shutdown_initiated
|
|
|
|
&& g_settings.load_dummy_on_core_shutdown)
|
|
|
|
{
|
|
|
|
/* Load dummy core instead of exiting RetroArch completely. */
|
|
|
|
rarch_main_command(RARCH_CMD_PREPARE_DUMMY);
|
|
|
|
g_extern.core_shutdown_initiated = false;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2014-09-05 14:08:03 +00:00
|
|
|
|
2014-10-04 12:14:45 +00:00
|
|
|
return ret;
|
2014-04-30 02:00:39 +00:00
|
|
|
}
|
2013-11-04 12:08:19 +00:00
|
|
|
|
2014-12-31 12:22:08 +00:00
|
|
|
void main_exit_save_config(void)
|
2013-12-28 20:08:30 +00:00
|
|
|
{
|
2014-08-12 01:36:26 +00:00
|
|
|
if (g_settings.config_save_on_exit && *g_extern.config_path)
|
2014-01-01 19:44:20 +00:00
|
|
|
{
|
2014-08-20 14:26:34 +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-08-20 14:26:34 +00:00
|
|
|
/* Flush out the core specific config. */
|
|
|
|
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
|
|
|
}
|
2014-12-31 20:30:28 +00:00
|
|
|
|
|
|
|
rarch_main_command(RARCH_CMD_AUTOSAVE_STATE);
|
2014-12-31 12:22:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void main_exit(args_type() args)
|
|
|
|
{
|
|
|
|
g_extern.system.shutdown = false;
|
|
|
|
|
|
|
|
main_exit_save_config();
|
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
|
|
|
{
|
2014-09-05 16:14:00 +00:00
|
|
|
#ifdef HAVE_MENU
|
2014-08-20 14:26:34 +00:00
|
|
|
/* Do not want menu context to live any more. */
|
|
|
|
driver.menu_data_own = false;
|
2014-09-05 16:14:00 +00:00
|
|
|
#endif
|
2014-01-03 13:39:46 +00:00
|
|
|
rarch_main_deinit();
|
2014-05-31 21:53:03 +00:00
|
|
|
}
|
2014-08-01 23:49:36 +00:00
|
|
|
|
2014-10-16 06:31:10 +00:00
|
|
|
rarch_main_command(RARCH_CMD_PERFCNT_REPORT_FRONTEND_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-10-02 19:39:29 +00:00
|
|
|
if (driver.frontend_ctx && driver.frontend_ctx->exitspawn)
|
2014-08-20 14:26:34 +00:00
|
|
|
driver.frontend_ctx->exitspawn(g_settings.libretro,
|
|
|
|
sizeof(g_settings.libretro));
|
2013-07-15 12:19:29 +00:00
|
|
|
|
2014-09-30 18:46:15 +00:00
|
|
|
rarch_main_state_free();
|
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);
|
2014-11-08 01:48:40 +00:00
|
|
|
if (*g_defaults.video_filter_dir)
|
|
|
|
path_mkdir(g_defaults.video_filter_dir);
|
2014-07-27 22:18:05 +00:00
|
|
|
if (*g_defaults.assets_dir)
|
|
|
|
path_mkdir(g_defaults.assets_dir);
|
2014-09-15 02:12:27 +00:00
|
|
|
if (*g_defaults.playlist_dir)
|
|
|
|
path_mkdir(g_defaults.playlist_dir);
|
2014-07-27 22:18:05 +00:00
|
|
|
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);
|
2014-09-27 13:55:55 +00:00
|
|
|
if (*g_defaults.resampler_dir)
|
|
|
|
path_mkdir(g_defaults.resampler_dir);
|
2014-11-07 16:08:20 +00:00
|
|
|
if (*g_defaults.menu_config_dir)
|
|
|
|
path_mkdir(g_defaults.menu_config_dir);
|
2014-11-27 07:46:30 +00:00
|
|
|
if (*g_defaults.content_history_dir)
|
|
|
|
path_mkdir(g_defaults.content_history_dir);
|
2014-07-27 22:18:05 +00:00
|
|
|
}
|
|
|
|
|
2014-10-17 02:33:44 +00:00
|
|
|
static void history_playlist_push(content_playlist_t *playlist,
|
2014-10-17 02:32:56 +00:00
|
|
|
const char *path, const char *core_path,
|
|
|
|
struct retro_system_info *info)
|
|
|
|
{
|
|
|
|
char tmp[PATH_MAX];
|
|
|
|
|
2014-11-29 15:53:26 +00:00
|
|
|
if (!playlist || g_extern.libretro_dummy || !info)
|
2014-10-17 02:32:56 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* path can be relative here.
|
|
|
|
* Ensure we're pushing absolute path. */
|
|
|
|
|
|
|
|
strlcpy(tmp, path, sizeof(tmp));
|
|
|
|
|
|
|
|
if (*tmp)
|
|
|
|
path_resolve_realpath(tmp, sizeof(tmp));
|
|
|
|
|
|
|
|
if (g_extern.system.no_content || *tmp)
|
|
|
|
content_playlist_push(playlist,
|
|
|
|
*tmp ? tmp : NULL,
|
|
|
|
core_path,
|
|
|
|
info->library_name);
|
|
|
|
}
|
|
|
|
|
2014-08-20 14:26:34 +00:00
|
|
|
bool main_load_content(int argc, char **argv, args_type() args,
|
|
|
|
environment_get_t environ_get,
|
2014-07-27 22:18:05 +00:00
|
|
|
process_args_t process_args)
|
2013-12-28 20:08:30 +00:00
|
|
|
{
|
2014-08-03 00:09:41 +00:00
|
|
|
bool retval = true;
|
2014-11-29 20:07:12 +00:00
|
|
|
int ret = 0, rarch_argc = 0;
|
|
|
|
unsigned i;
|
2014-08-03 00:44:21 +00:00
|
|
|
char *rarch_argv[MAX_ARGS] = {NULL};
|
|
|
|
char *argv_copy [MAX_ARGS] = {NULL};
|
2014-09-28 15:35:58 +00:00
|
|
|
char **rarch_argv_ptr = (char**)argv;
|
|
|
|
int *rarch_argc_ptr = (int*)&argc;
|
|
|
|
struct rarch_main_wrap *wrap_args = (struct rarch_main_wrap*)
|
|
|
|
calloc(1, sizeof(*wrap_args));
|
2014-05-09 04:12:53 +00:00
|
|
|
|
2014-07-27 22:18:05 +00:00
|
|
|
(void)rarch_argc_ptr;
|
|
|
|
(void)rarch_argv_ptr;
|
2014-08-09 01:25:11 +00:00
|
|
|
(void)ret;
|
2013-12-28 20:08:30 +00:00
|
|
|
|
2014-07-27 18:24:06 +00:00
|
|
|
rarch_assert(wrap_args);
|
|
|
|
|
2014-07-27 22:18:05 +00:00
|
|
|
if (environ_get)
|
2014-08-02 22:00:41 +00:00
|
|
|
environ_get(rarch_argc_ptr, rarch_argv_ptr, args, 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-09-03 15:01:06 +00:00
|
|
|
rarch_main_command(RARCH_CMD_RESUME);
|
2014-07-27 22:31:20 +00:00
|
|
|
|
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);
|
|
|
|
|
2014-09-30 18:46:15 +00:00
|
|
|
rarch_main_state_new();
|
2014-07-27 22:18:05 +00:00
|
|
|
|
2014-09-12 02:59:52 +00:00
|
|
|
if (driver.frontend_ctx)
|
|
|
|
{
|
|
|
|
if (!(ret = (main_load_content(argc, argv, args,
|
|
|
|
driver.frontend_ctx->environment_get,
|
|
|
|
driver.frontend_ctx->process_args))))
|
|
|
|
{
|
|
|
|
return_var(ret);
|
|
|
|
}
|
|
|
|
}
|
2014-07-27 22:18:05 +00:00
|
|
|
|
2014-11-27 08:03:15 +00:00
|
|
|
rarch_main_command(RARCH_CMD_HISTORY_INIT);
|
|
|
|
|
2014-10-17 02:17:28 +00:00
|
|
|
if (g_settings.history_list_enable)
|
|
|
|
{
|
2014-11-24 05:25:11 +00:00
|
|
|
if (g_extern.content_is_init || g_extern.system.no_content)
|
2014-10-17 02:33:44 +00:00
|
|
|
history_playlist_push(g_defaults.history,
|
2014-10-17 02:17:28 +00:00
|
|
|
g_extern.fullpath,
|
|
|
|
g_settings.libretro,
|
|
|
|
&g_extern.system.info);
|
|
|
|
}
|
2014-06-03 01:35:12 +00:00
|
|
|
|
2014-07-21 05:41:11 +00:00
|
|
|
#if defined(HAVE_MAIN_LOOP)
|
2014-10-04 12:14:45 +00:00
|
|
|
while (main_entry_decide(signature_expand(), args) != -1);
|
2013-12-28 20:08:30 +00:00
|
|
|
|
|
|
|
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
|
|
|
}
|