Files
tp/include/JSystem/JAudio2/JAIStream.h
T

52 lines
1.8 KiB
C++
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef JAISTREAM_H
#define JAISTREAM_H
2023-07-18 22:57:25 -07:00
#include "JSystem/JAudio2/JAISound.h"
2023-09-07 09:50:36 -07:00
#include "JSystem/JAudio2/JASAramStream.h"
2024-02-09 01:30:28 +02:00
#include "JSystem/JAudio2/JASHeapCtrl.h"
2023-09-07 09:50:36 -07:00
#include "JSystem/JSupport/JSUList.h"
class JAIStreamMgr;
2024-02-09 01:30:28 +02:00
class JAIStream : public JASPoolAllocObject<JAIStream>, public JAISound, public JSULink<JAIStream> {
2023-09-07 09:50:36 -07:00
public:
struct TInner {
JASAramStream field_0x0;
};
/* 802A3104 */ JAIStream(JAIStreamMgr*, JAISoundStrategyMgr<JAIStream>*);
/* 802A319C */ void JAIStreamMgr_startID_(JAISoundID, s32, JGeometry::TVec3<f32> const*,
JAIAudience*, int);
2024-02-09 01:30:28 +02:00
/* 802A3230 */ bool prepare_prepareStream_();
2023-09-07 09:50:36 -07:00
/* 802A33F4 */ void prepare_();
/* 802A3498 */ void prepare_startStream_();
/* 802A34E4 */ void JAIStreamMgr_mixOut_(JASSoundParams const&, JAISoundActivity);
/* 802A3720 */ void die_JAIStream_();
/* 802A37FC */ bool JAISound_tryDie_();
/* 802A388C */ void JAIStreamMgr_calc_();
/* 802A3948 */ s32 getNumChild() const;
/* 802A3950 */ JAISoundChild* getChild(int);
/* 802A3A24 */ void releaseChild(int);
/* 802A3ABC */ JASTrack* getTrack();
/* 802A3AC4 */ JASTrack* getChildTrack(int);
/* 802A3ACC */ JAIStream* asStream();
/* 802A3AD0 */ JAITempoMgr* getTempoMgr();
2024-02-09 01:30:28 +02:00
void* JAIStreamMgr_getAramAddr_() { return field_0x29c; }
2023-09-07 09:50:36 -07:00
/* 0x0A8 */ TInner field_0x0a8;
/* 0x290 */ int field_0x290;
/* 0x294 */ s32 field_0x294;
/* 0x298 */ int field_0x298;
2024-02-09 01:30:28 +02:00
/* 0x29C */ void* field_0x29c;
2023-09-07 09:50:36 -07:00
/* 0x2A0 */ JAISoundChild* field_0x2a0[6];
/* 0x2B8 */ JAIStreamMgr* field_0x2b8;
2024-02-09 01:30:28 +02:00
/* 0x2BC */ JAISoundStrategyMgr__unknown<JAIStream>* field_0x2bc;
2023-09-07 09:50:36 -07:00
/* 0x2C0 */ JAISoundStrategyMgr<JAIStream>* field_0x2c0;
2024-02-09 01:30:28 +02:00
/* 0x2C4 */ u8 field_0x2c4;
2023-09-07 09:50:36 -07:00
/* 0x2C5 */ u8 field_0x2c5;
/* 0x2C6 */ u8 field_0x2c6;
};
2021-03-28 22:49:05 +02:00
#endif /* JAISTREAM_H */