2020-01-15 12:07:48 +00:00
|
|
|
#include "Runtime/Graphics/CPVSAreaSet.hpp"
|
2016-07-27 23:06:57 +00:00
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
namespace metaforce {
|
2016-07-27 23:06:57 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
CPVSAreaSet::CPVSAreaSet(const u8* data, u32 len) {
|
|
|
|
CMemoryInStream r(data, len);
|
|
|
|
x0_numFeatures = r.readUint32Big();
|
|
|
|
x4_numLights = r.readUint32Big();
|
|
|
|
x8_num2ndLights = r.readUint32Big();
|
|
|
|
xc_numActors = r.readUint32Big();
|
|
|
|
x10_leafSize = r.readUint32Big();
|
|
|
|
x14_lightIndexCount = r.readUint32Big();
|
|
|
|
x18_entityIndex.reserve(xc_numActors);
|
2019-06-12 02:05:17 +00:00
|
|
|
for (u32 i = 0; i < xc_numActors; ++i)
|
2018-12-08 05:30:43 +00:00
|
|
|
x18_entityIndex.push_back(r.readUint32Big());
|
|
|
|
x1c_lightLeaves = data + r.position();
|
|
|
|
const u8* octreeData = x1c_lightLeaves + x14_lightIndexCount * x10_leafSize;
|
|
|
|
x20_octree = CPVSVisOctree::MakePVSVisOctree(octreeData);
|
2016-07-27 23:06:57 +00:00
|
|
|
}
|
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
} // namespace metaforce
|