- Joined
- Jan 25, 2024
- Messages
- 11,566
- Points
- 38
- Age
- 39
- Location
- USA
- Website
- gameparadise.org
- Credits
- 191,469
TLDR
I have two PRs that will enable the
feature for injected / autoboot games with
. I'm sending out a flare to find whomever might be able to review those PRs so we can get this feature enabled for those who want to use it.
https://github.com/FIX94/Nintendont/pull/1054
https://github.com/FIX94/nintendont-autoboot-forwarder/pull/7
Then we can go about getting the injectors (TeconMoon's, UWUVCI, Wii U USB Helper) updated so everyone can configure their
to their heart's content.
A medium-deep dive and explanation for these changes is below.
Background
My personal goal for my Wii U is to essentially turn it into a Gamecube. I want to play all of my old GameCube games (which I still physically have in a box in a closet upstairs) with a native HDMI output and newer controllers (Wii U Pro Controllers).
The requirements I set for myself for this project are:
Some games (e.g. Super Smash Bros Melee) don't really care which slot a controller is in, but for other games (e.g. Mario Kart Double Dash) the first controller is the only one that can navigate the menu.
This means that in order to accomplish requirement 2, I need to be able to be able to configure
to assign a Wii U Pro Controller as the first controller.
After setting up my Wii U with Tiramisu and installing
, I discovered 2 things:
I did notice that when launching
first and then starting a game from within
, the Wii U Gamepad would be in the slot defined by
. So that setting worked. It only stopped working when launching a game injected and then installed to the Wii U Home Menu.
I beat my head against a wall trying a bunch of different things to get it to work (different builds of TeconMoon's injector, different injectors alltogether, different config files, different builds of
), but no matter what I tried, the Wii U Gamepad always took up the first controller slot.
I was almost resigned to just launching games directly from
, but I was just too obsessed with playing ATV 2 Quad Power Racing without using the Wii U Gamepad, so I set out to try to figure out how I could get this to work.
This is a chronicle of the fixes I implemented, the things I learned along the way, and at the end, a call to action to hopefully get this fixed for the community once and for all.
First, some background about the
setting.
WiiUGamepadSlot
In 2018, a request was made in the
repo to allow disabling the Wii U Gamepad or choosing its controller slot. Eventually someone made a fork of
with a change to disable the gamepad entirely.
3 years later, a PR was opened to allow choosing the controller slot for the Wii U Gamepad. This added a new configuration for
called
in the
format.
After that change was made, it was determined that it had introduced a bug where the Wii U Gamepad was disabled when
was in
mode. So a workaround was introduced to always make the
be 0 if it was detected that
was running in
mode.
It's a good catch to make sure
can handle the various different controller configurations that people have. It does mean that when in
mode,
will never work!
Let's look at how
configuration works next. Maybe that will provide some additional insight.
Nintendont configuration
nincfg.bin
requires a
file in the root of your SD card to define its configuration.
From what I can tell, the
file format is simply a binary representation of the
struct defined in
in
.
When you launch
, change any setting, and start a game, it updates the
with your changed configuration.
Initializing NIN_CFG
The
struct defines the settings and format for configuring
.
In
mode (i.e. not
/ injected mode, i.e. starting a game from the
menu)
loads
bytes of the
file into a memory block that is the same size as the
struct.
In
mode, whatever is initializing
(the forwarder) passes the
bytes as an argument, and
copies those bytes into a memory block that is the same size as the
struct.
makes some provisions to sanitize config files that may not be fully up-to-date with the latest version of the config format. The
struct contains a
property, and when
detects that the version of the config that was loaded is older than the current version, it sets some defaults for properties that did not exist in previous versions and updates the
in the struct to the latest.
The important thing to note for our purposes is this:
The current version of
is
(
in hex)
If the
in the
struct is
,
gets initialized to 0.
So the expectation is that if you have a
of version
, the
value is already defined, and it doesn't need to be initialized with some default value.
Here's the
I'm using opened in
. It's version
, and
is 2 (this is 0-indexed so it's really the third controller slot).
This
is a perfectly valid
10 config file. Remember, launching a game from within
results in the Wii U Gamepad being assigned to the third controller slot as expected.
So maybe there's something about the injection / autoboot process that's going wrong? How do those injectors work anyway?
Autoboot forwarding
There is a ton of detail I'm going to skip over related to Wii VC injection (mostly because I don't actually know all of the details), but for our purposes and at a very high level, an injector creates an installable file or files (likely WUP format) that you can install as a Title to your Wii U Home Menu (using e.g. WUP Installer) , which places an icon on your Wii U home page to launch some application (in our case it needs to launch the Wii VC with
and a GameCube game).
We need something to tell
to automatically launch a game instead of booting to the
menu.
Maybe something like
Enter
(that above comment is from the README).
Now I don't know all of the technical details, but from what I can gather, TeconMoon's injector "injects" this forwarder in the Wii VC so that when Wii VC is launched, it automatically starts
via the autoboot forwarder (my terminology is probably not quite right here, but hopefully it's close enough).
If you download the TOOLDIR from TeconMoon's injector source and unzip it, you'll find compiled
files from the releases page of the
repo.
If we go look at the
file for the forwarder, we can see a couple of interesting things:
2.
It loads the contents of the file into memory (also similar to how
does)
3.
And then after potentially making some changes to the config (e.g. disabling all widescreen bits), it writes the config bytes back to some memory address for
to eventually read from.
Yes that is the same (almost)
file that
has! In fact, you can tell it was probably copied from a previous version of
because it has some commented out lines that reference header files in
that we don't have here.
There are a few things different about this file though:
But the version in
is
.
2.
The problem
Now that we're (somewhat?) up to speed on configuring and autobooting
, we can start to see what the source of the problem is. There are pieces missing in both
and
that, together, cause
to be broken in autoboot mode.
So in autoboot mode,
ends up with a
that has garbage bytes for
. If we can fix this, I can accomplish all of my goals, and finally beat my time trial record on Baby Park from 20 years ago.
The fix(es)
In Nintendont (PR here)
There's already a workaround in place that sets the
to 0 in autoboot mode. But we want to be able to actually use
in autoboot mode, so we need to replace that. But we also don't want to break the Wii U Gamepad functionality for folks with older
files.
With
updated to allow
even in autoboot mode, we can upgrade
with some fixes.
In nintendont-autoboot-forwarder (PR here)
Once those two changes for
and the forwarder are merged and released, the injectors need to be updated to use the newer version of the forwarder. I'm planning on reaching out to the developers of TeconMoon's injector, UWUVCI, and Wii U USB Helper once we have newer releases of
and
so those tools can get updated.
Conclusion and request for help
So there you have it. With those changes to
and
(and using the custom
for the forwarder with TeconMoon's injector), I'm able to accomplish all of my goals for my Wii-U-as-GameCube. I want to make these changes available to the community so other folks can use
with injected games.
I'm not really sure who maintains these projects anymore. They don't have a lot of activity on them these days. But I'm looking for someone to review these two pull requests and hopefully approve them, or provide feedback so I can make any necessary changes to get them merged.
https://github.com/FIX94/Nintendont/pull/1054
https://github.com/FIX94/nintendont-autoboot-forwarder/pull/7
Then we can go about getting the injectors updated so everyone can use this awesome feature.
Thank you for coming to my TED talk.
I have two PRs that will enable the
WiiUGamepadSlot
feature for injected / autoboot games with
Nintendont
. I'm sending out a flare to find whomever might be able to review those PRs so we can get this feature enabled for those who want to use it.
Nintendont
PR is here
https://github.com/FIX94/Nintendont/pull/1054
nintendont-autoboot-forwarder
PR is here
https://github.com/FIX94/nintendont-autoboot-forwarder/pull/7
Then we can go about getting the injectors (TeconMoon's, UWUVCI, Wii U USB Helper) updated so everyone can configure their
WiiUGamepadSlot
to their heart's content.
A medium-deep dive and explanation for these changes is below.
Background
My personal goal for my Wii U is to essentially turn it into a Gamecube. I want to play all of my old GameCube games (which I still physically have in a box in a closet upstairs) with a native HDMI output and newer controllers (Wii U Pro Controllers).
The requirements I set for myself for this project are:
- Launch Gamecube games directly from the Wii U Home Menu (injected
Nintendont
autoboot). - Launch a game, play it, quit the game with the Wii U Pro Controller (without picking up the Wii U Gamepad or a Wiimote).
- Be able to use the Wii U Gamepad as a controller if necessary (to support additional players).
Some games (e.g. Super Smash Bros Melee) don't really care which slot a controller is in, but for other games (e.g. Mario Kart Double Dash) the first controller is the only one that can navigate the menu.
This means that in order to accomplish requirement 2, I need to be able to be able to configure
Nintendont
to assign a Wii U Pro Controller as the first controller.
After setting up my Wii U with Tiramisu and installing
Nintendont
, I discovered 2 things:
- :lol:There is a setting in
Nintendont
called
WiiUGamepadSlot
to configure which controller slot the Wii U Gamepad occupies. - :sad: The setting does not work for games installed with an injector and launched from the Wii U Home Menu.
I did notice that when launching
Nintendont
first and then starting a game from within
Nintendont
, the Wii U Gamepad would be in the slot defined by
WiiUGamepadSlot
. So that setting worked. It only stopped working when launching a game injected and then installed to the Wii U Home Menu.
I beat my head against a wall trying a bunch of different things to get it to work (different builds of TeconMoon's injector, different injectors alltogether, different config files, different builds of
Nintendont
), but no matter what I tried, the Wii U Gamepad always took up the first controller slot.
I was almost resigned to just launching games directly from
Nintendont
, but I was just too obsessed with playing ATV 2 Quad Power Racing without using the Wii U Gamepad, so I set out to try to figure out how I could get this to work.
This is a chronicle of the fixes I implemented, the things I learned along the way, and at the end, a call to action to hopefully get this fixed for the community once and for all.
First, some background about the
WiiUGamepadSlot
setting.
WiiUGamepadSlot
In 2018, a request was made in the
Nintendont
repo to allow disabling the Wii U Gamepad or choosing its controller slot. Eventually someone made a fork of
Nintendont
with a change to disable the gamepad entirely.
:yayu: This actually helps get me pretty dang close to my goals, except for the 3rd one. And I almost just stopped here with the intention of buying more Pro Controllers so I wouldn't have to use the Gamepad at all.
3 years later, a PR was opened to allow choosing the controller slot for the Wii U Gamepad. This added a new configuration for
Nintendont
called
WiiUGamepadSlot
in the
nincfg.bin
format.
After that change was made, it was determined that it had introduced a bug where the Wii U Gamepad was disabled when
Nintendont
was in
autoboot
mode. So a workaround was introduced to always make the
WiiUGamepadSlot
be 0 if it was detected that
Nintendont
was running in
autoboot
mode.
C:
if (((NIN_CFG*)0x93004000)->Config & NIN_CFG_AUTO_BOOT)
{
if(HIDPad == HID_PAD_NONE)
WiiUGamepadSlot = 0;
else
WiiUGamepadSlot = 1;
}
It's a good catch to make sure
Nintendont
can handle the various different controller configurations that people have. It does mean that when in
autoboot
mode,
WiiUGamepadSlot
will never work!
:yayu: This is the first real clue about how there are different code paths for
autoboot
vs
normal
mode and where we might be able to implement a fix.
Let's look at how
Nintendont
configuration works next. Maybe that will provide some additional insight.
Nintendont configuration
nincfg.bin
Nintendont
requires a
nincfg.bin
file in the root of your SD card to define its configuration.
From what I can tell, the
nincfg.bin
file format is simply a binary representation of the
NIN_CFG
struct defined in
Nintendont
in
common/include/CommonConfig.h
.
When you launch
Nintendont
, change any setting, and start a game, it updates the
nincfg.bin
with your changed configuration.
:yayu: There is also a tool called Nicoe which can read and modify a
nincfg.bin
file from a Windows PC (and without having to launch
Nintendont
on a Wii U).
Initializing NIN_CFG
The
NIN_CFG
struct defines the settings and format for configuring
Nintendont
.
C:
#ifndef __COMMON_CONFIG_H__
#define __COMMON_CONFIG_H__
#include "NintendontVersion.h"
#include "Metadata.h"
#define NIN_CFG_VERSION 0x0000000A
#define NIN_CFG_MAXPAD 4
typedef struct NIN_CFG
{
unsigned int Magicbytes; // 0x01070CF6
unsigned int Version; // 0x00000001
unsigned int Config;
unsigned int VideoMode;
unsigned int Language;
char GamePath[255];
char CheatPath[255];
unsigned int MaxPads;
unsigned int GameID;
unsigned char MemCardBlocks;
signed char VideoScale;
signed char VideoOffset;
unsigned char NetworkProfile;
unsigned int WiiUGamepadSlot;
} NIN_CFG;
...
In
normal
mode (i.e. not
autoboot
/ injected mode, i.e. starting a game from the
Nintendont
menu)
Nintendont
loads
sizeof(NIN_CFG)
bytes of the
nincfg.bin
file into a memory block that is the same size as the
NIN_CFG
struct.
C:
FIL cfg;
if (f_open_char(&cfg, "/nincfg.bin", FA_READ|FA_OPEN_EXISTING) != FR_OK)
return false;
// Read the configuration file into memory.
UINT BytesRead;
f_read(&cfg, ncfg, sizeof(NIN_CFG), &BytesRead);
In
autoboot
mode, whatever is initializing
Nintendont
(the forwarder) passes the
NIN_CFG
bytes as an argument, and
Nintendont
copies those bytes into a memory block that is the same size as the
NIN_CFG
struct.
C:
memcpy(ncfg, argv[1], sizeof(NIN_CFG));
Versioning and backwards compatibility:yayu: This is another critical difference in functionality that hints at why
WiiUGamepadSlot
works in
normal
mode but not
autoboot
mode.
Nintendont
makes some provisions to sanitize config files that may not be fully up-to-date with the latest version of the config format. The
NIN_CFG
struct contains a
Version
property, and when
Nintendont
detects that the version of the config that was loaded is older than the current version, it sets some defaults for properties that did not exist in previous versions and updates the
Version
in the struct to the latest.
The important thing to note for our purposes is this:
C:
if (ncfg->Version == 9) {
ncfg->WiiUGamepadSlot = 0;
ncfg->Version = 10;
}
The current version of
NIN_CFG
is
10
(
0xA
in hex)
If the
Version
in the
NIN_CFG
struct is
9
,
WiiUGamepadSlot
gets initialized to 0.
So the expectation is that if you have a
NIN_CFG
of version
10
, the
WiiUGamepadSlot
value is already defined, and it doesn't need to be initialized with some default value.
:yayu: This points to a liklihood that
Nintendont
is being initialized with a
NIN_CFG
of version
10
, but no (valid)
WiiUGamepadSlot
is set.
Here's the
nincfg.bin
I'm using opened in
Nicoe
. It's version
10
, and
WiiUGamepadSlot
is 2 (this is 0-indexed so it's really the third controller slot).
This
nincfg.bin
is a perfectly valid
Version
10 config file. Remember, launching a game from within
Nintendont
results in the Wii U Gamepad being assigned to the third controller slot as expected.
So maybe there's something about the injection / autoboot process that's going wrong? How do those injectors work anyway?
Autoboot forwarding
:yayu: I'm going to focus on TeconMoon's Wii VC injector. There are other injectors (e.g.
UWUVCI
and I believe
Wii U USB Helper
has some injection capabilities), but I'm most familiar with TeconMoon's at the moment. Also TeconMoon's injector supports custom forwarders which is helpful for fixing the issue with
WiiUGamepadSlot
and
autoboot
.
There is a ton of detail I'm going to skip over related to Wii VC injection (mostly because I don't actually know all of the details), but for our purposes and at a very high level, an injector creates an installable file or files (likely WUP format) that you can install as a Title to your Wii U Home Menu (using e.g. WUP Installer) , which places an icon on your Wii U home page to launch some application (in our case it needs to launch the Wii VC with
Nintendont
and a GameCube game).
We need something to tell
Nintendont
to automatically launch a game instead of booting to the
Nintendont
menu.
Maybe something like
Code:
a simple forwarder for wii vc to autoboot a included game
Enter
nintendont-autoboot-forwarder
(that above comment is from the README).
Now I don't know all of the technical details, but from what I can gather, TeconMoon's injector "injects" this forwarder in the Wii VC so that when Wii VC is launched, it automatically starts
Nintendont
via the autoboot forwarder (my terminology is probably not quite right here, but hopefully it's close enough).
If you download the TOOLDIR from TeconMoon's injector source and unzip it, you'll find compiled
dol
files from the releases page of the
nintendont-autoboot-forwarder
repo.
If we go look at the
main.c
file for the forwarder, we can see a couple of interesting things:
It reads nincfg.bin from the sd card (kind of like how
Nintendont
does)
C:
f = fopen("sd:/nincfg.bin","rb");
2.
It loads the contents of the file into memory (also similar to how
Nintendont
does)
C:
fread(&nincfg,1,sizeof(NIN_CFG),f);
3.
And then after potentially making some changes to the config (e.g. disabling all widescreen bits), it writes the config bytes back to some memory address for
Nintendont
to eventually read from.
C:
memcpy(CMD_ADDR+full_fPath_len, &nincfg, sizeof(NIN_CFG));
:yayu: Notice how we're consistently using
sizeof(NIN_CFG)
to determine how many bytes to read in and out of memory. This is the key for why
Nintendont
is failing to load
WiiUGamepadSlot
properly in
autoboot
mode.
nintendont-autoboot-forwarder
also has a
/source/CommonConfig.h
file that looks awfully familiar.
C:
#ifndef __COMMON_CONFIG_H__
#define __COMMON_CONFIG_H__
//#include "NintendontVersion.h"
//#include "Metadata.h"
#define NIN_CFG_VERSION 0x00000008
#define NIN_CFG_MAXPAD 4
typedef struct NIN_CFG
{
unsigned int Magicbytes; // 0x01070CF6
unsigned int Version; // 0x00000001
unsigned int Config;
unsigned int VideoMode;
unsigned int Language;
char GamePath[255];
char CheatPath[255];
unsigned int MaxPads;
unsigned int GameID;
unsigned char MemCardBlocks;
signed char VideoScale;
signed char VideoOffset;
unsigned char Unused;
} NIN_CFG;
...
Yes that is the same (almost)
CommonConfig.h
file that
Nintendont
has! In fact, you can tell it was probably copied from a previous version of
Nintendont
because it has some commented out lines that reference header files in
Nintendont
that we don't have here.
There are a few things different about this file though:
It's out of date. This file supports
NIN_CFG
only up to version
8
.
C:
#define NIN_CFG_VERSION 0x00000008
But the version in
Nintendont
is
10
.
C:
#define NIN_CFG_VERSION 0x0000000A
2.
- The
NIN_CFG
struct is a different size. It's 1 unsigned int (4 bytes if I'm not mistaken that Wii U has a 32-bit processor) shorter than the
NIN_CFG
defined in
Nintendont
. And that unsigned int is
WiiUGamepadSlot
.
The problem
Now that we're (somewhat?) up to speed on configuring and autobooting
Nintendont
, we can start to see what the source of the problem is. There are pieces missing in both
Nintendont
and
nintendont-autoboot-forwarder
that, together, cause
WiiUGamepadSlot
to be broken in autoboot mode.
:yayu: I'm going to refer to
NIN_CFG
in
Nintendont
as
NIN_CFG_10
and the one in
nintendont-autoboot-forwarder
as
NIN_CFG_8
.
nintendont-autoboot-forwarder
- When
nintendont-autoboot-forwarder
reads
nincfg.bin
into memory, it reads
sizeof(NIN_CFG_8)
bytes of the file (missing the last 4 bytes of
WiiUGamepadSlot
). - When
nintendont-autoboot-forwarder
copies
NIN_CFG
for
Nintendont
to read, it writes
sizeof(NIN_CFG_8)
bytes into memory (again, missing the
WiiUGamepadSlot
bytes) - Because the version of the file that
nintendont-autoboot-fowarder
loaded is
10
, the Version property of the
NIN_CFG
struct that it writes to memory is
10
(even though it's missing the expected
WiiUGamepadSlot
bytes).
Nintendont
- When
Nintendont
loads
NIN_CFG
from memory in autoboot mode, it copies
sizeof(NIN_CFG_10)
bytes from memory. That means it's copying an extra 4 bytes that were never written by the forwarder. When this happens, it is
UNDEFINED BEHAVIOR
(scary) which basically means "who knows what happens". I think what's most likely is that whatever bytes are in memory at those next memory addresses are copied into the 4 bytes of the
WiiUGamepadSlot
, so it likely is some value between 0 and 4,294,967,295. Now I don't think
Nintendont
is really equiped to handle a couple billion controllers, so it breaks in unexpected ways (like causing the Wii U Gamepad to be disabled all together). - When
Nintendont
goes to apply a backwards compatibility fix (and set
WiiUGamepadSlot
to something more sane, like 0) it sees that the config file is version
10
, so it skips that logic.
So in autoboot mode,
Nintendont
ends up with a
NIN_CFG
that has garbage bytes for
WiiUGamepadSlot
. If we can fix this, I can accomplish all of my goals, and finally beat my time trial record on Baby Park from 20 years ago.
The fix(es)
In Nintendont (PR here)
There's already a workaround in place that sets the
WiiUGamepadSlot
to 0 in autoboot mode. But we want to be able to actually use
WiiUGamepadSlot
in autoboot mode, so we need to replace that. But we also don't want to break the Wii U Gamepad functionality for folks with older
nincfg.bin
files.
- Add a fix in the backwards compatibility code to set
WiiUGamepadSlot
to 0 if we detect that it's invalid (likely because we loaded a
NIN_CFG
that is too small) even if the config that was loaded is version 10.
C:
if (ncfg->Version == 10)
{
// NIN_CFG with version 10 may have loaded
// garbage bytes into WiiUGamepadSlot so sanitize
// the slot if necessary.
if (ncfg->WiiUGamepadSlot > NIN_CFG_MAXPAD)
{
ncfg->WiiUGamepadSlot = 0;
}
}
- Remove the workaround fix for autoboot mode while retaining the logic to move the
WiiUGamepadSlot
up to the second controller slot if there's an
HIDPad
plugged in.
With
Nintendont
updated to allow
WiiUGamepadSlot
even in autoboot mode, we can upgrade
nintendont-autoboot-forwarder
with some fixes.
In nintendont-autoboot-forwarder (PR here)
- Upgrade forwarder to support version
10
of
NIN_CFG
struct (literally a copy and paste of the same file from
Nintendont
). - Set the version of the config that is actually being written by the forwarder rather than the version specified in the file, because if the forwarder isn't up to date with the config file version, it's really writing an older version to memory (this isn't strictly necessary, but I think it's a good improvement to have going forward).
Once those two changes for
Nintendont
and the forwarder are merged and released, the injectors need to be updated to use the newer version of the forwarder. I'm planning on reaching out to the developers of TeconMoon's injector, UWUVCI, and Wii U USB Helper once we have newer releases of
Nintendont
and
nintendont-autoboot-forwarder
so those tools can get updated.
:yayu: TeconMoon's injector supports custom
main.dol
files when injecting. So if you build the
nintendont-autoboot-forwarder
from my fork, you can choose that
main.dol
in the injection settings to avoid having to wait for the tool to officially update. Really awesome feature from that injector. Other injectors may have that capability as well, but I haven't tried them.
Conclusion and request for help
So there you have it. With those changes to
Nintendont
and
nintendont-autoboot-forwarder
(and using the custom
main.dol
for the forwarder with TeconMoon's injector), I'm able to accomplish all of my goals for my Wii-U-as-GameCube. I want to make these changes available to the community so other folks can use
WiiUGamepadSlot
with injected games.
I'm not really sure who maintains these projects anymore. They don't have a lot of activity on them these days. But I'm looking for someone to review these two pull requests and hopefully approve them, or provide feedback so I can make any necessary changes to get them merged.
Nintendont
PR is here
https://github.com/FIX94/Nintendont/pull/1054
nintendont-autoboot-forwarder
PR is here
https://github.com/FIX94/nintendont-autoboot-forwarder/pull/7
Then we can go about getting the injectors updated so everyone can use this awesome feature.
Thank you for coming to my TED talk.