mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 21:40:03 +00:00
e6bc4bd8cb
* Add names to all typedef'd structs, unions, and enums * wtf vs code * Use a better regex
33 lines
931 B
C
33 lines
931 B
C
#ifndef AUDIOMGR_H
|
|
#define AUDIOMGR_H
|
|
|
|
#include "sched.h"
|
|
#include "z64audio.h"
|
|
|
|
typedef enum AudioMgrDebugLevel {
|
|
/* 0 */ AUDIOMGR_DEBUG_LEVEL_NONE,
|
|
/* 1 */ AUDIOMGR_DEBUG_LEVEL_NO_RSP,
|
|
/* 2 */ AUDIOMGR_DEBUG_LEVEL_NO_UPDATE
|
|
} AudioMgrDebugLevel;
|
|
|
|
typedef struct AudioMgr {
|
|
/* 0x0000 */ IrqMgr* irqMgr;
|
|
/* 0x0004 */ Scheduler* sched;
|
|
/* 0x0008 */ OSScTask audioTask;
|
|
/* 0x0070 */ AudioTask* rspTask;
|
|
/* 0x0074 */ OSMesgQueue interruptQueue;
|
|
/* 0x008C */ OSMesg interruptMsgBuf[8];
|
|
/* 0x00AC */ OSMesgQueue taskDoneQueue;
|
|
/* 0x00C4 */ OSMesg taskDoneMsg;
|
|
/* 0x00C8 */ OSMesgQueue initQueue;
|
|
/* 0x00E0 */ OSMesg initMsg;
|
|
/* 0x00E8 */ OSThread thread;
|
|
} AudioMgr; // size = 0x298
|
|
|
|
void AudioMgr_Init(AudioMgr* audioMgr, void* stack, OSPri pri, OSId id, Scheduler* sched, IrqMgr* irqMgr);
|
|
|
|
void AudioMgr_WaitForInit(AudioMgr* audioMgr);
|
|
|
|
void AudioMgr_StopAllSfx(void);
|
|
|
|
#endif
|