2013-02-25 07:29:09 +01: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 <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <bps/bps.h>
|
2013-02-27 08:05:36 +01:00
|
|
|
|
|
|
|
int rarch_main(int argc, char *argv[])
|
2013-02-25 07:29:09 +01:00
|
|
|
{
|
2013-02-27 08:05:36 +01:00
|
|
|
//Initialize bps
|
|
|
|
bps_initialize();
|
2013-02-25 07:29:09 +01:00
|
|
|
|
2013-02-25 17:34:19 +01:00
|
|
|
rarch_main_clear_state();
|
|
|
|
|
2013-03-24 01:00:00 +01:00
|
|
|
config_load();
|
|
|
|
global_init_drivers();
|
|
|
|
|
2013-02-25 17:34:19 +01:00
|
|
|
g_extern.verbose = true;
|
|
|
|
|
2013-03-23 12:21:30 -04:00
|
|
|
menu_init();
|
2013-03-24 01:00:00 +01:00
|
|
|
g_extern.lifecycle_mode_state |= 1ULL << MODE_MENU;
|
2013-03-23 12:21:30 -04:00
|
|
|
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
if (g_extern.lifecycle_mode_state & (1ULL << MODE_GAME))
|
|
|
|
{
|
|
|
|
while ((g_extern.is_paused && !g_extern.is_oneshot) ? rarch_main_idle_iterate() : rarch_main_iterate());
|
|
|
|
g_extern.lifecycle_mode_state &= ~(1ULL << MODE_GAME);
|
|
|
|
}
|
|
|
|
else if (g_extern.lifecycle_mode_state & (1ULL << MODE_INIT))
|
|
|
|
{
|
|
|
|
if (g_extern.main_is_init)
|
|
|
|
rarch_main_deinit();
|
|
|
|
|
|
|
|
struct rarch_main_wrap args = {0};
|
|
|
|
|
2013-03-24 01:00:00 +01:00
|
|
|
args.verbose = g_extern.verbose;
|
|
|
|
args.sram_path = (g_extern.lifecycle_mode_state & (1ULL << MODE_LOAD_GAME_SRAM_DIR_ENABLE)) ? g_extern.console.main_wrap.default_sram_dir : NULL;
|
|
|
|
args.state_path = (g_extern.lifecycle_mode_state & (1ULL << MODE_LOAD_GAME_STATE_DIR_ENABLE)) ? g_extern.console.main_wrap.default_savestate_dir : NULL;
|
|
|
|
args.rom_path = g_extern.fullpath;
|
|
|
|
args.libretro_path = g_settings.libretro;
|
|
|
|
|
|
|
|
if (path_file_exists(g_extern.config_path))
|
|
|
|
args.config_path = g_extern.config_path;
|
|
|
|
else
|
|
|
|
args.config_path = NULL;
|
2013-03-23 12:21:30 -04:00
|
|
|
|
|
|
|
int init_ret = rarch_main_init_wrap(&args);
|
|
|
|
if (init_ret == 0)
|
|
|
|
{
|
|
|
|
RARCH_LOG("rarch_main_init() succeeded.\n");
|
|
|
|
g_extern.lifecycle_mode_state |= (1ULL << MODE_GAME);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
RARCH_ERR("rarch_main_init() failed.\n");
|
|
|
|
g_extern.lifecycle_mode_state |= (1ULL << MODE_MENU);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_extern.lifecycle_mode_state &= ~(1ULL << MODE_INIT);
|
|
|
|
}
|
|
|
|
else if (g_extern.lifecycle_mode_state & (1ULL << MODE_MENU))
|
|
|
|
{
|
|
|
|
g_extern.lifecycle_mode_state |= 1ULL << MODE_MENU_PREINIT;
|
|
|
|
while (menu_iterate());
|
|
|
|
g_extern.lifecycle_mode_state &= ~(1ULL << MODE_MENU);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
menu_free();
|
|
|
|
if (g_extern.main_is_init)
|
|
|
|
rarch_main_deinit();
|
2013-03-22 17:01:59 +01:00
|
|
|
|
2013-02-25 07:29:09 +01:00
|
|
|
rarch_deinit_msg_queue();
|
|
|
|
|
|
|
|
#ifdef PERF_TEST
|
|
|
|
rarch_perf_log();
|
|
|
|
#endif
|
|
|
|
|
2013-02-27 08:05:36 +01:00
|
|
|
error:
|
|
|
|
bps_shutdown();
|
|
|
|
|
2013-02-25 07:29:09 +01:00
|
|
|
return 0;
|
|
|
|
}
|