2013-02-25 07:01:16 +01:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 01:50:59 +01:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2015-01-07 17:46:50 +01:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
|
|
|
* Copyright (C) 2012-2015 - Michael Lelli
|
2013-02-25 07:01:16 +01: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/>.
|
|
|
|
*/
|
|
|
|
|
2015-06-25 11:06:02 +02:00
|
|
|
#include <file/file_path.h>
|
2015-09-22 01:45:16 +02:00
|
|
|
#include <retro_stat.h>
|
2015-11-08 22:53:17 -02:00
|
|
|
#include <rthreads/async_job.h>
|
2015-06-25 11:06:02 +02:00
|
|
|
|
2015-09-06 14:46:04 +02:00
|
|
|
#include "frontend.h"
|
2015-06-25 13:20:53 +02:00
|
|
|
#include "../system.h"
|
2014-09-15 17:47:22 -03:00
|
|
|
#include "../driver.h"
|
2013-02-25 07:01:16 +01:00
|
|
|
#include "../general.h"
|
2015-01-09 17:40:47 +01:00
|
|
|
#include "../retroarch.h"
|
2015-01-09 18:40:33 +01:00
|
|
|
#include "../runloop.h"
|
2015-05-16 17:00:50 +02:00
|
|
|
#include "../runloop_data.h"
|
2015-11-23 12:03:38 +01:00
|
|
|
#include "../verbosity.h"
|
2015-06-25 11:06:02 +02:00
|
|
|
|
2014-08-27 01:08:29 +02:00
|
|
|
#define MAX_ARGS 32
|
|
|
|
|
2015-01-09 01:55:10 +01:00
|
|
|
/**
|
|
|
|
* main_exit:
|
|
|
|
*
|
|
|
|
* Cleanly exit RetroArch.
|
|
|
|
*
|
|
|
|
* Also saves configuration files to disk,
|
|
|
|
* and (optionally) autosave state.
|
|
|
|
**/
|
2015-04-20 20:53:17 +02:00
|
|
|
void main_exit(void *args)
|
2014-12-31 13:22:08 +01:00
|
|
|
{
|
2015-04-08 00:08:53 +02:00
|
|
|
driver_t *driver = driver_get_ptr();
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
global_t *global = global_get_ptr();
|
|
|
|
const frontend_ctx_driver_t *frontend = frontend_get_ptr();
|
2015-04-12 02:09:14 +02:00
|
|
|
const ui_companion_driver_t *ui = ui_companion_get_ptr();
|
2015-03-18 19:40:00 +01:00
|
|
|
|
2015-11-11 02:57:20 +01:00
|
|
|
event_command(EVENT_CMD_MENU_SAVE_CURRENT_CONFIG);
|
2013-07-15 13:40:47 +02:00
|
|
|
|
2015-07-27 17:18:10 +02:00
|
|
|
if (global->inited.main)
|
2014-05-31 23:53:03 +02:00
|
|
|
{
|
2014-09-05 18:14:00 +02:00
|
|
|
#ifdef HAVE_MENU
|
2014-08-20 16:26:34 +02:00
|
|
|
/* Do not want menu context to live any more. */
|
2015-03-18 19:40:00 +01:00
|
|
|
driver->menu_data_own = false;
|
2014-09-05 18:14:00 +02:00
|
|
|
#endif
|
2014-01-03 14:39:46 +01:00
|
|
|
rarch_main_deinit();
|
2014-05-31 23:53:03 +02:00
|
|
|
}
|
2014-08-02 01:49:36 +02:00
|
|
|
|
2015-04-13 11:26:02 +02:00
|
|
|
event_command(EVENT_CMD_PERFCNT_REPORT_FRONTEND_LOG);
|
2013-02-25 07:01:16 +01:00
|
|
|
|
2013-11-03 16:38:56 +01:00
|
|
|
#if defined(HAVE_LOGGER) && !defined(ANDROID)
|
2013-07-15 14:19:29 +02:00
|
|
|
logger_shutdown();
|
|
|
|
#endif
|
2013-07-27 16:36:55 +02:00
|
|
|
|
2015-04-08 00:08:53 +02:00
|
|
|
if (frontend)
|
|
|
|
{
|
|
|
|
if (frontend->deinit)
|
|
|
|
frontend->deinit(args);
|
2013-07-15 14:19:29 +02:00
|
|
|
|
2015-04-08 00:08:53 +02:00
|
|
|
if (frontend->exitspawn)
|
|
|
|
frontend->exitspawn(settings->libretro,
|
|
|
|
sizeof(settings->libretro));
|
|
|
|
}
|
2013-07-15 14:19:29 +02:00
|
|
|
|
2015-03-22 03:32:28 +01:00
|
|
|
rarch_main_free();
|
2013-07-15 13:40:47 +02:00
|
|
|
|
2015-04-12 02:09:14 +02:00
|
|
|
if (ui)
|
|
|
|
{
|
|
|
|
if (ui->deinit)
|
|
|
|
ui->deinit(driver->ui_companion_data);
|
|
|
|
}
|
|
|
|
|
2015-04-08 00:08:53 +02:00
|
|
|
if (frontend)
|
|
|
|
{
|
|
|
|
if (frontend->shutdown)
|
|
|
|
frontend->shutdown(false);
|
|
|
|
}
|
2015-03-22 01:16:57 +01:00
|
|
|
|
|
|
|
driver_free();
|
2013-12-28 21:08:30 +01:00
|
|
|
}
|
|
|
|
|
2014-07-28 00:18:05 +02:00
|
|
|
static void check_defaults_dirs(void)
|
|
|
|
{
|
2015-09-17 22:05:14 +02:00
|
|
|
if (*g_defaults.dir.core_assets)
|
|
|
|
path_mkdir(g_defaults.dir.core_assets);
|
|
|
|
if (*g_defaults.dir.remap)
|
|
|
|
path_mkdir(g_defaults.dir.remap);
|
2015-10-03 11:24:17 -05:00
|
|
|
if (*g_defaults.dir.screenshot)
|
|
|
|
path_mkdir(g_defaults.dir.screenshot);
|
|
|
|
if (*g_defaults.dir.core)
|
|
|
|
path_mkdir(g_defaults.dir.core);
|
2015-07-27 17:18:10 +02:00
|
|
|
if (*g_defaults.dir.autoconfig)
|
|
|
|
path_mkdir(g_defaults.dir.autoconfig);
|
|
|
|
if (*g_defaults.dir.audio_filter)
|
|
|
|
path_mkdir(g_defaults.dir.audio_filter);
|
|
|
|
if (*g_defaults.dir.video_filter)
|
|
|
|
path_mkdir(g_defaults.dir.video_filter);
|
|
|
|
if (*g_defaults.dir.assets)
|
|
|
|
path_mkdir(g_defaults.dir.assets);
|
|
|
|
if (*g_defaults.dir.playlist)
|
|
|
|
path_mkdir(g_defaults.dir.playlist);
|
|
|
|
if (*g_defaults.dir.core)
|
|
|
|
path_mkdir(g_defaults.dir.core);
|
|
|
|
if (*g_defaults.dir.core_info)
|
|
|
|
path_mkdir(g_defaults.dir.core_info);
|
|
|
|
if (*g_defaults.dir.overlay)
|
|
|
|
path_mkdir(g_defaults.dir.overlay);
|
|
|
|
if (*g_defaults.dir.port)
|
|
|
|
path_mkdir(g_defaults.dir.port);
|
|
|
|
if (*g_defaults.dir.shader)
|
|
|
|
path_mkdir(g_defaults.dir.shader);
|
|
|
|
if (*g_defaults.dir.savestate)
|
|
|
|
path_mkdir(g_defaults.dir.savestate);
|
|
|
|
if (*g_defaults.dir.sram)
|
|
|
|
path_mkdir(g_defaults.dir.sram);
|
|
|
|
if (*g_defaults.dir.system)
|
|
|
|
path_mkdir(g_defaults.dir.system);
|
|
|
|
if (*g_defaults.dir.resampler)
|
|
|
|
path_mkdir(g_defaults.dir.resampler);
|
|
|
|
if (*g_defaults.dir.menu_config)
|
|
|
|
path_mkdir(g_defaults.dir.menu_config);
|
|
|
|
if (*g_defaults.dir.content_history)
|
|
|
|
path_mkdir(g_defaults.dir.content_history);
|
2015-10-27 00:48:35 +01:00
|
|
|
if (*g_defaults.dir.cache)
|
|
|
|
path_mkdir(g_defaults.dir.cache);
|
2015-07-27 17:18:10 +02:00
|
|
|
if (*g_defaults.dir.database)
|
|
|
|
path_mkdir(g_defaults.dir.database);
|
|
|
|
if (*g_defaults.dir.cursor)
|
|
|
|
path_mkdir(g_defaults.dir.cursor);
|
|
|
|
if (*g_defaults.dir.cheats)
|
|
|
|
path_mkdir(g_defaults.dir.cheats);
|
2014-07-28 00:18:05 +02:00
|
|
|
}
|
|
|
|
|
2014-10-17 04:33:44 +02:00
|
|
|
static void history_playlist_push(content_playlist_t *playlist,
|
2014-10-17 04:32:56 +02:00
|
|
|
const char *path, const char *core_path,
|
|
|
|
struct retro_system_info *info)
|
|
|
|
{
|
2015-06-25 13:38:46 +02:00
|
|
|
char tmp[PATH_MAX_LENGTH] = {0};
|
|
|
|
global_t *global = global_get_ptr();
|
|
|
|
rarch_system_info_t *system = rarch_system_info_get_ptr();
|
2014-10-17 04:32:56 +02:00
|
|
|
|
2015-07-27 17:18:10 +02:00
|
|
|
if (!playlist || (global->inited.core.type == CORE_TYPE_DUMMY) || !info)
|
2014-10-17 04:32:56 +02:00
|
|
|
return;
|
|
|
|
|
2015-01-09 01:55:10 +01:00
|
|
|
/* Path can be relative here.
|
2014-10-17 04:32:56 +02:00
|
|
|
* Ensure we're pushing absolute path. */
|
|
|
|
|
|
|
|
strlcpy(tmp, path, sizeof(tmp));
|
|
|
|
|
|
|
|
if (*tmp)
|
|
|
|
path_resolve_realpath(tmp, sizeof(tmp));
|
|
|
|
|
2015-06-25 13:38:46 +02:00
|
|
|
if (system->no_content || *tmp)
|
2014-10-17 04:32:56 +02:00
|
|
|
content_playlist_push(playlist,
|
|
|
|
*tmp ? tmp : NULL,
|
2015-05-26 00:12:49 +02:00
|
|
|
NULL,
|
2014-10-17 04:32:56 +02:00
|
|
|
core_path,
|
2015-05-26 00:12:49 +02:00
|
|
|
info->library_name,
|
2015-06-08 23:38:03 +02:00
|
|
|
NULL,
|
2015-05-26 00:12:49 +02:00
|
|
|
NULL);
|
2014-10-17 04:32:56 +02:00
|
|
|
}
|
|
|
|
|
2015-01-09 01:55:10 +01:00
|
|
|
/**
|
|
|
|
* main_load_content:
|
|
|
|
* @argc : Argument count.
|
|
|
|
* @argv : Argument variable list.
|
|
|
|
* @args : Arguments passed from callee.
|
|
|
|
* @environ_get : Function passed for environment_get function.
|
|
|
|
* @process_args : Function passed for process_args function.
|
|
|
|
*
|
|
|
|
* Loads content file and starts up RetroArch.
|
|
|
|
* If no content file can be loaded, will start up RetroArch
|
|
|
|
* as-is.
|
|
|
|
*
|
|
|
|
* Returns: false (0) if rarch_main_init failed, otherwise true (1).
|
|
|
|
**/
|
2015-04-20 20:53:17 +02:00
|
|
|
bool main_load_content(int argc, char **argv, void *args,
|
2014-08-20 16:26:34 +02:00
|
|
|
environment_get_t environ_get,
|
2014-07-28 00:18:05 +02:00
|
|
|
process_args_t process_args)
|
2013-12-28 21:08:30 +01:00
|
|
|
{
|
2015-01-09 01:23:58 +01:00
|
|
|
unsigned i;
|
2015-03-21 04:43:18 +01:00
|
|
|
bool retval = true;
|
|
|
|
int ret = 0, rarch_argc = 0;
|
|
|
|
char *rarch_argv[MAX_ARGS] = {NULL};
|
|
|
|
char *argv_copy [MAX_ARGS] = {NULL};
|
|
|
|
char **rarch_argv_ptr = (char**)argv;
|
|
|
|
int *rarch_argc_ptr = (int*)&argc;
|
|
|
|
global_t *global = global_get_ptr();
|
2014-09-28 17:35:58 +02:00
|
|
|
struct rarch_main_wrap *wrap_args = (struct rarch_main_wrap*)
|
|
|
|
calloc(1, sizeof(*wrap_args));
|
2014-05-09 06:12:53 +02:00
|
|
|
|
2015-03-21 04:43:18 +01:00
|
|
|
if (!wrap_args)
|
|
|
|
return false;
|
|
|
|
|
2014-07-28 00:18:05 +02:00
|
|
|
(void)rarch_argc_ptr;
|
|
|
|
(void)rarch_argv_ptr;
|
2014-08-09 03:25:11 +02:00
|
|
|
(void)ret;
|
2013-12-28 21:08:30 +01:00
|
|
|
|
2015-10-26 03:18:13 +01:00
|
|
|
retro_assert(wrap_args);
|
2014-07-27 20:24:06 +02:00
|
|
|
|
2014-07-28 00:18:05 +02:00
|
|
|
if (environ_get)
|
2014-08-03 00:00:41 +02:00
|
|
|
environ_get(rarch_argc_ptr, rarch_argv_ptr, args, wrap_args);
|
2014-07-27 20:24:06 +02: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 21:08:30 +01:00
|
|
|
}
|
|
|
|
|
2015-07-27 17:18:10 +02:00
|
|
|
if (global->inited.main)
|
2014-07-27 08:17:38 +02:00
|
|
|
rarch_main_deinit();
|
|
|
|
|
2014-06-03 03:35:12 +02:00
|
|
|
if ((ret = rarch_main_init(*rarch_argc_ptr, rarch_argv_ptr)))
|
|
|
|
{
|
2014-07-28 00:18:05 +02:00
|
|
|
retval = false;
|
|
|
|
goto error;
|
2014-06-03 03:35:12 +02:00
|
|
|
}
|
2013-12-28 21:08:30 +01:00
|
|
|
|
2015-04-13 11:26:02 +02:00
|
|
|
event_command(EVENT_CMD_RESUME);
|
2014-07-28 00:31:20 +02:00
|
|
|
|
2015-10-03 11:10:36 -05:00
|
|
|
check_defaults_dirs();
|
|
|
|
|
2014-07-28 00:18:05 +02:00
|
|
|
if (process_args)
|
|
|
|
process_args(rarch_argc_ptr, rarch_argv_ptr);
|
2013-12-28 21:08:30 +01:00
|
|
|
|
2014-07-28 00:18:05 +02:00
|
|
|
error:
|
2014-07-28 01:28:48 +02:00
|
|
|
for (i = 0; i < ARRAY_SIZE(argv_copy); i++)
|
|
|
|
free(argv_copy[i]);
|
2014-07-28 00:18:05 +02:00
|
|
|
free(wrap_args);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2015-01-09 01:55:10 +01:00
|
|
|
/**
|
|
|
|
* main_entry:
|
|
|
|
*
|
|
|
|
* Main function of RetroArch.
|
|
|
|
*
|
2015-04-20 21:12:39 +02:00
|
|
|
* If HAVE_MAIN is not defined, will contain main loop and will not
|
2015-10-03 11:10:00 -05:00
|
|
|
* be exited from until we exit the program. Otherwise, will
|
2015-01-09 01:55:10 +01:00
|
|
|
* just do initialization.
|
|
|
|
*
|
|
|
|
* Returns: varies per platform.
|
|
|
|
**/
|
2015-04-20 21:31:25 +02:00
|
|
|
int rarch_main(int argc, char *argv[], void *data)
|
2014-07-28 00:18:05 +02:00
|
|
|
{
|
2015-04-20 21:31:25 +02:00
|
|
|
void *args = (void*)data;
|
2015-04-08 00:08:53 +02:00
|
|
|
int ret = 0;
|
|
|
|
settings_t *settings = NULL;
|
|
|
|
driver_t *driver = NULL;
|
2015-11-23 23:44:24 +01:00
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
global_t *global = NULL;
|
|
|
|
#endif
|
2015-04-20 20:53:17 +02:00
|
|
|
|
2015-03-22 03:32:28 +01:00
|
|
|
rarch_main_alloc();
|
2015-03-21 19:04:20 +01:00
|
|
|
|
2015-03-22 00:43:10 +01:00
|
|
|
driver = driver_get_ptr();
|
|
|
|
|
2015-03-21 19:31:38 +01:00
|
|
|
if (driver)
|
|
|
|
driver->frontend_ctx = (frontend_ctx_driver_t*)frontend_ctx_init_first();
|
2014-07-28 00:18:05 +02:00
|
|
|
|
2015-03-21 19:31:38 +01:00
|
|
|
if (!driver || !driver->frontend_ctx)
|
2014-07-28 00:18:05 +02:00
|
|
|
RARCH_WARN("Frontend context could not be initialized.\n");
|
|
|
|
|
2015-03-18 19:40:00 +01:00
|
|
|
if (driver->frontend_ctx && driver->frontend_ctx->init)
|
|
|
|
driver->frontend_ctx->init(args);
|
2014-07-28 00:18:05 +02:00
|
|
|
|
2015-03-22 03:32:28 +01:00
|
|
|
rarch_main_new();
|
2015-03-21 19:31:38 +01:00
|
|
|
|
2015-11-08 22:53:17 -02:00
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
global = global_get_ptr();
|
|
|
|
global->async_jobs = async_job_new();
|
|
|
|
#endif
|
|
|
|
|
2015-03-18 19:40:00 +01:00
|
|
|
if (driver->frontend_ctx)
|
2014-09-11 22:59:52 -04:00
|
|
|
{
|
|
|
|
if (!(ret = (main_load_content(argc, argv, args,
|
2015-04-20 20:53:17 +02:00
|
|
|
driver->frontend_ctx->environment_get,
|
|
|
|
driver->frontend_ctx->process_args))))
|
2015-04-20 21:31:25 +02:00
|
|
|
return ret;
|
2014-09-11 22:59:52 -04:00
|
|
|
}
|
2014-07-28 00:18:05 +02:00
|
|
|
|
2015-04-13 11:26:02 +02:00
|
|
|
event_command(EVENT_CMD_HISTORY_INIT);
|
2014-11-27 09:03:15 +01:00
|
|
|
|
2015-03-20 20:43:22 +01:00
|
|
|
settings = config_get_ptr();
|
|
|
|
|
|
|
|
if (settings->history_list_enable)
|
2014-10-17 04:17:28 +02:00
|
|
|
{
|
2015-11-18 11:43:25 +01:00
|
|
|
char *fullpath = NULL;
|
|
|
|
global_t *global = global_get_ptr();
|
2015-06-25 13:38:46 +02:00
|
|
|
rarch_system_info_t *system = rarch_system_info_get_ptr();
|
2015-03-21 04:43:18 +01:00
|
|
|
|
2015-11-18 11:43:25 +01:00
|
|
|
rarch_main_ctl(RARCH_MAIN_CTL_GET_CONTENT_PATH, &fullpath);
|
|
|
|
|
2015-07-27 17:18:10 +02:00
|
|
|
if (global->inited.content || system->no_content)
|
2015-06-25 11:06:02 +02:00
|
|
|
history_playlist_push(
|
|
|
|
g_defaults.history,
|
2015-11-18 11:43:25 +01:00
|
|
|
fullpath,
|
2015-03-20 20:43:22 +01:00
|
|
|
settings->libretro,
|
2015-06-25 13:38:46 +02:00
|
|
|
system ? &system->info : NULL);
|
2014-10-17 04:17:28 +02:00
|
|
|
}
|
2014-06-03 03:35:12 +02:00
|
|
|
|
2015-04-12 02:09:14 +02:00
|
|
|
if (driver)
|
|
|
|
driver->ui_companion = (ui_companion_driver_t*)ui_companion_init_first();
|
|
|
|
|
2015-04-13 02:14:34 +02:00
|
|
|
if (driver->ui_companion && driver->ui_companion->toggle)
|
|
|
|
{
|
|
|
|
if (settings->ui.companion_start_on_boot)
|
|
|
|
driver->ui_companion->toggle(driver->ui_companion_data);
|
|
|
|
}
|
|
|
|
|
2015-04-20 21:12:39 +02:00
|
|
|
#ifndef HAVE_MAIN
|
2015-11-27 23:39:43 +01:00
|
|
|
do
|
|
|
|
{
|
|
|
|
bool sleeping = false;
|
2015-11-28 03:05:37 +01:00
|
|
|
unsigned sleep_ms = 0;
|
|
|
|
ret = rarch_main_iterate(&sleep_ms);
|
2015-10-03 11:10:00 -05:00
|
|
|
|
2015-08-27 14:52:02 +02:00
|
|
|
if (ret == 1 && sleep_ms > 0)
|
2015-11-27 23:39:43 +01:00
|
|
|
{
|
|
|
|
sleeping = true;
|
2015-09-22 18:55:14 +02:00
|
|
|
retro_sleep(sleep_ms);
|
2015-11-27 23:39:43 +01:00
|
|
|
}
|
2015-11-28 03:05:37 +01:00
|
|
|
rarch_main_data_iterate(sleeping);
|
2015-05-16 17:00:50 +02:00
|
|
|
}while(ret != -1);
|
2013-12-28 21:08:30 +01:00
|
|
|
|
|
|
|
main_exit(args);
|
2014-07-21 07:41:11 +02:00
|
|
|
#endif
|
2013-07-15 13:40:47 +02:00
|
|
|
|
2015-04-20 21:31:25 +02:00
|
|
|
return 0;
|
2013-07-15 13:40:47 +02:00
|
|
|
}
|
2015-04-20 21:10:01 +02:00
|
|
|
|
|
|
|
#ifndef HAVE_MAIN
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2015-04-20 21:31:25 +02:00
|
|
|
return rarch_main(argc, argv, NULL);
|
2015-04-20 21:10:01 +02:00
|
|
|
}
|
|
|
|
#endif
|