Files
firestorm/Gameleap/code/mw4/Libraries/mlr/MLRPointCloud.cpp
T
Cyd 2b8ca921cb Initial full mirror of c:\VWE (source + assets + toolchain + outputs) via Git LFS
Complete disaster-recovery snapshot: engine/game source, game data assets,
VC6 toolchain + DX SDKs, build outputs, deployed game, and _UNUSED archive.
Large binaries in Git LFS; text preserved byte-for-byte (core.autocrlf=false,
no eol attributes). See RECOVERY.md for the one-clone rebuild procedure.
2026-06-24 21:28:16 -05:00

278 lines
5.7 KiB
C++

#include "MLRHeaders.hpp"
//#############################################################################
//######################### MLRPointCloud ###############################
//#############################################################################
MLRPointCloud::ClassData*
MLRPointCloud::DefaultData = NULL;
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
void
MLRPointCloud::InitializeClass()
{
Verify(!DefaultData);
Verify(gos_GetCurrentHeap() == StaticHeap);
DefaultData =
new ClassData(
MLRPointCloudClassID,
"MidLevelRenderer::MLRPointCloud",
MLREffect::DefaultData
);
Register_Object(DefaultData);
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
void
MLRPointCloud::TerminateClass()
{
Unregister_Object(DefaultData);
delete DefaultData;
DefaultData = NULL;
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
MLRPointCloud::MLRPointCloud(int nr, int _type) :
MLREffect(nr, DefaultData), type(_type)
{
Verify(gos_GetCurrentHeap() == EffectHeap);
usedNrOfVertices = 0;
Check_Pointer(this);
drawMode = SortData::PointCloud;
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
MLRPointCloud::~MLRPointCloud()
{
Check_Object(this);
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
void
MLRPointCloud::SetData(
const int *count,
const Stuff::Point3D *point_data,
const Stuff::RGBAColor *color_data
)
{
Check_Pointer(this);
usedNrOfVertices = count;
Verify(*usedNrOfVertices <= maxNrOf);
points = point_data;
colors = color_data;
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
void
MLRPointCloud::Draw (DrawEffectInformation *dInfo, GOSVertexPool *allVerticesToDraw, MLRSorter *sorter)
{
Check_Object(this);
#ifdef LAB_ONLY
if(Limits::Max_Number_Vertices_Per_Frame < allVerticesToDraw->GetLast() + *usedNrOfVertices * 3)
{
SPEWALWAYS((0, "Not drawing MLRPointCloud. Too many vertices! Raid a bug to Art!"));
return;
}
#endif
worldToEffect.Invert(*dInfo->effectToWorld);
Transform(*usedNrOfVertices, 1);
if( Clip(dInfo->clippingFlags, allVerticesToDraw, false) )
{
sorter->AddEffect(this, dInfo->state);
}
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
int
MLRPointCloud::Draw (ToBeDrawnPrimitive *tbdp, MLRSorter *sorter)
{
Check_Object(this);
effectToClipMatrix = tbdp->shapeToClipMatrix;
Transform(*usedNrOfVertices, 1);
int index = -1;
if( Clip(tbdp->clippingFlags, tbdp->allVerticesToDraw, true) )
{
sorter->AddEffect(this, tbdp->state, index);
}
return index;
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
void
MLRPointCloud::Transform(int, int)
{
Check_Object(this);
MLR_RENDER("Transform::MLRPointCloud");
Start_Timer(Transform_Time);
int i;
for(i=0;i<*usedNrOfVertices;i++)
{
if(IsOn(i) == false)
{
continue;
}
(*transformedCoords)[i].Multiply(points[i], effectToClipMatrix);
}
Stop_Timer(Transform_Time);
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
int
MLRPointCloud::Clip(MLRClippingState clippingFlags, GOSVertexPool *vt, bool db)
{
//--------------------------------------
// See if we don't have to draw anything
//--------------------------------------
//
int i;
numGOSVertices = 0;
if(clippingFlags.GetClippingState() == 0 || usedNrOfVertices <= 0)
{
if(usedNrOfVertices <= 0)
{
visible = 0;
}
else
{
Check_Object(vt);
gos_vertices = vt->GetActualVertexPool(db);
for(i=0;i<*usedNrOfVertices;i++)
{
if(IsOn(i) == false)
{
continue;
}
GOSCopyData(
&gos_vertices[numGOSVertices],
transformedCoords->GetData(),
colors,
i
);
numGOSVertices++;
}
if(db==false)
{
Check_Object(vt);
vt->Increase(numGOSVertices);
}
visible = numGOSVertices ? 1 : 0;
}
return visible;
}
Check_Object(vt);
gos_vertices = vt->GetActualVertexPool(db);
Stuff::Vector4D *v4d = transformedCoords->GetData();
for(i=0;i<*usedNrOfVertices;i++,v4d++)
{
if(IsOn(i) == false)
{
continue;
}
if( clippingFlags.IsFarClipped() && v4d->w <= v4d->z)
{
continue;
}
if( clippingFlags.IsNearClipped() && v4d->z < 0.0f)
{
continue;
}
if( clippingFlags.IsRightClipped() && v4d->x < 0.0f)
{
continue;
}
if( clippingFlags.IsLeftClipped() && v4d->w < v4d->x)
{
continue;
}
if( clippingFlags.IsBottomClipped() && v4d->y < 0.0f)
{
continue;
}
if(clippingFlags.IsTopClipped() && v4d->w < v4d->y)
{
continue;
}
GOSCopyData(
&gos_vertices[numGOSVertices],
transformedCoords->GetData(),
colors,
i
);
if(
//clippingFlags.IsLeftClipped() &&
(gos_vertices[numGOSVertices].x + ((type)?type*4.f : 4.f)) > Environment.screenWidth
)
{
continue;
}
if(
//clippingFlags.IsTopClipped() &&
(gos_vertices[numGOSVertices].y + ((type)?type*4.f : 4.f)) > Environment.screenHeight
)
{
continue;
}
numGOSVertices++;
}
if(db==false)
{
vt->Increase(numGOSVertices);
}
visible = numGOSVertices ? 1 : 0;
return visible;
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
void
MLRPointCloud::TestInstance() const
{
if (usedNrOfVertices)
{
Verify(*usedNrOfVertices >= 0);
Verify(*usedNrOfVertices <= maxNrOf);
}
}