No description
Find a file
2024-09-18 11:57:38 -07:00
.github/workflows ci: try even newer ubuntu base 2024-06-20 02:07:10 -07:00
app send sync/command opcodes over UDP so pipe can be controlled by the frontend 2024-09-18 11:57:38 -07:00
cmake Add FindFFmpeg.cmake, to fix Ubuntu FFmpeg errors (#9) 2024-06-11 11:52:44 -07:00
docker Update run.sh 2024-08-05 00:42:36 -07:00
images add screenshot [skip ci] 2024-05-29 20:03:23 -07:00
lib send sync/command opcodes over UDP so pipe can be controlled by the frontend 2024-09-18 11:57:38 -07:00
pipe send sync/command opcodes over UDP so pipe can be controlled by the frontend 2024-09-18 11:57:38 -07:00
.gitignore add .cache to gitignore 2024-07-23 09:47:39 -07:00
.gitmodules shifted all connection functionality into pipe 2024-08-05 00:38:26 -07:00
CMakeLists.txt separate sps/pps data 2024-08-21 09:31:07 -07:00
LICENSE Create LICENSE [skip ci] 2024-05-29 19:59:02 -07:00
README.md add libssl-dev to readme 2024-07-05 19:22:30 -07:00

Vanilla

This is a work-in-progress software clone of the Wii U gamepad for Linux (including Raspberry Pi and Steam Deck) and Android. No warranty is provided and everything should be considered alpha at best.


Announcement Video

What Wi-Fi adapter should I use?

At a minimum, you will need an adapter that supports 802.11n 5GHz. Newer standards (e.g. 802.11ac) are backwards compatible and should work as long as they can run at 5GHz.

In practice, not all hardware/drivers appear to work at this time. Check the Wireless Compatibility page on the wiki to check if a card is confirmed working or not.

Compiling (Linux)

Note: Qt 6.4 or later is required!

Vanilla currently requires the following dependencies:

  • Debian/Ubuntu
    # apt install qt6-base-dev qt6-multimedia-dev libavcodec-dev libavutil-dev libavfilter-dev libsdl2-dev libnl-genl-3-dev isc-dhcp-client libssl-dev
    
  • Fedora
    # dnf install qt6-qtbase-devel qt6-qtmultimedia-devel libavcodec-free-devel libavutil-free-devel libavfilter-free-devel libnl3-devel SDL2-devel openssl-devel
    
  • Arch
    # pacman -S qt6 ffmpeg libnl sdl2 dhclient
    
  • Alpine/postmarketOS
    # apk add qt6-qtbase-dev qt6-qtmultimedia-dev ffmpeg-dev libnl3-dev sdl2-dev dhclient
    

The build process is otherwise normal for a CMake program:

git clone --recursive https://github.com/vanilla-wiiu/vanilla.git
cd vanilla
mkdir build
cd build
cmake ..
cmake --build .