2025-09-05 21:34:57 +00:00
|
|
|
#include "xgfxworlddpvsplanes.h"
|
|
|
|
|
|
|
|
|
|
XGfxWorldDpvsPlanes::XGfxWorldDpvsPlanes()
|
|
|
|
|
: XAsset()
|
|
|
|
|
, aCellCount(0)
|
|
|
|
|
, aPlanesPtr(0)
|
|
|
|
|
, aPlanes()
|
|
|
|
|
, aNodesPtr(0)
|
|
|
|
|
, aNodes()
|
|
|
|
|
, aSceneEntCellBitsPtr(0)
|
|
|
|
|
, aSceneEntCellBits()
|
|
|
|
|
{
|
2025-09-10 21:58:26 -04:00
|
|
|
SetName("GFX World DPVS Planes");
|
2025-09-05 21:34:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
XGfxWorldDpvsPlanes::~XGfxWorldDpvsPlanes()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-07 23:12:03 -04:00
|
|
|
int XGfxWorldDpvsPlanes::GetCellCount() const
|
|
|
|
|
{
|
|
|
|
|
return aCellCount;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-10 21:58:26 -04:00
|
|
|
void XGfxWorldDpvsPlanes::ParseData(XDataStream *aStream)
|
2025-09-05 21:34:57 +00:00
|
|
|
{
|
2025-09-10 21:58:26 -04:00
|
|
|
Q_UNUSED(aStream);
|
|
|
|
|
|
|
|
|
|
// TODO: Fill in XGfxWorldDpvsPlanes::ParseData
|
2025-09-05 21:34:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void XGfxWorldDpvsPlanes::Clear()
|
|
|
|
|
{
|
|
|
|
|
aCellCount = 0;
|
|
|
|
|
aPlanesPtr = 0;
|
|
|
|
|
aPlanes.clear();
|
|
|
|
|
aNodesPtr = 0;
|
|
|
|
|
aNodes.clear();
|
|
|
|
|
aSceneEntCellBitsPtr = 0;
|
|
|
|
|
aSceneEntCellBits.clear();
|
|
|
|
|
}
|