2022-02-04 15:19:43 +01:00
|
|
|
#include "FileWrapper.h"
|
|
|
|
#include "fileinfos.h"
|
|
|
|
#include "filelist.h"
|
|
|
|
#include "fs/FSUtils.h"
|
|
|
|
#include "utils/StringTools.h"
|
|
|
|
#include "utils/ini.h"
|
2019-09-08 21:06:53 +02:00
|
|
|
#include <coreinit/cache.h>
|
2022-02-04 15:19:43 +01:00
|
|
|
#include <coreinit/debug.h>
|
2019-09-06 17:02:09 +02:00
|
|
|
#include <coreinit/filesystem.h>
|
2022-02-04 15:19:43 +01:00
|
|
|
#include <coreinit/mcp.h>
|
2022-02-14 19:25:54 +01:00
|
|
|
#include <coreinit/mutex.h>
|
2022-02-04 15:19:43 +01:00
|
|
|
#include <coreinit/systeminfo.h>
|
|
|
|
#include <coreinit/title.h>
|
|
|
|
#include <cstring>
|
2019-09-06 17:02:09 +02:00
|
|
|
#include <fs/DirList.h>
|
2022-02-14 19:30:59 +01:00
|
|
|
#include <malloc.h>
|
2022-02-04 15:19:43 +01:00
|
|
|
#include <nn/acp.h>
|
2021-01-24 15:49:26 +01:00
|
|
|
#include <rpxloader.h>
|
2022-02-04 15:19:43 +01:00
|
|
|
#include <sysapp/title.h>
|
|
|
|
#include <utils/logger.h>
|
|
|
|
#include <wups.h>
|
2019-12-07 22:15:43 +01:00
|
|
|
|
2021-01-01 01:50:00 +01:00
|
|
|
typedef struct ACPMetaData {
|
2020-06-17 22:15:45 +02:00
|
|
|
char bootmovie[80696];
|
|
|
|
char bootlogo[28604];
|
2021-01-01 01:50:00 +01:00
|
|
|
} ACPMetaData;
|
2020-06-17 22:15:45 +02:00
|
|
|
|
2020-06-17 22:20:59 +02:00
|
|
|
WUPS_PLUGIN_NAME("Homebrew in Wii U menu");
|
|
|
|
WUPS_PLUGIN_DESCRIPTION("Allows the user to load homebrew from the Wii U menu");
|
2019-11-24 14:14:45 +01:00
|
|
|
WUPS_PLUGIN_VERSION("0.1");
|
2019-09-06 17:02:09 +02:00
|
|
|
WUPS_PLUGIN_AUTHOR("Maschell");
|
|
|
|
WUPS_PLUGIN_LICENSE("GPL");
|
|
|
|
|
2020-06-17 14:28:15 +02:00
|
|
|
#define UPPER_TITLE_ID_HOMEBREW 0x0005000F
|
2021-01-01 01:50:00 +01:00
|
|
|
|
2022-02-04 15:19:43 +01:00
|
|
|
#define TITLE_ID_HOMEBREW_MASK (((uint64_t) UPPER_TITLE_ID_HOMEBREW) << 32)
|
2020-06-17 14:28:15 +02:00
|
|
|
|
2019-09-08 21:06:53 +02:00
|
|
|
ACPMetaXml gLaunchXML __attribute__((section(".data")));
|
2021-01-09 18:46:50 +01:00
|
|
|
MCPTitleListType current_launched_title_info __attribute__((section(".data")));
|
2019-09-08 21:06:53 +02:00
|
|
|
BOOL gHomebrewLaunched __attribute__((section(".data")));
|
|
|
|
|
2021-01-09 18:46:50 +01:00
|
|
|
void readCustomTitlesFromSD();
|
|
|
|
|
2021-02-20 00:24:07 +01:00
|
|
|
extern "C" void _SYSLaunchTitleWithStdArgsInNoSplash(uint64_t, uint32_t);
|
|
|
|
|
2021-09-24 20:50:35 +02:00
|
|
|
WUPS_USE_WUT_DEVOPTAB();
|
2019-11-24 14:14:45 +01:00
|
|
|
|
2022-02-14 19:25:54 +01:00
|
|
|
OSMutex fileWrapperMutex;
|
|
|
|
OSMutex fileinfoMutex;
|
|
|
|
|
2019-09-08 21:06:53 +02:00
|
|
|
INITIALIZE_PLUGIN() {
|
2021-01-09 18:46:50 +01:00
|
|
|
memset((void *) ¤t_launched_title_info, 0, sizeof(current_launched_title_info));
|
2020-06-17 13:45:15 +02:00
|
|
|
memset((void *) &gLaunchXML, 0, sizeof(gLaunchXML));
|
|
|
|
memset((void *) &gFileInfos, 0, sizeof(gFileInfos));
|
2022-02-14 20:54:54 +01:00
|
|
|
memset((void *) &gFileHandleWrapper, 0, sizeof(gFileHandleWrapper));
|
2019-09-08 21:06:53 +02:00
|
|
|
gHomebrewLaunched = FALSE;
|
2022-02-14 19:25:54 +01:00
|
|
|
OSInitMutex(&fileWrapperMutex);
|
|
|
|
OSInitMutex(&fileinfoMutex);
|
2019-09-08 21:06:53 +02:00
|
|
|
}
|
2019-09-06 17:02:09 +02:00
|
|
|
|
2021-03-16 17:37:11 +01:00
|
|
|
ON_APPLICATION_START() {
|
2022-01-30 20:38:48 +01:00
|
|
|
initLogging();
|
2019-09-08 21:06:53 +02:00
|
|
|
|
2021-01-09 18:46:50 +01:00
|
|
|
if (OSGetTitleID() == 0x0005001010040000L || // Wii U Menu JPN
|
|
|
|
OSGetTitleID() == 0x0005001010040100L || // Wii U Menu USA
|
|
|
|
OSGetTitleID() == 0x0005001010040200L) { // Wii U Menu ERU
|
|
|
|
readCustomTitlesFromSD();
|
|
|
|
}
|
|
|
|
|
2020-06-17 13:45:15 +02:00
|
|
|
if (_SYSGetSystemApplicationTitleId(SYSTEM_APP_ID_HEALTH_AND_SAFETY) != OSGetTitleID()) {
|
2020-06-17 22:19:23 +02:00
|
|
|
DEBUG_FUNCTION_LINE("gHomebrewLaunched to FALSE");
|
2019-09-08 21:06:53 +02:00
|
|
|
gHomebrewLaunched = FALSE;
|
|
|
|
}
|
2019-09-06 17:02:09 +02:00
|
|
|
}
|
|
|
|
|
2022-01-30 20:38:48 +01:00
|
|
|
ON_APPLICATION_ENDS() {
|
2022-02-14 19:29:13 +01:00
|
|
|
unmountAllRomfs();
|
2022-02-14 19:28:23 +01:00
|
|
|
FileHandleWrapper_FreeAll();
|
2022-01-30 20:38:48 +01:00
|
|
|
deinitLogging();
|
2019-09-06 17:02:09 +02:00
|
|
|
}
|
|
|
|
|
2020-06-17 13:45:15 +02:00
|
|
|
void fillXmlForTitleID(uint32_t titleid_upper, uint32_t titleid_lower, ACPMetaXml *out_buf) {
|
2020-06-17 16:37:17 +02:00
|
|
|
int32_t id = getIDByLowerTitleID(titleid_lower);
|
2020-06-17 22:16:10 +02:00
|
|
|
if (id < 0) {
|
2020-06-17 22:19:23 +02:00
|
|
|
DEBUG_FUNCTION_LINE("Failed to get id by titleid");
|
2020-06-17 16:37:17 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (id >= FILE_INFO_SIZE) {
|
2019-12-07 22:15:43 +01:00
|
|
|
return;
|
|
|
|
}
|
2020-06-17 13:45:15 +02:00
|
|
|
out_buf->title_id = ((uint64_t) titleid_upper * 0x100000000) + titleid_lower;
|
2021-01-09 19:37:41 +01:00
|
|
|
strncpy(out_buf->longname_en, gFileInfos[id].longname, 64);
|
|
|
|
strncpy(out_buf->shortname_en, gFileInfos[id].shortname, 64);
|
|
|
|
strncpy(out_buf->publisher_en, gFileInfos[id].author, 64);
|
2022-02-04 15:19:43 +01:00
|
|
|
out_buf->e_manual = 1;
|
|
|
|
out_buf->e_manual_version = 0;
|
|
|
|
out_buf->title_version = 1;
|
|
|
|
out_buf->network_use = 1;
|
|
|
|
out_buf->launching_flag = 4;
|
2019-11-24 14:14:45 +01:00
|
|
|
out_buf->online_account_use = 1;
|
2022-02-04 15:19:43 +01:00
|
|
|
out_buf->os_version = 0x000500101000400A;
|
|
|
|
out_buf->region = 0xFFFFFFFF;
|
|
|
|
out_buf->common_save_size = 0x0000000001790000;
|
|
|
|
out_buf->group_id = 0x400;
|
|
|
|
out_buf->drc_use = 1;
|
|
|
|
out_buf->version = 1;
|
|
|
|
out_buf->reserved_flag0 = 0x00010001;
|
|
|
|
out_buf->reserved_flag6 = 0x00000003;
|
|
|
|
out_buf->pc_usk = 128;
|
2020-06-17 14:26:01 +02:00
|
|
|
strncpy(out_buf->product_code, "WUP-P-HBLD", strlen("WUP-P-HBLD") + 1);
|
|
|
|
strncpy(out_buf->content_platform, "WUP", strlen("WUP") + 1);
|
|
|
|
strncpy(out_buf->company_code, "0001", strlen("0001") + 1);
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
|
|
|
|
2020-06-17 14:31:38 +02:00
|
|
|
/* hash: compute hash value of string */
|
|
|
|
unsigned int hash(char *str) {
|
|
|
|
unsigned int h;
|
|
|
|
unsigned char *p;
|
|
|
|
|
|
|
|
h = 0;
|
|
|
|
for (p = (unsigned char *) str; *p != '\0'; p++) {
|
|
|
|
h = 37 * h + *p;
|
|
|
|
}
|
|
|
|
return h; // or, h % ARRAY_SIZE;
|
|
|
|
}
|
|
|
|
|
2021-01-09 19:37:41 +01:00
|
|
|
static int handler(void *user, const char *section, const char *name,
|
|
|
|
const char *value) {
|
|
|
|
auto *fInfo = (FileInfos *) user;
|
|
|
|
#define MATCH(s, n) strcmp(section, s) == 0 && strcmp(name, n) == 0
|
2021-01-24 15:49:26 +01:00
|
|
|
|
|
|
|
DEBUG_FUNCTION_LINE("%s %s %s", section, name, value);
|
2021-01-09 19:37:41 +01:00
|
|
|
if (MATCH("menu", "longname")) {
|
2021-01-24 15:49:26 +01:00
|
|
|
strncpy(fInfo->longname, value, 64 - 1);
|
2021-01-09 19:37:41 +01:00
|
|
|
} else if (MATCH("menu", "shortname")) {
|
2021-01-24 15:49:26 +01:00
|
|
|
strncpy(fInfo->shortname, value, 64 - 1);
|
2021-01-09 19:37:41 +01:00
|
|
|
} else if (MATCH("menu", "author")) {
|
2021-01-24 15:49:26 +01:00
|
|
|
strncpy(fInfo->author, value, 64 - 1);
|
2021-01-09 19:37:41 +01:00
|
|
|
} else {
|
2022-02-04 15:19:43 +01:00
|
|
|
return 0; /* unknown section/name, error */
|
2021-01-09 19:37:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-01-09 18:46:50 +01:00
|
|
|
void readCustomTitlesFromSD() {
|
|
|
|
// Reset current infos
|
|
|
|
unmountAllRomfs();
|
|
|
|
memset((void *) &gFileInfos, 0, sizeof(gFileInfos));
|
2019-09-06 17:02:09 +02:00
|
|
|
|
2021-01-09 18:46:50 +01:00
|
|
|
DirList dirList("fs:/vol/external01/wiiu/apps", ".rpx,.wuhb", DirList::Files | DirList::CheckSubfolders, 1);
|
2019-09-06 17:02:09 +02:00
|
|
|
dirList.SortList();
|
2019-11-24 14:14:45 +01:00
|
|
|
|
2019-09-06 17:02:09 +02:00
|
|
|
int j = 0;
|
2020-06-17 13:45:15 +02:00
|
|
|
for (int i = 0; i < dirList.GetFilecount(); i++) {
|
|
|
|
if (j >= FILE_INFO_SIZE) {
|
2020-06-17 22:19:23 +02:00
|
|
|
DEBUG_FUNCTION_LINE("TOO MANY TITLES");
|
2019-12-07 22:15:43 +01:00
|
|
|
break;
|
|
|
|
}
|
2021-01-09 18:46:50 +01:00
|
|
|
|
|
|
|
//! skip wiiload temp files
|
|
|
|
if (strcasecmp(dirList.GetFilename(i), "temp.rpx") == 0) {
|
2019-09-06 17:02:09 +02:00
|
|
|
continue;
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
2021-01-09 18:46:50 +01:00
|
|
|
|
|
|
|
//! skip wiiload temp files
|
|
|
|
if (strcasecmp(dirList.GetFilename(i), "temp.wuhb") == 0) {
|
2019-09-06 17:02:09 +02:00
|
|
|
continue;
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
2019-09-06 17:02:09 +02:00
|
|
|
|
2021-01-24 15:49:26 +01:00
|
|
|
//! skip wiiload temp files
|
|
|
|
if (strcasecmp(dirList.GetFilename(i), "temp2.wuhb") == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-09-06 17:02:09 +02:00
|
|
|
//! skip hidden linux and mac files
|
2020-06-17 13:45:15 +02:00
|
|
|
if (dirList.GetFilename(i)[0] == '.' || dirList.GetFilename(i)[0] == '_') {
|
2019-09-06 17:02:09 +02:00
|
|
|
continue;
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
2019-09-08 21:06:53 +02:00
|
|
|
|
2022-02-04 15:19:43 +01:00
|
|
|
char *repl = (char *) "fs:/vol/external01/";
|
|
|
|
char *with = (char *) "";
|
2020-06-17 13:45:15 +02:00
|
|
|
char *input = (char *) dirList.GetFilepath(i);
|
2019-11-24 14:14:45 +01:00
|
|
|
|
2020-06-17 13:45:15 +02:00
|
|
|
char *path = StringTools::str_replace(input, repl, with);
|
2021-01-09 18:46:50 +01:00
|
|
|
if (path != nullptr) {
|
2020-06-17 13:45:15 +02:00
|
|
|
strncpy(gFileInfos[j].path, path, 255);
|
2019-11-24 14:14:45 +01:00
|
|
|
free(path);
|
|
|
|
}
|
|
|
|
|
2020-06-17 22:13:21 +02:00
|
|
|
gFileInfos[j].lowerTitleID = hash(gFileInfos[j].path);
|
|
|
|
|
2021-01-09 18:46:50 +01:00
|
|
|
MCPTitleListType *cur_title_info = &(gFileInfos[j].titleInfo);
|
|
|
|
|
2022-02-14 19:29:52 +01:00
|
|
|
snprintf(cur_title_info->path, sizeof(cur_title_info->path), "/custom/%08X%08X", UPPER_TITLE_ID_HOMEBREW, gFileInfos[j].lowerTitleID);
|
|
|
|
|
|
|
|
strncpy(gFileInfos[j].filename, dirList.GetFilename(i), sizeof(gFileInfos[j].filename));
|
|
|
|
strncpy(gFileInfos[j].longname, dirList.GetFilename(i), sizeof(gFileInfos[j].longname));
|
|
|
|
strncpy(gFileInfos[j].shortname, dirList.GetFilename(i), sizeof(gFileInfos[j].shortname));
|
|
|
|
strncpy(gFileInfos[j].author, dirList.GetFilename(i), sizeof(gFileInfos[j].author));
|
2019-11-24 14:14:45 +01:00
|
|
|
gFileInfos[j].source = 0; //SD Card;
|
|
|
|
|
2020-06-17 13:45:15 +02:00
|
|
|
const char *indexedDevice = "mlc";
|
2022-02-14 19:29:52 +01:00
|
|
|
strncpy(cur_title_info->indexedDevice, indexedDevice, sizeof(cur_title_info->indexedDevice));
|
2020-12-12 17:38:02 +01:00
|
|
|
|
|
|
|
// System apps don't have a splash screen.
|
2021-01-09 18:46:50 +01:00
|
|
|
cur_title_info->appType = MCP_APP_TYPE_SYSTEM_APPS;
|
2020-12-12 17:38:02 +01:00
|
|
|
|
|
|
|
// Check if the have bootTvTex and bootDrcTex that could be shown.
|
2021-01-09 19:37:41 +01:00
|
|
|
if (StringTools::EndsWith(gFileInfos[j].filename, ".wuhb")) {
|
2021-09-24 20:50:35 +02:00
|
|
|
int result = 0;
|
|
|
|
if ((result = RL_MountBundle("romfscheck", dirList.GetFilepath(i), BundleSource_FileDescriptor)) == 0) {
|
2021-01-24 15:49:26 +01:00
|
|
|
uint32_t file_handle = 0;
|
|
|
|
if (RL_FileOpen("romfscheck:/meta/meta.ini", &file_handle) == 0) {
|
|
|
|
// this buffer should be big enough for our .ini
|
2022-02-14 19:30:59 +01:00
|
|
|
char *ini_buffer = (char *) memalign(0x40, 0x1000);
|
|
|
|
if (ini_buffer) {
|
|
|
|
memset(ini_buffer, 0, 0x1000);
|
|
|
|
uint32_t offset = 0;
|
|
|
|
uint32_t toRead = 0x1000;
|
|
|
|
do {
|
|
|
|
int res = RL_FileRead(file_handle, reinterpret_cast<uint8_t *>(&ini_buffer[offset]), toRead);
|
|
|
|
if (res <= 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
offset += res;
|
|
|
|
toRead -= res;
|
|
|
|
} while (offset < sizeof(ini_buffer));
|
|
|
|
|
|
|
|
if (ini_parse_string(ini_buffer, handler, &gFileInfos[j]) < 0) {
|
|
|
|
DEBUG_FUNCTION_LINE("Failed to parse ini");
|
2021-01-24 15:49:26 +01:00
|
|
|
}
|
2022-02-14 19:30:59 +01:00
|
|
|
free(ini_buffer);
|
|
|
|
} else {
|
|
|
|
DEBUG_FUNCTION_LINE("Failed to alloc memory");
|
2021-01-24 15:49:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
RL_FileClose(file_handle);
|
2021-01-09 19:37:41 +01:00
|
|
|
}
|
|
|
|
|
2020-12-12 17:38:02 +01:00
|
|
|
bool foundSplashScreens = true;
|
2021-01-24 15:49:26 +01:00
|
|
|
if (!RL_FileExists("romfscheck:/meta/bootTvTex.tga")) {
|
2020-12-12 17:38:02 +01:00
|
|
|
foundSplashScreens = false;
|
|
|
|
}
|
2021-01-24 15:49:26 +01:00
|
|
|
if (!RL_FileExists("romfscheck:/meta/bootDrcTex.tga")) {
|
2020-12-12 17:38:02 +01:00
|
|
|
foundSplashScreens = false;
|
|
|
|
}
|
|
|
|
if (foundSplashScreens) {
|
|
|
|
// Show splash screens
|
2021-01-09 18:46:50 +01:00
|
|
|
cur_title_info->appType = MCP_APP_TYPE_GAME;
|
2020-12-12 17:38:02 +01:00
|
|
|
}
|
2021-01-24 15:49:26 +01:00
|
|
|
RL_UnmountBundle("romfscheck");
|
2020-12-12 17:38:02 +01:00
|
|
|
} else {
|
2021-09-24 20:50:35 +02:00
|
|
|
DEBUG_FUNCTION_LINE("%s is not a valid .wuhb file: %d", dirList.GetFilepath(i), result);
|
2021-01-09 19:37:41 +01:00
|
|
|
continue;
|
2020-12-12 17:38:02 +01:00
|
|
|
}
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
2020-12-12 17:38:02 +01:00
|
|
|
|
2022-02-04 15:19:43 +01:00
|
|
|
cur_title_info->titleId = TITLE_ID_HOMEBREW_MASK | gFileInfos[j].lowerTitleID;
|
2021-01-09 18:46:50 +01:00
|
|
|
cur_title_info->titleVersion = 1;
|
2022-02-04 15:19:43 +01:00
|
|
|
cur_title_info->groupId = 0x400;
|
2019-11-24 14:14:45 +01:00
|
|
|
|
2022-02-04 15:19:43 +01:00
|
|
|
cur_title_info->osVersion = OSGetOSID();
|
2021-01-09 18:46:50 +01:00
|
|
|
cur_title_info->sdkVersion = __OSGetProcessSDKVersion();
|
2022-02-04 15:19:43 +01:00
|
|
|
cur_title_info->unk0x60 = 0;
|
2019-09-08 21:06:53 +02:00
|
|
|
|
2021-01-09 18:46:50 +01:00
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
2019-12-07 22:15:43 +01:00
|
|
|
|
2021-01-09 18:46:50 +01:00
|
|
|
DECL_FUNCTION(int32_t, MCP_TitleList, uint32_t handle, uint32_t *outTitleCount, MCPTitleListType *titleList, uint32_t size) {
|
2022-02-04 15:19:43 +01:00
|
|
|
int32_t result = real_MCP_TitleList(handle, outTitleCount, titleList, size);
|
2021-01-09 18:46:50 +01:00
|
|
|
uint32_t titlecount = *outTitleCount;
|
|
|
|
|
2022-02-14 19:25:54 +01:00
|
|
|
OSLockMutex(&fileinfoMutex);
|
2021-01-09 18:46:50 +01:00
|
|
|
for (auto &gFileInfo : gFileInfos) {
|
|
|
|
if (gFileInfo.lowerTitleID == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
memcpy(&(titleList[titlecount]), &(gFileInfo.titleInfo), sizeof(gFileInfo.titleInfo));
|
2019-09-06 17:02:09 +02:00
|
|
|
titlecount++;
|
|
|
|
}
|
2022-02-14 19:25:54 +01:00
|
|
|
OSUnlockMutex(&fileinfoMutex);
|
2019-09-08 21:06:53 +02:00
|
|
|
|
2019-09-06 17:02:09 +02:00
|
|
|
*outTitleCount = titlecount;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-06-17 13:45:15 +02:00
|
|
|
DECL_FUNCTION(int32_t, ACPCheckTitleLaunchByTitleListTypeEx, MCPTitleListType *title, uint32_t u2) {
|
2020-06-17 14:36:41 +02:00
|
|
|
if ((title->titleId & TITLE_ID_HOMEBREW_MASK) == TITLE_ID_HOMEBREW_MASK) {
|
2020-06-17 14:31:38 +02:00
|
|
|
int32_t id = getIDByLowerTitleID(title->titleId & 0xFFFFFFFF);
|
2020-06-17 22:13:02 +02:00
|
|
|
if (id >= 0) {
|
2021-01-01 01:51:11 +01:00
|
|
|
DEBUG_FUNCTION_LINE("Starting a homebrew title");
|
|
|
|
|
2021-01-24 15:49:26 +01:00
|
|
|
fillXmlForTitleID((title->titleId & 0xFFFFFFFF00000000) >> 32, (title->titleId & 0xFFFFFFFF), &gLaunchXML);
|
2020-06-17 14:31:38 +02:00
|
|
|
|
2021-01-24 15:49:26 +01:00
|
|
|
std::string bundleFilePath = std::string("/vol/external01/") + gFileInfos[id].path;
|
2021-09-24 20:50:35 +02:00
|
|
|
|
2021-01-09 18:46:50 +01:00
|
|
|
gHomebrewLaunched = TRUE;
|
|
|
|
|
2021-01-24 15:49:26 +01:00
|
|
|
RL_LoadFromSDOnNextLaunch(gFileInfos[id].path);
|
2020-06-17 14:31:38 +02:00
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
DEBUG_FUNCTION_LINE("Failed to get the id for titleID %016llX", title->titleId);
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
2019-09-12 18:55:49 +02:00
|
|
|
}
|
2019-09-08 21:06:53 +02:00
|
|
|
|
2019-09-12 18:55:49 +02:00
|
|
|
int result = real_ACPCheckTitleLaunchByTitleListTypeEx(title, u2);
|
|
|
|
return result;
|
2019-09-06 17:02:09 +02:00
|
|
|
}
|
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
DECL_FUNCTION(int, FSOpenFile, FSClient *client, FSCmdBlock *block, char *path, const char *mode, int *handle, int error) {
|
2022-02-04 15:19:43 +01:00
|
|
|
const char *start = "/vol/storage_mlc01/sys/title/0005000F";
|
|
|
|
const char *icon = ".tga";
|
2020-06-17 14:36:41 +02:00
|
|
|
const char *iconTex = "iconTex.tga";
|
2022-02-04 15:19:43 +01:00
|
|
|
const char *sound = ".btsnd";
|
2019-11-24 14:14:45 +01:00
|
|
|
|
2020-06-17 13:45:15 +02:00
|
|
|
if (StringTools::EndsWith(path, icon) || StringTools::EndsWith(path, sound)) {
|
|
|
|
if (strncmp(path, start, strlen(start)) == 0) {
|
2019-11-24 14:14:45 +01:00
|
|
|
int res = FS_STATUS_NOT_FOUND;
|
2021-01-24 15:49:26 +01:00
|
|
|
|
2020-06-17 13:45:15 +02:00
|
|
|
if (StringTools::EndsWith(path, iconTex)) {
|
2022-02-14 19:28:33 +01:00
|
|
|
// fallback to dummy icon if loaded homebrew is no .wuhb
|
2020-06-17 22:14:36 +02:00
|
|
|
*handle = 0x13371338;
|
2022-02-04 15:19:43 +01:00
|
|
|
res = FS_STATUS_OK;
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
|
|
|
|
2020-06-17 16:37:17 +02:00
|
|
|
uint32_t lowerTitleID;
|
2022-02-04 15:19:43 +01:00
|
|
|
char *id = path + 1 + strlen(start);
|
|
|
|
id[8] = 0;
|
2020-06-17 13:45:15 +02:00
|
|
|
char *ending = id + 9;
|
2020-06-17 16:37:17 +02:00
|
|
|
sscanf(id, "%08X", &lowerTitleID);
|
|
|
|
int32_t idVal = getIDByLowerTitleID(lowerTitleID);
|
2022-02-14 19:28:56 +01:00
|
|
|
if (idVal >= 0) {
|
|
|
|
if (StringTools::EndsWith(gFileInfos[idVal].filename, ".wuhb") && OpenFileForID(idVal, ending, handle) < 0) {
|
2020-06-17 16:37:17 +02:00
|
|
|
return res;
|
|
|
|
}
|
2022-02-14 19:28:56 +01:00
|
|
|
} else {
|
|
|
|
DEBUG_FUNCTION_LINE("Failed to find id for titleID %08X", lowerTitleID);
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
|
|
|
return FS_STATUS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int result = real_FSOpenFile(client, block, path, mode, handle, error);
|
2019-09-12 18:55:49 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-11-24 14:14:45 +01:00
|
|
|
DECL_FUNCTION(FSStatus, FSCloseFile, FSClient *client, FSCmdBlock *block, FSFileHandle handle, uint32_t flags) {
|
2021-01-24 15:49:26 +01:00
|
|
|
if (handle == 0x13371338) {
|
2019-12-08 22:49:08 +01:00
|
|
|
return FS_STATUS_OK;
|
2021-01-24 15:49:26 +01:00
|
|
|
} else if ((handle & 0xFF000000) == 0xFF000000) {
|
2022-02-14 19:25:54 +01:00
|
|
|
int32_t fd = (handle & 0x00000FFF);
|
|
|
|
int32_t romid = (handle & 0x00FFF000) >> 12;
|
|
|
|
OSLockMutex(&fileinfoMutex);
|
2021-01-24 15:49:26 +01:00
|
|
|
uint32_t rl_handle = gFileHandleWrapper[fd].handle;
|
|
|
|
RL_FileClose(rl_handle);
|
2020-06-17 13:45:15 +02:00
|
|
|
if (gFileInfos[romid].openedFiles--) {
|
2021-01-24 15:49:26 +01:00
|
|
|
DCFlushRange(&gFileInfos[romid].openedFiles, 4);
|
2020-06-17 13:45:15 +02:00
|
|
|
if (gFileInfos[romid].openedFiles <= 0) {
|
2020-06-17 22:19:23 +02:00
|
|
|
DEBUG_FUNCTION_LINE("unmount romfs no more handles");
|
2019-12-08 22:49:08 +01:00
|
|
|
unmountRomfs(romid);
|
|
|
|
}
|
|
|
|
}
|
2022-02-14 19:25:54 +01:00
|
|
|
OSUnlockMutex(&fileinfoMutex);
|
2019-11-24 14:14:45 +01:00
|
|
|
return FS_STATUS_OK;
|
|
|
|
}
|
2020-06-17 13:45:15 +02:00
|
|
|
return real_FSCloseFile(client, block, handle, flags);
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
|
|
|
|
2020-06-17 13:45:15 +02:00
|
|
|
DECL_FUNCTION(FSStatus, FSReadFile, FSClient *client, FSCmdBlock *block, uint8_t *buffer, uint32_t size, uint32_t count, FSFileHandle handle, uint32_t unk1, uint32_t flags) {
|
2021-01-24 15:49:26 +01:00
|
|
|
if (handle == 0x13371338) {
|
2020-06-17 22:14:36 +02:00
|
|
|
uint32_t cpySize = size * count;
|
|
|
|
if (iconTex_tga_size < cpySize) {
|
|
|
|
cpySize = iconTex_tga_size;
|
|
|
|
}
|
|
|
|
memcpy(buffer, iconTex_tga, cpySize);
|
|
|
|
return (FSStatus) (cpySize / size);
|
2021-01-24 15:49:26 +01:00
|
|
|
} else if ((handle & 0xFF000000) == 0xFF000000) {
|
2022-02-04 15:19:43 +01:00
|
|
|
int32_t fd = (handle & 0x00000FFF);
|
2019-12-08 22:49:08 +01:00
|
|
|
int32_t romid = (handle & 0x00FFF000) >> 12;
|
|
|
|
|
2021-01-24 15:49:26 +01:00
|
|
|
uint32_t rl_handle = gFileHandleWrapper[fd].handle;
|
|
|
|
|
|
|
|
int readSize = RL_FileRead(rl_handle, buffer, (size * count));
|
2019-12-07 22:15:43 +01:00
|
|
|
|
2020-06-17 13:45:15 +02:00
|
|
|
return (FSStatus) (readSize / size);
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
|
|
|
FSStatus result = real_FSReadFile(client, block, buffer, size, count, handle, unk1, flags);
|
2019-09-06 17:02:09 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-06-17 13:45:15 +02:00
|
|
|
DECL_FUNCTION(int32_t, ACPGetTitleMetaXmlByDevice, uint32_t titleid_upper, uint32_t titleid_lower, ACPMetaXml *out_buf, uint32_t device, uint32_t u1) {
|
|
|
|
int result = real_ACPGetTitleMetaXmlByDevice(titleid_upper, titleid_lower, out_buf, device, u1);
|
2020-06-17 14:28:15 +02:00
|
|
|
if (titleid_upper == UPPER_TITLE_ID_HOMEBREW) {
|
2020-06-17 13:45:15 +02:00
|
|
|
fillXmlForTitleID(titleid_upper, titleid_lower, out_buf);
|
2019-09-06 17:02:09 +02:00
|
|
|
result = 0;
|
|
|
|
}
|
2019-09-08 21:06:53 +02:00
|
|
|
return result;
|
2019-09-06 17:02:09 +02:00
|
|
|
}
|
|
|
|
|
2020-06-17 13:45:15 +02:00
|
|
|
DECL_FUNCTION(int32_t, ACPGetTitleMetaDirByDevice, uint32_t titleid_upper, uint32_t titleid_lower, char *out_buf, uint32_t size, int device) {
|
2020-06-17 14:28:15 +02:00
|
|
|
if (titleid_upper == UPPER_TITLE_ID_HOMEBREW) {
|
2020-06-17 13:45:15 +02:00
|
|
|
snprintf(out_buf, 53, "/vol/storage_mlc01/sys/title/%08X/%08X/meta", titleid_upper, titleid_lower);
|
2019-11-24 14:14:45 +01:00
|
|
|
return 0;
|
2019-09-06 17:02:09 +02:00
|
|
|
}
|
2019-11-24 14:14:45 +01:00
|
|
|
int result = real_ACPGetTitleMetaDirByDevice(titleid_upper, titleid_lower, out_buf, size, device);
|
2019-09-06 17:02:09 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-01-01 01:50:00 +01:00
|
|
|
/*
|
|
|
|
* Load the H&S app instead
|
|
|
|
*/
|
2020-06-17 13:45:15 +02:00
|
|
|
DECL_FUNCTION(int32_t, _SYSLaunchTitleByPathFromLauncher, char *pathToLoad, uint32_t u2) {
|
|
|
|
const char *start = "/custom/";
|
|
|
|
if (strncmp(pathToLoad, start, strlen(start)) == 0) {
|
2021-01-09 18:46:50 +01:00
|
|
|
strcpy(current_launched_title_info.path, pathToLoad);
|
2019-11-24 14:14:45 +01:00
|
|
|
uint64_t titleID = _SYSGetSystemApplicationTitleId(SYSTEM_APP_ID_HEALTH_AND_SAFETY);
|
2020-06-17 13:45:15 +02:00
|
|
|
snprintf(pathToLoad, 47, "/vol/storage_mlc01/sys/title/%08x/%08x", (uint32_t) (titleID >> 32), (uint32_t) (0x00000000FFFFFFFF & titleID));
|
2019-09-08 21:06:53 +02:00
|
|
|
}
|
|
|
|
|
2019-09-06 17:02:09 +02:00
|
|
|
int32_t result = real__SYSLaunchTitleByPathFromLauncher(pathToLoad, strlen(pathToLoad));
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-06-17 13:45:15 +02:00
|
|
|
DECL_FUNCTION(int32_t, ACPGetLaunchMetaXml, ACPMetaXml *metaxml) {
|
2019-09-08 21:06:53 +02:00
|
|
|
int result = real_ACPGetLaunchMetaXml(metaxml);
|
2020-06-17 13:45:15 +02:00
|
|
|
if (gHomebrewLaunched) {
|
2019-09-08 21:06:53 +02:00
|
|
|
memcpy(metaxml, &gLaunchXML, sizeof(gLaunchXML));
|
|
|
|
}
|
2019-09-06 17:02:09 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-06-17 13:45:15 +02:00
|
|
|
DECL_FUNCTION(uint32_t, ACPGetApplicationBox, uint32_t *u1, uint32_t *u2, uint32_t u3, uint32_t u4) {
|
2020-06-17 14:28:15 +02:00
|
|
|
if (u3 == UPPER_TITLE_ID_HOMEBREW) {
|
2019-11-24 14:14:45 +01:00
|
|
|
uint64_t titleID = _SYSGetSystemApplicationTitleId(SYSTEM_APP_ID_HEALTH_AND_SAFETY);
|
2022-02-04 15:19:43 +01:00
|
|
|
u3 = (uint32_t) (titleID >> 32);
|
|
|
|
u4 = (uint32_t) (0x00000000FFFFFFFF & titleID);
|
2019-09-08 21:06:53 +02:00
|
|
|
}
|
2020-06-17 13:45:15 +02:00
|
|
|
uint32_t result = real_ACPGetApplicationBox(u1, u2, u3, u4);
|
2019-09-12 18:55:49 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-01-01 01:50:00 +01:00
|
|
|
/*
|
|
|
|
* Redirect the launchable check to H&S
|
|
|
|
*/
|
2020-06-17 13:45:15 +02:00
|
|
|
DECL_FUNCTION(uint32_t, PatchChkStart__3RplFRCQ3_2nn6drmapp8StartArg, uint32_t *param) {
|
2020-06-17 14:28:15 +02:00
|
|
|
if (param[2] == UPPER_TITLE_ID_HOMEBREW) {
|
2019-11-24 14:14:45 +01:00
|
|
|
uint64_t titleID = _SYSGetSystemApplicationTitleId(SYSTEM_APP_ID_HEALTH_AND_SAFETY);
|
2022-02-04 15:19:43 +01:00
|
|
|
param[2] = (uint32_t) (titleID >> 32);
|
|
|
|
param[3] = (uint32_t) (0x00000000FFFFFFFF & titleID);
|
2019-09-12 18:55:49 +02:00
|
|
|
}
|
2019-11-24 14:14:45 +01:00
|
|
|
uint32_t result = real_PatchChkStart__3RplFRCQ3_2nn6drmapp8StartArg(param);
|
2019-09-12 18:55:49 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-01-01 01:50:00 +01:00
|
|
|
/*
|
|
|
|
* Redirect the launchable check to H&S
|
|
|
|
*/
|
2020-06-17 13:45:15 +02:00
|
|
|
DECL_FUNCTION(uint32_t, MCP_RightCheckLaunchable, uint32_t *u1, uint32_t *u2, uint32_t u3, uint32_t u4, uint32_t u5) {
|
2020-06-17 14:28:15 +02:00
|
|
|
if (u3 == UPPER_TITLE_ID_HOMEBREW) {
|
2019-11-24 14:14:45 +01:00
|
|
|
uint64_t titleID = _SYSGetSystemApplicationTitleId(SYSTEM_APP_ID_HEALTH_AND_SAFETY);
|
2022-02-04 15:19:43 +01:00
|
|
|
u3 = (uint32_t) (titleID >> 32);
|
|
|
|
u4 = (uint32_t) (0x00000000FFFFFFFF & titleID);
|
2019-11-24 14:14:45 +01:00
|
|
|
}
|
2020-06-17 13:45:15 +02:00
|
|
|
uint32_t result = real_MCP_RightCheckLaunchable(u1, u2, u3, u4, u5);
|
2019-11-24 14:14:45 +01:00
|
|
|
return result;
|
|
|
|
}
|
2019-09-12 18:55:49 +02:00
|
|
|
|
2021-01-01 01:50:00 +01:00
|
|
|
/*
|
|
|
|
* Patch the boot movie and and boot logo
|
|
|
|
*/
|
|
|
|
DECL_FUNCTION(uint32_t, ACPGetLaunchMetaData, struct ACPMetaData *metadata) {
|
2020-06-17 22:15:45 +02:00
|
|
|
uint32_t result = real_ACPGetLaunchMetaData(metadata);
|
|
|
|
|
|
|
|
if (gHomebrewLaunched) {
|
|
|
|
memcpy(metadata->bootmovie, bootMovie_h264, bootMovie_h264_size);
|
|
|
|
memcpy(metadata->bootlogo, bootLogoTex_tga, bootLogoTex_tga_size);
|
2021-01-01 01:50:00 +01:00
|
|
|
DCFlushRange(metadata->bootmovie, bootMovie_h264_size);
|
|
|
|
DCFlushRange(metadata->bootlogo, bootMovie_h264_size);
|
2020-06-17 22:15:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-04-17 00:03:24 +02:00
|
|
|
typedef struct TitleVersionInfo TitleVersionInfo;
|
|
|
|
|
|
|
|
struct WUT_PACKED TitleVersionInfo {
|
|
|
|
uint16_t currentVersion;
|
|
|
|
uint16_t neededVersion;
|
|
|
|
uint8_t needsUpdate;
|
|
|
|
};
|
|
|
|
WUT_CHECK_OFFSET(TitleVersionInfo, 0x00, currentVersion);
|
|
|
|
WUT_CHECK_OFFSET(TitleVersionInfo, 0x02, neededVersion);
|
|
|
|
WUT_CHECK_OFFSET(TitleVersionInfo, 0x04, needsUpdate);
|
|
|
|
WUT_CHECK_SIZE(TitleVersionInfo, 0x05);
|
2021-01-01 01:50:00 +01:00
|
|
|
|
2021-04-17 00:03:24 +02:00
|
|
|
|
|
|
|
DECL_FUNCTION(uint32_t, GetTitleVersionInfo__Q2_2nn4vctlFPQ3_2nn4vctl16TitleVersionInfoULQ3_2nn4Cafe9MediaType, TitleVersionInfo *titleVersionInfo, uint32_t u2, uint32_t u3, uint32_t u4, uint32_t u5) {
|
|
|
|
int32_t result = real_GetTitleVersionInfo__Q2_2nn4vctlFPQ3_2nn4vctl16TitleVersionInfoULQ3_2nn4Cafe9MediaType(titleVersionInfo, u2, u3, u4, u5);
|
|
|
|
|
|
|
|
if (result < 0) {
|
|
|
|
// Fake result if it's H&S
|
|
|
|
uint64_t titleID = _SYSGetSystemApplicationTitleId(SYSTEM_APP_ID_HEALTH_AND_SAFETY);
|
2021-09-24 20:50:35 +02:00
|
|
|
auto expected_u3 = (uint32_t) (titleID >> 32);
|
|
|
|
auto expected_u4 = (uint32_t) (0x00000000FFFFFFFF & titleID);
|
2021-04-17 00:03:24 +02:00
|
|
|
|
|
|
|
if (expected_u3 == u3 && expected_u4 == u4) {
|
|
|
|
if (titleVersionInfo != nullptr) {
|
|
|
|
titleVersionInfo->currentVersion = 129;
|
2022-02-04 15:19:43 +01:00
|
|
|
titleVersionInfo->neededVersion = 129;
|
|
|
|
titleVersionInfo->needsUpdate = 0;
|
2021-04-17 00:03:24 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
DECL_FUNCTION(uint32_t, GetUpdateInfo__Q2_2nn4vctlFPQ3_2nn4vctl10UpdateInfoULQ3_2nn4Cafe9MediaType, uint32_t u1, uint32_t u2, uint32_t u3, uint32_t u4, uint32_t u5, uint32_t u6) {
|
|
|
|
uint32_t result = real_GetUpdateInfo__Q2_2nn4vctlFPQ3_2nn4vctl10UpdateInfoULQ3_2nn4Cafe9MediaType(u1, u2, u3, u4, u5, u6);
|
|
|
|
|
|
|
|
uint64_t titleID = _SYSGetSystemApplicationTitleId(SYSTEM_APP_ID_HEALTH_AND_SAFETY);
|
2021-09-24 20:50:35 +02:00
|
|
|
auto expected_u3 = (uint32_t) (titleID >> 32);
|
|
|
|
auto expected_u4 = (uint32_t) (0x00000000FFFFFFFF & titleID);
|
2021-04-17 00:03:24 +02:00
|
|
|
|
|
|
|
if (expected_u3 == u3 && expected_u4 == u4) {
|
|
|
|
return 0xa121f480;
|
|
|
|
}
|
|
|
|
|
2021-10-16 14:08:39 +02:00
|
|
|
return result;
|
2021-04-17 00:03:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DECL_FUNCTION(uint32_t, MCPGetTitleInternal, uint32_t mcp_handle, void *input, uint32_t type, MCPTitleListType *titles, uint32_t out_cnt) {
|
|
|
|
if (input != nullptr) {
|
|
|
|
auto *inputPtrAsU32 = (uint32_t *) input;
|
|
|
|
if (inputPtrAsU32[0] == UPPER_TITLE_ID_HOMEBREW && out_cnt >= 1) {
|
|
|
|
for (auto &gFileInfo : gFileInfos) {
|
|
|
|
if (gFileInfo.lowerTitleID == inputPtrAsU32[1]) {
|
|
|
|
memcpy(&titles[0], &(gFileInfo.titleInfo), sizeof(MCPTitleListType));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DEBUG_FUNCTION_LINE("Failed to find lower TID %08X", inputPtrAsU32[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t result = real_MCPGetTitleInternal(mcp_handle, input, type, titles, out_cnt);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
WUPS_MUST_REPLACE(GetTitleVersionInfo__Q2_2nn4vctlFPQ3_2nn4vctl16TitleVersionInfoULQ3_2nn4Cafe9MediaType, WUPS_LOADER_LIBRARY_NN_VCTL, GetTitleVersionInfo__Q2_2nn4vctlFPQ3_2nn4vctl16TitleVersionInfoULQ3_2nn4Cafe9MediaType);
|
|
|
|
WUPS_MUST_REPLACE(GetUpdateInfo__Q2_2nn4vctlFPQ3_2nn4vctl10UpdateInfoULQ3_2nn4Cafe9MediaType, WUPS_LOADER_LIBRARY_NN_VCTL, GetUpdateInfo__Q2_2nn4vctlFPQ3_2nn4vctl10UpdateInfoULQ3_2nn4Cafe9MediaType);
|
2020-06-17 13:45:15 +02:00
|
|
|
WUPS_MUST_REPLACE(ACPGetApplicationBox, WUPS_LOADER_LIBRARY_NN_ACP, ACPGetApplicationBox);
|
|
|
|
WUPS_MUST_REPLACE(PatchChkStart__3RplFRCQ3_2nn6drmapp8StartArg, WUPS_LOADER_LIBRARY_DRMAPP, PatchChkStart__3RplFRCQ3_2nn6drmapp8StartArg);
|
|
|
|
WUPS_MUST_REPLACE(MCP_RightCheckLaunchable, WUPS_LOADER_LIBRARY_COREINIT, MCP_RightCheckLaunchable);
|
|
|
|
|
|
|
|
WUPS_MUST_REPLACE(MCP_TitleList, WUPS_LOADER_LIBRARY_COREINIT, MCP_TitleList);
|
|
|
|
|
|
|
|
WUPS_MUST_REPLACE(ACPCheckTitleLaunchByTitleListTypeEx, WUPS_LOADER_LIBRARY_NN_ACP, ACPCheckTitleLaunchByTitleListTypeEx);
|
|
|
|
WUPS_MUST_REPLACE(ACPGetTitleMetaXmlByDevice, WUPS_LOADER_LIBRARY_NN_ACP, ACPGetTitleMetaXmlByDevice);
|
|
|
|
WUPS_MUST_REPLACE(ACPGetLaunchMetaXml, WUPS_LOADER_LIBRARY_NN_ACP, ACPGetLaunchMetaXml);
|
|
|
|
WUPS_MUST_REPLACE(ACPGetTitleMetaDirByDevice, WUPS_LOADER_LIBRARY_NN_ACP, ACPGetTitleMetaDirByDevice);
|
|
|
|
WUPS_MUST_REPLACE(_SYSLaunchTitleByPathFromLauncher, WUPS_LOADER_LIBRARY_SYSAPP, _SYSLaunchTitleByPathFromLauncher);
|
2020-06-17 22:15:45 +02:00
|
|
|
WUPS_MUST_REPLACE(ACPGetLaunchMetaData, WUPS_LOADER_LIBRARY_NN_ACP, ACPGetLaunchMetaData);
|
2021-01-01 01:50:00 +01:00
|
|
|
|
|
|
|
WUPS_MUST_REPLACE(FSReadFile, WUPS_LOADER_LIBRARY_COREINIT, FSReadFile);
|
|
|
|
WUPS_MUST_REPLACE(FSOpenFile, WUPS_LOADER_LIBRARY_COREINIT, FSOpenFile);
|
|
|
|
WUPS_MUST_REPLACE(FSCloseFile, WUPS_LOADER_LIBRARY_COREINIT, FSCloseFile);
|
2021-04-17 00:03:24 +02:00
|
|
|
|
|
|
|
WUPS_MUST_REPLACE_PHYSICAL(MCPGetTitleInternal, (0x3001C400 + 0x0205a590), (0x0205a590 - 0xFE3C00));
|