This is the repository for hUGEDriver, the music driver for the Game Boy which plays music created in hUGETracker.
If you want help using the tracker, driver, or just want to chat, join the hUGETracker Discord server!
- Export your song in "RGBDS .asm" format in hUGETracker.
- Choose a song descriptor name. This is what you will refer to the song as in your code. It must be a valid RGBDS symbol.
- Place the exported
.asmfile in your RGBDS project. - Load
hlwith your song descriptor name, andcall hUGE_init - In your game's main loop or in a VBlank interrupt,
call hUGE_dosound - When assembling your game, be sure to specify your music file and hUGEDriver.asm in your call to
rgbasm/rgblink!
Be sure to enable sound playback before you start!
ld a, $80
ld [rAUDENA], a
ld a, $FF
ld [rAUDTERM], a
ld a, $77
ld [rAUDVOL], aSee the rgbds_example directory for a working example!
- Export your song in "GBDK .c" format in hUGETracker.
- Choose a song descriptor name. This is what you will refer to the song as in your code. It must be a valid C variable name.
- Place the exported .C file in your GBDK project.
#include "hUGEDriver.h"in your game's main file- Define
extern const hUGESong_t your_song_descriptor_herein your game's main file - Call
hUGE_init(&your_song_descriptor_here)in your game's main file - In your game's main loop or in a VBlank interrupt, call
hUGE_dosound - When compiling your game, be sure to specify your music file and
hUGEDriver.oin your call tolcc!
Be sure to enable sound playback before you start!
NR52_REG = 0x80;
NR51_REG = 0xFF;
NR50_REG = 0x77;See gbdk_example/src/gbdk_player_example.c for a working example!
This driver is suitable for use in homebrew games. hUGETracker exports data representing the various components of a song, as well as a song descriptor which is a small block of pointers that tell the driver how to initialize and play a song.
hUGETracker can export the data and song descriptor as a .asm or .c for use in RGBDS or GBDK based projects, respectively. Playing a song is as simple as calling hUGE_init with a pointer to your song descriptor, and then calling hUGE_dosound at a regular interval (usually on VBlank, the timer interrupt, or simply in your game's main loop)
In assembly:
ld hl, SONG_DESCRIPTOR
call hUGE_init
;; Repeatedly
call hUGE_dosoundIn C:
extern const hUGESong_t song;
// In your initializtion code
__critical {
hUGE_init(&song);
add_VBL(hUGE_dosound);
}Check out player.asm for a full fledged example of how to use the driver in an RGBDS project, and gbdk_example/gbdk_player_example.c for usage with GBDK C likewise.
Caution:
As an optimization, hUGEDriver avoids loading the same wave present in wave RAM; when "muting" CH3 and loading your own wave, make sure to set hUGE_current_wave to hUGE_NO_WAVE (a dummy value) to force a refresh.
hUGETracker and hUGEDriver are dedicated to the public domain.
