https://github.com/quadraxis-v2/wiirs
Random snippets for the Wii
https://github.com/quadraxis-v2/wiirs
Last synced: 3 months ago
JSON representation
Random snippets for the Wii
- Host: GitHub
- URL: https://github.com/quadraxis-v2/wiirs
- Owner: Quadraxis-v2
- License: agpl-3.0
- Created: 2022-06-21T16:00:06.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-24T03:08:35.000Z (5 months ago)
- Last Synced: 2025-01-14T07:17:12.572Z (5 months ago)
- Language: C++
- Size: 893 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
This test project shows tests of different features of the Nintendo Wii.
Currently it provides code for:
- Video
- Controller input, including motion controls, IR and rumble
- Displaying pictures and working with the XFB
- Playing non-3D audio
- Using JSON to store and use settings
- Some form of rudimentary user interface
- Using GPIOs and interrupts
- SDL-wii
This will (hopefully) be expanded in the future.# Compiling this project
As of the date of writing this document, this project has been done using [devkitPPC r41](https://devkitpro.org/wiki/Getting_Started).
Additionally, you will need the following packages:
- ppc-libjpeg-turbo
- ppc-jansson
- wii-sdl-libs
You can get those using [devkitPro pacman](https://devkitpro.org/wiki/devkitPro_pacman). Simply run:sudo (dkp-)pacman -S nameofthepackage1 nameofthepackage2 ...
Once that's done, just navigate to the project root and run 'make'.