mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 13:30:47 +00:00
c033b4b28e
* func_800E9340 * Audio_SequenceChannelDisable * Audio_SeqChannelLayerFree * Audio_SeqChannelLayerDisable * Rename functions * Audio_SeqChannelSetLayer * Move gSequenceChannelNone into gAudioContext * Audio_SequenceChannelInit * Name functions * Audio_M64ReadU8 * Audio_M64ReadS16 * Audio_M64ReadCompressedU16 * Audio_AudioListPopBack * Audio_AudioListPushBack * Audio_InitLayerFreelist * Audio_SequencePlayerDisableAsFinished * incomplete Audio_SequencePlayerDisable * Audio_SequenceChannelEnable * Audio_SequencePlayerDisableChannels * Audio_SequencePlayerInitChannels * struct fixes * func_800E9ED8 * Name more functions * Audio_SequenceChannelSetVolume * Audio_SetInstrument * Audio_GetInstrument * confirm structs * Audio_ResetSequencePlayer * Audio_InitSequencePlayer * Audio_InitSequencePlayers * func_800EC734 * Find the right Audio_SoundAlloc * Prune functions.h * Move global vars into gAudioContext * func_800EAEF4 * Audio_SeqChannelLayerProcessScript * Audio_HandleScriptFlowControl * func_800E9F64 * func_800EA0C0 * func_800EA440 * func_800EAAE0 * unbreak audio_effects * Audio_ProcessSequence * Audio_ProcessSequences * Some audio_heap struct work and function naming * Audio_SequencePlayerDisable * ? instead of ! in z64audio.h * Revert makefile change * Formatting, player -> seqPlayerIndex * Index -> Idx Co-authored-by: zelda2774 <zelda2774@invalid>
936 lines
32 KiB
C
936 lines
32 KiB
C
#include <ultra64.h>
|
|
#include <global.h>
|
|
|
|
void Audio_NoteSetVelPanReverb(Note* note, NoteSubEu* sub, Reverb* reverb) {
|
|
f32 volRight, volLeft;
|
|
s32 smallPanIndex;
|
|
u64 pad;
|
|
u8 strongLeft;
|
|
u8 strongRight;
|
|
f32 vel;
|
|
u8 pan;
|
|
u8 reverbVol;
|
|
ReverbBitsData sp24;
|
|
s32 stereoHeadsetEffects = note->playbackState.stereoHeadsetEffects;
|
|
vel = reverb->velocity;
|
|
|
|
pan = reverb->pan;
|
|
reverbVol = reverb->reverb;
|
|
sp24 = reverb->reverbBits.s;
|
|
|
|
sub->bitField0.s = note->noteSubEu.bitField0.s;
|
|
sub->bitField1.s = note->noteSubEu.bitField1.s;
|
|
sub->sound.samples = note->noteSubEu.sound.samples;
|
|
sub->unk_06 = note->noteSubEu.unk_06;
|
|
|
|
Audio_NoteSetResamplingRate(sub, reverb->frequency);
|
|
|
|
pan &= 0x7F;
|
|
|
|
sub->bitField0.s.stereoStrongRight = 0;
|
|
sub->bitField0.s.stereoStrongLeft = 0;
|
|
sub->bitField0.s.stereoHeadsetEffects = sp24.stereoHeadsetEffects;
|
|
sub->bitField0.s.usesHeadsetPanEffects = sp24.usesHeadsetPanEffects;
|
|
if (stereoHeadsetEffects && gAudioContext.gSoundMode == 1) {
|
|
smallPanIndex = pan >> 1;
|
|
if (smallPanIndex > 0x3f) {
|
|
smallPanIndex = 0x3f;
|
|
}
|
|
|
|
sub->headsetPanLeft = gHeadsetPanQuantization[smallPanIndex];
|
|
sub->headsetPanRight = gHeadsetPanQuantization[0x3f - smallPanIndex];
|
|
sub->bitField1.s.hasTwoAdpcmParts = 1;
|
|
|
|
volLeft = gHeadsetPanVolume[pan];
|
|
volRight = gHeadsetPanVolume[0x7f - pan];
|
|
} else if (stereoHeadsetEffects && gAudioContext.gSoundMode == 0) {
|
|
strongLeft = strongRight = 0;
|
|
sub->headsetPanRight = 0;
|
|
sub->headsetPanLeft = 0;
|
|
sub->bitField1.s.hasTwoAdpcmParts = 0;
|
|
|
|
volLeft = gStereoPanVolume[pan];
|
|
volRight = gStereoPanVolume[0x7f - pan];
|
|
if (pan < 0x20) {
|
|
strongLeft = 1;
|
|
} else if (pan > 0x60) {
|
|
strongRight = 1;
|
|
}
|
|
|
|
sub->bitField0.s.stereoStrongRight = strongRight;
|
|
sub->bitField0.s.stereoStrongLeft = strongLeft;
|
|
|
|
switch (sp24.bit2) {
|
|
case 0:
|
|
break;
|
|
case 1:
|
|
sub->bitField0.s.stereoStrongRight = sp24.strongRight;
|
|
sub->bitField0.s.stereoStrongLeft = sp24.strongLeft;
|
|
break;
|
|
case 2:
|
|
sub->bitField0.s.stereoStrongRight = sp24.strongRight | strongRight;
|
|
sub->bitField0.s.stereoStrongLeft = sp24.strongLeft | strongLeft;
|
|
break;
|
|
case 3:
|
|
sub->bitField0.s.stereoStrongRight = sp24.strongRight ^ strongRight;
|
|
sub->bitField0.s.stereoStrongLeft = sp24.strongLeft ^ strongLeft;
|
|
break;
|
|
}
|
|
|
|
} else if (gAudioContext.gSoundMode == 3) {
|
|
sub->bitField0.s.stereoHeadsetEffects = 0;
|
|
sub->bitField0.s.usesHeadsetPanEffects = 0;
|
|
volLeft = 0.707f;
|
|
volRight = 0.707f;
|
|
} else {
|
|
sub->bitField0.s.stereoStrongRight = sp24.strongRight;
|
|
sub->bitField0.s.stereoStrongLeft = sp24.strongLeft;
|
|
volLeft = gDefaultPanVolume[pan];
|
|
volRight = gDefaultPanVolume[0x7f - pan];
|
|
}
|
|
|
|
vel = 0.0f > vel ? 0.0f : vel;
|
|
vel = 1.0f < vel ? 1.0f : vel;
|
|
|
|
sub->targetVolLeft = (s32)((vel * volLeft) * 4095.999f);
|
|
sub->targetVolRight = (s32)((vel * volRight) * 4095.999f);
|
|
|
|
sub->unk_2 = reverb->unk_1;
|
|
sub->unk_14 = reverb->unk_10;
|
|
sub->unk_07 = reverb->unk_14;
|
|
sub->unk_10 = reverb->unk_16;
|
|
sub->reverbVol = reverbVol;
|
|
}
|
|
|
|
void Audio_NoteSetResamplingRate(NoteSubEu* noteSubEu, f32 resamplingRateInput) {
|
|
f32 resamplingRate = 0.0f;
|
|
|
|
if (resamplingRateInput < 2.0f) {
|
|
noteSubEu->bitField1.s.isSyntheticWave = 0;
|
|
|
|
if (1.99998f < resamplingRateInput) {
|
|
resamplingRate = 1.99998f;
|
|
} else {
|
|
resamplingRate = resamplingRateInput;
|
|
}
|
|
|
|
} else {
|
|
noteSubEu->bitField1.s.isSyntheticWave = 1;
|
|
if (3.99996f < resamplingRateInput) {
|
|
resamplingRate = 1.99998f;
|
|
} else {
|
|
resamplingRate = resamplingRateInput * 0.5f;
|
|
}
|
|
}
|
|
noteSubEu->resamplingRateFixedPoint = (s32)(resamplingRate * 32768.0f);
|
|
}
|
|
|
|
void Audio_NoteInit(Note* note) {
|
|
if (note->playbackState.parentLayer->adsr.releaseRate == 0) {
|
|
Audio_AdsrInit(¬e->playbackState.adsr, note->playbackState.parentLayer->seqChannel->adsr.envelope,
|
|
¬e->playbackState.adsrVolScale);
|
|
} else {
|
|
Audio_AdsrInit(¬e->playbackState.adsr, note->playbackState.parentLayer->adsr.envelope,
|
|
¬e->playbackState.adsrVolScale);
|
|
}
|
|
|
|
note->playbackState.unk_04 = 0;
|
|
note->playbackState.adsr.action.s.state = ADSR_STATE_INITIAL;
|
|
note->noteSubEu = gDefaultNoteSub;
|
|
}
|
|
|
|
void Audio_NoteDisable(Note* note) {
|
|
if (note->noteSubEu.bitField0.s.needsInit == 1) {
|
|
note->noteSubEu.bitField0.s.needsInit = 0;
|
|
}
|
|
note->playbackState.priority = 0;
|
|
note->noteSubEu.bitField0.s.enabled = 0;
|
|
note->playbackState.unk_04 = 0;
|
|
note->noteSubEu.bitField0.s.finished = 0;
|
|
note->playbackState.parentLayer = NO_LAYER;
|
|
note->playbackState.prevParentLayer = NO_LAYER;
|
|
note->playbackState.adsr.action.s.state = ADSR_STATE_DISABLED;
|
|
note->playbackState.adsr.current = 0;
|
|
}
|
|
|
|
void Audio_ProcessNotes(void) {
|
|
s32 pad[2];
|
|
NoteAttributes* attributes;
|
|
NoteSubEu* noteSubEu2;
|
|
NoteSubEu* noteSubEu;
|
|
Note* note;
|
|
NotePlaybackState* playbackState;
|
|
Reverb reverb;
|
|
u8 bookOffset;
|
|
f32 scale;
|
|
s32 i;
|
|
|
|
for (i = 0; i < gAudioContext.gMaxSimultaneousNotes; i++) {
|
|
note = &gAudioContext.gNotes[i];
|
|
noteSubEu2 = &gAudioContext.gNoteSubsEu[gAudioContext.gNoteSubEuOffset + i];
|
|
playbackState = ¬e->playbackState;
|
|
if (playbackState->parentLayer != NO_LAYER) {
|
|
if ((u32)playbackState->parentLayer < 0x7FFFFFFFU) {
|
|
continue;
|
|
}
|
|
|
|
if (note != playbackState->parentLayer->note && playbackState->unk_04 == 0) {
|
|
playbackState->adsr.action.s.release = 1;
|
|
playbackState->adsr.fadeOutVel = gAudioContext.gAudioBufferParameters.updatesPerFrameInv;
|
|
playbackState->priority = 1;
|
|
playbackState->unk_04 = 2;
|
|
goto out;
|
|
} else if (!playbackState->parentLayer->enabled && playbackState->unk_04 == 0 &&
|
|
playbackState->priority >= 1) {
|
|
// do nothing
|
|
} else if (playbackState->parentLayer->seqChannel->seqPlayer == NULL) {
|
|
Audio_SequenceChannelDisable(playbackState->parentLayer->seqChannel);
|
|
playbackState->priority = 1;
|
|
playbackState->unk_04 = 1;
|
|
continue;
|
|
} else if (playbackState->parentLayer->seqChannel->seqPlayer->muted &&
|
|
(playbackState->parentLayer->seqChannel->muteBehavior & 0x40)) {
|
|
// do nothing
|
|
} else {
|
|
goto out;
|
|
}
|
|
|
|
Audio_SeqChanLayerNoteRelease(playbackState->parentLayer);
|
|
Audio_AudioListRemove(¬e->listItem);
|
|
Audio_AudioListPushFront(¬e->listItem.pool->decaying, ¬e->listItem);
|
|
playbackState->priority = 1;
|
|
playbackState->unk_04 = 2;
|
|
} else if (playbackState->unk_04 == 0 && playbackState->priority >= 1) {
|
|
continue;
|
|
}
|
|
|
|
out:
|
|
if (playbackState->priority != 0) {
|
|
if (1) {}
|
|
noteSubEu = ¬e->noteSubEu;
|
|
if (playbackState->unk_04 >= 1 || noteSubEu->bitField0.s.finished) {
|
|
if (playbackState->adsr.action.s.state == ADSR_STATE_DISABLED || noteSubEu->bitField0.s.finished) {
|
|
if (playbackState->wantedParentLayer != NO_LAYER) {
|
|
Audio_NoteDisable(note);
|
|
if (playbackState->wantedParentLayer->seqChannel != NULL) {
|
|
Audio_NoteInitForLayer(note, playbackState->wantedParentLayer);
|
|
Audio_NoteVibratoInit(note);
|
|
Audio_NotePortamentoInit(note);
|
|
Audio_AudioListRemove(¬e->listItem);
|
|
Audio_AudioListPushBack(¬e->listItem.pool->active, ¬e->listItem);
|
|
playbackState->wantedParentLayer = NO_LAYER;
|
|
// don't skip
|
|
} else {
|
|
Audio_NoteDisable(note);
|
|
Audio_AudioListRemove(¬e->listItem);
|
|
Audio_AudioListPushBack(¬e->listItem.pool->disabled, ¬e->listItem);
|
|
playbackState->wantedParentLayer = NO_LAYER;
|
|
goto skip;
|
|
}
|
|
} else {
|
|
if (playbackState->parentLayer != NO_LAYER) {
|
|
playbackState->parentLayer->bit1 = 1;
|
|
}
|
|
Audio_NoteDisable(note);
|
|
Audio_AudioListRemove(¬e->listItem);
|
|
Audio_AudioListPushBack(¬e->listItem.pool->disabled, ¬e->listItem);
|
|
continue;
|
|
}
|
|
}
|
|
} else if (playbackState->adsr.action.s.state == ADSR_STATE_DISABLED) {
|
|
if (playbackState->parentLayer != NO_LAYER) {
|
|
playbackState->parentLayer->bit1 = 1;
|
|
}
|
|
Audio_NoteDisable(note);
|
|
Audio_AudioListRemove(¬e->listItem);
|
|
Audio_AudioListPushBack(¬e->listItem.pool->disabled, ¬e->listItem);
|
|
continue;
|
|
}
|
|
|
|
scale = Audio_AdsrUpdate(&playbackState->adsr);
|
|
Audio_NoteVibratoUpdate(note);
|
|
attributes = &playbackState->attributes;
|
|
if (playbackState->unk_04 == 1 || playbackState->unk_04 == 2) {
|
|
reverb.frequency = attributes->freqScale;
|
|
reverb.velocity = attributes->velocity;
|
|
reverb.pan = attributes->pan;
|
|
reverb.reverb = attributes->reverb;
|
|
reverb.reverbBits = attributes->reverbBits;
|
|
reverb.unk_1 = attributes->unk_1;
|
|
reverb.unk_10 = attributes->unk_10;
|
|
reverb.unk_14 = attributes->unk_4;
|
|
reverb.unk_16 = attributes->unk_6;
|
|
bookOffset = noteSubEu->bitField1.s.bookOffset;
|
|
} else {
|
|
SequenceChannelLayer* layer = playbackState->parentLayer;
|
|
SequenceChannel* channel = layer->seqChannel;
|
|
|
|
reverb.frequency = layer->noteFreqScale;
|
|
reverb.velocity = layer->noteVelocity;
|
|
reverb.pan = layer->notePan;
|
|
if (layer->reverbBits.asByte == 0) {
|
|
reverb.reverbBits = channel->reverbBits;
|
|
} else {
|
|
reverb.reverbBits = layer->reverbBits;
|
|
}
|
|
reverb.reverb = channel->reverb;
|
|
reverb.unk_1 = channel->unk_0C;
|
|
reverb.unk_10 = channel->unk_CC;
|
|
reverb.unk_14 = channel->unk_0F;
|
|
reverb.unk_16 = channel->unk_20;
|
|
bookOffset = channel->bookOffset & 0x7;
|
|
|
|
if (channel->seqPlayer->muted && (channel->muteBehavior & 8)) {
|
|
reverb.frequency = 0.0f;
|
|
reverb.velocity = 0.0f;
|
|
}
|
|
}
|
|
|
|
reverb.frequency *= playbackState->vibratoFreqScale * playbackState->portamentoFreqScale;
|
|
reverb.frequency *= gAudioContext.gAudioBufferParameters.resampleRate;
|
|
reverb.velocity *= scale;
|
|
Audio_NoteSetVelPanReverb(note, noteSubEu2, &reverb);
|
|
noteSubEu->bitField1.s.bookOffset = bookOffset;
|
|
skip:;
|
|
}
|
|
}
|
|
}
|
|
|
|
AudioBankSound* Audio_InstrumentGetAudioBankSound(Instrument* instrument, s32 semitone) {
|
|
AudioBankSound* sound;
|
|
if (semitone < instrument->normalRangeLo) {
|
|
sound = &instrument->lowNotesSound;
|
|
} else if (semitone <= instrument->normalRangeHi) {
|
|
sound = &instrument->normalNotesSound;
|
|
} else {
|
|
sound = &instrument->highNotesSound;
|
|
}
|
|
return sound;
|
|
}
|
|
|
|
Instrument* Audio_GetInstrumentInner(s32 bankId, s32 instId) {
|
|
Instrument* inst;
|
|
|
|
if (bankId == 0xFF) {
|
|
return NULL;
|
|
}
|
|
|
|
if (!Audio_IsBankLoadComplete(bankId)) {
|
|
gAudioContext.gAudioErrorFlags = bankId + 0x10000000;
|
|
return NULL;
|
|
}
|
|
|
|
if (instId >= gAudioContext.gCtlEntries[bankId].numInstruments) {
|
|
gAudioContext.gAudioErrorFlags = ((bankId << 8) + instId) + 0x3000000;
|
|
return NULL;
|
|
}
|
|
|
|
inst = gAudioContext.gCtlEntries[bankId].instruments[instId];
|
|
if (inst == NULL) {
|
|
gAudioContext.gAudioErrorFlags = ((bankId << 8) + instId) + 0x1000000;
|
|
return inst;
|
|
}
|
|
|
|
return inst;
|
|
}
|
|
|
|
Drum* Audio_GetDrum(s32 bankId, s32 drumId) {
|
|
Drum* drum;
|
|
|
|
if (bankId == 0xFF) {
|
|
return NULL;
|
|
}
|
|
|
|
if (!Audio_IsBankLoadComplete(bankId)) {
|
|
gAudioContext.gAudioErrorFlags = bankId + 0x10000000;
|
|
return NULL;
|
|
}
|
|
|
|
if (drumId >= gAudioContext.gCtlEntries[bankId].numDrums) {
|
|
gAudioContext.gAudioErrorFlags = ((bankId << 8) + drumId) + 0x4000000;
|
|
return NULL;
|
|
}
|
|
if ((u32)gAudioContext.gCtlEntries[bankId].drums < 0x80000000U) {
|
|
return NULL;
|
|
}
|
|
drum = gAudioContext.gCtlEntries[bankId].drums[drumId];
|
|
|
|
if (drum == NULL) {
|
|
gAudioContext.gAudioErrorFlags = ((bankId << 8) + drumId) + 0x5000000;
|
|
}
|
|
|
|
return drum;
|
|
}
|
|
|
|
UnkInstrument* Audio_GetUnkInstrument(s32 bankId, s32 unkInstrumentId) {
|
|
UnkInstrument* unkInstrument;
|
|
|
|
if (bankId == 0xFF) {
|
|
return NULL;
|
|
}
|
|
|
|
if (!Audio_IsBankLoadComplete(bankId)) {
|
|
gAudioContext.gAudioErrorFlags = bankId + 0x10000000;
|
|
return NULL;
|
|
}
|
|
|
|
if (unkInstrumentId >= gAudioContext.gCtlEntries[bankId].numUnkInstruments) {
|
|
gAudioContext.gAudioErrorFlags = ((bankId << 8) + unkInstrumentId) + 0x4000000;
|
|
return NULL;
|
|
}
|
|
|
|
if ((u32)gAudioContext.gCtlEntries[bankId].unkInstruments < 0x80000000U) {
|
|
return NULL;
|
|
}
|
|
|
|
unkInstrument = &gAudioContext.gCtlEntries[bankId].unkInstruments[unkInstrumentId];
|
|
|
|
if (unkInstrument == NULL) {
|
|
gAudioContext.gAudioErrorFlags = ((bankId << 8) + unkInstrumentId) + 0x5000000;
|
|
}
|
|
|
|
if (unkInstrument->unk_0 == 0) {
|
|
return NULL;
|
|
}
|
|
|
|
return unkInstrument;
|
|
}
|
|
|
|
s32 func_800E7744(s32 instrument, s32 bankId, s32 instId, UnkInstrument* arg3) {
|
|
if (bankId == 0xFF) {
|
|
return -1;
|
|
}
|
|
|
|
if (!Audio_IsBankLoadComplete(bankId)) {
|
|
return -2;
|
|
}
|
|
|
|
switch (instrument) {
|
|
case 0:
|
|
if (instId >= gAudioContext.gCtlEntries[bankId].numDrums) {
|
|
return -3;
|
|
}
|
|
gAudioContext.gCtlEntries[bankId].drums[instId] = (void*)arg3;
|
|
break;
|
|
|
|
case 1:
|
|
if (instId >= gAudioContext.gCtlEntries[bankId].numUnkInstruments) {
|
|
return -3;
|
|
}
|
|
gAudioContext.gCtlEntries[bankId].unkInstruments[instId] = *arg3;
|
|
break;
|
|
|
|
default:
|
|
if (instId >= gAudioContext.gCtlEntries[bankId].numInstruments) {
|
|
return -3;
|
|
}
|
|
gAudioContext.gCtlEntries[bankId].instruments[instId] = (void*)arg3;
|
|
break;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void Audio_SeqChanLayerDecayRelease(SequenceChannelLayer* seqLayer, s32 target) {
|
|
Note* note;
|
|
NoteAttributes* attributes;
|
|
SequenceChannel* chan;
|
|
s32 i;
|
|
|
|
if (seqLayer == NO_LAYER) {
|
|
return;
|
|
}
|
|
|
|
seqLayer->bit3 = 0;
|
|
|
|
if (seqLayer->note == NULL) {
|
|
return;
|
|
}
|
|
|
|
note = seqLayer->note;
|
|
attributes = ¬e->playbackState.attributes;
|
|
|
|
if (note->playbackState.wantedParentLayer == seqLayer) {
|
|
note->playbackState.wantedParentLayer = NO_LAYER;
|
|
}
|
|
|
|
if (note->playbackState.parentLayer != seqLayer) {
|
|
if (note->playbackState.parentLayer == NO_LAYER && note->playbackState.wantedParentLayer == NO_LAYER &&
|
|
note->playbackState.prevParentLayer == seqLayer && target != ADSR_STATE_DECAY) {
|
|
note->playbackState.adsr.fadeOutVel = gAudioContext.gAudioBufferParameters.updatesPerFrameInv;
|
|
note->playbackState.adsr.action.s.release = 1;
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (note->playbackState.adsr.action.s.state != ADSR_STATE_DECAY) {
|
|
attributes->freqScale = seqLayer->noteFreqScale;
|
|
attributes->velocity = seqLayer->noteVelocity;
|
|
attributes->pan = seqLayer->notePan;
|
|
|
|
if (seqLayer->seqChannel != NULL) {
|
|
chan = seqLayer->seqChannel;
|
|
attributes->reverb = chan->reverb;
|
|
attributes->unk_1 = chan->unk_0C;
|
|
attributes->unk_10 = chan->unk_CC;
|
|
|
|
if (attributes->unk_10 != NULL) {
|
|
for (i = 0; i < 8; i++) {
|
|
attributes->unk_14[i] = attributes->unk_10[i];
|
|
}
|
|
attributes->unk_10 = attributes->unk_14;
|
|
}
|
|
|
|
attributes->unk_6 = chan->unk_20;
|
|
attributes->unk_4 = chan->unk_0F;
|
|
if (chan->seqPlayer->muted && (chan->muteBehavior & 8)) {
|
|
note->noteSubEu.bitField0.s.finished = 1;
|
|
}
|
|
|
|
if (seqLayer->reverbBits.asByte == 0) {
|
|
attributes->reverbBits = chan->reverbBits;
|
|
} else {
|
|
attributes->reverbBits = seqLayer->reverbBits;
|
|
}
|
|
note->playbackState.priority = chan->someOtherPriority;
|
|
} else {
|
|
attributes->reverbBits = seqLayer->reverbBits;
|
|
note->playbackState.priority = 1;
|
|
}
|
|
|
|
note->playbackState.prevParentLayer = note->playbackState.parentLayer;
|
|
note->playbackState.parentLayer = NO_LAYER;
|
|
if (target == ADSR_STATE_RELEASE) {
|
|
note->playbackState.adsr.fadeOutVel = gAudioContext.gAudioBufferParameters.updatesPerFrameInv;
|
|
note->playbackState.adsr.action.s.release = 1;
|
|
note->playbackState.unk_04 = 2;
|
|
} else {
|
|
note->playbackState.unk_04 = 1;
|
|
note->playbackState.adsr.action.s.decay = 1;
|
|
if (seqLayer->adsr.releaseRate == 0) {
|
|
note->playbackState.adsr.fadeOutVel = gAudioContext.unk_3520[seqLayer->seqChannel->adsr.releaseRate];
|
|
} else {
|
|
note->playbackState.adsr.fadeOutVel = gAudioContext.unk_3520[seqLayer->adsr.releaseRate];
|
|
}
|
|
note->playbackState.adsr.sustain =
|
|
((f32)(s32)(seqLayer->seqChannel->adsr.sustain) * note->playbackState.adsr.current) / 256.0f;
|
|
}
|
|
}
|
|
|
|
if (target == ADSR_STATE_DECAY) {
|
|
Audio_AudioListRemove(¬e->listItem);
|
|
Audio_AudioListPushFront(¬e->listItem.pool->decaying, ¬e->listItem);
|
|
}
|
|
}
|
|
|
|
void Audio_SeqChanLayerNoteDecay(SequenceChannelLayer* seqLayer) {
|
|
Audio_SeqChanLayerDecayRelease(seqLayer, ADSR_STATE_DECAY);
|
|
}
|
|
|
|
void Audio_SeqChanLayerNoteRelease(SequenceChannelLayer* seqLayer) {
|
|
Audio_SeqChanLayerDecayRelease(seqLayer, ADSR_STATE_RELEASE);
|
|
}
|
|
|
|
s32 Audio_BuildSyntheticWave(Note* note, SequenceChannelLayer* seqLayer, s32 waveId) {
|
|
f32 freqScale;
|
|
f32 ratio;
|
|
u8 sampleCountIndex;
|
|
|
|
if (waveId < 128) {
|
|
waveId = 128;
|
|
}
|
|
|
|
freqScale = seqLayer->freqScale;
|
|
if (seqLayer->portamento.mode != 0 && 0.0f < seqLayer->portamento.extent) {
|
|
freqScale *= (seqLayer->portamento.extent + 1.0f);
|
|
}
|
|
if (freqScale < 0.99999f) {
|
|
sampleCountIndex = 0;
|
|
ratio = 1.0465f;
|
|
} else if (freqScale < 1.99999f) {
|
|
sampleCountIndex = 1;
|
|
ratio = 0.52325f;
|
|
} else if (freqScale < 3.99999f) {
|
|
sampleCountIndex = 2;
|
|
ratio = 0.26263f;
|
|
} else {
|
|
sampleCountIndex = 3;
|
|
ratio = 0.13081f;
|
|
}
|
|
seqLayer->freqScale *= ratio;
|
|
note->playbackState.waveId = waveId;
|
|
note->playbackState.sampleCountIndex = sampleCountIndex;
|
|
|
|
note->noteSubEu.sound.samples = &gWaveSamples[waveId - 128][sampleCountIndex * 64];
|
|
|
|
return sampleCountIndex;
|
|
}
|
|
|
|
void Audio_InitSyntheticWave(Note* note, SequenceChannelLayer* seqLayer) {
|
|
s32 sampleCountIndex;
|
|
s32 waveSampleCountIndex;
|
|
s32 waveId = seqLayer->instOrWave;
|
|
|
|
if (waveId == 0xff) {
|
|
waveId = seqLayer->seqChannel->instOrWave;
|
|
}
|
|
|
|
sampleCountIndex = note->playbackState.sampleCountIndex;
|
|
waveSampleCountIndex = Audio_BuildSyntheticWave(note, seqLayer, waveId);
|
|
|
|
if (waveSampleCountIndex != sampleCountIndex) {
|
|
note->noteSubEu.unk_06 = waveSampleCountIndex * 4 + sampleCountIndex;
|
|
}
|
|
}
|
|
|
|
void Audio_InitNoteList(AudioListItem* list) {
|
|
list->prev = list;
|
|
list->next = list;
|
|
list->u.count = 0;
|
|
}
|
|
|
|
void Audio_InitNoteLists(NotePool* pool) {
|
|
Audio_InitNoteList(&pool->disabled);
|
|
Audio_InitNoteList(&pool->decaying);
|
|
Audio_InitNoteList(&pool->releasing);
|
|
Audio_InitNoteList(&pool->active);
|
|
pool->disabled.pool = pool;
|
|
pool->decaying.pool = pool;
|
|
pool->releasing.pool = pool;
|
|
pool->active.pool = pool;
|
|
}
|
|
|
|
void Audio_InitNoteFreeList(void) {
|
|
s32 i;
|
|
|
|
Audio_InitNoteLists(&gNoteFreeLists);
|
|
for (i = 0; i < gAudioContext.gMaxSimultaneousNotes; i++) {
|
|
gAudioContext.gNotes[i].listItem.u.value = &gAudioContext.gNotes[i];
|
|
gAudioContext.gNotes[i].listItem.prev = NULL;
|
|
Audio_AudioListPushBack(&gNoteFreeLists.disabled, &gAudioContext.gNotes[i].listItem);
|
|
}
|
|
}
|
|
|
|
void Audio_NotePoolClear(NotePool* pool) {
|
|
s32 i;
|
|
AudioListItem* source;
|
|
AudioListItem* cur;
|
|
AudioListItem* dest;
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
switch (i) {
|
|
case 0:
|
|
source = &pool->disabled;
|
|
dest = &gNoteFreeLists.disabled;
|
|
break;
|
|
|
|
case 1:
|
|
source = &pool->decaying;
|
|
dest = &gNoteFreeLists.decaying;
|
|
break;
|
|
|
|
case 2:
|
|
source = &pool->releasing;
|
|
dest = &gNoteFreeLists.releasing;
|
|
break;
|
|
|
|
case 3:
|
|
source = &pool->active;
|
|
dest = &gNoteFreeLists.active;
|
|
break;
|
|
}
|
|
|
|
for (;;) {
|
|
cur = source->next;
|
|
if (cur == source || cur == NULL) {
|
|
break;
|
|
}
|
|
Audio_AudioListRemove(cur);
|
|
Audio_AudioListPushBack(dest, cur);
|
|
}
|
|
}
|
|
}
|
|
|
|
void Audio_NotePoolFill(NotePool* pool, s32 count) {
|
|
s32 i;
|
|
s32 j;
|
|
Note* note;
|
|
AudioListItem* source;
|
|
AudioListItem* dest;
|
|
|
|
Audio_NotePoolClear(pool);
|
|
|
|
for (i = 0, j = 0; j < count; i++) {
|
|
if (i == 4) {
|
|
return;
|
|
}
|
|
|
|
switch (i) {
|
|
case 0:
|
|
source = &gNoteFreeLists.disabled;
|
|
dest = &pool->disabled;
|
|
break;
|
|
|
|
case 1:
|
|
source = &gNoteFreeLists.decaying;
|
|
dest = &pool->decaying;
|
|
break;
|
|
|
|
case 2:
|
|
source = &gNoteFreeLists.releasing;
|
|
dest = &pool->releasing;
|
|
break;
|
|
|
|
case 3:
|
|
source = &gNoteFreeLists.active;
|
|
dest = &pool->active;
|
|
break;
|
|
}
|
|
|
|
while (j < count) {
|
|
note = Audio_AudioListPopBack(source);
|
|
if (note == NULL) {
|
|
break;
|
|
}
|
|
Audio_AudioListPushBack(dest, ¬e->listItem);
|
|
j++;
|
|
}
|
|
}
|
|
}
|
|
|
|
void Audio_AudioListPushFront(AudioListItem* list, AudioListItem* item) {
|
|
// add 'item' to the front of the list given by 'list', if it's not in any list
|
|
if (item->prev == NULL) {
|
|
item->prev = list;
|
|
item->next = list->next;
|
|
list->next->prev = item;
|
|
list->next = item;
|
|
list->u.count++;
|
|
item->pool = list->pool;
|
|
}
|
|
}
|
|
|
|
void Audio_AudioListRemove(AudioListItem* item) {
|
|
// remove 'item' from the list it's in, if any
|
|
if (item->prev != NULL) {
|
|
item->prev->next = item->next;
|
|
item->next->prev = item->prev;
|
|
item->prev = NULL;
|
|
}
|
|
}
|
|
|
|
Note* Audio_PopNodeWithValueLessEqual(AudioListItem* list, s32 limit) {
|
|
AudioListItem* cur = list->next;
|
|
AudioListItem* best;
|
|
|
|
if (cur == list) {
|
|
return NULL;
|
|
}
|
|
|
|
for (best = cur; cur != list; cur = cur->next) {
|
|
if (((Note*)best->u.value)->playbackState.priority >= ((Note*)cur->u.value)->playbackState.priority) {
|
|
best = cur;
|
|
}
|
|
}
|
|
|
|
if (best == NULL) {
|
|
return NULL;
|
|
}
|
|
|
|
if (limit <= ((Note*)best->u.value)->playbackState.priority) {
|
|
return NULL;
|
|
}
|
|
|
|
return best->u.value;
|
|
}
|
|
|
|
void Audio_NoteInitForLayer(Note* note, SequenceChannelLayer* seqLayer) {
|
|
s32 pad[3];
|
|
s16 instId;
|
|
NotePlaybackState* playback = ¬e->playbackState;
|
|
NoteSubEu* sub = ¬e->noteSubEu;
|
|
|
|
note->playbackState.prevParentLayer = NO_LAYER;
|
|
note->playbackState.parentLayer = seqLayer;
|
|
playback->priority = seqLayer->seqChannel->notePriority;
|
|
seqLayer->notePropertiesNeedInit = 1;
|
|
seqLayer->bit3 = 1;
|
|
seqLayer->note = note;
|
|
seqLayer->seqChannel->noteUnused = note;
|
|
seqLayer->seqChannel->layerUnused = seqLayer;
|
|
seqLayer->noteVelocity = 0.0f;
|
|
Audio_NoteInit(note);
|
|
instId = seqLayer->instOrWave;
|
|
|
|
if (instId == 0xff) {
|
|
instId = seqLayer->seqChannel->instOrWave;
|
|
}
|
|
sub->sound.audioBankSound = seqLayer->sound;
|
|
|
|
if (instId >= 0x80 && instId < 0xC0) {
|
|
sub->bitField1.s.bit2 = 1;
|
|
} else {
|
|
sub->bitField1.s.bit2 = 0;
|
|
}
|
|
|
|
if (sub->bitField1.s.bit2) {
|
|
Audio_BuildSyntheticWave(note, seqLayer, instId);
|
|
}
|
|
|
|
playback->bankId = seqLayer->seqChannel->bankId;
|
|
playback->stereoHeadsetEffects = seqLayer->seqChannel->stereoHeadsetEffects;
|
|
sub->bitField1.s.reverbIndex = seqLayer->seqChannel->reverbIndex & 3;
|
|
}
|
|
|
|
void func_800E82C0(Note* note, SequenceChannelLayer* seqLayer) {
|
|
Audio_SeqChanLayerNoteRelease(note->playbackState.parentLayer);
|
|
note->playbackState.wantedParentLayer = seqLayer;
|
|
}
|
|
|
|
void Audio_NoteReleaseAndTakeOwnership(Note* note, SequenceChannelLayer* seqLayer) {
|
|
note->playbackState.wantedParentLayer = seqLayer;
|
|
note->playbackState.priority = seqLayer->seqChannel->notePriority;
|
|
|
|
note->playbackState.adsr.fadeOutVel = gAudioContext.gAudioBufferParameters.updatesPerFrameInv;
|
|
note->playbackState.adsr.action.s.release = 1;
|
|
}
|
|
|
|
Note* Audio_AllocNoteFromDisabled(NotePool* pool, SequenceChannelLayer* seqLayer) {
|
|
Note* note = Audio_AudioListPopBack(&pool->disabled);
|
|
if (note != NULL) {
|
|
Audio_NoteInitForLayer(note, seqLayer);
|
|
Audio_AudioListPushFront(&pool->active, ¬e->listItem);
|
|
}
|
|
return note;
|
|
}
|
|
|
|
Note* Audio_AllocNoteFromDecaying(NotePool* pool, SequenceChannelLayer* seqLayer) {
|
|
Note* note = Audio_AudioListPopBack(&pool->decaying);
|
|
if (note != NULL) {
|
|
Audio_NoteReleaseAndTakeOwnership(note, seqLayer);
|
|
Audio_AudioListPushBack(&pool->releasing, ¬e->listItem);
|
|
}
|
|
return note;
|
|
}
|
|
|
|
Note* Audio_AllocNoteFromActive(NotePool* pool, SequenceChannelLayer* seqLayer) {
|
|
Note* rNote;
|
|
Note* aNote;
|
|
s32 rPriority, aPriority;
|
|
rPriority = aPriority = 0x10;
|
|
|
|
rNote = Audio_PopNodeWithValueLessEqual(&pool->releasing, seqLayer->seqChannel->notePriority);
|
|
|
|
if (rNote != NULL) {
|
|
rPriority = rNote->playbackState.priority;
|
|
}
|
|
|
|
aNote = Audio_PopNodeWithValueLessEqual(&pool->active, seqLayer->seqChannel->notePriority);
|
|
|
|
if (aNote != NULL) {
|
|
aPriority = aNote->playbackState.priority;
|
|
}
|
|
|
|
if (rNote == NULL && aNote == NULL) {
|
|
return NULL;
|
|
}
|
|
|
|
if (aPriority < rPriority) {
|
|
Audio_AudioListRemove(&aNote->listItem);
|
|
func_800E82C0(aNote, seqLayer);
|
|
Audio_AudioListPushBack(&pool->releasing, &aNote->listItem);
|
|
aNote->playbackState.priority = seqLayer->seqChannel->notePriority;
|
|
return aNote;
|
|
}
|
|
rNote->playbackState.wantedParentLayer = seqLayer;
|
|
rNote->playbackState.priority = seqLayer->seqChannel->notePriority;
|
|
return rNote;
|
|
}
|
|
|
|
Note* Audio_AllocNote(SequenceChannelLayer* seqLayer) {
|
|
Note* ret;
|
|
u32 policy = seqLayer->seqChannel->noteAllocPolicy;
|
|
|
|
if (policy & 1) {
|
|
ret = seqLayer->note;
|
|
if (ret != NULL && ret->playbackState.prevParentLayer == seqLayer &&
|
|
ret->playbackState.wantedParentLayer == NO_LAYER) {
|
|
Audio_NoteReleaseAndTakeOwnership(ret, seqLayer);
|
|
Audio_AudioListRemove(&ret->listItem);
|
|
Audio_AudioListPushBack(&ret->listItem.pool->releasing, &ret->listItem);
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
if (policy & 2) {
|
|
if (!(ret = Audio_AllocNoteFromDisabled(&seqLayer->seqChannel->notePool, seqLayer)) &&
|
|
!(ret = Audio_AllocNoteFromDecaying(&seqLayer->seqChannel->notePool, seqLayer)) &&
|
|
!(ret = Audio_AllocNoteFromActive(&seqLayer->seqChannel->notePool, seqLayer))) {
|
|
goto null_return;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
if (policy & 4) {
|
|
if (!(ret = Audio_AllocNoteFromDisabled(&seqLayer->seqChannel->notePool, seqLayer)) &&
|
|
!(ret = Audio_AllocNoteFromDisabled(&seqLayer->seqChannel->seqPlayer->notePool, seqLayer)) &&
|
|
!(ret = Audio_AllocNoteFromDecaying(&seqLayer->seqChannel->notePool, seqLayer)) &&
|
|
!(ret = Audio_AllocNoteFromDecaying(&seqLayer->seqChannel->seqPlayer->notePool, seqLayer)) &&
|
|
!(ret = Audio_AllocNoteFromActive(&seqLayer->seqChannel->notePool, seqLayer)) &&
|
|
!(ret = Audio_AllocNoteFromActive(&seqLayer->seqChannel->seqPlayer->notePool, seqLayer))) {
|
|
goto null_return;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
if (policy & 8) {
|
|
if (!(ret = Audio_AllocNoteFromDisabled(&gNoteFreeLists, seqLayer)) &&
|
|
!(ret = Audio_AllocNoteFromDecaying(&gNoteFreeLists, seqLayer)) &&
|
|
!(ret = Audio_AllocNoteFromActive(&gNoteFreeLists, seqLayer))) {
|
|
goto null_return;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
if (!(ret = Audio_AllocNoteFromDisabled(&seqLayer->seqChannel->notePool, seqLayer)) &&
|
|
!(ret = Audio_AllocNoteFromDisabled(&seqLayer->seqChannel->seqPlayer->notePool, seqLayer)) &&
|
|
!(ret = Audio_AllocNoteFromDisabled(&gNoteFreeLists, seqLayer)) &&
|
|
!(ret = Audio_AllocNoteFromDecaying(&seqLayer->seqChannel->notePool, seqLayer)) &&
|
|
!(ret = Audio_AllocNoteFromDecaying(&seqLayer->seqChannel->seqPlayer->notePool, seqLayer)) &&
|
|
!(ret = Audio_AllocNoteFromDecaying(&gNoteFreeLists, seqLayer)) &&
|
|
!(ret = Audio_AllocNoteFromActive(&seqLayer->seqChannel->notePool, seqLayer)) &&
|
|
!(ret = Audio_AllocNoteFromActive(&seqLayer->seqChannel->seqPlayer->notePool, seqLayer)) &&
|
|
!(ret = Audio_AllocNoteFromActive(&gNoteFreeLists, seqLayer))) {
|
|
goto null_return;
|
|
}
|
|
return ret;
|
|
|
|
null_return:
|
|
seqLayer->bit3 = 1;
|
|
return NULL;
|
|
}
|
|
|
|
void Audio_NoteInitAll(void) {
|
|
Note* note;
|
|
s32 i;
|
|
|
|
for (i = 0; i < gAudioContext.gMaxSimultaneousNotes; i++) {
|
|
note = &gAudioContext.gNotes[i];
|
|
note->noteSubEu = gZeroNoteSub;
|
|
note->playbackState.priority = 0;
|
|
note->playbackState.unk_04 = 0;
|
|
note->playbackState.parentLayer = NO_LAYER;
|
|
note->playbackState.wantedParentLayer = NO_LAYER;
|
|
note->playbackState.prevParentLayer = NO_LAYER;
|
|
note->playbackState.waveId = 0;
|
|
note->playbackState.attributes.velocity = 0.0f;
|
|
note->playbackState.adsrVolScale = 0;
|
|
note->playbackState.adsr.action.asByte = 0;
|
|
note->vibratoState.active = 0;
|
|
note->portamento.cur = 0;
|
|
note->portamento.speed = 0;
|
|
note->playbackState.stereoHeadsetEffects = 0;
|
|
note->unk_BC = 0;
|
|
note->synthesisState.synthesisBuffers = Audio_AllocDmaMemory(&gAudioContext.gNotesAndBuffersPool, 0x1E0);
|
|
}
|
|
}
|