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
|
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
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2016-05-17 13:11:56 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stddef.h>
|
2015-12-06 17:37:57 +00:00
|
|
|
|
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
|
|
|
|
|
2015-09-06 12:46:04 +00:00
|
|
|
#include "frontend.h"
|
2019-01-20 02:16:58 +00:00
|
|
|
#include "frontend_driver.h"
|
2016-09-24 15:17:43 +00:00
|
|
|
#include "../configuration.h"
|
2015-12-05 09:04:06 +00:00
|
|
|
#include "../ui/ui_companion_driver.h"
|
2019-01-20 02:16:58 +00:00
|
|
|
#include "../tasks/task_content.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"
|
2019-01-12 08:41:04 +00:00
|
|
|
#include "../verbosity.h"
|
|
|
|
|
|
|
|
#if defined(_WIN32) && !defined(_XBOX) && !defined(__WINRT__)
|
|
|
|
#include <objbase.h>
|
|
|
|
#endif
|
2016-12-02 15:01:06 +00:00
|
|
|
|
2019-06-17 14:23:46 +00:00
|
|
|
/* Griffin hack */
|
2018-04-30 18:33:05 +00:00
|
|
|
#ifdef HAVE_QT
|
|
|
|
#ifndef HAVE_MAIN
|
|
|
|
#define HAVE_MAIN
|
|
|
|
#endif
|
|
|
|
#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
|
|
|
{
|
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);
|
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-10-03 14:16:55 +00:00
|
|
|
frontend_driver_exitspawn(
|
|
|
|
path_get_ptr(RARCH_PATH_CORE),
|
|
|
|
path_get_realsize(RARCH_PATH_CORE));
|
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();
|
2019-01-12 08:41:04 +00:00
|
|
|
|
|
|
|
#if defined(_WIN32) && !defined(_XBOX) && !defined(__WINRT__)
|
|
|
|
CoUninitialize();
|
|
|
|
#endif
|
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
|
|
|
{
|
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-04-20 18:53:17 +00:00
|
|
|
|
2019-01-12 08:41:04 +00:00
|
|
|
#if defined(_WIN32) && !defined(_XBOX) && !defined(__WINRT__)
|
2019-01-10 15:48:02 +00:00
|
|
|
if (FAILED(CoInitialize(NULL)))
|
|
|
|
{
|
|
|
|
RARCH_ERR("FATAL: Failed to initialize the COM interface\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-12-07 14:01:53 +00:00
|
|
|
rarch_ctl(RARCH_CTL_PREINIT, NULL);
|
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);
|
2017-12-12 07:55:31 +00:00
|
|
|
|
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();
|
|
|
|
|
2017-02-21 15:59:48 +00:00
|
|
|
if (!task_push_load_content_from_cli(
|
2016-05-16 14:38:27 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
&info,
|
|
|
|
CORE_TYPE_PLAIN,
|
|
|
|
NULL,
|
|
|
|
NULL))
|
2016-12-18 00:54:31 +00:00
|
|
|
return 1;
|
2014-09-12 02:59:52 +00:00
|
|
|
}
|
2014-07-27 22:18:05 +00:00
|
|
|
|
2015-12-05 08:55:13 +00:00
|
|
|
ui_companion_driver_init_first();
|
2015-04-13 00:14:34 +00:00
|
|
|
|
2018-05-03 17:35:27 +00:00
|
|
|
#if !defined(HAVE_MAIN)
|
2015-11-27 22:39:43 +00:00
|
|
|
do
|
|
|
|
{
|
2015-11-28 02:05:37 +00:00
|
|
|
unsigned sleep_ms = 0;
|
2018-07-05 00:42:16 +00:00
|
|
|
int 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);
|
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);
|
2013-12-28 20:08:30 +00:00
|
|
|
|
|
|
|
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);
|
2014-07-21 05:41:11 +00:00
|
|
|
#endif
|
2013-07-15 11:40:47 +00:00
|
|
|
|
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
|
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
|