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
|
2016-01-10 03:06:50 +00:00
|
|
|
* Copyright (C) 2011-2016 - Daniel De Matteis
|
2015-01-07 16:46:50 +00:00
|
|
|
* Copyright (C) 2012-2015 - 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/>.
|
|
|
|
*/
|
|
|
|
|
2015-06-25 09:06:02 +00:00
|
|
|
#include <file/file_path.h>
|
2015-09-21 23:45:16 +00:00
|
|
|
#include <retro_stat.h>
|
2016-05-16 15:29:02 +00:00
|
|
|
#include <queues/task_queue.h>
|
2015-12-06 17:37:57 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_THREADS
|
2015-11-09 00:53:17 +00:00
|
|
|
#include <rthreads/async_job.h>
|
2015-12-06 17:37:57 +00:00
|
|
|
#endif
|
2015-06-25 09:06:02 +00:00
|
|
|
|
2015-09-06 12:46:04 +00:00
|
|
|
#include "frontend.h"
|
2015-12-05 09:04:06 +00:00
|
|
|
#include "../ui/ui_companion_driver.h"
|
2016-05-16 14:38:27 +00:00
|
|
|
#include "../tasks/tasks_internal.h"
|
2015-11-29 01:02:34 +00:00
|
|
|
|
|
|
|
#include "../defaults.h"
|
2016-01-19 21:57:18 +00:00
|
|
|
#include "../content.h"
|
2015-11-29 01:02:34 +00:00
|
|
|
#include "../driver.h"
|
2015-06-25 11:20:53 +00:00
|
|
|
#include "../system.h"
|
2014-09-15 20:47:22 +00:00
|
|
|
#include "../driver.h"
|
2015-01-09 16:40:47 +00:00
|
|
|
#include "../retroarch.h"
|
2015-01-09 17:40:33 +00:00
|
|
|
#include "../runloop.h"
|
2015-11-23 11:03:38 +00:00
|
|
|
#include "../verbosity.h"
|
2015-06-25 09:06:02 +00:00
|
|
|
|
2015-12-05 12:00:45 +00:00
|
|
|
#ifdef HAVE_MENU
|
|
|
|
#include "../menu/menu_driver.h"
|
|
|
|
#endif
|
2015-12-05 09:04:06 +00:00
|
|
|
|
2015-12-06 17:37:57 +00: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 00:55:10 +00:00
|
|
|
/**
|
|
|
|
* main_exit:
|
|
|
|
*
|
|
|
|
* Cleanly exit RetroArch.
|
|
|
|
*
|
|
|
|
* Also saves configuration files to disk,
|
|
|
|
* and (optionally) autosave state.
|
|
|
|
**/
|
2015-04-20 18:53:17 +00:00
|
|
|
void main_exit(void *args)
|
2014-12-31 12:22:08 +00:00
|
|
|
{
|
2015-04-07 22:08:53 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
2015-03-18 18:40:00 +00:00
|
|
|
|
2016-05-09 18:51:53 +00:00
|
|
|
command_event(CMD_EVENT_MENU_SAVE_CURRENT_CONFIG, NULL);
|
2013-07-15 11:40:47 +00:00
|
|
|
|
2014-09-05 16:14:00 +00:00
|
|
|
#ifdef HAVE_MENU
|
2016-01-30 04:21:05 +00:00
|
|
|
/* Do not want menu context to live any more. */
|
|
|
|
menu_driver_ctl(RARCH_MENU_CTL_UNSET_OWN_DRIVER, NULL);
|
2014-09-05 16:14:00 +00:00
|
|
|
#endif
|
2016-01-30 04:21:05 +00:00
|
|
|
rarch_ctl(RARCH_CTL_MAIN_DEINIT, NULL);
|
2014-08-01 23:49:36 +00:00
|
|
|
|
2016-05-09 18:51:53 +00:00
|
|
|
command_event(CMD_EVENT_PERFCNT_REPORT_FRONTEND_LOG, NULL);
|
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
|
|
|
|
2015-12-05 08:06:43 +00:00
|
|
|
frontend_driver_deinit(args);
|
2016-04-28 18:49:13 +00:00
|
|
|
frontend_driver_exitspawn(settings->path.libretro,
|
|
|
|
sizeof(settings->path.libretro));
|
2013-07-15 12:19:29 +00:00
|
|
|
|
2015-12-07 14:03:54 +00:00
|
|
|
rarch_ctl(RARCH_CTL_DESTROY, NULL);
|
2013-07-15 11:40:47 +00:00
|
|
|
|
2015-12-05 08:55:13 +00:00
|
|
|
ui_companion_driver_deinit();
|
2015-04-12 00:09:14 +00:00
|
|
|
|
2015-12-05 08:06:43 +00:00
|
|
|
frontend_driver_shutdown(false);
|
2015-03-22 00:16:57 +00:00
|
|
|
|
2015-12-11 09:43:53 +00:00
|
|
|
driver_ctl(RARCH_DRIVER_CTL_DEINIT, NULL);
|
2015-12-05 09:01:20 +00:00
|
|
|
ui_companion_driver_free();
|
2015-12-05 08:06:43 +00:00
|
|
|
frontend_driver_free();
|
2013-12-28 20:08:30 +00:00
|
|
|
}
|
|
|
|
|
2015-01-09 00:55:10 +00:00
|
|
|
/**
|
|
|
|
* main_entry:
|
|
|
|
*
|
|
|
|
* Main function of RetroArch.
|
|
|
|
*
|
2015-04-20 19:12:39 +00:00
|
|
|
* If HAVE_MAIN is not defined, will contain main loop and will not
|
2015-10-03 16:10:00 +00:00
|
|
|
* be exited from until we exit the program. Otherwise, will
|
2015-01-09 00:55:10 +00:00
|
|
|
* just do initialization.
|
|
|
|
*
|
|
|
|
* Returns: varies per platform.
|
|
|
|
**/
|
2015-04-20 19:31:25 +00:00
|
|
|
int rarch_main(int argc, char *argv[], void *data)
|
2014-07-27 22:18:05 +00:00
|
|
|
{
|
2016-02-15 02:56:10 +00:00
|
|
|
char *fullpath = NULL;
|
|
|
|
rarch_system_info_t *system = NULL;
|
2015-04-20 19:31:25 +00:00
|
|
|
void *args = (void*)data;
|
2016-02-21 12:10:49 +00:00
|
|
|
#ifndef HAVE_MAIN
|
2015-04-07 22:08:53 +00:00
|
|
|
int ret = 0;
|
2016-02-21 12:10:49 +00:00
|
|
|
#endif
|
2015-04-20 18:53:17 +00:00
|
|
|
|
2015-12-07 14:01:53 +00:00
|
|
|
rarch_ctl(RARCH_CTL_PREINIT, NULL);
|
2015-03-21 18:04:20 +00:00
|
|
|
|
2015-12-05 07:36:16 +00:00
|
|
|
frontend_driver_init_first(args);
|
2015-12-07 13:59:09 +00:00
|
|
|
rarch_ctl(RARCH_CTL_INIT, NULL);
|
2015-03-21 18:31:38 +00:00
|
|
|
|
2015-11-09 00:53:17 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2015-12-06 17:37:57 +00:00
|
|
|
async_jobs = async_job_new();
|
2015-11-09 00:53:17 +00:00
|
|
|
#endif
|
|
|
|
|
2015-12-05 07:36:16 +00:00
|
|
|
if (frontend_driver_is_inited())
|
2014-09-12 02:59:52 +00:00
|
|
|
{
|
2016-02-16 04:34:33 +00:00
|
|
|
content_ctx_info_t info;
|
2016-01-11 06:15:57 +00:00
|
|
|
|
2016-02-16 04:34:33 +00:00
|
|
|
info.argc = argc;
|
|
|
|
info.argv = argv;
|
|
|
|
info.args = args;
|
|
|
|
info.environ_get = frontend_driver_environment_get_ptr();
|
|
|
|
|
2016-05-16 14:38:27 +00:00
|
|
|
if (!rarch_task_push_content_load_default(
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
false,
|
|
|
|
&info,
|
|
|
|
CORE_TYPE_PLAIN,
|
|
|
|
CONTENT_MODE_LOAD_FROM_CLI,
|
|
|
|
NULL,
|
|
|
|
NULL))
|
2016-02-16 04:34:33 +00:00
|
|
|
return 0;
|
2014-09-12 02:59:52 +00:00
|
|
|
}
|
2014-07-27 22:18:05 +00:00
|
|
|
|
2016-05-12 07:37:21 +00:00
|
|
|
runloop_ctl(RUNLOOP_CTL_SYSTEM_INFO_GET, &system);
|
2016-02-15 02:56:10 +00:00
|
|
|
runloop_ctl(RUNLOOP_CTL_GET_CONTENT_PATH, &fullpath);
|
|
|
|
|
2016-05-08 03:17:31 +00:00
|
|
|
if (content_is_inited() || content_does_not_need_content())
|
2014-10-17 02:17:28 +00:00
|
|
|
{
|
2016-02-15 02:56:10 +00: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 03:17:31 +00:00
|
|
|
content_does_not_need_content() || *tmp,
|
2016-02-15 02:56:10 +00:00
|
|
|
*tmp ? tmp : NULL,
|
|
|
|
info);
|
2014-10-17 02:17:28 +00:00
|
|
|
}
|
2014-06-03 01:35:12 +00:00
|
|
|
|
2015-12-05 08:55:13 +00:00
|
|
|
ui_companion_driver_init_first();
|
2015-04-13 00:14:34 +00:00
|
|
|
|
2015-04-20 19:12:39 +00:00
|
|
|
#ifndef HAVE_MAIN
|
2015-11-27 22:39:43 +00:00
|
|
|
do
|
|
|
|
{
|
2015-11-28 02:05:37 +00:00
|
|
|
unsigned sleep_ms = 0;
|
2015-12-07 14:22:36 +00:00
|
|
|
ret = runloop_iterate(&sleep_ms);
|
2015-10-03 16:10:00 +00:00
|
|
|
|
2015-08-27 12:52:02 +00:00
|
|
|
if (ret == 1 && sleep_ms > 0)
|
2015-09-22 16:55:14 +00:00
|
|
|
retro_sleep(sleep_ms);
|
2016-05-16 15:29:02 +00:00
|
|
|
task_queue_ctl(TASK_QUEUE_CTL_CHECK, NULL);
|
2015-05-16 15:00:50 +00:00
|
|
|
}while(ret != -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
|
|
|
|
2015-12-06 17:28:06 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2015-12-06 17:37:57 +00:00
|
|
|
async_job_free(async_jobs);
|
|
|
|
async_jobs = NULL;
|
2015-12-06 17:28:06 +00:00
|
|
|
#endif
|
|
|
|
|
2015-04-20 19:31:25 +00:00
|
|
|
return 0;
|
2013-07-15 11:40:47 +00:00
|
|
|
}
|
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
|