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
|
2016-01-10 04:06:50 +01:00
|
|
|
* Copyright (C) 2011-2016 - Daniel De Matteis
|
2015-01-07 17:46:50 +01:00
|
|
|
* 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-12-06 18:37:57 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_THREADS
|
2015-11-08 22:53:17 -02:00
|
|
|
#include <rthreads/async_job.h>
|
2015-12-06 18:37:57 +01:00
|
|
|
#endif
|
2015-06-25 11:06:02 +02:00
|
|
|
|
2015-09-06 14:46:04 +02:00
|
|
|
#include "frontend.h"
|
2015-12-05 10:04:06 +01:00
|
|
|
#include "../ui/ui_companion_driver.h"
|
2015-11-29 02:02:34 +01:00
|
|
|
|
|
|
|
#include "../defaults.h"
|
2016-01-19 22:57:18 +01:00
|
|
|
#include "../content.h"
|
2015-11-29 02:02:34 +01:00
|
|
|
#include "../driver.h"
|
2015-06-25 13:20:53 +02:00
|
|
|
#include "../system.h"
|
2014-09-15 17:47:22 -03:00
|
|
|
#include "../driver.h"
|
2015-01-09 17:40:47 +01:00
|
|
|
#include "../retroarch.h"
|
2015-01-09 18:40:33 +01:00
|
|
|
#include "../runloop.h"
|
2015-11-23 12:03:38 +01:00
|
|
|
#include "../verbosity.h"
|
2015-06-25 11:06:02 +02:00
|
|
|
|
2015-12-05 13:00:45 +01:00
|
|
|
#ifdef HAVE_MENU
|
|
|
|
#include "../menu/menu_driver.h"
|
|
|
|
#endif
|
2015-12-05 10:04:06 +01:00
|
|
|
|
2015-12-06 18:37:57 +01:00
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
static async_job_t *async_jobs;
|
|
|
|
|
|
|
|
int rarch_main_async_job_add(async_task_t task, void *payload)
|
|
|
|
{
|
|
|
|
return async_job_add(async_jobs, task, payload);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
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
|
|
|
settings_t *settings = config_get_ptr();
|
2015-03-18 19:40:00 +01:00
|
|
|
|
2016-05-09 20:51:53 +02:00
|
|
|
command_event(CMD_EVENT_MENU_SAVE_CURRENT_CONFIG, NULL);
|
2013-07-15 13:40:47 +02:00
|
|
|
|
2014-09-05 18:14:00 +02:00
|
|
|
#ifdef HAVE_MENU
|
2016-01-30 05:21:05 +01:00
|
|
|
/* Do not want menu context to live any more. */
|
|
|
|
menu_driver_ctl(RARCH_MENU_CTL_UNSET_OWN_DRIVER, NULL);
|
2014-09-05 18:14:00 +02:00
|
|
|
#endif
|
2016-01-30 05:21:05 +01:00
|
|
|
rarch_ctl(RARCH_CTL_MAIN_DEINIT, NULL);
|
2014-08-02 01:49:36 +02:00
|
|
|
|
2016-05-09 20:51:53 +02:00
|
|
|
command_event(CMD_EVENT_PERFCNT_REPORT_FRONTEND_LOG, NULL);
|
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-12-05 09:06:43 +01:00
|
|
|
frontend_driver_deinit(args);
|
2016-04-28 20:49:13 +02:00
|
|
|
frontend_driver_exitspawn(settings->path.libretro,
|
|
|
|
sizeof(settings->path.libretro));
|
2013-07-15 14:19:29 +02:00
|
|
|
|
2015-12-07 15:03:54 +01:00
|
|
|
rarch_ctl(RARCH_CTL_DESTROY, NULL);
|
2013-07-15 13:40:47 +02:00
|
|
|
|
2015-12-05 09:55:13 +01:00
|
|
|
ui_companion_driver_deinit();
|
2015-04-12 02:09:14 +02:00
|
|
|
|
2015-12-05 09:06:43 +01:00
|
|
|
frontend_driver_shutdown(false);
|
2015-03-22 01:16:57 +01:00
|
|
|
|
2015-12-11 10:43:53 +01:00
|
|
|
driver_ctl(RARCH_DRIVER_CTL_DEINIT, NULL);
|
2015-12-05 10:01:20 +01:00
|
|
|
ui_companion_driver_free();
|
2015-12-05 09:06:43 +01:00
|
|
|
frontend_driver_free();
|
2013-12-28 21:08:30 +01:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2016-02-15 03:56:10 +01:00
|
|
|
char *fullpath = NULL;
|
|
|
|
rarch_system_info_t *system = NULL;
|
2015-04-20 21:31:25 +02:00
|
|
|
void *args = (void*)data;
|
2016-02-21 13:10:49 +01:00
|
|
|
#ifndef HAVE_MAIN
|
2015-04-08 00:08:53 +02:00
|
|
|
int ret = 0;
|
2016-02-21 13:10:49 +01:00
|
|
|
#endif
|
2015-04-20 20:53:17 +02:00
|
|
|
|
2015-12-07 15:01:53 +01:00
|
|
|
rarch_ctl(RARCH_CTL_PREINIT, NULL);
|
2015-03-21 19:04:20 +01:00
|
|
|
|
2015-12-05 08:36:16 +01:00
|
|
|
frontend_driver_init_first(args);
|
2015-12-07 14:59:09 +01:00
|
|
|
rarch_ctl(RARCH_CTL_INIT, NULL);
|
2015-03-21 19:31:38 +01:00
|
|
|
|
2015-11-08 22:53:17 -02:00
|
|
|
#ifdef HAVE_THREADS
|
2015-12-06 18:37:57 +01:00
|
|
|
async_jobs = async_job_new();
|
2015-11-08 22:53:17 -02:00
|
|
|
#endif
|
|
|
|
|
2015-12-05 08:36:16 +01:00
|
|
|
if (frontend_driver_is_inited())
|
2014-09-11 22:59:52 -04:00
|
|
|
{
|
2016-02-16 05:34:33 +01:00
|
|
|
content_ctx_info_t info;
|
2016-01-11 07:15:57 +01:00
|
|
|
|
2016-02-16 05:34:33 +01:00
|
|
|
info.argc = argc;
|
|
|
|
info.argv = argv;
|
|
|
|
info.args = args;
|
|
|
|
info.environ_get = frontend_driver_environment_get_ptr();
|
|
|
|
|
2016-05-08 04:35:00 +02:00
|
|
|
if (!content_load(&info))
|
2016-02-16 05:34:33 +01:00
|
|
|
return 0;
|
2014-09-11 22:59:52 -04:00
|
|
|
}
|
2014-07-28 00:18:05 +02:00
|
|
|
|
2016-05-12 09:25:52 +02:00
|
|
|
runloop_get_system_info((void**)&system);
|
2016-02-15 03:56:10 +01:00
|
|
|
runloop_ctl(RUNLOOP_CTL_GET_CONTENT_PATH, &fullpath);
|
|
|
|
|
2016-05-08 05:17:31 +02:00
|
|
|
if (content_is_inited() || content_does_not_need_content())
|
2014-10-17 04:17:28 +02:00
|
|
|
{
|
2016-02-15 03:56:10 +01:00
|
|
|
char tmp[PATH_MAX_LENGTH];
|
|
|
|
struct retro_system_info *info = system ? &system->info : NULL;
|
|
|
|
|
|
|
|
strlcpy(tmp, fullpath, sizeof(tmp));
|
|
|
|
|
|
|
|
if (*tmp)
|
|
|
|
{
|
|
|
|
/* Path can be relative here.
|
|
|
|
* Ensure we're pushing absolute path. */
|
|
|
|
path_resolve_realpath(tmp, sizeof(tmp));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rarch_ctl(RARCH_CTL_IS_DUMMY_CORE, NULL) || !info)
|
|
|
|
content_push_to_history_playlist(
|
2016-05-08 05:17:31 +02:00
|
|
|
content_does_not_need_content() || *tmp,
|
2016-02-15 03:56:10 +01:00
|
|
|
*tmp ? tmp : NULL,
|
|
|
|
info);
|
2014-10-17 04:17:28 +02:00
|
|
|
}
|
2014-06-03 03:35:12 +02:00
|
|
|
|
2015-12-05 09:55:13 +01:00
|
|
|
ui_companion_driver_init_first();
|
2015-04-13 02:14:34 +02:00
|
|
|
|
2015-04-20 21:12:39 +02:00
|
|
|
#ifndef HAVE_MAIN
|
2015-11-27 23:39:43 +01:00
|
|
|
do
|
|
|
|
{
|
2015-11-28 03:05:37 +01:00
|
|
|
unsigned sleep_ms = 0;
|
2015-12-07 15:22:36 +01:00
|
|
|
ret = runloop_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-09-22 18:55:14 +02:00
|
|
|
retro_sleep(sleep_ms);
|
2016-05-08 06:29:11 +02:00
|
|
|
runloop_iterate_data();
|
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-12-06 14:28:06 -03:00
|
|
|
#ifdef HAVE_THREADS
|
2015-12-06 18:37:57 +01:00
|
|
|
async_job_free(async_jobs);
|
|
|
|
async_jobs = NULL;
|
2015-12-06 14:28:06 -03:00
|
|
|
#endif
|
|
|
|
|
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
|