mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-23 09:04:21 +00:00
65 lines
1.8 KiB
C++
65 lines
1.8 KiB
C++
#pragma once
|
|
|
|
#include <math/seadMatrix.h>
|
|
#include <math/seadVector.h>
|
|
|
|
#include "Library/HostIO/HioNode.h"
|
|
|
|
namespace al {
|
|
class AudioDirector;
|
|
class ModelKeeper;
|
|
class CameraDirector;
|
|
class AudioEventController;
|
|
class AudioEffectController;
|
|
class AudioRequestKeeperSyncedBgm;
|
|
class AudioMic;
|
|
class SeKeeper;
|
|
class BgmKeeper;
|
|
|
|
class AudioKeeper : public HioNode {
|
|
public:
|
|
AudioKeeper(const AudioDirector*);
|
|
virtual ~AudioKeeper();
|
|
|
|
void initSeKeeper(const AudioDirector*, const char*, const sead::Vector3f*,
|
|
const sead::Matrix34f*, const ModelKeeper*, CameraDirector*);
|
|
void initBgmKeeper(const AudioDirector*, const char*);
|
|
void validate();
|
|
void invalidate();
|
|
void startClipped();
|
|
void endClipped();
|
|
void appear();
|
|
void kill();
|
|
|
|
AudioEventController* getAudioEventController() const { return mAudioEventController; };
|
|
|
|
AudioEffectController* getAudioEffectController() const { return mAudioEffectController; };
|
|
|
|
AudioRequestKeeperSyncedBgm* getAudioRequestKeeperSyncedBgm() const {
|
|
return mAudioRequestKeeperSyncedBgm;
|
|
};
|
|
|
|
SeKeeper* getSeKeeper() const { return mSeKeeper; };
|
|
|
|
BgmKeeper* getBgmKeeper() const { return mBgmKeeper; };
|
|
|
|
AudioMic* getAudioMic() const { return mAudioMic; };
|
|
|
|
private:
|
|
AudioEventController* mAudioEventController;
|
|
AudioEffectController* mAudioEffectController;
|
|
AudioRequestKeeperSyncedBgm* mAudioRequestKeeperSyncedBgm;
|
|
SeKeeper* mSeKeeper;
|
|
BgmKeeper* mBgmKeeper;
|
|
AudioMic* mAudioMic;
|
|
};
|
|
|
|
static_assert(sizeof(AudioKeeper) == 0x38);
|
|
|
|
} // namespace al
|
|
|
|
namespace alAudioKeeperFunction {
|
|
al::AudioKeeper* createAudioKeeper(const al::AudioDirector*);
|
|
al::AudioKeeper* createAudioKeeper(const al::AudioDirector*, const char*, const char*);
|
|
} // namespace alAudioKeeperFunction
|