2022-02-04 16:25:44 +01:00
|
|
|
#include "utils/logger.h"
|
2022-02-14 20:26:32 +01:00
|
|
|
#include <coreinit/ios.h>
|
|
|
|
#include <cstring>
|
2022-02-04 16:25:44 +01:00
|
|
|
#include <malloc.h>
|
2022-02-14 20:26:32 +01:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
std::string getPluginPath() {
|
|
|
|
char environmentPath[0x100];
|
|
|
|
memset(environmentPath, 0, sizeof(environmentPath));
|
|
|
|
|
|
|
|
auto handle = IOS_Open("/dev/mcp", IOS_OPEN_READ);
|
|
|
|
if (handle >= 0) {
|
|
|
|
int in = 0xF9; // IPC_CUSTOM_COPY_ENVIRONMENT_PATH
|
|
|
|
if (IOS_Ioctl(handle, 100, &in, sizeof(in), environmentPath, sizeof(environmentPath)) != IOS_ERROR_OK) {
|
|
|
|
return "fs:/vol/external01/wiiu/plugins";
|
|
|
|
}
|
|
|
|
|
|
|
|
IOS_Close(handle);
|
|
|
|
}
|
|
|
|
return std::string(environmentPath) + "/plugins";
|
|
|
|
}
|
2019-08-15 10:45:18 +02:00
|
|
|
|
|
|
|
// https://gist.github.com/ccbrown/9722406
|
2020-05-03 12:30:15 +02:00
|
|
|
void dumpHex(const void *data, size_t size) {
|
2019-08-15 10:45:18 +02:00
|
|
|
char ascii[17];
|
|
|
|
size_t i, j;
|
|
|
|
ascii[16] = '\0';
|
|
|
|
DEBUG_FUNCTION_LINE("0x%08X (0x0000): ", data);
|
|
|
|
for (i = 0; i < size; ++i) {
|
2020-05-08 11:17:24 +02:00
|
|
|
WHBLogWritef("%02X ", ((unsigned char *) data)[i]);
|
2020-05-03 12:30:15 +02:00
|
|
|
if (((unsigned char *) data)[i] >= ' ' && ((unsigned char *) data)[i] <= '~') {
|
|
|
|
ascii[i % 16] = ((unsigned char *) data)[i];
|
2019-08-15 10:45:18 +02:00
|
|
|
} else {
|
|
|
|
ascii[i % 16] = '.';
|
|
|
|
}
|
2020-05-03 12:30:15 +02:00
|
|
|
if ((i + 1) % 8 == 0 || i + 1 == size) {
|
2020-05-08 11:17:24 +02:00
|
|
|
WHBLogWritef(" ");
|
2020-05-03 12:30:15 +02:00
|
|
|
if ((i + 1) % 16 == 0) {
|
2020-05-08 11:17:24 +02:00
|
|
|
WHBLogPrintf("| %s ", ascii);
|
2020-05-03 12:30:15 +02:00
|
|
|
if (i + 1 < size) {
|
2022-02-14 20:26:32 +01:00
|
|
|
DEBUG_FUNCTION_LINE("0x%08X (0x%04X); ", ((uint32_t) data) + i + 1, i + 1);
|
2019-08-15 10:45:18 +02:00
|
|
|
}
|
2020-05-03 12:30:15 +02:00
|
|
|
} else if (i + 1 == size) {
|
|
|
|
ascii[(i + 1) % 16] = '\0';
|
|
|
|
if ((i + 1) % 16 <= 8) {
|
2020-05-08 11:17:24 +02:00
|
|
|
WHBLogWritef(" ");
|
2019-08-15 10:45:18 +02:00
|
|
|
}
|
2020-05-03 12:30:15 +02:00
|
|
|
for (j = (i + 1) % 16; j < 16; ++j) {
|
2020-05-08 11:17:24 +02:00
|
|
|
WHBLogWritef(" ");
|
2019-08-15 10:45:18 +02:00
|
|
|
}
|
2020-05-08 11:17:24 +02:00
|
|
|
WHBLogPrintf("| %s ", ascii);
|
2019-08-15 10:45:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|