2024-03-09 15:07:52 -05:00
|
|
|
#ifndef LEGOCACHSOUND_H
|
|
|
|
#define LEGOCACHSOUND_H
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2024-01-21 10:30:19 -05:00
|
|
|
#include "decomp.h"
|
2024-05-30 10:27:18 -04:00
|
|
|
#include "lego3dsound.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "mxcore.h"
|
2024-02-13 18:34:14 -05:00
|
|
|
#include "mxstring.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d4718
|
2023-06-29 04:10:08 -04:00
|
|
|
// SIZE 0x88
|
2023-10-24 19:38:27 -04:00
|
|
|
class LegoCacheSound : public MxCore {
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2023-10-24 19:38:27 -04:00
|
|
|
LegoCacheSound();
|
2024-02-01 15:42:10 -05:00
|
|
|
~LegoCacheSound() override; // vtable+0x00
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x10006580
|
2024-02-01 15:42:10 -05:00
|
|
|
inline const char* ClassName() const override // vtable+0x0c
|
2023-10-24 19:38:27 -04:00
|
|
|
{
|
2023-12-27 15:59:42 -05:00
|
|
|
// STRING: LEGO1 0x100f01c4
|
2023-10-24 19:38:27 -04:00
|
|
|
return "LegoCacheSound";
|
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// FUNCTION: LEGO1 0x10006590
|
2024-02-01 15:42:10 -05:00
|
|
|
inline MxBool IsA(const char* p_name) const override // vtable+0x10
|
2023-10-24 19:38:27 -04:00
|
|
|
{
|
2023-12-13 05:48:14 -05:00
|
|
|
return !strcmp(p_name, LegoCacheSound::ClassName()) || MxCore::IsA(p_name);
|
2023-10-24 19:38:27 -04:00
|
|
|
}
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2024-06-01 17:29:37 -04:00
|
|
|
virtual MxResult Create(
|
|
|
|
LPPCMWAVEFORMAT p_pwfx,
|
|
|
|
MxString p_mediaSrcPath,
|
|
|
|
MxS32 p_volume,
|
|
|
|
MxU8* p_data,
|
|
|
|
MxU32 p_dataSize
|
|
|
|
); // vtable+0x14
|
2024-02-13 18:34:14 -05:00
|
|
|
virtual void Destroy(); // vtable+0x18
|
|
|
|
virtual void FUN_10006cd0(undefined4, undefined4); // vtable+0x1c
|
|
|
|
|
2024-06-01 17:29:37 -04:00
|
|
|
inline const MxString& GetUnknown0x48() const { return m_unk0x48; }
|
2024-06-02 11:09:09 -04:00
|
|
|
inline const MxBool GetUnknown0x58() const { return m_unk0x58; }
|
2024-02-13 18:34:14 -05:00
|
|
|
|
2024-06-02 11:09:09 -04:00
|
|
|
LegoCacheSound* Clone();
|
|
|
|
MxResult Play(const char* p_name, MxBool p_looping);
|
2024-02-13 18:34:14 -05:00
|
|
|
void FUN_10006b80();
|
|
|
|
void FUN_10006be0();
|
2024-06-01 13:45:22 -04:00
|
|
|
void SetDistance(MxS32 p_min, MxS32 p_max);
|
2024-02-13 18:34:14 -05:00
|
|
|
|
2024-01-18 08:34:14 -05:00
|
|
|
// SYNTHETIC: LEGO1 0x10006610
|
|
|
|
// LegoCacheSound::`scalar deleting destructor'
|
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
private:
|
2023-10-24 19:38:27 -04:00
|
|
|
void Init();
|
2024-06-01 17:29:37 -04:00
|
|
|
void CopyData(MxU8* p_data, MxU32 p_dataSize);
|
|
|
|
MxString FUN_10006d80(const MxString& p_str);
|
2024-01-21 10:30:19 -05:00
|
|
|
|
2024-02-13 18:34:14 -05:00
|
|
|
LPDIRECTSOUNDBUFFER m_dsBuffer; // 0x08
|
2024-06-01 17:29:37 -04:00
|
|
|
undefined m_unk0x0c[4]; // 0x0c
|
2024-06-01 13:45:22 -04:00
|
|
|
Lego3DSound m_sound; // 0x10
|
2024-06-01 17:29:37 -04:00
|
|
|
MxU8* m_data; // 0x40
|
|
|
|
MxU32 m_dataSize; // 0x44
|
|
|
|
MxString m_unk0x48; // 0x48
|
2024-06-02 11:09:09 -04:00
|
|
|
MxBool m_unk0x58; // 0x58
|
2024-06-01 17:29:37 -04:00
|
|
|
PCMWAVEFORMAT m_wfx; // 0x59
|
2024-06-02 11:09:09 -04:00
|
|
|
MxBool m_looping; // 0x69
|
2024-02-13 18:34:14 -05:00
|
|
|
MxBool m_unk0x6a; // 0x6a
|
2024-06-01 17:29:37 -04:00
|
|
|
MxS32 m_volume; // 0x6c
|
2024-06-02 11:09:09 -04:00
|
|
|
MxBool m_unk0x70; // 0x70
|
2024-06-01 17:29:37 -04:00
|
|
|
MxString m_unk0x74; // 0x74
|
2024-02-13 18:34:14 -05:00
|
|
|
undefined m_unk0x84; // 0x84
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
2024-03-09 15:07:52 -05:00
|
|
|
#endif // LEGOCACHSOUND_H
|