2020-12-01 13:06:40 +01:00
|
|
|
#include <cstring>
|
2020-04-28 14:43:07 +02:00
|
|
|
|
|
|
|
#include <elfio/elfio.hpp>
|
|
|
|
#include <sysapp/launch.h>
|
2020-12-01 13:06:40 +01:00
|
|
|
#include <nn/act/client_cpp.h>
|
2020-04-28 14:43:07 +02:00
|
|
|
#include <whb/log_udp.h>
|
2021-11-06 23:37:52 +01:00
|
|
|
#include <whb/log_cafe.h>
|
|
|
|
#include <whb/log_module.h>
|
2020-04-28 14:43:07 +02:00
|
|
|
|
|
|
|
#include "fs/DirList.h"
|
|
|
|
#include "module/ModuleDataPersistence.h"
|
|
|
|
#include "module/ModuleDataFactory.h"
|
|
|
|
#include "ElfUtils.h"
|
|
|
|
#include "kernel.h"
|
2020-06-25 19:01:25 +02:00
|
|
|
#include "globals.h"
|
2020-04-28 14:43:07 +02:00
|
|
|
|
|
|
|
extern "C" uint32_t textStart();
|
|
|
|
|
2020-05-17 19:05:51 +02:00
|
|
|
int main(int argc, char **argv) {
|
2021-11-06 23:37:52 +01:00
|
|
|
if (!WHBLogModuleInit()) {
|
|
|
|
WHBLogCafeInit();
|
|
|
|
WHBLogUdpInit();
|
|
|
|
}
|
2020-04-28 14:43:07 +02:00
|
|
|
|
2021-12-28 18:38:22 +01:00
|
|
|
// We subtract 0x100 to be safe.
|
|
|
|
uint32_t textSectionStart = textStart() - 0x100;
|
2020-04-28 14:43:07 +02:00
|
|
|
|
2020-05-17 19:05:51 +02:00
|
|
|
memset((void *) gModuleData, 0, sizeof(module_information_t));
|
2020-06-07 14:09:58 +02:00
|
|
|
gModuleData->version = MODULE_INFORMATION_VERSION;
|
2020-04-29 11:43:45 +02:00
|
|
|
|
2021-12-28 18:38:22 +01:00
|
|
|
std::string basePath = "fs:/vol/external01/wiiu";
|
|
|
|
if (argc >= 1) {
|
|
|
|
basePath = argv[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
DirList modules(basePath + "/modules", ".wms", DirList::Files, 1);
|
2020-04-28 14:43:07 +02:00
|
|
|
modules.SortList();
|
2020-05-29 17:36:10 +02:00
|
|
|
|
2020-06-25 19:01:25 +02:00
|
|
|
uint32_t destination_address = ((uint32_t) gModuleData + (sizeof(module_information_t) + 0x0000FFFF)) & 0xFFFF0000;
|
2020-05-17 19:05:51 +02:00
|
|
|
for (int i = 0; i < modules.GetFilecount(); i++) {
|
|
|
|
DEBUG_FUNCTION_LINE("Loading module %s", modules.GetFilepath(i));
|
2021-12-28 18:38:22 +01:00
|
|
|
auto moduleData = ModuleDataFactory::load(modules.GetFilepath(i), &destination_address, textSectionStart - destination_address, gModuleData->trampolines,
|
2021-12-07 18:23:18 +01:00
|
|
|
DYN_LINK_TRAMPOLIN_LIST_LENGTH);
|
2020-05-17 19:05:51 +02:00
|
|
|
if (moduleData) {
|
2020-04-29 12:06:47 +02:00
|
|
|
DEBUG_FUNCTION_LINE("Successfully loaded %s", modules.GetFilepath(i));
|
2020-05-17 13:11:52 +02:00
|
|
|
ModuleDataPersistence::saveModuleData(gModuleData, moduleData.value());
|
2020-05-03 00:06:11 +02:00
|
|
|
} else {
|
2020-04-29 12:06:47 +02:00
|
|
|
DEBUG_FUNCTION_LINE("Failed to load %s", modules.GetFilepath(i));
|
2020-04-28 14:43:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SetupRelocator();
|
|
|
|
|
|
|
|
WHBLogUdpDeinit();
|
|
|
|
|
2020-12-01 13:07:09 +01:00
|
|
|
nn::act::Initialize();
|
|
|
|
nn::act::SlotNo slot = nn::act::GetSlotNo();
|
|
|
|
nn::act::SlotNo defaultSlot = nn::act::GetDefaultAccount();
|
|
|
|
nn::act::Finalize();
|
|
|
|
|
|
|
|
if (defaultSlot) { //normal menu boot
|
|
|
|
SYSLaunchMenu();
|
|
|
|
} else { //show mii select
|
|
|
|
_SYSLaunchMenuWithCheckingAccount(slot);
|
|
|
|
}
|
2020-04-28 14:43:07 +02:00
|
|
|
return 0;
|
|
|
|
}
|