More actions
No edit summary |
m (HydeWing moved page Gcpadder Wii to GCPadder Wii) |
Revision as of 08:48, 22 Ocak 2023
GCPadder | |
---|---|
File:Gcpadderwii.jpg | |
General | |
Author | InvoxiPlayGames |
Type | PC Utilities |
Version | 1.0 |
License | Mixed |
Last Updated | 2020/12/10 |
Links | |
Download | |
Website | |
Source | |
GCPadder is a tool that enables you to transmit the inputs from your modded Wii's GameCube controller to your computer through either a wireless connection or a USB Gecko. This tool is designed to provide the best performance when used with a stable Ethernet connection or a USB Gecko.
How to use
- Please make sure you have the ViGEmBus driver installed.
- If you are using Windows 7, please make sure you have the .NET Framework 4.5.2 Runtime installed.
- If you intend on using a USB Gecko, make sure you have .NET Framework 4.0 Runtime installed as well as 4.5.2.
- Windows 8.1 and Windows 10 should come with these runtimes pre-installed, or should offer a download if they are not.
- Download the latest version of the Wii Homebrew application and Windows PC client.
- Launch the homebrew application and press the button corresponding with the connection method you want to use. Wait until it says 'Listening on...'.
- In the PC client, type in the IP address you see on your Wii's screen. The IP may already be filled in for you. The port is filled in automatically, in most cases there is no reason to touch this.
- If using a USB Gecko, select the USB Gecko option in the PC client.
- Click 'Connect' on the PC client, and if all goes well, an Xbox 360 Controller will appear to applications and games running on your PC with the inputs of your GameCube controller.
For developers
The "protocol" used is very simple, send 0x09AD09AD to the UDP server/USB Gecko from your application, and the Wii will start reporting inputs at ~200Hz. The controller input format is shown below as a C structure:
struct NETPADData { uint16_t buttons; int8_t stickX; int8_t stickY; int8_t substickX; int8_t substickY; uint8_t triggerL; uint8_t triggerR; } paddata;