How do I make my own channel forwarder without haxchi?

pietempgba

Well-Known Member
OP
Member
Joined
Jun 9, 2016
Messages
1,049
Trophies
0
XP
1,515
Country
United States
I saw Laf111's WiiUFtpServer repo and I see that there's a rpx file in there here but I don't know how it was made including the app and cos xml files, also is there a valid range of titleids? I'm tired of having to rely on the haxchi forwarder guide with limited filepathes.
 

V10lator

Well-Known Member
Member
Joined
Apr 21, 2019
Messages
2,635
Trophies
1
Age
36
XP
5,494
Country
Germany
I'm currenty working on Tiramisu forwarders... These are extremely early, none functional codes I don't have time for to fix but feel free to do whatever you want with it:
C:
#include <stdint.h>

#include <coreinit/cache.h>
#include <coreinit/ios.h>
#include <coreinit/mcp.h>
#include <sysapp/launch.h>

#include <whb/log.h>
#include <whb/log_udp.h>
#include <whb/proc.h>

#include <wut_structsize.h>

extern void _SYSLaunchTitleWithStdArgsInNoSplash(uint64_t, int);

typedef struct WUT_PACKED
{
    uint32_t cmd;
    uint32_t tgt;
    uint32_t fs;
    uint32_t fo;
    char path[256];
} LOAD_REQUEST;
WUT_CHECK_OFFSET(LOAD_REQUEST, 0x00, cmd);
WUT_CHECK_OFFSET(LOAD_REQUEST, 0x04, tgt);
WUT_CHECK_OFFSET(LOAD_REQUEST, 0x08, fs);
WUT_CHECK_OFFSET(LOAD_REQUEST, 0x0C, fo);
WUT_CHECK_OFFSET(LOAD_REQUEST, 0x10, path);
WUT_CHECK_SIZE(LOAD_REQUEST, 0x110);

const uint64_t hs[3] = { 0x000500101004E000, 0x000500101004E100, 0x000500101004E200 };

const LOAD_REQUEST request =
{
    .cmd = 0xFC,
    .tgt = 0,
    .fs = 0,
    .fo = 0,
    .path = "wiiu/apps/[TODO].rpx",
};
void *reqPtr = (void *)&request;

int main()
{
    WHBProcInit();
    WHBLogUdpInit();
    WHBLogPrint("RetroArch loader");

    int mcpHandle = MCP_Open();
    if(mcpHandle > 0)
    {
        WHBLogPrint("Sending request");
        DCFlushRange(reqPtr, sizeof(LOAD_REQUEST));
        IOS_Ioctl(mcpHandle, 100, reqPtr, sizeof(LOAD_REQUEST), NULL, 0);

        uint64_t tid = 0;
        MCPTitleListType tlt;

        for(int i = 0; i < 3; ++i)
        {
            if(MCP_GetTitleInfo(mcpHandle, hs[i], &tlt) == 0)
            {
                tid = hs[i];
                break;
            }
        }

        MCP_Close(mcpHandle);

        if(tid)
        {
            WHBLogPrint("Sending relaunch request");
            _SYSLaunchTitleWithStdArgsInNoSplash(tid, 0);
            WHBLogPrint("Returning");
            WHBLogUdpDeinit();
            WHBProcStopRunning();
            WHBProcIsRunning();
            return 0;
        }
    }

    SYSLaunchMenu();
    WHBLogPrint("Returning with error");
    WHBLogUdpDeinit();
    WHBProcStopRunning();
    WHBProcIsRunning();
    return 0;
}
 
  • Like
Reactions: Donnie-Burger

pietempgba

Well-Known Member
OP
Member
Joined
Jun 9, 2016
Messages
1,049
Trophies
0
XP
1,515
Country
United States
I'm trying to compile the homebrew launcher's sd_loader but I keep on getting stuck here


Code:
sd_loader/src/entry.c:1:10: fatal error: dynamic_libs/os_types.h: No such file or directory
    1 | #include <dynamic_libs/os_types.h>
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
    K3Nv2 @ K3Nv2: Nut on the hill