RetroArch/frontend/frontend.c

363 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
2015-01-07 16:46:50 +00:00
* Copyright (C) 2011-2015 - Daniel De Matteis
* Copyright (C) 2012-2015 - 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 <file/file_path.h>
#include "../system.h"
2014-09-15 20:47:22 +00:00
#include "../driver.h"
#include "../general.h"
2015-01-09 16:40:47 +00:00
#include "../retroarch.h"
2015-01-09 17:40:33 +00:00
#include "../runloop.h"
#include "../runloop_data.h"
#include "frontend.h"
2014-08-26 23:08:29 +00:00
#define MAX_ARGS 32
2015-01-09 00:55:10 +00:00
/**
* main_exit_save_config:
*
* Saves configuration file to disk, and (optionally)
* autosave state.
**/
2014-12-31 12:22:08 +00:00
void main_exit_save_config(void)
{
2015-03-20 19:43:22 +00:00
settings_t *settings = config_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
if (settings->config_save_on_exit && *global->config_path)
2014-01-01 19:44:20 +00:00
{
/* restore original paths in case per-core organization is enabled */
2015-05-26 07:06:53 +00:00
if (settings->sort_savefiles_enable && orig_savefile_dir[0] != '\0')
strlcpy(global->savefile_dir,orig_savefile_dir,sizeof(global->savefile_dir));
2015-05-26 07:06:53 +00:00
if (settings->sort_savestates_enable && orig_savestate_dir[0] != '\0')
strlcpy(global->savestate_dir,orig_savestate_dir,sizeof(global->savestate_dir));
/* restore system directory if it was set to <content dir> */
if(orig_system_dir_empty)
strlcpy(settings->system_directory,"",sizeof(settings->system_directory));
/* Save last core-specific config to the default config location,
* needed on consoles for core switching and reusing last good
* config for new cores.
*/
2015-03-21 03:43:18 +00:00
config_save_file(global->config_path);
2014-01-01 19:44:20 +00:00
/* Flush out the core specific config. */
2015-03-21 03:43:18 +00:00
if (*global->core_specific_config_path &&
2015-03-20 19:43:22 +00:00
settings->core_specific_config)
2015-03-21 03:43:18 +00:00
config_save_file(global->core_specific_config_path);
2014-01-01 19:44:20 +00:00
}
event_command(EVENT_CMD_AUTOSAVE_STATE);
2014-12-31 12:22:08 +00:00
}
2015-01-09 00:55:10 +00:00
/**
* main_exit:
*
* Cleanly exit RetroArch.
*
* Also saves configuration files to disk,
* and (optionally) autosave state.
**/
void main_exit(void *args)
2014-12-31 12:22:08 +00:00
{
2015-04-07 22:08:53 +00: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();
const ui_companion_driver_t *ui = ui_companion_get_ptr();
2014-12-31 12:22:08 +00:00
main_exit_save_config();
2015-03-21 03:43:18 +00:00
if (global->main_is_init)
{
#ifdef HAVE_MENU
/* Do not want menu context to live any more. */
driver->menu_data_own = false;
#endif
rarch_main_deinit();
}
event_command(EVENT_CMD_PERFCNT_REPORT_FRONTEND_LOG);
2013-11-03 15:38:56 +00:00
#if defined(HAVE_LOGGER) && !defined(ANDROID)
logger_shutdown();
#endif
2015-04-07 22:08:53 +00:00
if (frontend)
{
if (frontend->deinit)
frontend->deinit(args);
2015-04-07 22:08:53 +00:00
if (frontend->exitspawn)
frontend->exitspawn(settings->libretro,
sizeof(settings->libretro));
}
2015-03-22 02:32:28 +00:00
rarch_main_free();
if (ui)
{
if (ui->deinit)
ui->deinit(driver->ui_companion_data);
}
2015-04-07 22:08:53 +00:00
if (frontend)
{
if (frontend->shutdown)
frontend->shutdown(false);
}
driver_free();
}
static void check_defaults_dirs(void)
{
2015-07-04 02:47:14 +00:00
if (*g_defaults.core_assets_dir)
path_mkdir(g_defaults.core_assets_dir);
if (*g_defaults.remap_dir)
path_mkdir(g_defaults.remap_dir);
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.video_filter_dir)
path_mkdir(g_defaults.video_filter_dir);
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);
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);
if (*g_defaults.menu_config_dir)
path_mkdir(g_defaults.menu_config_dir);
if (*g_defaults.content_history_dir)
path_mkdir(g_defaults.content_history_dir);
if (*g_defaults.extraction_dir)
path_mkdir(g_defaults.extraction_dir);
if (*g_defaults.database_dir)
path_mkdir(g_defaults.database_dir);
if (*g_defaults.cursor_dir)
path_mkdir(g_defaults.cursor_dir);
2015-03-12 23:24:17 +00:00
if (*g_defaults.cheats_dir)
path_mkdir(g_defaults.cheats_dir);
}
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_LENGTH] = {0};
global_t *global = global_get_ptr();
rarch_system_info_t *system = rarch_system_info_get_ptr();
2014-10-17 02:32:56 +00:00
2015-06-20 21:42:30 +00:00
if (!playlist || (global->core_type == CORE_TYPE_DUMMY) || !info)
2014-10-17 02:32:56 +00:00
return;
2015-01-09 00:55:10 +00:00
/* Path can be relative here.
2014-10-17 02:32:56 +00:00
* Ensure we're pushing absolute path. */
strlcpy(tmp, path, sizeof(tmp));
if (*tmp)
path_resolve_realpath(tmp, sizeof(tmp));
if (system->no_content || *tmp)
2014-10-17 02:32:56 +00:00
content_playlist_push(playlist,
*tmp ? tmp : NULL,
2015-05-25 22:12:49 +00:00
NULL,
2014-10-17 02:32:56 +00:00
core_path,
2015-05-25 22:12:49 +00:00
info->library_name,
NULL,
2015-05-25 22:12:49 +00:00
NULL);
2014-10-17 02:32:56 +00:00
}
2015-01-09 00:55:10 +00: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).
**/
bool main_load_content(int argc, char **argv, void *args,
environment_get_t environ_get,
process_args_t process_args)
{
2015-01-09 00:23:58 +00:00
unsigned i;
2015-03-21 03:43:18 +00: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 15:35:58 +00:00
struct rarch_main_wrap *wrap_args = (struct rarch_main_wrap*)
calloc(1, sizeof(*wrap_args));
2015-03-21 03:43:18 +00:00
if (!wrap_args)
return false;
(void)rarch_argc_ptr;
(void)rarch_argv_ptr;
2014-08-09 01:25:11 +00:00
(void)ret;
rarch_assert(wrap_args);
if (environ_get)
2014-08-02 22:00:41 +00:00
environ_get(rarch_argc_ptr, rarch_argv_ptr, args, wrap_args);
check_defaults_dirs();
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;
}
2015-03-21 03:43:18 +00:00
if (global->main_is_init)
rarch_main_deinit();
if ((ret = rarch_main_init(*rarch_argc_ptr, rarch_argv_ptr)))
{
retval = false;
goto error;
}
event_command(EVENT_CMD_RESUME);
2014-07-27 22:31:20 +00:00
if (process_args)
process_args(rarch_argc_ptr, rarch_argv_ptr);
error:
2014-07-27 23:28:48 +00:00
for (i = 0; i < ARRAY_SIZE(argv_copy); i++)
free(argv_copy[i]);
free(wrap_args);
return retval;
}
2015-01-09 00:55:10 +00:00
/**
* main_entry:
*
* Main function of RetroArch.
*
* If HAVE_MAIN is not defined, will contain main loop and will not
2015-01-09 00:55:10 +00:00
* be exited from until we exit the program. Otherwise, will
* just do initialization.
*
* Returns: varies per platform.
**/
2015-04-20 19:31:25 +00:00
int rarch_main(int argc, char *argv[], void *data)
{
2015-04-20 19:31:25 +00:00
void *args = (void*)data;
2015-04-07 22:08:53 +00:00
int ret = 0;
settings_t *settings = NULL;
driver_t *driver = NULL;
2015-03-22 02:32:28 +00:00
rarch_main_alloc();
2015-03-21 18:04:20 +00:00
driver = driver_get_ptr();
if (driver)
driver->frontend_ctx = (frontend_ctx_driver_t*)frontend_ctx_init_first();
if (!driver || !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);
2015-03-22 02:32:28 +00:00
rarch_main_new();
if (driver->frontend_ctx)
{
if (!(ret = (main_load_content(argc, argv, args,
driver->frontend_ctx->environment_get,
driver->frontend_ctx->process_args))))
2015-04-20 19:31:25 +00:00
return ret;
}
event_command(EVENT_CMD_HISTORY_INIT);
2015-03-20 19:43:22 +00:00
settings = config_get_ptr();
if (settings->history_list_enable)
2014-10-17 02:17:28 +00:00
{
global_t *global = global_get_ptr();
rarch_system_info_t *system = rarch_system_info_get_ptr();
2015-03-21 03:43:18 +00:00
if (global->content_is_init || system->no_content)
history_playlist_push(
g_defaults.history,
2015-03-21 03:43:18 +00:00
global->fullpath,
2015-03-20 19:43:22 +00:00
settings->libretro,
system ? &system->info : NULL);
2014-10-17 02:17:28 +00:00
}
if (driver)
driver->ui_companion = (ui_companion_driver_t*)ui_companion_init_first();
if (driver->ui_companion && driver->ui_companion->toggle)
{
if (settings->ui.companion_start_on_boot)
driver->ui_companion->toggle(driver->ui_companion_data);
}
#ifndef HAVE_MAIN
do{
ret = rarch_main_iterate();
rarch_main_data_iterate();
}while(ret != -1);
main_exit(args);
#endif
2015-04-20 19:31:25 +00:00
return 0;
}
2015-04-20 19:10:01 +00:00
#ifndef HAVE_MAIN
int main(int argc, char *argv[])
{
2015-04-20 19:31:25 +00:00
return rarch_main(argc, argv, NULL);
2015-04-20 19:10:01 +00:00
}
#endif