Go to file
Maschell 99b87bc3ed Fix travis #2 2019-05-14 22:32:41 +02:00
source Removed some hardcoded frm the GuiParticleImage 2017-11-11 13:38:50 +01:00
.gitattributes 🎪 Added .gitattributes & .gitignore files 2017-10-29 10:26:56 +01:00
.gitignore First commit, have fun! 2017-10-29 10:28:14 +01:00
.travis.yml Fix travis #2 2019-05-14 22:32:41 +02:00
Dockerfile Get rid of the portlibs.zip 2019-05-14 22:01:01 +02:00
Makefile [Travis] Updated the script to now use pacman, caching optimization 2018-05-26 12:54:30 +02:00
README.md Fix command in readme 2019-05-14 22:26:53 +02:00

README.md

libgui

Build Status

Usage

Following steps are required for initialization:

InitOSFunctionPointers();   // Load OS functions
InitPadScoreFunctionPointers();
InitVPadFunctionPointers(); // Input functions for GUI control
InitFSFunctionPointers();   // To load file from the SD Card
InitGX2FunctionPointers();  // For rendering
InitAXFunctionPointers();   // For sound

mount_sd_fat("sd");			// Mounting the SD Card
memoryInitialize();			// Initialize memory management

//DO GUI STUFF HERE!

memoryRelease();
unmount_sd_fat("sd");

Link the application with:

-lgui -lutils -ldynamiclibs -lfreetype -lgd -lpng -ljpeg -lz -lmad -lvorbisidec -logg -lbz2

You also need to add the include path to your Makefile. Example:

export INCLUDE	:= [...] -I$(PORTLIBS)/include/freetype2 \
						 -I$(PORTLIBS)/include/libgui \
						 -I$(PORTLIBS)/include

TODO: provide more information

Dependencies

To be able to use libgui, you need to install the following dependencies:

  • Application needs to be loaded from the homebrew_launcher

  • libutils for common functions.

  • dynamic_libs for access to the functions.

  • Install the required portlibs via (dkp-)pacman -Syu ppc-zlib ppc-libmad ppc-libogg ppc-libgd ppc-freetype ppc-libjpeg-turbo ppc-libpng ppc-libvorbisidec ppc-glm ppc-bzip2

Use the prebuilt files from a Docker image.

The image wiiulegacy/libgui on Docker Hub provides a prebuilt library in the /artifacts directory. Copy it into your DevkitPPC portlibs folder.

Example:

COPY --from=wiiulegacy/libgui:0.1 /artifacts $DEVKITPRO/portlibs

Credits