2013-07-17 20:26:01 -04:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 01:50:59 +01:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2015-01-07 17:46:50 +01:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
|
|
|
* Copyright (C) 2012-2015 - Michael Lelli
|
2013-07-17 20:26:01 -04: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 01:47:10 +01:00
|
|
|
#include "../../general.h"
|
2014-10-23 03:54:18 +02:00
|
|
|
#include <file/config_file.h>
|
2014-10-22 23:39:36 -02:00
|
|
|
#include "../../content.h"
|
2014-01-27 01:47:10 +01:00
|
|
|
#include "../frontend.h"
|
2013-07-17 20:26:01 -04:00
|
|
|
|
2013-12-28 21:08:30 +01:00
|
|
|
static void emscripten_mainloop(void)
|
2013-08-18 02:50:10 -04:00
|
|
|
{
|
2015-01-11 17:48:21 +01:00
|
|
|
if (rarch_main_iterate() != -1)
|
2015-01-11 06:57:35 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
main_exit(NULL);
|
|
|
|
exit(0);
|
2013-08-18 02:50:10 -04:00
|
|
|
}
|
|
|
|
|
2014-06-18 20:31:41 -04:00
|
|
|
int main(int argc, char *argv[])
|
2013-07-17 20:26:01 -04:00
|
|
|
{
|
2015-03-20 22:22:06 +01:00
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
|
2013-07-17 20:26:01 -04:00
|
|
|
emscripten_set_canvas_size(800, 600);
|
2014-07-22 05:07:40 +02:00
|
|
|
rarch_main(argc, argv);
|
2014-09-02 17:42:44 +02:00
|
|
|
emscripten_set_main_loop(emscripten_mainloop,
|
2015-03-20 22:22:06 +01:00
|
|
|
settings->video.vsync ? 0 : INT_MAX, 1);
|
2013-07-17 20:26:01 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|