2013-07-18 00:26:01 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 00:50:59 +00:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
|
|
* Copyright (C) 2011-2014 - Daniel De Matteis
|
|
|
|
* Copyright (C) 2012-2014 - Michael Lelli
|
2013-07-18 00:26:01 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <emscripten/emscripten.h>
|
2014-01-27 00:47:10 +00:00
|
|
|
#include "../../general.h"
|
|
|
|
#include "../../conf/config_file.h"
|
|
|
|
#include "../../file.h"
|
|
|
|
#include "../frontend.h"
|
2013-07-18 00:26:01 +00:00
|
|
|
|
2013-11-13 00:48:36 +00:00
|
|
|
#ifdef HAVE_MENU
|
2014-01-27 00:47:10 +00:00
|
|
|
#include "../../frontend/menu/menu_common.h"
|
2013-07-18 00:26:01 +00:00
|
|
|
#endif
|
|
|
|
|
2013-12-28 20:08:30 +00:00
|
|
|
static void emscripten_mainloop(void)
|
2013-08-18 06:50:10 +00:00
|
|
|
{
|
2013-12-28 20:08:30 +00:00
|
|
|
if (!main_entry_iterate(0, NULL, NULL))
|
|
|
|
return;
|
2013-08-18 06:50:10 +00:00
|
|
|
|
2013-12-28 20:08:30 +00:00
|
|
|
main_exit(NULL);
|
2013-08-18 06:50:10 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2014-06-19 00:31:41 +00:00
|
|
|
int main(int argc, char *argv[])
|
2013-07-18 00:26:01 +00:00
|
|
|
{
|
|
|
|
emscripten_set_canvas_size(800, 600);
|
|
|
|
|
|
|
|
rarch_main_clear_state();
|
|
|
|
rarch_init_msg_queue();
|
|
|
|
|
|
|
|
int init_ret;
|
2014-06-19 00:31:41 +00:00
|
|
|
if ((init_ret = rarch_main_init(argc, argv))) return init_ret;
|
2013-07-18 00:26:01 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_MENU
|
2013-11-07 20:44:44 +00:00
|
|
|
g_extern.lifecycle_state |= 1ULL << MODE_GAME;
|
2013-07-18 00:26:01 +00:00
|
|
|
|
|
|
|
// If we started a ROM directly from command line,
|
|
|
|
// push it to ROM history.
|
|
|
|
if (!g_extern.libretro_dummy)
|
2014-05-30 17:33:10 +00:00
|
|
|
menu_rom_history_push_current();
|
2013-07-18 00:26:01 +00:00
|
|
|
#endif
|
|
|
|
|
2013-12-28 20:08:30 +00:00
|
|
|
emscripten_set_main_loop(emscripten_mainloop, g_settings.video.vsync ? 0 : INT_MAX, 1);
|
2013-07-18 00:26:01 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|