mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 21:40:03 +00:00
66 lines
1.8 KiB
C
66 lines
1.8 KiB
C
|
#include <ultra64.h>
|
||
|
#include <global.h>
|
||
|
|
||
|
void func_8006BA00(GlobalContext* globalCtx) {
|
||
|
SoundSource* sources = &globalCtx->soundSources[0];
|
||
|
s32 i;
|
||
|
|
||
|
// clang-format off
|
||
|
for (i = 0; i < ARRAY_COUNT(globalCtx->soundSources); i++) { sources[i].countdown = 0; }
|
||
|
// clang-format on
|
||
|
}
|
||
|
|
||
|
void func_8006BA30(GlobalContext* globalCtx) {
|
||
|
SoundSource* source;
|
||
|
s32 i;
|
||
|
|
||
|
source = &globalCtx->soundSources[0];
|
||
|
for (i = 0; i < ARRAY_COUNT(globalCtx->soundSources); i++) {
|
||
|
if (source->countdown != 0) {
|
||
|
if (DECR(source->countdown) == 0) {
|
||
|
func_800F89E8(&source->relativePos);
|
||
|
} else {
|
||
|
func_800A6EF4(&globalCtx->mf_11D60, &source->originPos, &source->relativePos);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
source++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void Audio_PlaySoundAtPosition(GlobalContext* globalCtx, Vec3f* pos, s32 duration, u16 sfxId) {
|
||
|
s32 countdown;
|
||
|
SoundSource* source;
|
||
|
s32 smallestCountdown;
|
||
|
SoundSource* backupSource;
|
||
|
s32 i;
|
||
|
|
||
|
smallestCountdown = 0xFFFF;
|
||
|
|
||
|
source = &globalCtx->soundSources[0];
|
||
|
for (i = 0; i < ARRAY_COUNT(globalCtx->soundSources); i++) {
|
||
|
if (source->countdown == 0) {
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
countdown = source->countdown;
|
||
|
if (countdown < smallestCountdown) {
|
||
|
smallestCountdown = countdown;
|
||
|
backupSource = source;
|
||
|
}
|
||
|
|
||
|
source++;
|
||
|
}
|
||
|
|
||
|
if (i >= ARRAY_COUNT(globalCtx->soundSources)) {
|
||
|
source = backupSource;
|
||
|
func_800F89E8(&source->relativePos);
|
||
|
}
|
||
|
|
||
|
source->originPos = *pos;
|
||
|
source->countdown = duration;
|
||
|
|
||
|
func_800A6EF4(&globalCtx->mf_11D60, &source->originPos, &source->relativePos);
|
||
|
Audio_PlaySoundGeneral(sfxId, &source->relativePos, 4, &D_801333E0, &D_801333E0, &D_801333E8);
|
||
|
}
|