mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 00:49:47 +00:00
111 lines
2.8 KiB
C
111 lines
2.8 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2011-2012 - 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 <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
#include "rarch_console_main_wrap.h"
|
|
|
|
#define MAX_ARGS 32
|
|
|
|
static int rarch_main_init_wrap(const struct rarch_main_wrap *args)
|
|
{
|
|
int argc = 0;
|
|
char *argv[MAX_ARGS] = {NULL};
|
|
|
|
argv[argc++] = strdup("retroarch");
|
|
|
|
if (args->rom_path)
|
|
argv[argc++] = strdup(args->rom_path);
|
|
|
|
if (args->sram_path)
|
|
{
|
|
argv[argc++] = strdup("-s");
|
|
argv[argc++] = strdup(args->sram_path);
|
|
}
|
|
|
|
if (args->state_path)
|
|
{
|
|
argv[argc++] = strdup("-S");
|
|
argv[argc++] = strdup(args->state_path);
|
|
}
|
|
|
|
if (args->config_path)
|
|
{
|
|
argv[argc++] = strdup("-c");
|
|
argv[argc++] = strdup(args->config_path);
|
|
}
|
|
|
|
if (args->verbose)
|
|
argv[argc++] = strdup("-v");
|
|
|
|
#ifdef HAVE_FILE_LOGGER
|
|
RARCH_LOG("foo\n");
|
|
for(int i = 0; i < argc; i++)
|
|
RARCH_LOG("arg #%d: %s\n", i, argv[i]);
|
|
RARCH_LOG("bar\n");
|
|
#endif
|
|
|
|
int ret = rarch_main_init(argc, argv);
|
|
|
|
char **tmp = argv;
|
|
while (*tmp)
|
|
{
|
|
free(*tmp);
|
|
tmp++;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
bool rarch_startup (const char * config_path)
|
|
{
|
|
bool retval = false;
|
|
|
|
if(g_console.initialize_rarch_enable)
|
|
{
|
|
if(g_console.emulator_initialized)
|
|
rarch_main_deinit();
|
|
|
|
struct rarch_main_wrap args = {0};
|
|
|
|
args.verbose = g_extern.verbose;
|
|
args.config_path = config_path;
|
|
args.sram_path = g_console.default_sram_dir_enable ? g_console.default_sram_dir : NULL,
|
|
args.state_path = g_console.default_savestate_dir_enable ? g_console.default_savestate_dir : NULL,
|
|
args.rom_path = g_console.rom_path;
|
|
|
|
int init_ret = rarch_main_init_wrap(&args);
|
|
(void)init_ret;
|
|
|
|
if(init_ret == 0)
|
|
{
|
|
g_console.emulator_initialized = 1;
|
|
g_console.initialize_rarch_enable = 0;
|
|
retval = true;
|
|
}
|
|
else
|
|
{
|
|
//failed to load the ROM for whatever reason
|
|
g_console.emulator_initialized = 0;
|
|
g_console.mode_switch = MODE_MENU;
|
|
rarch_settings_msg(S_MSG_ROM_LOADING_ERROR, S_DELAY_180);
|
|
}
|
|
}
|
|
|
|
return retval;
|
|
}
|