metaforce/Runtime/Audio/CAudioGroupSet.cpp

42 lines
1.4 KiB
C++
Raw Normal View History

#include "Runtime/Audio/CAudioGroupSet.hpp"
#include <cstring>
2021-04-10 01:42:06 -07:00
namespace metaforce {
2018-12-07 21:30:43 -08:00
amuse::AudioGroupData CAudioGroupSet::LoadData() {
const auto readU32 = [](const u8* ptr) {
uint32_t value;
std::memcpy(&value, ptr, sizeof(value));
2022-02-15 21:21:24 -08:00
return SBig(value);
};
CMemoryInStream r(m_buffer.get(), INT32_MAX, CMemoryInStream::EOwnerShip::NotOwned);
x10_baseName = r.Get<std::string>();
x20_name = r.Get<std::string>();
u8* buf = m_buffer.get() + r.GetReadPosition();
const uint32_t poolLen = readU32(buf);
2018-12-07 21:30:43 -08:00
unsigned char* pool = buf + 4;
buf += poolLen + 4;
const uint32_t projLen = readU32(buf);
2018-12-07 21:30:43 -08:00
unsigned char* proj = buf + 4;
buf += projLen + 4;
const uint32_t sampLen = readU32(buf);
2018-12-07 21:30:43 -08:00
unsigned char* samp = buf + 4;
buf += sampLen + 4;
const uint32_t sdirLen = readU32(buf);
2018-12-07 21:30:43 -08:00
unsigned char* sdir = buf + 4;
2018-12-07 21:30:43 -08:00
return {proj, projLen, pool, poolLen, sdir, sdirLen, samp, sampLen, amuse::GCNDataTag{}};
}
2018-12-07 21:30:43 -08:00
CAudioGroupSet::CAudioGroupSet(std::unique_ptr<u8[]>&& in) : m_buffer(std::move(in)), m_data(LoadData()) {}
2021-04-10 01:42:06 -07:00
CFactoryFnReturn FAudioGroupSetDataFactory(const metaforce::SObjectTag& tag, std::unique_ptr<u8[]>&& in, u32 len,
const metaforce::CVParamTransfer& vparms, CObjectReference* selfRef) {
2018-12-07 21:30:43 -08:00
return TToken<CAudioGroupSet>::GetIObjObjectFor(std::make_unique<CAudioGroupSet>(std::move(in)));
}
2021-04-10 01:42:06 -07:00
} // namespace metaforce