metaforce/Runtime/Particle/CSpawnSystemKeyframeData.cpp

58 lines
1.7 KiB
C++
Raw Normal View History

#include "Runtime/Particle/CSpawnSystemKeyframeData.hpp"
#include "Runtime/CSimplePool.hpp"
#include "Runtime/Graphics/CModel.hpp"
#include "Runtime/Particle/CElectricDescription.hpp"
2016-02-10 22:58:33 -08:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2018-12-07 21:30:43 -08:00
CSpawnSystemKeyframeData::CSpawnSystemKeyframeData(CInputStream& in) {
x0 = in.readUint32Big();
x4 = in.readUint32Big();
x8_endFrame = in.readUint32Big();
xc = in.readUint32Big();
u32 count = in.readUint32Big();
x10_spawns.reserve(count);
for (u32 i = 0; i < count; ++i) {
u32 v1 = in.readUint32Big();
x10_spawns.emplace_back(v1, std::vector<CSpawnSystemKeyframeInfo>());
std::vector<CSpawnSystemKeyframeInfo>& v2 = x10_spawns.back().second;
u32 v2c = in.readUint32Big();
v2.reserve(v2c);
for (u32 j = 0; j < v2c; ++j)
v2.emplace_back(in);
}
2016-02-10 22:58:33 -08:00
}
2018-12-07 21:30:43 -08:00
CSpawnSystemKeyframeData::CSpawnSystemKeyframeInfo::CSpawnSystemKeyframeInfo(CInputStream& in) {
2021-06-11 23:45:27 -07:00
x0_id = CAssetId(in);
2018-12-07 21:30:43 -08:00
x4 = in.readUint32Big();
x8 = in.readUint32Big();
xc = in.readUint32Big();
2016-02-10 22:58:33 -08:00
}
2018-12-07 21:30:43 -08:00
void CSpawnSystemKeyframeData::LoadAllSpawnedSystemTokens(CSimplePool* pool) {
for (auto& spawn : x10_spawns)
for (CSpawnSystemKeyframeInfo& elem : spawn.second)
elem.LoadToken(pool);
2016-02-10 22:58:33 -08:00
}
2018-12-07 21:30:43 -08:00
void CSpawnSystemKeyframeData::CSpawnSystemKeyframeInfo::LoadToken(CSimplePool* pool) {
x10_token = std::move(pool->GetObj({FOURCC('PART'), x0_id}));
x18_found = true;
2016-02-10 22:58:33 -08:00
}
2016-02-11 14:38:25 -08:00
std::vector<CSpawnSystemKeyframeData::CSpawnSystemKeyframeInfo>&
2018-12-07 21:30:43 -08:00
CSpawnSystemKeyframeData::GetSpawnedSystemsAtFrame(u32 frame) {
static std::vector<CSpawnSystemKeyframeData::CSpawnSystemKeyframeInfo> emptyReturn;
if (frame >= x8_endFrame)
2016-02-11 14:38:25 -08:00
return emptyReturn;
2018-12-07 21:30:43 -08:00
for (auto& spawn : x10_spawns)
if (spawn.first == frame)
return spawn.second;
return emptyReturn;
2016-02-11 14:38:25 -08:00
}
2021-04-10 01:42:06 -07:00
} // namespace metaforce