2013-01-08 06:44:57 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 00:50:59 +00:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2015-01-07 16:46:50 +00:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
2013-01-08 06:44:57 +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/>.
|
|
|
|
*/
|
|
|
|
|
2012-09-16 02:04:25 +00:00
|
|
|
#include <sys/process.h>
|
2012-01-11 00:04:17 +00:00
|
|
|
|
2013-01-08 06:44:57 +00:00
|
|
|
#include "../../ps3/sdk_defines.h"
|
2012-01-11 21:55:07 +00:00
|
|
|
|
2013-01-08 06:44:57 +00:00
|
|
|
#include "../../general.h"
|
2014-10-21 22:23:06 +00:00
|
|
|
#include <file/file_path.h>
|
2013-01-06 04:22:21 +00:00
|
|
|
|
2012-01-29 22:11:47 +00:00
|
|
|
#define EMULATOR_CONTENT_DIR "SSNE10000"
|
|
|
|
|
2012-09-11 10:33:46 +00:00
|
|
|
#ifndef __PSL1GHT__
|
|
|
|
#define NP_POOL_SIZE (128*1024)
|
2012-02-25 19:11:57 +00:00
|
|
|
static uint8_t np_pool[NP_POOL_SIZE];
|
2012-09-11 10:33:46 +00:00
|
|
|
#endif
|
2012-02-20 06:50:59 +00:00
|
|
|
|
2013-01-08 23:54:46 +00:00
|
|
|
#ifdef IS_SALAMANDER
|
|
|
|
SYS_PROCESS_PARAM(1001, 0x100000)
|
|
|
|
#else
|
2012-06-16 20:03:08 +00:00
|
|
|
SYS_PROCESS_PARAM(1001, 0x200000)
|
2013-01-08 23:54:46 +00:00
|
|
|
#endif
|
2013-03-23 04:17:39 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_MULTIMAN
|
|
|
|
#define MULTIMAN_SELF_FILE "/dev_hdd0/game/BLES80608/USRDIR/RELOAD.SELF"
|
2014-10-02 19:17:32 +00:00
|
|
|
static bool multiman_detected = false;
|
2013-03-23 04:17:39 +00:00
|
|
|
#endif
|
2012-01-05 21:47:34 +00:00
|
|
|
|
2014-10-02 19:39:29 +00:00
|
|
|
static bool exit_spawn = false;
|
|
|
|
static bool exitspawn_start_game = false;
|
2014-10-02 19:17:32 +00:00
|
|
|
|
2013-01-08 23:54:46 +00:00
|
|
|
#ifdef IS_SALAMANDER
|
|
|
|
#include <netex/net.h>
|
|
|
|
#include <np.h>
|
|
|
|
#include <np/drm.h>
|
|
|
|
#include <cell/sysmodule.h>
|
|
|
|
#endif
|
|
|
|
|
2012-05-25 14:24:28 +00:00
|
|
|
#ifdef HAVE_SYSUTILS
|
2014-09-02 15:42:44 +00:00
|
|
|
static void callback_sysutil_exit(uint64_t status,
|
|
|
|
uint64_t param, void *userdata)
|
2012-02-04 12:29:02 +00:00
|
|
|
{
|
2013-01-08 23:54:46 +00:00
|
|
|
(void)param;
|
|
|
|
(void)userdata;
|
|
|
|
(void)status;
|
|
|
|
|
|
|
|
#ifndef IS_SALAMANDER
|
2012-04-11 00:42:27 +00:00
|
|
|
|
|
|
|
switch (status)
|
|
|
|
{
|
|
|
|
case CELL_SYSUTIL_REQUEST_EXITGAME:
|
2014-06-13 16:18:10 +00:00
|
|
|
g_extern.system.shutdown = true;
|
2012-11-26 06:03:31 +00:00
|
|
|
break;
|
2013-01-17 09:40:35 +00:00
|
|
|
case CELL_SYSUTIL_OSKDIALOG_LOADED:
|
|
|
|
case CELL_SYSUTIL_OSKDIALOG_INPUT_CANCELED:
|
2012-04-11 00:42:27 +00:00
|
|
|
case CELL_SYSUTIL_OSKDIALOG_FINISHED:
|
|
|
|
case CELL_SYSUTIL_OSKDIALOG_UNLOADED:
|
2013-11-12 23:27:31 +00:00
|
|
|
if (driver.osk && driver.osk_data)
|
|
|
|
driver.osk->lifecycle(driver.osk_data, status);
|
2012-11-26 06:03:31 +00:00
|
|
|
break;
|
2012-04-11 00:42:27 +00:00
|
|
|
}
|
2013-01-08 23:54:46 +00:00
|
|
|
#endif
|
2012-02-04 12:29:02 +00:00
|
|
|
}
|
2012-05-25 14:24:28 +00:00
|
|
|
#endif
|
2012-02-04 12:29:02 +00:00
|
|
|
|
2014-06-03 01:35:12 +00:00
|
|
|
static void frontend_ps3_get_environment_settings(int *argc, char *argv[],
|
|
|
|
void *args, void *params_data)
|
2012-01-11 00:04:17 +00:00
|
|
|
{
|
2013-08-10 18:59:10 +00:00
|
|
|
#ifndef IS_SALAMANDER
|
2014-07-17 22:39:31 +00:00
|
|
|
bool original_verbose = g_extern.verbosity;
|
|
|
|
g_extern.verbosity = true;
|
2014-05-31 16:34:06 +00:00
|
|
|
#endif
|
2013-08-10 18:59:10 +00:00
|
|
|
|
2014-05-31 16:34:06 +00:00
|
|
|
(void)args;
|
|
|
|
#ifndef IS_SALAMANDER
|
2013-08-10 18:59:10 +00:00
|
|
|
#if defined(HAVE_LOGGER)
|
|
|
|
logger_init();
|
|
|
|
#elif defined(HAVE_FILE_LOGGER)
|
|
|
|
g_extern.log_file = fopen("/retroarch-log.txt", "w");
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2012-04-11 00:42:27 +00:00
|
|
|
int ret;
|
|
|
|
unsigned int get_type;
|
|
|
|
unsigned int get_attributes;
|
|
|
|
CellGameContentSize size;
|
|
|
|
char dirName[CELL_GAME_DIRNAME_SIZE];
|
2012-06-23 20:36:35 +00:00
|
|
|
char contentInfoPath[PATH_MAX];
|
2012-06-30 11:37:18 +00:00
|
|
|
|
2012-05-30 14:30:25 +00:00
|
|
|
#ifdef HAVE_MULTIMAN
|
2012-08-18 16:25:38 +00:00
|
|
|
/* not launched from external launcher, set default path */
|
2013-04-29 13:19:16 +00:00
|
|
|
// second param is multiMAN SELF file
|
2014-09-02 15:42:44 +00:00
|
|
|
if(path_file_exists(argv[2]) && *argc > 1
|
|
|
|
&& (strcmp(argv[2], EMULATOR_CONTENT_DIR) == 0))
|
2012-04-11 00:42:27 +00:00
|
|
|
{
|
2014-10-02 19:17:32 +00:00
|
|
|
multiman_detected = true;
|
2012-04-21 21:25:32 +00:00
|
|
|
RARCH_LOG("Started from multiMAN, auto-game start enabled.\n");
|
2012-04-11 00:42:27 +00:00
|
|
|
}
|
|
|
|
else
|
2012-05-30 14:30:25 +00:00
|
|
|
#endif
|
2013-01-08 23:54:46 +00:00
|
|
|
#ifndef IS_SALAMANDER
|
2014-06-03 04:37:57 +00:00
|
|
|
if (*argc > 1 && argv[1] != NULL && argv[1][0] != '\0')
|
|
|
|
{
|
2014-06-13 16:11:08 +00:00
|
|
|
static char path[PATH_MAX];
|
|
|
|
*path = '\0';
|
2014-06-03 04:37:57 +00:00
|
|
|
struct rarch_main_wrap *args = (struct rarch_main_wrap*)params_data;
|
|
|
|
|
|
|
|
if (args)
|
|
|
|
{
|
|
|
|
strlcpy(path, argv[1], sizeof(path));
|
|
|
|
|
|
|
|
args->touched = true;
|
2014-07-28 17:55:28 +00:00
|
|
|
args->no_content = false;
|
2014-06-03 04:37:57 +00:00
|
|
|
args->verbose = false;
|
|
|
|
args->config_path = NULL;
|
|
|
|
args->sram_path = NULL;
|
|
|
|
args->state_path = NULL;
|
2014-07-28 17:55:28 +00:00
|
|
|
args->content_path = path;
|
2014-06-03 04:37:57 +00:00
|
|
|
args->libretro_path = NULL;
|
|
|
|
|
|
|
|
RARCH_LOG("argv[0]: %s\n", argv[0]);
|
|
|
|
RARCH_LOG("argv[1]: %s\n", argv[1]);
|
|
|
|
RARCH_LOG("argv[2]: %s\n", argv[2]);
|
|
|
|
|
|
|
|
RARCH_LOG("Auto-start game %s.\n", argv[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
RARCH_WARN("Started from Salamander, auto-game start disabled.\n");
|
2013-01-08 23:54:46 +00:00
|
|
|
#endif
|
2012-04-11 00:42:27 +00:00
|
|
|
|
|
|
|
memset(&size, 0x00, sizeof(CellGameContentSize));
|
|
|
|
|
|
|
|
ret = cellGameBootCheck(&get_type, &get_attributes, &size, dirName);
|
|
|
|
if(ret < 0)
|
|
|
|
{
|
2012-04-21 21:25:32 +00:00
|
|
|
RARCH_ERR("cellGameBootCheck() Error: 0x%x.\n", ret);
|
2012-04-11 00:42:27 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-21 21:25:32 +00:00
|
|
|
RARCH_LOG("cellGameBootCheck() OK.\n");
|
|
|
|
RARCH_LOG("Directory name: [%s].\n", dirName);
|
2014-09-09 15:25:05 +00:00
|
|
|
RARCH_LOG(" HDD Free Size (in KB) = [%d] Size (in KB) = [%d] System Size (in KB) = [%d].\n",
|
|
|
|
size.hddFreeSizeKB, size.sizeKB, size.sysSizeKB);
|
2012-04-14 03:30:10 +00:00
|
|
|
|
|
|
|
switch(get_type)
|
|
|
|
{
|
|
|
|
case CELL_GAME_GAMETYPE_DISC:
|
2012-04-21 21:25:32 +00:00
|
|
|
RARCH_LOG("RetroArch was launched on Optical Disc Drive.\n");
|
2012-11-26 06:03:31 +00:00
|
|
|
break;
|
|
|
|
case CELL_GAME_GAMETYPE_HDD:
|
|
|
|
RARCH_LOG("RetroArch was launched on HDD.\n");
|
|
|
|
break;
|
2012-04-14 03:30:10 +00:00
|
|
|
}
|
|
|
|
|
2014-09-02 15:42:44 +00:00
|
|
|
if((get_attributes & CELL_GAME_ATTRIBUTE_APP_HOME)
|
|
|
|
== CELL_GAME_ATTRIBUTE_APP_HOME)
|
2012-04-21 21:25:32 +00:00
|
|
|
RARCH_LOG("RetroArch was launched from host machine (APP_HOME).\n");
|
2012-04-14 03:30:10 +00:00
|
|
|
|
2014-06-12 16:06:29 +00:00
|
|
|
ret = cellGameContentPermit(contentInfoPath, g_defaults.port_dir);
|
2012-04-14 03:30:10 +00:00
|
|
|
|
2012-05-30 14:30:25 +00:00
|
|
|
#ifdef HAVE_MULTIMAN
|
2014-10-02 19:17:32 +00:00
|
|
|
if (multiman_detected)
|
2012-04-14 03:30:10 +00:00
|
|
|
{
|
2014-09-02 15:42:44 +00:00
|
|
|
fill_pathname_join(contentInfoPath, "/dev_hdd0/game/",
|
|
|
|
EMULATOR_CONTENT_DIR, sizeof(contentInfoPath));
|
|
|
|
fill_pathname_join(g_defaults.port_dir, contentInfoPath,
|
|
|
|
"USRDIR", sizeof(g_defaults.port_dir));
|
2012-04-14 03:30:10 +00:00
|
|
|
}
|
2012-05-30 14:30:25 +00:00
|
|
|
#endif
|
2012-04-14 03:30:10 +00:00
|
|
|
|
|
|
|
if(ret < 0)
|
2012-04-21 21:25:32 +00:00
|
|
|
RARCH_ERR("cellGameContentPermit() Error: 0x%x\n", ret);
|
2012-04-14 03:30:10 +00:00
|
|
|
else
|
|
|
|
{
|
2012-04-21 21:25:32 +00:00
|
|
|
RARCH_LOG("cellGameContentPermit() OK.\n");
|
2012-11-26 06:03:31 +00:00
|
|
|
RARCH_LOG("contentInfoPath : [%s].\n", contentInfoPath);
|
2014-06-12 16:06:29 +00:00
|
|
|
RARCH_LOG("usrDirPath : [%s].\n", g_defaults.port_dir);
|
2012-04-14 03:30:10 +00:00
|
|
|
}
|
|
|
|
|
2014-09-02 15:42:44 +00:00
|
|
|
fill_pathname_join(g_defaults.core_dir, g_defaults.port_dir,
|
|
|
|
"cores", sizeof(g_defaults.core_dir));
|
|
|
|
fill_pathname_join(g_defaults.core_info_dir, g_defaults.port_dir,
|
|
|
|
"cores", sizeof(g_defaults.core_info_dir));
|
|
|
|
fill_pathname_join(g_defaults.savestate_dir, g_defaults.core_dir,
|
|
|
|
"savestates", sizeof(g_defaults.savestate_dir));
|
|
|
|
fill_pathname_join(g_defaults.sram_dir, g_defaults.core_dir,
|
|
|
|
"savefiles", sizeof(g_defaults.sram_dir));
|
|
|
|
fill_pathname_join(g_defaults.system_dir, g_defaults.core_dir,
|
|
|
|
"system", sizeof(g_defaults.system_dir));
|
|
|
|
fill_pathname_join(g_defaults.shader_dir, g_defaults.core_dir,
|
2014-10-29 06:44:06 +00:00
|
|
|
"shaders_cg", sizeof(g_defaults.shader_dir));
|
2014-09-02 15:42:44 +00:00
|
|
|
fill_pathname_join(g_defaults.config_path, g_defaults.port_dir,
|
|
|
|
"retroarch.cfg", sizeof(g_defaults.config_path));
|
|
|
|
fill_pathname_join(g_defaults.overlay_dir, g_defaults.core_dir,
|
|
|
|
"overlays", sizeof(g_defaults.overlay_dir));
|
|
|
|
fill_pathname_join(g_defaults.assets_dir, g_defaults.core_dir,
|
|
|
|
"media", sizeof(g_defaults.assets_dir));
|
2014-09-15 06:03:58 +00:00
|
|
|
fill_pathname_join(g_defaults.playlist_dir, g_defaults.core_dir,
|
|
|
|
"playlists", sizeof(g_defaults.playlist_dir));
|
2012-04-11 00:42:27 +00:00
|
|
|
}
|
2014-05-31 16:34:06 +00:00
|
|
|
|
|
|
|
#ifndef IS_SALAMANDER
|
2014-07-17 22:39:31 +00:00
|
|
|
g_extern.verbosity = original_verbose;
|
2014-05-31 16:34:06 +00:00
|
|
|
#endif
|
2012-02-20 06:50:59 +00:00
|
|
|
}
|
|
|
|
|
2014-05-17 12:56:12 +00:00
|
|
|
static void frontend_ps3_init(void *data)
|
2012-01-05 21:47:34 +00:00
|
|
|
{
|
2013-11-03 15:38:56 +00:00
|
|
|
(void)data;
|
2012-05-25 14:24:28 +00:00
|
|
|
#ifdef HAVE_SYSUTILS
|
2012-04-21 21:25:32 +00:00
|
|
|
RARCH_LOG("Registering system utility callback...\n");
|
2012-04-11 00:42:27 +00:00
|
|
|
cellSysutilRegisterCallback(0, callback_sysutil_exit, NULL);
|
2012-05-25 14:24:28 +00:00
|
|
|
#endif
|
2012-02-26 14:18:44 +00:00
|
|
|
|
2012-05-25 14:24:28 +00:00
|
|
|
#ifdef HAVE_SYSMODULES
|
2012-09-27 16:16:06 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_FREETYPE
|
|
|
|
cellSysmoduleLoadModule(CELL_SYSMODULE_FONT);
|
2012-09-27 16:19:10 +00:00
|
|
|
cellSysmoduleLoadModule(CELL_SYSMODULE_FREETYPE);
|
|
|
|
cellSysmoduleLoadModule(CELL_SYSMODULE_FONTFT);
|
2012-09-27 16:16:06 +00:00
|
|
|
#endif
|
|
|
|
|
2012-04-11 00:42:27 +00:00
|
|
|
cellSysmoduleLoadModule(CELL_SYSMODULE_IO);
|
|
|
|
cellSysmoduleLoadModule(CELL_SYSMODULE_FS);
|
2012-09-16 02:04:25 +00:00
|
|
|
#ifndef __PSL1GHT__
|
2012-04-11 00:42:27 +00:00
|
|
|
cellSysmoduleLoadModule(CELL_SYSMODULE_SYSUTIL_GAME);
|
2013-01-08 23:54:46 +00:00
|
|
|
#endif
|
|
|
|
#ifndef IS_SALAMANDER
|
|
|
|
#ifndef __PSL1GHT__
|
2012-04-11 00:42:27 +00:00
|
|
|
cellSysmoduleLoadModule(CELL_SYSMODULE_AVCONF_EXT);
|
2012-09-16 02:04:25 +00:00
|
|
|
#endif
|
2012-04-11 00:42:27 +00:00
|
|
|
cellSysmoduleLoadModule(CELL_SYSMODULE_PNGDEC);
|
|
|
|
cellSysmoduleLoadModule(CELL_SYSMODULE_JPGDEC);
|
2013-01-08 23:54:46 +00:00
|
|
|
#endif
|
2012-04-11 00:42:27 +00:00
|
|
|
cellSysmoduleLoadModule(CELL_SYSMODULE_NET);
|
|
|
|
cellSysmoduleLoadModule(CELL_SYSMODULE_SYSUTIL_NP);
|
2012-05-25 14:24:28 +00:00
|
|
|
#endif
|
2012-02-25 19:11:57 +00:00
|
|
|
|
2012-09-11 10:33:46 +00:00
|
|
|
#ifndef __PSL1GHT__
|
2012-04-11 00:42:27 +00:00
|
|
|
sys_net_initialize_network();
|
|
|
|
sceNpInit(NP_POOL_SIZE, np_pool);
|
2012-09-11 10:33:46 +00:00
|
|
|
#endif
|
2012-01-11 00:04:17 +00:00
|
|
|
|
2013-04-22 23:55:00 +00:00
|
|
|
#ifndef IS_SALAMANDER
|
2012-09-16 02:04:25 +00:00
|
|
|
#if (CELL_SDK_VERSION > 0x340000) && !defined(__PSL1GHT__)
|
2012-05-25 14:24:28 +00:00
|
|
|
#ifdef HAVE_SYSMODULES
|
2013-04-13 07:09:56 +00:00
|
|
|
cellSysmoduleLoadModule(CELL_SYSMODULE_SYSUTIL_SCREENSHOT);
|
2012-05-25 14:24:28 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYSUTILS
|
2013-04-13 07:09:56 +00:00
|
|
|
CellScreenShotSetParam screenshot_param = {0, 0, 0, 0};
|
2012-04-11 00:42:27 +00:00
|
|
|
|
2013-04-13 07:09:56 +00:00
|
|
|
screenshot_param.photo_title = "RetroArch PS3";
|
|
|
|
screenshot_param.game_title = "RetroArch PS3";
|
|
|
|
cellScreenShotSetParameter (&screenshot_param);
|
|
|
|
cellScreenShotEnable();
|
2012-05-25 14:24:28 +00:00
|
|
|
#endif
|
2012-01-16 14:45:55 +00:00
|
|
|
#endif
|
2012-06-19 03:10:42 +00:00
|
|
|
#endif
|
2013-01-08 00:26:18 +00:00
|
|
|
}
|
2012-01-11 21:27:07 +00:00
|
|
|
|
2014-05-17 12:56:12 +00:00
|
|
|
static void frontend_ps3_deinit(void *data)
|
2013-01-08 00:26:18 +00:00
|
|
|
{
|
2013-11-03 15:38:56 +00:00
|
|
|
(void)data;
|
2013-01-08 23:54:46 +00:00
|
|
|
#ifndef IS_SALAMANDER
|
|
|
|
|
2012-09-16 02:04:25 +00:00
|
|
|
#if defined(HAVE_SYSMODULES)
|
2012-09-27 16:16:06 +00:00
|
|
|
#ifdef HAVE_FREETYPE
|
2013-01-07 18:22:35 +00:00
|
|
|
/* Freetype font PRX */
|
2012-09-27 16:19:10 +00:00
|
|
|
cellSysmoduleLoadModule(CELL_SYSMODULE_FONTFT);
|
2012-09-27 16:16:06 +00:00
|
|
|
cellSysmoduleUnloadModule(CELL_SYSMODULE_FREETYPE);
|
|
|
|
cellSysmoduleUnloadModule(CELL_SYSMODULE_FONT);
|
|
|
|
#endif
|
|
|
|
|
2012-09-16 02:04:25 +00:00
|
|
|
#ifndef __PSL1GHT__
|
2013-01-07 18:22:35 +00:00
|
|
|
/* screenshot PRX */
|
2013-04-13 07:09:56 +00:00
|
|
|
cellSysmoduleUnloadModule(CELL_SYSMODULE_SYSUTIL_SCREENSHOT);
|
2012-09-16 02:04:25 +00:00
|
|
|
#endif
|
2012-09-27 16:16:06 +00:00
|
|
|
|
2012-04-11 00:42:27 +00:00
|
|
|
cellSysmoduleUnloadModule(CELL_SYSMODULE_JPGDEC);
|
|
|
|
cellSysmoduleUnloadModule(CELL_SYSMODULE_PNGDEC);
|
2012-09-27 16:16:06 +00:00
|
|
|
|
2012-09-16 02:04:25 +00:00
|
|
|
#ifndef __PSL1GHT__
|
2013-01-07 18:22:35 +00:00
|
|
|
/* system game utility PRX */
|
2012-04-11 00:42:27 +00:00
|
|
|
cellSysmoduleUnloadModule(CELL_SYSMODULE_AVCONF_EXT);
|
|
|
|
cellSysmoduleUnloadModule(CELL_SYSMODULE_SYSUTIL_GAME);
|
2012-05-25 14:24:28 +00:00
|
|
|
#endif
|
2012-09-27 16:16:06 +00:00
|
|
|
|
2012-09-16 02:04:25 +00:00
|
|
|
#endif
|
2012-04-11 00:42:27 +00:00
|
|
|
|
2013-01-08 23:54:46 +00:00
|
|
|
#endif
|
2013-01-08 00:26:18 +00:00
|
|
|
}
|
2012-04-11 00:42:27 +00:00
|
|
|
|
2014-05-17 12:56:12 +00:00
|
|
|
static void frontend_ps3_exec(const char *path, bool should_load_game);
|
2013-07-27 01:59:01 +00:00
|
|
|
|
2014-10-02 19:39:29 +00:00
|
|
|
static void frontend_ps3_set_fork(bool exit, bool start_game)
|
|
|
|
{
|
|
|
|
exit_spawn = exitspawn;
|
|
|
|
exitspawn_start_game = start_game;
|
|
|
|
}
|
|
|
|
|
2014-06-05 04:12:41 +00:00
|
|
|
static void frontend_ps3_exitspawn(char *core_path, size_t core_path_size)
|
2013-01-08 00:26:18 +00:00
|
|
|
{
|
2012-09-14 03:07:33 +00:00
|
|
|
#ifdef HAVE_RARCH_EXEC
|
2014-06-05 04:12:41 +00:00
|
|
|
bool should_load_game = false;
|
|
|
|
|
2014-05-31 16:34:06 +00:00
|
|
|
#ifndef IS_SALAMANDER
|
2014-07-17 22:39:31 +00:00
|
|
|
bool original_verbose = g_extern.verbosity;
|
|
|
|
g_extern.verbosity = true;
|
2013-01-08 23:54:46 +00:00
|
|
|
|
2014-10-02 19:39:29 +00:00
|
|
|
should_load_game = exitspawn_start_game;
|
|
|
|
|
|
|
|
if (!exit_spawn)
|
|
|
|
return;
|
2014-06-05 04:12:41 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
frontend_ps3_exec(core_path, should_load_game);
|
|
|
|
|
|
|
|
#ifdef IS_SALAMANDER
|
|
|
|
cellSysmoduleUnloadModule(CELL_SYSMODULE_SYSUTIL_GAME);
|
|
|
|
cellSysmoduleLoadModule(CELL_SYSMODULE_FS);
|
|
|
|
cellSysmoduleLoadModule(CELL_SYSMODULE_IO);
|
|
|
|
#else
|
2013-04-29 01:05:46 +00:00
|
|
|
|
2013-07-27 01:59:01 +00:00
|
|
|
#endif
|
|
|
|
|
2014-05-31 16:34:06 +00:00
|
|
|
#ifndef IS_SALAMANDER
|
2014-07-17 22:39:31 +00:00
|
|
|
g_extern.verbosity = original_verbose;
|
2014-05-31 16:34:06 +00:00
|
|
|
#endif
|
2013-07-27 01:59:01 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <cell/sysmodule.h>
|
|
|
|
#include <sys/process.h>
|
|
|
|
#include <sysutil/sysutil_common.h>
|
|
|
|
#include <netex/net.h>
|
|
|
|
#include <np.h>
|
|
|
|
#include <np/drm.h>
|
|
|
|
|
|
|
|
#include "../../retroarch_logger.h"
|
|
|
|
|
2014-05-17 12:56:12 +00:00
|
|
|
static void frontend_ps3_exec(const char *path, bool should_load_game)
|
2013-07-27 01:59:01 +00:00
|
|
|
{
|
|
|
|
(void)should_load_game;
|
|
|
|
char spawn_data[256];
|
2013-07-28 18:57:49 +00:00
|
|
|
#ifndef IS_SALAMANDER
|
2014-07-17 22:39:31 +00:00
|
|
|
bool original_verbose = g_extern.verbosity;
|
|
|
|
g_extern.verbosity = true;
|
2014-05-31 16:34:06 +00:00
|
|
|
|
2013-07-27 01:59:01 +00:00
|
|
|
char game_path[256];
|
2013-07-27 20:33:57 +00:00
|
|
|
game_path[0] = '\0';
|
2013-07-28 18:57:49 +00:00
|
|
|
#endif
|
2013-07-27 20:33:57 +00:00
|
|
|
|
2014-05-31 16:34:06 +00:00
|
|
|
RARCH_LOG("Attempt to load executable: [%s].\n", path);
|
|
|
|
|
2013-07-27 01:59:01 +00:00
|
|
|
for(unsigned int i = 0; i < sizeof(spawn_data); ++i)
|
|
|
|
spawn_data[i] = i & 0xff;
|
|
|
|
|
|
|
|
SceNpDrmKey * k_licensee = NULL;
|
2014-06-03 04:50:55 +00:00
|
|
|
int ret;
|
|
|
|
#ifdef IS_SALAMANDER
|
|
|
|
const char * const spawn_argv[] = { NULL};
|
|
|
|
|
2014-09-02 15:42:44 +00:00
|
|
|
ret = sceNpDrmProcessExitSpawn2(k_licensee, path,
|
|
|
|
(const char** const)spawn_argv, NULL, (sys_addr_t)spawn_data,
|
|
|
|
256, 1000, SYS_PROCESS_PRIMARY_STACK_SIZE_1M);
|
2013-07-27 01:59:01 +00:00
|
|
|
|
|
|
|
if(ret < 0)
|
|
|
|
{
|
|
|
|
RARCH_WARN("SELF file is not of NPDRM type, trying another approach to boot it...\n");
|
2014-09-02 15:42:44 +00:00
|
|
|
sys_game_process_exitspawn(path, (const char** const)spawn_argv,
|
|
|
|
NULL, NULL, 0, 1000, SYS_PROCESS_PRIMARY_STACK_SIZE_1M);
|
2013-07-27 01:59:01 +00:00
|
|
|
}
|
2014-06-03 04:50:55 +00:00
|
|
|
#else
|
|
|
|
if (should_load_game && g_extern.fullpath[0] != '\0')
|
|
|
|
{
|
|
|
|
strlcpy(game_path, g_extern.fullpath, sizeof(game_path));
|
|
|
|
|
|
|
|
const char * const spawn_argv[] = {
|
|
|
|
game_path,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2014-09-02 15:42:44 +00:00
|
|
|
ret = sceNpDrmProcessExitSpawn2(k_licensee, path,
|
|
|
|
(const char** const)spawn_argv, NULL,
|
|
|
|
(sys_addr_t)spawn_data, 256, 1000,
|
|
|
|
SYS_PROCESS_PRIMARY_STACK_SIZE_1M);
|
2014-06-03 04:50:55 +00:00
|
|
|
|
|
|
|
if(ret < 0)
|
|
|
|
{
|
|
|
|
RARCH_WARN("SELF file is not of NPDRM type, trying another approach to boot it...\n");
|
2014-09-02 15:42:44 +00:00
|
|
|
sys_game_process_exitspawn(path, (const char** const)spawn_argv,
|
|
|
|
NULL, NULL, 0, 1000, SYS_PROCESS_PRIMARY_STACK_SIZE_1M);
|
2014-06-03 04:50:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const char * const spawn_argv[] = {NULL};
|
2014-09-02 15:42:44 +00:00
|
|
|
ret = sceNpDrmProcessExitSpawn2(k_licensee, path,
|
|
|
|
(const char** const)spawn_argv, NULL, (sys_addr_t)spawn_data,
|
|
|
|
256, 1000, SYS_PROCESS_PRIMARY_STACK_SIZE_1M);
|
2014-06-03 04:50:55 +00:00
|
|
|
|
|
|
|
if(ret < 0)
|
|
|
|
{
|
|
|
|
RARCH_WARN("SELF file is not of NPDRM type, trying another approach to boot it...\n");
|
2014-09-02 15:42:44 +00:00
|
|
|
sys_game_process_exitspawn(path, (const char** const)spawn_argv,
|
|
|
|
NULL, NULL, 0, 1000, SYS_PROCESS_PRIMARY_STACK_SIZE_1M);
|
2014-06-03 04:50:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2013-01-08 23:54:46 +00:00
|
|
|
|
2013-07-27 01:59:01 +00:00
|
|
|
sceNpTerm();
|
|
|
|
sys_net_finalize_network();
|
|
|
|
cellSysmoduleUnloadModule(CELL_SYSMODULE_SYSUTIL_NP);
|
|
|
|
cellSysmoduleUnloadModule(CELL_SYSMODULE_NET);
|
2014-05-31 16:34:06 +00:00
|
|
|
|
|
|
|
#ifndef IS_SALAMANDER
|
2014-07-17 22:39:31 +00:00
|
|
|
g_extern.verbosity = original_verbose;
|
2014-05-31 16:34:06 +00:00
|
|
|
#endif
|
2012-01-05 21:47:34 +00:00
|
|
|
}
|
2013-07-26 18:58:47 +00:00
|
|
|
|
2014-05-17 12:56:12 +00:00
|
|
|
static int frontend_ps3_get_rating(void)
|
2014-05-16 20:20:33 +00:00
|
|
|
{
|
|
|
|
return 10;
|
|
|
|
}
|
|
|
|
|
2013-07-26 18:58:47 +00:00
|
|
|
const frontend_ctx_driver_t frontend_ctx_ps3 = {
|
2014-05-17 12:56:12 +00:00
|
|
|
frontend_ps3_get_environment_settings, /* get_environment_settings */
|
|
|
|
frontend_ps3_init, /* init */
|
|
|
|
frontend_ps3_deinit, /* deinit */
|
|
|
|
frontend_ps3_exitspawn, /* exitspawn */
|
2014-06-03 17:21:49 +00:00
|
|
|
NULL, /* process_args */
|
2014-05-17 12:56:12 +00:00
|
|
|
frontend_ps3_exec, /* exec */
|
2014-10-02 19:39:29 +00:00
|
|
|
frontend_ps3_set_fork, /* set_fork */
|
2013-07-27 14:36:55 +00:00
|
|
|
NULL, /* shutdown */
|
2014-06-12 14:26:33 +00:00
|
|
|
NULL, /* get_name */
|
2014-05-16 20:20:33 +00:00
|
|
|
frontend_ps3_get_rating, /* get_rating */
|
2014-10-17 01:55:16 +00:00
|
|
|
NULL, /* load_content */
|
2013-07-26 18:58:47 +00:00
|
|
|
"ps3",
|
|
|
|
};
|