metaforce/Runtime/Graphics/CPVSAreaSet.cpp

23 lines
733 B
C++
Raw Normal View History

#include "Runtime/Graphics/CPVSAreaSet.hpp"
#include "Runtime/Streams/IOStreams.hpp"
2016-07-27 16:06:57 -07:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2016-07-27 16:06:57 -07:00
2018-12-07 21:30:43 -08:00
CPVSAreaSet::CPVSAreaSet(const u8* data, u32 len) {
CMemoryInStream r(data, len);
x0_numFeatures = r.ReadLong();
x4_numLights = r.ReadLong();
x8_num2ndLights = r.ReadLong();
xc_numActors = r.ReadLong();
x10_leafSize = r.ReadLong();
x14_lightIndexCount = r.ReadLong();
2018-12-07 21:30:43 -08:00
x18_entityIndex.reserve(xc_numActors);
for (u32 i = 0; i < xc_numActors; ++i)
x18_entityIndex.push_back(r.ReadLong());
x1c_lightLeaves = data + r.GetReadPosition();
2018-12-07 21:30:43 -08:00
const u8* octreeData = x1c_lightLeaves + x14_lightIndexCount * x10_leafSize;
x20_octree = CPVSVisOctree::MakePVSVisOctree(octreeData);
2016-07-27 16:06:57 -07:00
}
2021-04-10 01:42:06 -07:00
} // namespace metaforce