2017-01-24 05:55:55 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2019-02-22 21:31:54 +00:00
|
|
|
* Copyright (C) 2016-2019 - Brad Parker
|
2017-01-24 05:55:55 +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 <stdint.h>
|
|
|
|
#include <stdio.h>
|
2022-05-28 20:24:36 +00:00
|
|
|
#include <time.h>
|
2020-05-12 15:39:04 +00:00
|
|
|
#include <process.h>
|
2022-12-15 13:34:05 +00:00
|
|
|
|
2020-05-12 15:39:04 +00:00
|
|
|
#include <string/stdstring.h>
|
|
|
|
#include <file/file_path.h>
|
2017-01-24 05:55:55 +00:00
|
|
|
|
|
|
|
#include "../frontend_driver.h"
|
2022-12-15 13:34:05 +00:00
|
|
|
#include "../../command.h"
|
2020-05-12 15:39:04 +00:00
|
|
|
#include "../../defaults.h"
|
2020-11-20 02:55:55 +00:00
|
|
|
#include "../../paths.h"
|
2023-06-01 20:34:16 +00:00
|
|
|
#include "../../verbosity.h"
|
2020-05-12 15:39:04 +00:00
|
|
|
|
|
|
|
static enum frontend_fork dos_fork_mode = FRONTEND_FORK_NONE;
|
2017-01-24 05:55:55 +00:00
|
|
|
|
|
|
|
static void frontend_dos_init(void *data)
|
|
|
|
{
|
2022-07-08 20:10:53 +00:00
|
|
|
/* Keep a call to time() as otherwise we trigger some obscure bug in
|
|
|
|
* djgpp libc code and time(NULL) return only -1 */
|
2022-05-28 20:24:36 +00:00
|
|
|
printf("Loading RetroArch. Time is @%ld...\n", (long) time(NULL));
|
2017-01-24 05:55:55 +00:00
|
|
|
}
|
|
|
|
|
2023-08-17 16:20:45 +00:00
|
|
|
/* TODO/FIXME - implement */
|
|
|
|
static void frontend_dos_shutdown(bool unused) { }
|
|
|
|
static int frontend_dos_get_rating(void) { return -1; }
|
2017-01-24 05:55:55 +00:00
|
|
|
|
2021-01-16 15:14:03 +00:00
|
|
|
enum frontend_architecture frontend_dos_get_arch(void)
|
2017-01-24 05:55:55 +00:00
|
|
|
{
|
2020-05-11 23:04:39 +00:00
|
|
|
return FRONTEND_ARCH_X86;
|
2017-01-24 05:55:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void frontend_dos_get_env_settings(int *argc, char *argv[],
|
|
|
|
void *data, void *params_data)
|
|
|
|
{
|
2022-07-08 20:10:53 +00:00
|
|
|
char *slash;
|
2022-08-04 12:18:11 +00:00
|
|
|
char base_path[PATH_MAX];
|
2020-05-11 23:04:39 +00:00
|
|
|
|
|
|
|
retro_main_log_file_init("retrodos.txt", false);
|
|
|
|
|
2020-05-12 15:39:04 +00:00
|
|
|
strlcpy(base_path, argv[0], sizeof(base_path));
|
2022-07-08 20:10:53 +00:00
|
|
|
if ((slash = strrchr(base_path, '/')))
|
2020-05-12 15:39:04 +00:00
|
|
|
*slash = '\0';
|
|
|
|
slash = strrchr(base_path, '/');
|
|
|
|
if (slash && strcasecmp(slash, "/cores"))
|
|
|
|
*slash = '\0';
|
2020-05-11 23:04:39 +00:00
|
|
|
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE], base_path,
|
|
|
|
"cores", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE]));
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE_INFO], base_path,
|
2020-05-12 15:39:04 +00:00
|
|
|
"coreinfo", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE_INFO]));
|
2020-05-11 23:04:39 +00:00
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_AUTOCONFIG], base_path,
|
|
|
|
"autoconf", sizeof(g_defaults.dirs[DEFAULT_DIR_AUTOCONFIG]));
|
|
|
|
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_ASSETS], base_path,
|
|
|
|
"assets", sizeof(g_defaults.dirs[DEFAULT_DIR_ASSETS]));
|
|
|
|
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_MENU_CONFIG], base_path,
|
|
|
|
"config", sizeof(g_defaults.dirs[DEFAULT_DIR_MENU_CONFIG]));
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_REMAP],
|
|
|
|
g_defaults.dirs[DEFAULT_DIR_MENU_CONFIG],
|
|
|
|
"remaps", sizeof(g_defaults.dirs[DEFAULT_DIR_REMAP]));
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_PLAYLIST], base_path,
|
|
|
|
"playlist", sizeof(g_defaults.dirs[DEFAULT_DIR_PLAYLIST]));
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_RECORD_CONFIG], base_path,
|
|
|
|
"recrdcfg", sizeof(g_defaults.dirs[DEFAULT_DIR_RECORD_CONFIG]));
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_RECORD_OUTPUT], base_path,
|
|
|
|
"records", sizeof(g_defaults.dirs[DEFAULT_DIR_RECORD_OUTPUT]));
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_DATABASE], base_path,
|
|
|
|
"database/rdb", sizeof(g_defaults.dirs[DEFAULT_DIR_DATABASE]));
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_SHADER], base_path,
|
|
|
|
"shaders", sizeof(g_defaults.dirs[DEFAULT_DIR_SHADER]));
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CHEATS], base_path,
|
|
|
|
"cheats", sizeof(g_defaults.dirs[DEFAULT_DIR_CHEATS]));
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_OVERLAY], base_path,
|
|
|
|
"overlay", sizeof(g_defaults.dirs[DEFAULT_DIR_OVERLAY]));
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE_ASSETS], base_path,
|
|
|
|
"download", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE_ASSETS]));
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_SCREENSHOT], base_path,
|
|
|
|
"scrnshot", sizeof(g_defaults.dirs[DEFAULT_DIR_SCREENSHOT]));
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_THUMBNAILS], base_path,
|
|
|
|
"thumbs", sizeof(g_defaults.dirs[DEFAULT_DIR_THUMBNAILS]));
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_LOGS], base_path,
|
|
|
|
"logs", sizeof(g_defaults.dirs[DEFAULT_DIR_LOGS]));
|
|
|
|
|
2020-11-19 06:10:22 +00:00
|
|
|
#ifndef IS_SALAMANDER
|
2020-11-20 02:55:55 +00:00
|
|
|
dir_check_defaults("custom.ini");
|
2020-11-19 06:10:22 +00:00
|
|
|
#endif
|
2017-01-24 05:55:55 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 15:39:04 +00:00
|
|
|
static void frontend_dos_exec(const char *path, bool should_load_game)
|
|
|
|
{
|
|
|
|
char *newargv[] = { NULL, NULL };
|
|
|
|
size_t len = strlen(path);
|
|
|
|
|
|
|
|
newargv[0] = (char*)malloc(len);
|
|
|
|
|
|
|
|
strlcpy(newargv[0], path, len);
|
|
|
|
|
|
|
|
execv(path, newargv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void frontend_dos_exitspawn(char *s, size_t len, char *args)
|
|
|
|
{
|
|
|
|
bool should_load_content = false;
|
|
|
|
|
|
|
|
if (dos_fork_mode == FRONTEND_FORK_NONE)
|
|
|
|
return;
|
2023-08-17 16:20:45 +00:00
|
|
|
if (dos_fork_mode == FRONTEND_FORK_CORE_WITH_ARGS)
|
|
|
|
should_load_content = true;
|
2020-05-12 15:39:04 +00:00
|
|
|
|
|
|
|
frontend_dos_exec(s, should_load_content);
|
|
|
|
}
|
|
|
|
|
2022-03-05 14:53:18 +00:00
|
|
|
static bool frontend_dos_set_fork(enum frontend_fork fork_mode)
|
2020-05-12 15:39:04 +00:00
|
|
|
{
|
|
|
|
switch (fork_mode)
|
|
|
|
{
|
|
|
|
case FRONTEND_FORK_CORE:
|
2022-03-05 14:53:18 +00:00
|
|
|
dos_fork_mode = fork_mode;
|
2020-05-12 15:39:04 +00:00
|
|
|
break;
|
|
|
|
case FRONTEND_FORK_CORE_WITH_ARGS:
|
2022-03-05 14:53:18 +00:00
|
|
|
dos_fork_mode = fork_mode;
|
2020-05-12 15:39:04 +00:00
|
|
|
break;
|
|
|
|
case FRONTEND_FORK_RESTART:
|
2022-03-05 14:53:18 +00:00
|
|
|
dos_fork_mode = FRONTEND_FORK_CORE;
|
2020-05-12 15:39:04 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
char executable_path[PATH_MAX_LENGTH] = {0};
|
|
|
|
fill_pathname_application_path(executable_path,
|
|
|
|
sizeof(executable_path));
|
|
|
|
path_set(RARCH_PATH_CORE, executable_path);
|
|
|
|
}
|
|
|
|
command_event(CMD_EVENT_QUIT, NULL);
|
|
|
|
break;
|
|
|
|
case FRONTEND_FORK_NONE:
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-01-24 05:55:55 +00:00
|
|
|
frontend_ctx_driver_t frontend_ctx_dos = {
|
2020-05-11 23:04:39 +00:00
|
|
|
frontend_dos_get_env_settings,/* environment_get */
|
|
|
|
frontend_dos_init, /* init */
|
|
|
|
NULL, /* deinit */
|
2020-05-12 15:39:04 +00:00
|
|
|
frontend_dos_exitspawn, /* exitspawn */
|
2020-05-11 23:04:39 +00:00
|
|
|
NULL, /* process_args */
|
2020-05-12 15:39:04 +00:00
|
|
|
frontend_dos_exec, /* exec */
|
|
|
|
frontend_dos_set_fork, /* set_fork */
|
2020-05-11 23:04:39 +00:00
|
|
|
frontend_dos_shutdown, /* shutdown */
|
|
|
|
NULL, /* get_name */
|
|
|
|
NULL, /* get_os */
|
|
|
|
frontend_dos_get_rating, /* get_rating */
|
2021-01-16 15:14:03 +00:00
|
|
|
NULL, /* content_loaded */
|
|
|
|
frontend_dos_get_arch, /* get_architecture */
|
2020-05-11 23:04:39 +00:00
|
|
|
NULL, /* get_powerstate */
|
|
|
|
NULL, /* parse_drive_list */
|
2021-01-16 15:14:03 +00:00
|
|
|
NULL, /* get_total_mem */
|
|
|
|
NULL, /* get_free_mem */
|
2020-05-11 23:04:39 +00:00
|
|
|
NULL, /* install_signal_handler */
|
|
|
|
NULL, /* get_sighandler_state */
|
|
|
|
NULL, /* set_sighandler_state */
|
|
|
|
NULL, /* destroy_sighandler_state */
|
|
|
|
NULL, /* attach_console */
|
|
|
|
NULL, /* detach_console */
|
2020-11-23 17:44:24 +00:00
|
|
|
NULL, /* get_lakka_version */
|
2020-11-23 20:29:26 +00:00
|
|
|
NULL, /* set_screen_brightness */
|
2020-05-11 23:04:39 +00:00
|
|
|
NULL, /* watch_path_for_changes */
|
|
|
|
NULL, /* check_for_path_changes */
|
|
|
|
NULL, /* set_sustained_performance_mode */
|
|
|
|
NULL, /* get_cpu_model_name */
|
|
|
|
NULL, /* get_user_language */
|
|
|
|
NULL, /* is_narrator_running */
|
|
|
|
NULL, /* accessibility_speak */
|
2021-12-14 13:07:42 +00:00
|
|
|
NULL, /* set_gamemode */
|
2021-01-16 15:14:03 +00:00
|
|
|
"dos", /* ident */
|
|
|
|
NULL /* get_video_driver */
|
2017-01-24 05:55:55 +00:00
|
|
|
};
|