RetroArch/frontend/drivers/platform_emscripten.c

172 lines
6.0 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
2014-01-01 01:50:59 +01:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2016-01-10 04:06:50 +01:00
* Copyright (C) 2011-2016 - Daniel De Matteis
2015-01-07 17:46:50 +01:00
* Copyright (C) 2012-2015 - Michael Lelli
*
* 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>
2015-09-15 04:49:10 +02:00
2014-10-23 03:54:18 +02:00
#include <file/config_file.h>
2016-05-16 17:29:02 +02:00
#include <queues/task_queue.h>
2015-09-15 04:49:10 +02:00
2016-03-22 03:13:33 +01:00
#include "../../defaults.h"
2015-09-15 04:49:10 +02:00
#include "../../general.h"
#include "../../content.h"
2015-04-14 22:01:41 +02:00
#include "../frontend.h"
2015-08-20 00:25:12 +02:00
#include "../../retroarch.h"
#include "../../runloop.h"
2015-04-07 22:21:08 +02:00
#include "../frontend_driver.h"
2016-05-09 20:30:47 +02:00
#include "../../command.h"
2016-08-28 22:54:00 -05:00
#include <file/file_path.h>
#ifndef IS_SALAMANDER
#include <lists/file_list.h>
#endif
2016-08-28 22:56:11 -05:00
#include <retro_stat.h>
2016-08-28 22:54:00 -05:00
static void emscripten_mainloop(void)
{
unsigned sleep_ms = 0;
int ret = runloop_iterate(&sleep_ms);
if (ret == 1 && sleep_ms > 0)
2015-09-22 18:55:14 +02:00
retro_sleep(sleep_ms);
2016-05-16 17:29:02 +02:00
task_queue_ctl(TASK_QUEUE_CTL_CHECK, NULL);
if (ret != -1)
2015-01-11 06:57:35 +01:00
return;
main_exit(NULL);
exit(0);
}
void cmd_savefiles(void)
{
2016-05-09 20:51:53 +02:00
command_event(CMD_EVENT_SAVEFILES, NULL);
}
void cmd_save_state(void)
{
2016-05-09 20:51:53 +02:00
command_event(CMD_EVENT_SAVE_STATE, NULL);
}
void cmd_load_state(void)
{
2016-05-09 20:51:53 +02:00
command_event(CMD_EVENT_LOAD_STATE, NULL);
}
void cmd_take_screenshot(void)
{
2016-05-09 20:51:53 +02:00
command_event(CMD_EVENT_TAKE_SCREENSHOT, NULL);
}
2016-08-28 22:50:56 -05:00
static void frontend_emscripten_get_env(int *argc, char *argv[],
void *args, void *params_data)
{
(void)args;
char base_path[PATH_MAX] = {0};
const char *xdg = getenv("XDG_CONFIG_HOME");
const char *home = getenv("HOME");
if (xdg)
snprintf(base_path, sizeof(base_path),
"%s/retroarch", xdg);
else if (home)
snprintf(base_path, sizeof(base_path),
2016-08-28 23:11:57 -05:00
"%s/.config/retroarch", home);
2016-08-28 22:50:56 -05:00
else
snprintf(base_path, sizeof(base_path), "retroarch");
fill_pathname_join(g_defaults.dir.core, base_path,
"cores", sizeof(g_defaults.dir.core));
fill_pathname_join(g_defaults.dir.core_info, base_path,
"cores", sizeof(g_defaults.dir.core_info));
fill_pathname_join(g_defaults.dir.autoconfig, base_path,
"autoconfig", sizeof(g_defaults.dir.autoconfig));
fill_pathname_join(g_defaults.dir.menu_config, base_path,
"config", sizeof(g_defaults.dir.menu_config));
fill_pathname_join(g_defaults.dir.remap, g_defaults.dir.menu_config,
"remaps", sizeof(g_defaults.dir.remap));
fill_pathname_join(g_defaults.dir.playlist, base_path,
"playlists", sizeof(g_defaults.dir.playlist));
fill_pathname_join(g_defaults.dir.cursor, base_path,
"database/cursors", sizeof(g_defaults.dir.cursor));
fill_pathname_join(g_defaults.dir.database, base_path,
"database/rdb", sizeof(g_defaults.dir.database));
fill_pathname_join(g_defaults.dir.shader, base_path,
"shaders", sizeof(g_defaults.dir.shader));
fill_pathname_join(g_defaults.dir.cheats, base_path,
"cheats", sizeof(g_defaults.dir.cheats));
fill_pathname_join(g_defaults.dir.overlay, base_path,
"overlay", sizeof(g_defaults.dir.overlay));
fill_pathname_join(g_defaults.dir.osk_overlay, base_path,
"overlay", sizeof(g_defaults.dir.osk_overlay));
fill_pathname_join(g_defaults.dir.core_assets, base_path,
"downloads", sizeof(g_defaults.dir.core_assets));
fill_pathname_join(g_defaults.dir.screenshot, base_path,
"screenshots", sizeof(g_defaults.dir.screenshot));
fill_pathname_join(g_defaults.dir.thumbnails, base_path,
"thumbnails", sizeof(g_defaults.dir.thumbnails));
2016-08-28 23:49:49 -05:00
fill_pathname_join(g_defaults.dir.sram, base_path,
"saves", sizeof(g_defaults.dir.sram));
fill_pathname_join(g_defaults.dir.savestate, base_path,
"states", sizeof(g_defaults.dir.savestate));
/* don't use XDG for these, we don't want these to Sync to cloud storage*/
2016-08-28 23:24:04 -05:00
fill_pathname_join(g_defaults.dir.menu_content, "/",
2016-08-28 23:21:29 -05:00
"content", sizeof(g_defaults.dir.thumbnails));
fill_pathname_join(g_defaults.dir.assets, "/",
"assets", sizeof(g_defaults.dir.assets));
2016-08-28 23:03:49 -05:00
snprintf(g_defaults.settings.menu, sizeof(g_defaults.settings.menu), "rgui");
2016-08-28 22:50:56 -05:00
}
2014-06-18 20:31:41 -04:00
int main(int argc, char *argv[])
{
2015-03-20 22:22:06 +01:00
settings_t *settings = config_get_ptr();
emscripten_set_canvas_size(800, 600);
2015-04-20 21:31:25 +02:00
rarch_main(argc, argv, NULL);
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);
return 0;
}
frontend_ctx_driver_t frontend_ctx_emscripten = {
2016-08-28 22:50:56 -05:00
frontend_emscripten_get_env, /* environment_get */
NULL, /* init */
NULL, /* deinit */
NULL, /* exitspawn */
NULL, /* process_args */
NULL, /* exec */
NULL, /* set_fork */
NULL, /* shutdown */
NULL, /* get_name */
NULL, /* get_os */
NULL, /* get_rating */
NULL, /* load_content */
NULL, /* get_architecture */
NULL, /* get_powerstate */
NULL, /* parse_drive_list */
NULL, /* get_mem_total */
NULL, /* get_mem_used */
NULL, /* install_sighandlers */
NULL, /* get_signal_handler_state */
NULL, /* set_signal_handler_state */
NULL, /* destroy_signal_handler_state */
"emscripten"
};