2013-02-25 06:01:16 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
|
|
|
|
* Copyright (C) 2011-2013 - Daniel De Matteis
|
|
|
|
*
|
|
|
|
* 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 "../general.h"
|
2013-03-20 00:17:10 +00:00
|
|
|
#include "../conf/config_file.h"
|
2013-03-17 11:27:33 +00:00
|
|
|
#include "../file.h"
|
2013-02-25 06:01:16 +00:00
|
|
|
|
2013-07-26 18:58:47 +00:00
|
|
|
#include "frontend_context.h"
|
|
|
|
frontend_ctx_driver_t *frontend_ctx;
|
|
|
|
|
2013-04-28 13:23:57 +00:00
|
|
|
#if defined(HAVE_RGUI) || defined(HAVE_RMENU) || defined(HAVE_RMENU_XUI)
|
|
|
|
#define HAVE_MENU
|
2013-09-15 16:49:18 +00:00
|
|
|
#include "menu/menu_common.h"
|
2013-04-28 13:23:57 +00:00
|
|
|
#else
|
|
|
|
#undef HAVE_MENU
|
|
|
|
#endif
|
|
|
|
|
2013-07-15 12:54:40 +00:00
|
|
|
#include "../file_ext.h"
|
2013-07-15 12:19:29 +00:00
|
|
|
|
|
|
|
#ifdef RARCH_CONSOLE
|
|
|
|
#include "../config.def.h"
|
|
|
|
|
|
|
|
default_paths_t default_paths;
|
|
|
|
|
|
|
|
// Rename core filename executable to a more sane name.
|
|
|
|
static bool libretro_install_core(const char *path_prefix,
|
|
|
|
const char *core_exe_path)
|
|
|
|
{
|
|
|
|
char old_path[PATH_MAX], new_path[PATH_MAX];
|
|
|
|
|
|
|
|
libretro_get_current_core_pathname(old_path, sizeof(old_path));
|
|
|
|
|
|
|
|
strlcat(old_path, DEFAULT_EXE_EXT, sizeof(old_path));
|
|
|
|
snprintf(new_path, sizeof(new_path), "%s%s", path_prefix, old_path);
|
|
|
|
|
|
|
|
/* If core already exists, we are upgrading the core -
|
|
|
|
* delete existing file first. */
|
|
|
|
if (path_file_exists(new_path))
|
|
|
|
{
|
|
|
|
RARCH_LOG("Removing temporary ROM file: %s.\n", new_path);
|
|
|
|
if (remove(new_path) < 0)
|
|
|
|
RARCH_ERR("Failed to remove file: %s.\n", new_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now attempt the renaming of the core. */
|
|
|
|
if (rename(core_exe_path, new_path) < 0)
|
|
|
|
return false;
|
2013-09-21 11:29:33 +00:00
|
|
|
|
|
|
|
RARCH_LOG("Renamed core successfully to: %s.\n", new_path);
|
2013-07-15 12:19:29 +00:00
|
|
|
|
2013-08-25 09:07:06 +00:00
|
|
|
rarch_environment_cb(RETRO_ENVIRONMENT_SET_LIBRETRO_PATH, (void*)new_path);
|
2013-07-15 12:19:29 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-07-27 15:16:46 +00:00
|
|
|
void rarch_make_dir(const char *x, const char *name)
|
|
|
|
{
|
|
|
|
RARCH_LOG("Checking directory name %s [%s]\n", name, x);
|
|
|
|
if (strlen(x) > 0)
|
|
|
|
{
|
|
|
|
if (!path_is_directory(x))
|
|
|
|
{
|
|
|
|
RARCH_WARN("Directory \"%s\" does not exists, creating\n", x);
|
|
|
|
if (mkdir((x), 0777) != 0)
|
|
|
|
RARCH_ERR("Could not create directory \"%s\"\n", x);
|
|
|
|
}
|
|
|
|
}
|
2013-07-15 12:19:29 +00:00
|
|
|
}
|
|
|
|
|
2013-08-10 18:59:10 +00:00
|
|
|
void rarch_get_environment_console(void)
|
|
|
|
{
|
2013-07-15 12:19:29 +00:00
|
|
|
init_libretro_sym(false);
|
|
|
|
rarch_init_system_info();
|
|
|
|
|
|
|
|
global_init_drivers();
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBRETRO_MANAGEMENT
|
|
|
|
char path_prefix[PATH_MAX];
|
|
|
|
#if defined(_WIN32)
|
|
|
|
char slash = '\\';
|
|
|
|
#else
|
|
|
|
char slash = '/';
|
|
|
|
#endif
|
|
|
|
|
|
|
|
snprintf(path_prefix, sizeof(path_prefix), "%s%c", default_paths.core_dir, slash);
|
|
|
|
|
|
|
|
char core_exe_path[256];
|
|
|
|
snprintf(core_exe_path, sizeof(core_exe_path), "%sCORE%s", path_prefix, DEFAULT_EXE_EXT);
|
|
|
|
|
|
|
|
// Save new libretro core path to config file and exit
|
|
|
|
if (path_file_exists(core_exe_path))
|
|
|
|
if (libretro_install_core(path_prefix, core_exe_path))
|
2013-09-21 11:29:33 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("Failed to rename core.\n");
|
2013-07-15 12:19:29 +00:00
|
|
|
#ifdef _XBOX
|
2013-09-21 11:29:33 +00:00
|
|
|
g_extern.system.shutdown = g_extern.system.shutdown;
|
2013-07-15 12:19:29 +00:00
|
|
|
#else
|
2013-09-21 11:29:33 +00:00
|
|
|
g_extern.system.shutdown = true;
|
2013-07-15 12:19:29 +00:00
|
|
|
#endif
|
2013-09-21 11:29:33 +00:00
|
|
|
}
|
2013-07-15 12:19:29 +00:00
|
|
|
#endif
|
2013-07-15 11:40:47 +00:00
|
|
|
}
|
2013-08-10 18:59:10 +00:00
|
|
|
#endif
|
2013-07-15 11:40:47 +00:00
|
|
|
|
2013-08-14 04:48:58 +00:00
|
|
|
#if defined(IOS) || defined(OSX) || defined(HAVE_BB10)
|
2013-08-14 12:10:49 +00:00
|
|
|
#define main_entry rarch_main
|
2013-07-16 11:06:13 +00:00
|
|
|
#else
|
2013-08-14 12:10:49 +00:00
|
|
|
#define main_entry main
|
2013-08-14 04:48:58 +00:00
|
|
|
#endif
|
2013-08-14 12:10:49 +00:00
|
|
|
|
|
|
|
int main_entry(int argc, char *argv[])
|
2013-07-15 11:40:47 +00:00
|
|
|
{
|
2013-08-10 19:31:11 +00:00
|
|
|
void* args = NULL;
|
2013-07-27 15:30:05 +00:00
|
|
|
frontend_ctx = (frontend_ctx_driver_t*)frontend_ctx_init_first();
|
2013-07-26 18:58:47 +00:00
|
|
|
|
2013-07-27 14:36:55 +00:00
|
|
|
if (frontend_ctx && frontend_ctx->init)
|
|
|
|
frontend_ctx->init();
|
2013-03-17 11:27:33 +00:00
|
|
|
|
2013-08-10 02:47:09 +00:00
|
|
|
#ifndef HAVE_BB10
|
2013-04-27 10:32:03 +00:00
|
|
|
rarch_main_clear_state();
|
2013-08-10 02:47:09 +00:00
|
|
|
#endif
|
|
|
|
|
2013-08-10 18:59:10 +00:00
|
|
|
if (frontend_ctx && frontend_ctx->environment_get)
|
2013-08-10 19:31:11 +00:00
|
|
|
frontend_ctx->environment_get(argc, argv, args);
|
2013-07-15 18:49:36 +00:00
|
|
|
|
2013-08-10 02:47:09 +00:00
|
|
|
#if !defined(RARCH_CONSOLE) && !defined(HAVE_BB10)
|
2013-03-16 09:35:22 +00:00
|
|
|
rarch_init_msg_queue();
|
2013-02-25 06:01:16 +00:00
|
|
|
int init_ret;
|
|
|
|
if ((init_ret = rarch_main_init(argc, argv))) return init_ret;
|
2013-07-16 10:15:28 +00:00
|
|
|
#endif
|
2013-03-16 09:35:22 +00:00
|
|
|
|
2013-08-10 02:47:09 +00:00
|
|
|
#if defined(HAVE_MENU) || defined(HAVE_BB10)
|
2013-03-16 09:35:22 +00:00
|
|
|
menu_init();
|
2013-07-15 18:49:36 +00:00
|
|
|
|
2013-07-27 14:36:55 +00:00
|
|
|
if (frontend_ctx && frontend_ctx->process_args)
|
2013-08-10 19:31:11 +00:00
|
|
|
frontend_ctx->process_args(argc, argv, args);
|
2013-07-27 14:36:55 +00:00
|
|
|
|
2013-08-10 02:47:09 +00:00
|
|
|
#if defined(RARCH_CONSOLE) || defined(HAVE_BB10)
|
2013-07-16 10:15:28 +00:00
|
|
|
g_extern.lifecycle_mode_state |= 1ULL << MODE_LOAD_GAME;
|
|
|
|
#else
|
2013-03-16 09:35:22 +00:00
|
|
|
g_extern.lifecycle_mode_state |= 1ULL << MODE_GAME;
|
2013-07-16 10:15:28 +00:00
|
|
|
#endif
|
2013-03-16 09:35:22 +00:00
|
|
|
|
2013-08-10 02:47:09 +00:00
|
|
|
#if !defined(RARCH_CONSOLE) && !defined(HAVE_BB10)
|
2013-05-17 16:22:03 +00:00
|
|
|
// If we started a ROM directly from command line,
|
|
|
|
// push it to ROM history.
|
|
|
|
if (!g_extern.libretro_dummy)
|
2013-05-17 16:33:16 +00:00
|
|
|
menu_rom_history_push_current();
|
2013-07-15 18:49:36 +00:00
|
|
|
#endif
|
2013-05-17 16:22:03 +00:00
|
|
|
|
2013-03-16 09:35:22 +00:00
|
|
|
for (;;)
|
|
|
|
{
|
2013-04-28 13:00:37 +00:00
|
|
|
if (g_extern.system.shutdown)
|
|
|
|
break;
|
|
|
|
else if (g_extern.lifecycle_mode_state & (1ULL << MODE_LOAD_GAME))
|
|
|
|
{
|
2013-04-28 13:23:57 +00:00
|
|
|
load_menu_game_prepare();
|
2013-04-28 13:00:37 +00:00
|
|
|
|
2013-04-28 13:23:57 +00:00
|
|
|
// If ROM load fails, we exit RetroArch. On console it might make more sense to go back to menu though ...
|
2013-04-28 14:38:13 +00:00
|
|
|
if (load_menu_game())
|
|
|
|
g_extern.lifecycle_mode_state |= (1ULL << MODE_GAME);
|
|
|
|
else
|
|
|
|
{
|
2013-07-15 11:40:47 +00:00
|
|
|
#if defined(RARCH_CONSOLE) || defined(__QNX__)
|
2013-04-28 14:38:13 +00:00
|
|
|
g_extern.lifecycle_mode_state |= (1ULL << MODE_MENU);
|
|
|
|
#else
|
2013-07-27 15:40:21 +00:00
|
|
|
if (frontend_ctx && frontend_ctx->shutdown)
|
|
|
|
frontend_ctx->shutdown(true);
|
|
|
|
|
2013-04-28 13:23:57 +00:00
|
|
|
return 1;
|
2013-04-28 14:38:13 +00:00
|
|
|
#endif
|
|
|
|
}
|
2013-04-28 13:00:37 +00:00
|
|
|
|
|
|
|
g_extern.lifecycle_mode_state &= ~(1ULL << MODE_LOAD_GAME);
|
|
|
|
}
|
|
|
|
else if (g_extern.lifecycle_mode_state & (1ULL << MODE_GAME))
|
2013-03-16 09:35:22 +00:00
|
|
|
{
|
2013-07-15 12:19:29 +00:00
|
|
|
#ifdef RARCH_CONSOLE
|
|
|
|
driver.input->poll(NULL);
|
2013-07-27 14:36:55 +00:00
|
|
|
#endif
|
2013-07-15 12:19:29 +00:00
|
|
|
if (driver.video_poke->set_aspect_ratio)
|
|
|
|
driver.video_poke->set_aspect_ratio(driver.video_data, g_settings.video.aspect_ratio_idx);
|
|
|
|
|
2013-07-16 11:06:13 +00:00
|
|
|
while ((g_extern.is_paused && !g_extern.is_oneshot) ? rarch_main_idle_iterate() : rarch_main_iterate())
|
|
|
|
{
|
2013-07-27 15:40:21 +00:00
|
|
|
if (frontend_ctx && frontend_ctx->process_events)
|
|
|
|
frontend_ctx->process_events();
|
2013-07-16 11:06:13 +00:00
|
|
|
|
|
|
|
if (!(g_extern.lifecycle_mode_state & (1ULL << MODE_GAME)))
|
|
|
|
break;
|
|
|
|
}
|
2013-03-16 09:35:22 +00:00
|
|
|
g_extern.lifecycle_mode_state &= ~(1ULL << MODE_GAME);
|
|
|
|
}
|
|
|
|
else if (g_extern.lifecycle_mode_state & (1ULL << MODE_MENU))
|
|
|
|
{
|
|
|
|
g_extern.lifecycle_mode_state |= 1ULL << MODE_MENU_PREINIT;
|
2013-04-13 22:53:05 +00:00
|
|
|
// Menu should always run with vsync on.
|
|
|
|
video_set_nonblock_state_func(false);
|
2013-09-26 12:23:55 +00:00
|
|
|
// Stop all rumbling when entering RGUI.
|
|
|
|
for (unsigned i = 0; i < MAX_PLAYERS; i++)
|
|
|
|
{
|
|
|
|
driver_set_rumble_state(i, RETRO_RUMBLE_STRONG, 0);
|
|
|
|
driver_set_rumble_state(i, RETRO_RUMBLE_WEAK, 0);
|
|
|
|
}
|
2013-06-02 21:10:03 +00:00
|
|
|
|
|
|
|
if (driver.audio_data)
|
|
|
|
audio_stop_func();
|
|
|
|
|
2013-07-16 11:06:13 +00:00
|
|
|
while (!g_extern.system.shutdown && menu_iterate())
|
|
|
|
{
|
2013-07-27 15:40:21 +00:00
|
|
|
if (frontend_ctx && frontend_ctx->process_events)
|
|
|
|
frontend_ctx->process_events();
|
2013-07-16 11:06:13 +00:00
|
|
|
|
|
|
|
if (!(g_extern.lifecycle_mode_state & (1ULL << MODE_MENU)))
|
|
|
|
break;
|
|
|
|
}
|
2013-06-02 21:10:03 +00:00
|
|
|
|
2013-04-13 22:53:05 +00:00
|
|
|
driver_set_nonblock_state(driver.nonblock_state);
|
2013-06-02 21:10:03 +00:00
|
|
|
|
2013-08-04 12:57:31 +00:00
|
|
|
if (driver.audio_data && !g_extern.audio_data.mute && !audio_start_func())
|
2013-06-02 21:10:03 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("Failed to resume audio driver. Will continue without audio.\n");
|
|
|
|
g_extern.audio_active = false;
|
|
|
|
}
|
|
|
|
|
2013-03-16 09:35:22 +00:00
|
|
|
g_extern.lifecycle_mode_state &= ~(1ULL << MODE_MENU);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-07-15 11:40:47 +00:00
|
|
|
g_extern.system.shutdown = false;
|
2013-03-16 09:35:22 +00:00
|
|
|
menu_free();
|
2013-05-22 13:35:28 +00:00
|
|
|
|
2013-05-22 17:49:51 +00:00
|
|
|
if (g_extern.config_save_on_exit && *g_extern.config_path)
|
2013-05-22 17:44:00 +00:00
|
|
|
config_save_file(g_extern.config_path);
|
2013-05-22 13:35:28 +00:00
|
|
|
|
2013-07-15 12:19:29 +00:00
|
|
|
#ifdef RARCH_CONSOLE
|
|
|
|
global_uninit_drivers();
|
|
|
|
#endif
|
2013-03-16 09:35:22 +00:00
|
|
|
#else
|
2013-02-25 06:01:16 +00:00
|
|
|
while ((g_extern.is_paused && !g_extern.is_oneshot) ? rarch_main_idle_iterate() : rarch_main_iterate());
|
2013-03-16 09:35:22 +00:00
|
|
|
#endif
|
2013-07-15 11:40:47 +00:00
|
|
|
|
2013-07-28 18:57:49 +00:00
|
|
|
rarch_main_deinit();
|
2013-02-25 06:01:16 +00:00
|
|
|
rarch_deinit_msg_queue();
|
|
|
|
|
|
|
|
#ifdef PERF_TEST
|
|
|
|
rarch_perf_log();
|
|
|
|
#endif
|
|
|
|
|
2013-07-15 12:19:29 +00:00
|
|
|
#if defined(HAVE_LOGGER)
|
|
|
|
logger_shutdown();
|
|
|
|
#elif defined(HAVE_FILE_LOGGER)
|
|
|
|
if (g_extern.log_file)
|
|
|
|
fclose(g_extern.log_file);
|
|
|
|
g_extern.log_file = NULL;
|
|
|
|
#endif
|
2013-07-27 14:36:55 +00:00
|
|
|
|
|
|
|
if (frontend_ctx && frontend_ctx->deinit)
|
2013-07-27 10:59:23 +00:00
|
|
|
frontend_ctx->deinit();
|
2013-07-15 12:19:29 +00:00
|
|
|
|
2013-07-27 14:36:55 +00:00
|
|
|
if (g_extern.lifecycle_mode_state & (1ULL << MODE_EXITSPAWN) && frontend_ctx
|
|
|
|
&& frontend_ctx->exitspawn)
|
2013-07-26 18:58:47 +00:00
|
|
|
frontend_ctx->exitspawn();
|
2013-07-15 12:19:29 +00:00
|
|
|
|
2013-02-25 06:01:16 +00:00
|
|
|
rarch_main_clear_state();
|
2013-07-15 11:40:47 +00:00
|
|
|
|
2013-07-27 15:30:05 +00:00
|
|
|
if (frontend_ctx && frontend_ctx->shutdown)
|
2013-07-27 15:40:21 +00:00
|
|
|
frontend_ctx->shutdown(false);
|
2013-07-15 11:40:47 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|