mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-23 14:41:33 -04:00
7154ac08e1
* initial freezard actor struct + setActionMode OK * daE_FZ_Draw * setReflectAngle * mBoundSoundset * daE_FZ_Execute & execute * demoDelete * daE_FZ_Delete & _delete * CreateHeap * useHeapInit * cc_set * mtx_set * action WIP * way_gake_check * executeRollMove * executeMove * draw WIP * executeDamage * checkpoint * create * checkpoint * daE_FZ_c::executeWait * checkpoint * daE_FZ_c::damage_check almost done * rm asm * rm headers * setup_profile WIP + doxygen update * fix merge issues * docs fix? * fix2 * doxygen updates * setup g_profile_E_FZ, profile setup script WIP * update github actions * update progress.md
37 lines
880 B
C
37 lines
880 B
C
#ifndef JAUSTREAMFILETABLE_H
|
|
#define JAUSTREAMFILETABLE_H
|
|
|
|
#include "JSystem/JAudio2/JAIStreamDataMgr.h"
|
|
|
|
struct BinaryStreamFileTable {
|
|
/* 0x0 */ char mIdentifier[4];
|
|
/* 0x4 */ int mNumFiles;
|
|
/* 0x8 */ int mFilePathOffsets[];
|
|
};
|
|
|
|
/**
|
|
* @ingroup jsystem-jaudio
|
|
*
|
|
*/
|
|
struct JAUStreamFileTable {
|
|
/* 802A7420 */ JAUStreamFileTable();
|
|
/* 802A742C */ void init(void const*);
|
|
/* 802A7478 */ int getNumFiles() const;
|
|
/* 802A7484 */ const char* getFilePath(int) const;
|
|
|
|
bool isValid() { return mData; }
|
|
|
|
/* 0x0 */ const BinaryStreamFileTable* mData;
|
|
};
|
|
|
|
/**
|
|
* @ingroup jsystem-jaudio
|
|
*
|
|
*/
|
|
struct JAUStreamDataMgr_StreamFileTable : public JAIStreamDataMgr, JAUStreamFileTable {
|
|
/* 802A74AC */ virtual s32 getStreamFileEntry(JAISoundID);
|
|
/* 802A74E8 */ virtual ~JAUStreamDataMgr_StreamFileTable() {}
|
|
};
|
|
|
|
#endif /* JAUSTREAMFILETABLE_H */
|