RetroArch/frontend/frontend.c

172 lines
3.9 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
2017-01-22 12:40:32 +00:00
* Copyright (C) 2011-2017 - Daniel De Matteis
2015-01-07 16:46:50 +00:00
* 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/>.
*/
2016-05-17 13:11:56 +00:00
#include <stdint.h>
#include <stddef.h>
2016-09-08 06:13:09 +00:00
#ifdef HAVE_CONFIG_H
#include "../config.h"
#endif
2017-06-28 02:41:38 +00:00
#include <retro_timers.h>
2016-09-08 06:13:09 +00:00
#ifdef HAVE_MENU
#include "../menu/menu_driver.h"
#endif
#include "frontend.h"
2016-09-24 15:17:43 +00:00
#include "../configuration.h"
#include "../ui/ui_companion_driver.h"
#include "../tasks/tasks_internal.h"
2015-11-29 01:02:34 +00:00
2014-09-15 20:47:22 +00:00
#include "../driver.h"
2016-09-17 10:35:29 +00:00
#include "../paths.h"
2015-01-09 16:40:47 +00:00
#include "../retroarch.h"
2016-12-02 15:01:06 +00:00
2018-04-30 18:33:05 +00:00
/* griffin hack */
#ifdef HAVE_QT
#ifndef HAVE_MAIN
#define HAVE_MAIN
#endif
#endif
2016-12-02 15:01:06 +00:00
#ifndef HAVE_MAIN
2017-05-11 07:11:46 +00:00
#include "../retroarch.h"
2016-12-02 15:01:06 +00:00
#endif
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
{
2016-09-24 15:17:43 +00:00
settings_t *settings = config_get_ptr();
2017-04-28 11:43:47 +00:00
if (settings->bools.config_save_on_exit)
2016-09-24 15:17:43 +00:00
command_event(CMD_EVENT_MENU_SAVE_CURRENT_CONFIG, NULL);
#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);
#endif
2016-01-30 04:21:05 +00:00
rarch_ctl(RARCH_CTL_MAIN_DEINIT, NULL);
2016-05-09 18:51:53 +00:00
command_event(CMD_EVENT_PERFCNT_REPORT_FRONTEND_LOG, NULL);
2013-11-03 15:38:56 +00:00
#if defined(HAVE_LOGGER) && !defined(ANDROID)
logger_shutdown();
#endif
frontend_driver_deinit(args);
2016-10-03 14:16:55 +00:00
frontend_driver_exitspawn(
path_get_ptr(RARCH_PATH_CORE),
path_get_realsize(RARCH_PATH_CORE));
2015-12-07 14:03:54 +00:00
rarch_ctl(RARCH_CTL_DESTROY, NULL);
ui_companion_driver_deinit();
frontend_driver_shutdown(false);
2015-12-11 09:43:53 +00:00
driver_ctl(RARCH_DRIVER_CTL_DEINIT, NULL);
ui_companion_driver_free();
frontend_driver_free();
}
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-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)
{
2015-04-20 19:31:25 +00:00
void *args = (void*)data;
2018-05-03 17:35:27 +00:00
#if defined(HAVE_MAIN) && defined(HAVE_QT)
2018-04-30 18:33:05 +00:00
const ui_application_t *ui_application = NULL;
#endif
2015-12-07 14:01:53 +00:00
rarch_ctl(RARCH_CTL_PREINIT, NULL);
frontend_driver_init_first(args);
rarch_ctl(RARCH_CTL_INIT, NULL);
if (frontend_driver_is_inited())
{
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();
2017-02-21 15:59:48 +00:00
if (!task_push_load_content_from_cli(
NULL,
NULL,
&info,
CORE_TYPE_PLAIN,
NULL,
NULL))
return 1;
}
ui_companion_driver_init_first();
2018-05-03 17:35:27 +00:00
#if !defined(HAVE_MAIN)
2015-11-27 22:39:43 +00:00
do
{
unsigned sleep_ms = 0;
int ret = runloop_iterate(&sleep_ms);
2015-10-03 16:10:00 +00:00
if (ret == 1 && sleep_ms > 0)
2015-09-22 16:55:14 +00:00
retro_sleep(sleep_ms);
2017-05-14 18:43:39 +00:00
task_queue_check();
2016-09-30 06:15:21 +00:00
if (ret == -1)
break;
}while(1);
main_exit(args);
2018-05-03 17:35:27 +00:00
#elif defined(HAVE_QT)
2018-04-30 18:33:05 +00:00
ui_application = ui_companion_driver_get_qt_application_ptr();
if (ui_application && ui_application->run)
ui_application->run(args);
#endif
2015-04-20 19:31:25 +00:00
return 0;
}
2015-04-20 19:10:01 +00:00
#ifndef HAVE_MAIN
2018-02-04 20:13:41 +00:00
#ifdef __cplusplus
extern "C"
#endif
2015-04-20 19:10:01 +00:00
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