2021-10-09 00:58:55 +02:00
|
|
|
#include <whb/proc.h>
|
|
|
|
#include <whb/log.h>
|
|
|
|
#include <whb/log_udp.h>
|
|
|
|
|
|
|
|
#include <thread>
|
|
|
|
|
|
|
|
#include <iosuhax.h>
|
|
|
|
#include <ntfs.h>
|
2021-10-15 15:41:16 +02:00
|
|
|
#include <coreinit/debug.h>
|
2021-10-16 13:03:32 +02:00
|
|
|
#include <coreinit/energysaver.h>
|
2021-10-17 14:31:33 +02:00
|
|
|
#include <padscore/kpad.h>
|
|
|
|
#include <input/WPADInput.h>
|
2021-10-09 00:58:55 +02:00
|
|
|
|
|
|
|
#include "utils/logger.h"
|
|
|
|
#include "utils/WiiUScreen.h"
|
|
|
|
#include "input/VPADInput.h"
|
2021-10-15 15:41:16 +02:00
|
|
|
#include "MainApplicationState.h"
|
2021-10-09 00:58:55 +02:00
|
|
|
|
2021-10-17 14:31:33 +02:00
|
|
|
|
2021-10-09 00:58:55 +02:00
|
|
|
void initIOSUHax();
|
|
|
|
|
|
|
|
void deInitIOSUHax();
|
|
|
|
|
|
|
|
void main_loop();
|
|
|
|
|
|
|
|
bool sIosuhaxMount = false;
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
WHBLogUdpInit();
|
|
|
|
DEBUG_FUNCTION_LINE("Hello from wudump!");
|
|
|
|
WHBProcInit();
|
|
|
|
WiiUScreen::Init();
|
|
|
|
|
|
|
|
initIOSUHax();
|
|
|
|
|
2021-10-16 13:03:32 +02:00
|
|
|
uint32_t isAPDEnabled;
|
|
|
|
IMIsAPDEnabled(&isAPDEnabled);
|
|
|
|
|
|
|
|
if (isAPDEnabled) {
|
|
|
|
DEBUG_FUNCTION_LINE("Disable auto shutdown");
|
|
|
|
IMDisableAPD();
|
|
|
|
}
|
|
|
|
|
2021-10-09 00:58:55 +02:00
|
|
|
ntfs_mount_count = ntfsMountAll((ntfs_md **) &ntfs_mounts, NTFS_DEFAULT | NTFS_RECOVER);
|
|
|
|
|
|
|
|
for (int i = 0; i < ntfs_mount_count; i++) {
|
|
|
|
DEBUG_FUNCTION_LINE("%s:", ntfs_mounts[i].name);
|
|
|
|
}
|
|
|
|
|
2021-10-17 14:31:33 +02:00
|
|
|
WPADInput::init();
|
|
|
|
|
2021-10-09 00:58:55 +02:00
|
|
|
main_loop();
|
|
|
|
|
2021-10-17 14:31:33 +02:00
|
|
|
WPADInput::close();
|
|
|
|
|
2021-10-09 00:58:55 +02:00
|
|
|
if (ntfs_mounts != nullptr) {
|
|
|
|
int i = 0;
|
|
|
|
for (i = 0; i < ntfs_mount_count; i++) {
|
|
|
|
ntfsUnmount(ntfs_mounts[i].name, true);
|
|
|
|
}
|
|
|
|
free(ntfs_mounts);
|
|
|
|
}
|
|
|
|
|
2021-10-16 13:03:32 +02:00
|
|
|
if (isAPDEnabled) {
|
|
|
|
DEBUG_FUNCTION_LINE("Enable auto shutdown");
|
|
|
|
IMEnableAPD();
|
|
|
|
}
|
|
|
|
|
2021-10-09 00:58:55 +02:00
|
|
|
deInitIOSUHax();
|
|
|
|
|
|
|
|
WiiUScreen::DeInit();
|
|
|
|
WHBProcShutdown();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void main_loop() {
|
|
|
|
DEBUG_FUNCTION_LINE("Creating state");
|
2021-10-15 15:41:16 +02:00
|
|
|
std::unique_ptr<MainApplicationState> state = std::make_unique<MainApplicationState>();
|
2021-10-17 14:31:33 +02:00
|
|
|
VPadInput vpadInput;
|
|
|
|
WPADInput wpadInputs[4] = {
|
|
|
|
WPAD_CHAN_0,
|
|
|
|
WPAD_CHAN_1,
|
|
|
|
WPAD_CHAN_2,
|
|
|
|
WPAD_CHAN_3
|
|
|
|
};
|
2021-10-09 00:58:55 +02:00
|
|
|
|
|
|
|
if (gFSAfd < 0 || !sIosuhaxMount) {
|
2021-10-15 15:41:16 +02:00
|
|
|
// state.setError(MainApplicationState::eErrorState::ERROR_IOSUHAX_FAILED);
|
|
|
|
OSFatal("IOSUHAX Failed");
|
2021-10-09 00:58:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG_FUNCTION_LINE("Entering main loop");
|
|
|
|
while (WHBProcIsRunning()) {
|
2021-10-17 14:31:33 +02:00
|
|
|
vpadInput.update(1280, 720);
|
|
|
|
for (auto & wpadInput : wpadInputs) {
|
|
|
|
wpadInput.update(1280, 720);
|
|
|
|
vpadInput.combine(wpadInput);
|
|
|
|
}
|
|
|
|
state->update(&vpadInput);
|
2021-10-15 15:41:16 +02:00
|
|
|
state->render();
|
2021-10-09 00:58:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void initIOSUHax() {
|
|
|
|
sIosuhaxMount = false;
|
|
|
|
int res = IOSUHAX_Open(nullptr);
|
|
|
|
if (res < 0) {
|
|
|
|
DEBUG_FUNCTION_LINE("IOSUHAX_open failed");
|
|
|
|
} else {
|
|
|
|
sIosuhaxMount = true;
|
|
|
|
gFSAfd = IOSUHAX_FSA_Open();
|
|
|
|
if (gFSAfd < 0) {
|
|
|
|
DEBUG_FUNCTION_LINE("IOSUHAX_FSA_Open failed");
|
|
|
|
} else {
|
2021-10-15 15:41:16 +02:00
|
|
|
DEBUG_FUNCTION_LINE("IOSUHAX done");
|
2021-10-09 00:58:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void deInitIOSUHax() {
|
|
|
|
if (sIosuhaxMount) {
|
|
|
|
if (gFSAfd >= 0) {
|
|
|
|
IOSUHAX_FSA_Close(gFSAfd);
|
|
|
|
}
|
|
|
|
IOSUHAX_Close();
|
|
|
|
}
|
|
|
|
}
|