Audio#
Contains functions related to sfx and music.
Access with Audio->
.
Variables#
int |
|
const int |
|
int[] |
Volume deprecated |
int |
|
bool[] |
Functions#
void |
PlaySound(int sfx) |
void |
EndSound(int sfx) |
void |
PauseSound(int sfx) |
void |
ResumeSound(int sfx) |
void |
ContinueSound(int sfx) |
void |
AdjustMusicVolume(int percent) |
void |
AdjustSFXVolume(int percent) |
void |
|
void |
|
void |
PlayMIDI(int midi) |
bool |
PlayEnhancedMusic(char32[] filename, int track = |
void |
AdjustSound(int id, int volume, int pan = |
bool |
PlayOgg(char32[] filename, int track = |
int |
|
void |
SetMusicPos(int pos) |
void |
SetMusicSpeed(int speed) |
int |
|
void |
SetMusicLoop(int start, int end) |
void |
PlaySoundEx(int id, int volume, int pan = |
int |
GetSoundCompletion(int sfx) |
bool |
CrossfadeEnhancedMusic(char32[] filename, int track, int fadeoutframes, int fadeinframes, int delayframes = |
Enumerations#
Sound effect IDs. Used with Audio->PlaySound().
SoundEffect SFX_ARROW = 1
Arrow is fired.
SoundEffect SFX_BEAM = 2
Sword beam is fired.
SoundEffect SFX_BOMB = 3
Bomb explodes.
SoundEffect SFX_BRANG = 4
Boomerang spinning.
SoundEffect SFX_CHARGE1 = 35
Sword powering up.
SoundEffect SFX_CHARGE2 = 36
Sword powering up again (Hurricane Spin).
SoundEffect SFX_CURSOR = 5
Subscreen cursor.
SoundEffect SFX_CLINK = 6
Shield is hit.
SoundEffect SFX_CLEARED = 7
Chime when screen item appears.
SoundEffect SFX_DINSFIRE = 37
Dinβs Fire blast.
SoundEffect SFX_DODONGO = 8
Dodongoβs roar.
SoundEffect SFX_SHUTTER = 9
Shutter bang.
SoundEffect SFX_EDEAD = 10
Enemy is killed.
SoundEffect SFX_EHIT = 11
Enemy is hit.
SoundEffect SFX_LOWHP = 12
Low hearts warning beep.
SoundEffect SFX_FALL = 38
Enemy falls from ceiling (unused).
SoundEffect SFX_FARORESWIND = 39
Faroreβs Wind spell.
SoundEffect SFX_FIRE = 13
Flame roar.
SoundEffect SFX_FIREBALL = 40
Enemy fireball.
SoundEffect SFX_GANON = 14
Music when Ganon appears/dies.
SoundEffect SFX_GASP = 15
Boss is hit.
SoundEffect SFX_GRASSCUT = 41
Grass or bush slashed.
SoundEffect SFX_HAMMER = 16
Hammer pound.
SoundEffect SFX_HAMMERPOST = 42
Pounded a post.
SoundEffect SFX_HOOKSHOT = 17
Hookshot chain rattle.
SoundEffect SFX_HOVER = 43
Hover boots.
SoundEffect SFX_ICE = 44
Unused.
SoundEffect SFX_JUMP = 45
Jumping.
SoundEffect SFX_LENSOFF = 46
Lens of Truth off.
SoundEffect SFX_LENSON = 47
Lens of Truth on.
SoundEffect SFX_MSG = 18
Message typing.
SoundEffect SFX_NAYRUSLOVE1 = 48
Nayruβs Love shield hum.
SoundEffect SFX_NAYRUSLOVE2 = 49
Nayruβs Love shield running out.
SoundEffect SFX_OUCH = 19
Link is hit.
SoundEffect SFX_PICKUP = 20
Chime when item is held above head.
SoundEffect SFX_PLACE = 21
Bomb is placed.
SoundEffect SFX_PLINK = 22
Heart/Rupee is collected.
SoundEffect SFX_PUSHBLOCK = 50
Pushed a block.
SoundEffect SFX_REFILL = 23
Hearts being refilled.
SoundEffect SFX_ROAR = 24
Aquamentus, Gleeok and Ganonβs roar.
SoundEffect SFX_ROCK = 51
Octorok rock is fired.
SoundEffect SFX_ROCKETDOWN = 52
Spell rocket descends.
SoundEffect SFX_ROCKETUP = 53
Spell rocket launched.
SoundEffect SFX_SCALE = 25
Chime when fairy appears/is picked up.
SoundEffect SFX_SEA = 26
βOcean SFXβ ambience.
SoundEffect SFX_SECRET = 27
Chime when secret is discovered.
SoundEffect SFX_SPINATTACK = 54
Sword spin.
SoundEffect SFX_SPIRAL = 28
Link dies.
SoundEffect SFX_SPLASH = 55
Splashing in shallow water.
SoundEffect SFX_STAIRS = 29
Link marches down stairs.
SoundEffect SFX_SUMMON = 56
Summoner magic.
SoundEffect SFX_SWORD = 30
Sword swipe.
SoundEffect SFX_TAP1 = 57
Sword taps wall.
SoundEffect SFX_TAP2 = 58
Sword taps bombable wall.
SoundEffect SFX_PATRA = 31
Patra and Manhandlaβs shriek.
SoundEffect SFX_WAND = 32
Magic is fired by Wizzrobes or Link.
SoundEffect SFX_WHIRLWIND = 59
Whistle whirlwind.
SoundEffect SFX_WHISTLE = 33
Whistle is played.
SoundEffect SFX_ZELDA = 34
Music when ending sequence begins.
Used with Audio->Volume[].
VolumeIndex VOL_MIDI = 0
VolumeIndex VOL_DIGI = 1
VolumeIndex VOL_MUSIC = 2
VolumeIndex VOL_SFX = 3
enum MusicRefreshMode: π Source
Used with Audio->MusicRefresh.
MusicRefreshMode MR_SCREEN = 0
Refresh on every screen transition.
MusicRefreshMode MR_DMAP = 1
Refresh when the dmap changes.
MusicRefreshMode MR_LEVEL = 2
Refresh when the level changes.
MusicRefreshMode MR_NEVER = 3
Never refresh on a screen transition.
enum MusicRefreshFlag: π Source
Used with Audio->MusicRefreshFlags[].
MusicRefreshFlag MRF_NOCUT = 0
MusicRefreshFlag MRF_REVERT = 1
Variable descriptions#
value
Undocumented - see https://github.com/ZQuestClassic/ZQuestClassic/blob/5b2e5ccb2ee020ed0a72a0cce69e3b3ed81811eb/src/zc/zc_sys.cpp#L8393C9-L8393C13
The audio panning style.
Deprecated: Use AdjustMusicVolume() or AdjustSFXVolume() instead.
value
MusicRefreshMode (MR_)
Controls how often the engine refreshes the currently playing music while changing screens.
bool[] MusicRefreshFlags π Source
index
MusicRefreshFlag (MRF_)
Flags for handling extra effects on MusicRefresh.
Function descriptions#
void PlaySound(int sfx) π Source
Plays the quest SFX sfx
.
void EndSound(int sfx) π Source
If sfx
is playing, immediately stop it.
void PauseSound(int sfx) π Source
If sfx
is playing, pause it (so that it may be resumed later).
void ResumeSound(int sfx) π Source
Resume sfx
from where it was paused.
void ContinueSound(int sfx) π Source
Resume sfx
from where it was paused.
void AdjustMusicVolume(int percent) π Source
Adjusts a multiplier for the volume of all MIDI, DIGI, and Enhanced Music.
void AdjustSFXVolume(int percent) π Source
Adjusts a multiplier for the volume of all Sound Effects (WAV).
void PauseCurMIDI() π Source
Pauses the currently playing MIDI so that it may be resumed later.
void ResumeCurMIDI() π Source
Resumes the previously paused MIDI.
void PlayMIDI(int midi) π Source
Plays the MIDI midi
. Will revert upon changing screens.
bool PlayEnhancedMusic(char32[] filename, int track = 0
) π Source
Play the specified enhanced music if available. If the music cannot be played, the current music will continue. Reverts to normal upon leaving the screen.
Returns true if the music file was loaded successfully.
filename
cannot be more than 255 characters.
If the music format does not support multiple tracks, track
is ignored.
void AdjustSound(int id, int volume, int pan = 0
, long freq = -1L
, bool loop_sfx = false
) π Source
Change properties on a currently playing sound.
bool PlayOgg(char32[] filename, int track = 0
) π Source
Deprecated: Use PlayEnhancedMusic() instead!
Returns the current seek position of the currently playing enhanced music in seconds.
CURRENTLY ONLY SUPPORTS MP3 / OGG / IT / XM / S3M / MOD
void SetMusicPos(int pos) π Source
Sets the position for the currently playing enhanced music, in seconds.
CURRENTLY ONLY SUPPORTS MP3 / OGG / IT / XM / S3M / MOD
void SetMusicSpeed(int speed) π Source
Sets the playback speed of the currently playing enhanced music.
CURRENTLY ONLY SUPPORTS MP3 / OGG / IT / XM / S3M / MOD
int GetMusicLength() π Source
Returns the length of the current playing enhanced music in seconds.
CURRENTLY ONLY SUPPORTS MP3 / OGG / IT / XM / S3M / MOD
void SetMusicLoop(int start, int end) π Source
Loops the currently playing enhanced music between two timestamps in seconds.
CURRENTLY ONLY SUPPORTS MP3 / OGG / IT / XM / S3M / MOD
void PlaySoundEx(int id, int volume, int pan = 0
, long freq = -1L
, bool loop_sfx = false
) π Source
Plays the quest SFX sfx
but with different properties.
int GetSoundCompletion(int sfx) π Source
Returns a rough completion percentage (0-100) for how much of a sound has played.
bool CrossfadeEnhancedMusic(char32[] filename, int track, int fadeoutframes, int fadeinframes, int delayframes = 0
, int startpos = 0
) π Source
Crossfade to the specified enhanced music if available. If the music cannot be played, the current music will continue.
Reverts to normal upon leaving the screen.
Returns true if loaded successfully.
filename
cannot be more than 255 characters.
Currently only supports MP3 / OGG / IT / XM / S3M / MOD.