2019-05-15 14:52:37 +00:00
|
|
|
#include "common.h"
|
2020-04-17 13:31:11 +00:00
|
|
|
|
2019-05-15 14:52:37 +00:00
|
|
|
#include "templates.h"
|
|
|
|
#include "Entity.h"
|
|
|
|
#include "ModelInfo.h"
|
|
|
|
#include "Lights.h"
|
|
|
|
#include "Renderer.h"
|
2019-05-31 09:44:43 +00:00
|
|
|
#include "Camera.h"
|
2019-05-15 14:52:37 +00:00
|
|
|
#include "VisibilityPlugins.h"
|
2019-10-26 11:12:24 +00:00
|
|
|
#include "World.h"
|
2019-05-15 14:52:37 +00:00
|
|
|
|
|
|
|
#define FADE_DISTANCE 20.0f
|
|
|
|
|
2020-04-17 05:54:14 +00:00
|
|
|
CLinkList<CVisibilityPlugins::AlphaObjectInfo> CVisibilityPlugins::m_alphaList;
|
|
|
|
CLinkList<CVisibilityPlugins::AlphaObjectInfo> CVisibilityPlugins::m_alphaEntityList;
|
2020-04-16 08:50:45 +00:00
|
|
|
|
2020-04-17 05:54:14 +00:00
|
|
|
int32 CVisibilityPlugins::ms_atomicPluginOffset = -1;
|
|
|
|
int32 CVisibilityPlugins::ms_framePluginOffset = -1;
|
|
|
|
int32 CVisibilityPlugins::ms_clumpPluginOffset = -1;
|
2020-04-16 08:50:45 +00:00
|
|
|
|
2020-04-17 05:54:14 +00:00
|
|
|
RwCamera *CVisibilityPlugins::ms_pCamera;
|
|
|
|
RwV3d *CVisibilityPlugins::ms_pCameraPosn;
|
|
|
|
float CVisibilityPlugins::ms_cullCompsDist;
|
|
|
|
float CVisibilityPlugins::ms_vehicleLod0Dist;
|
|
|
|
float CVisibilityPlugins::ms_vehicleLod1Dist;
|
|
|
|
float CVisibilityPlugins::ms_vehicleFadeDist;
|
|
|
|
float CVisibilityPlugins::ms_bigVehicleLod0Dist;
|
|
|
|
float CVisibilityPlugins::ms_bigVehicleLod1Dist;
|
|
|
|
float CVisibilityPlugins::ms_pedLod0Dist;
|
|
|
|
float CVisibilityPlugins::ms_pedLod1Dist;
|
|
|
|
float CVisibilityPlugins::ms_pedFadeDist;
|
2019-05-15 14:52:37 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
CVisibilityPlugins::Initialise(void)
|
|
|
|
{
|
2020-04-16 09:44:04 +00:00
|
|
|
m_alphaList.Init(NUMALPHALIST);
|
2019-05-15 14:52:37 +00:00
|
|
|
m_alphaList.head.item.sort = 0.0f;
|
|
|
|
m_alphaList.tail.item.sort = 100000000.0f;
|
2020-04-16 09:44:04 +00:00
|
|
|
#ifdef ASPECT_RATIO_SCALE
|
|
|
|
// default 150 if not enough for bigger FOVs
|
|
|
|
m_alphaEntityList.Init(NUMALPHAENTITYLIST * 3);
|
|
|
|
#else
|
|
|
|
m_alphaEntityList.Init(NUMALPHAENTITYLIST);
|
|
|
|
#endif // ASPECT_RATIO_SCALE
|
2019-05-15 14:52:37 +00:00
|
|
|
m_alphaEntityList.head.item.sort = 0.0f;
|
|
|
|
m_alphaEntityList.tail.item.sort = 100000000.0f;
|
|
|
|
}
|
|
|
|
|
2019-06-13 10:25:55 +00:00
|
|
|
void
|
|
|
|
CVisibilityPlugins::Shutdown(void)
|
|
|
|
{
|
|
|
|
m_alphaList.Shutdown();
|
|
|
|
m_alphaEntityList.Shutdown();
|
|
|
|
}
|
|
|
|
|
2019-05-15 14:52:37 +00:00
|
|
|
void
|
|
|
|
CVisibilityPlugins::InitAlphaEntityList(void)
|
|
|
|
{
|
|
|
|
m_alphaEntityList.Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CVisibilityPlugins::InsertEntityIntoSortedList(CEntity *e, float dist)
|
|
|
|
{
|
|
|
|
AlphaObjectInfo item;
|
|
|
|
item.entity = e;
|
|
|
|
item.sort = dist;
|
|
|
|
bool ret = !!m_alphaEntityList.InsertSorted(item);
|
|
|
|
// if(!ret)
|
|
|
|
// printf("list full %d\n", m_alphaEntityList.Count());
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CVisibilityPlugins::InitAlphaAtomicList(void)
|
|
|
|
{
|
|
|
|
m_alphaList.Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CVisibilityPlugins::InsertAtomicIntoSortedList(RpAtomic *a, float dist)
|
|
|
|
{
|
|
|
|
AlphaObjectInfo item;
|
|
|
|
item.atomic = a;
|
|
|
|
item.sort = dist;
|
|
|
|
bool ret = !!m_alphaList.InsertSorted(item);
|
|
|
|
// if(!ret)
|
|
|
|
// printf("list full %d\n", m_alphaList.Count());
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-05-31 09:44:43 +00:00
|
|
|
void
|
|
|
|
CVisibilityPlugins::SetRenderWareCamera(RwCamera *camera)
|
|
|
|
{
|
|
|
|
ms_pCamera = camera;
|
|
|
|
ms_pCameraPosn = RwMatrixGetPos(RwFrameGetMatrix(RwCameraGetFrame(camera)));
|
|
|
|
|
2019-10-27 03:17:30 +00:00
|
|
|
if(TheCamera.Cams[TheCamera.ActiveCam].Mode == CCam::MODE_TOPDOWN ||
|
|
|
|
TheCamera.Cams[TheCamera.ActiveCam].Mode == CCam::MODE_TOP_DOWN_PED)
|
2019-05-31 09:44:43 +00:00
|
|
|
ms_cullCompsDist = 1000000.0f;
|
|
|
|
else
|
|
|
|
ms_cullCompsDist = sq(TheCamera.LODDistMultiplier * 20.0f);
|
|
|
|
|
2019-08-16 18:17:15 +00:00
|
|
|
ms_vehicleLod0Dist = sq(70.0f * TheCamera.GenerationDistMultiplier);
|
|
|
|
ms_vehicleLod1Dist = sq(90.0f * TheCamera.GenerationDistMultiplier);
|
|
|
|
ms_vehicleFadeDist = sq(100.0f * TheCamera.GenerationDistMultiplier);
|
|
|
|
ms_bigVehicleLod0Dist = sq(60.0f * TheCamera.GenerationDistMultiplier);
|
|
|
|
ms_bigVehicleLod1Dist = sq(150.0f * TheCamera.GenerationDistMultiplier);
|
|
|
|
ms_pedLod0Dist = sq(25.0f * TheCamera.LODDistMultiplier);
|
|
|
|
ms_pedLod1Dist = sq(60.0f * TheCamera.LODDistMultiplier);
|
|
|
|
ms_pedFadeDist = sq(70.0f * TheCamera.LODDistMultiplier);
|
2019-05-31 09:44:43 +00:00
|
|
|
}
|
|
|
|
|
2019-05-15 14:52:37 +00:00
|
|
|
RpMaterial*
|
|
|
|
SetAlphaCB(RpMaterial *material, void *data)
|
|
|
|
{
|
2020-04-09 14:35:24 +00:00
|
|
|
((RwRGBA*)RpMaterialGetColor(material))->alpha = (uint8)(uint32)data;
|
2019-05-15 14:52:37 +00:00
|
|
|
return material;
|
|
|
|
}
|
|
|
|
|
|
|
|
RpMaterial*
|
|
|
|
SetTextureCB(RpMaterial *material, void *data)
|
|
|
|
{
|
|
|
|
RpMaterialSetTexture(material, (RwTexture*)data);
|
|
|
|
return material;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CVisibilityPlugins::RenderAlphaAtomics(void)
|
|
|
|
{
|
|
|
|
CLink<AlphaObjectInfo> *node;
|
|
|
|
for(node = m_alphaList.tail.prev;
|
|
|
|
node != &m_alphaList.head;
|
|
|
|
node = node->prev)
|
|
|
|
AtomicDefaultRenderCallBack(node->item.atomic);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CVisibilityPlugins::RenderFadingEntities(void)
|
|
|
|
{
|
|
|
|
CLink<AlphaObjectInfo> *node;
|
|
|
|
CSimpleModelInfo *mi;
|
|
|
|
for(node = m_alphaEntityList.tail.prev;
|
|
|
|
node != &m_alphaEntityList.head;
|
|
|
|
node = node->prev){
|
|
|
|
CEntity *e = node->item.entity;
|
|
|
|
if(e->m_rwObject == nil)
|
|
|
|
continue;
|
|
|
|
mi = (CSimpleModelInfo*)CModelInfo::GetModelInfo(e->m_modelIndex);
|
|
|
|
if(mi->m_noZwrite)
|
|
|
|
RwRenderStateSet(rwRENDERSTATEZWRITEENABLE, FALSE);
|
|
|
|
|
|
|
|
if(e->bDistanceFade){
|
|
|
|
DeActivateDirectional();
|
|
|
|
SetAmbientColours();
|
|
|
|
e->bImBeingRendered = true;
|
|
|
|
RenderFadingAtomic((RpAtomic*)e->m_rwObject, node->item.sort);
|
|
|
|
e->bImBeingRendered = false;
|
|
|
|
}else
|
|
|
|
CRenderer::RenderOneNonRoad(e);
|
|
|
|
|
|
|
|
if(mi->m_noZwrite)
|
|
|
|
RwRenderStateSet(rwRENDERSTATEZWRITEENABLE, (void*)TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderWheelAtomicCB(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
RpAtomic *lodatm;
|
|
|
|
RwMatrix *m;
|
|
|
|
RwV3d view;
|
|
|
|
float len;
|
|
|
|
CSimpleModelInfo *mi;
|
|
|
|
|
|
|
|
mi = GetAtomicModelInfo(atomic);
|
|
|
|
m = RwFrameGetLTM(RpAtomicGetFrame(atomic));
|
|
|
|
RwV3dSub(&view, RwMatrixGetPos(m), ms_pCameraPosn);
|
|
|
|
len = RwV3dLength(&view);
|
|
|
|
lodatm = mi->GetAtomicFromDistance(len);
|
|
|
|
if(lodatm){
|
|
|
|
if(RpAtomicGetGeometry(lodatm) != RpAtomicGetGeometry(atomic))
|
|
|
|
RpAtomicSetGeometry(atomic, RpAtomicGetGeometry(lodatm), rpATOMICSAMEBOUNDINGSPHERE);
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
}
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderObjNormalAtomic(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
RwMatrix *m;
|
|
|
|
RwV3d view;
|
|
|
|
float len;
|
|
|
|
|
|
|
|
m = RwFrameGetLTM(RpAtomicGetFrame(atomic));
|
|
|
|
RwV3dSub(&view, RwMatrixGetPos(m), ms_pCameraPosn);
|
|
|
|
len = RwV3dLength(&view);
|
|
|
|
if(RwV3dDotProduct(&view, RwMatrixGetUp(m)) < -0.3f*len && len > 8.0f)
|
|
|
|
return atomic;
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderAlphaAtomic(RpAtomic *atomic, int alpha)
|
|
|
|
{
|
|
|
|
RpGeometry *geo;
|
|
|
|
uint32 flags;
|
|
|
|
|
|
|
|
geo = RpAtomicGetGeometry(atomic);
|
|
|
|
flags = RpGeometryGetFlags(geo);
|
|
|
|
RpGeometrySetFlags(geo, flags | rpGEOMETRYMODULATEMATERIALCOLOR);
|
|
|
|
RpGeometryForAllMaterials(geo, SetAlphaCB, (void*)alpha);
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
RpGeometryForAllMaterials(geo, SetAlphaCB, (void*)255);
|
|
|
|
RpGeometrySetFlags(geo, flags);
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderFadingAtomic(RpAtomic *atomic, float camdist)
|
|
|
|
{
|
|
|
|
RpAtomic *lodatm;
|
|
|
|
float fadefactor;
|
|
|
|
uint8 alpha;
|
|
|
|
CSimpleModelInfo *mi;
|
|
|
|
|
|
|
|
mi = GetAtomicModelInfo(atomic);
|
|
|
|
lodatm = mi->GetAtomicFromDistance(camdist - FADE_DISTANCE);
|
|
|
|
if(mi->m_additive){
|
|
|
|
RwRenderStateSet(rwRENDERSTATEDESTBLEND, (void*)rwBLENDONE);
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
RwRenderStateSet(rwRENDERSTATEDESTBLEND, (void*)rwBLENDINVSRCALPHA);
|
|
|
|
}else{
|
|
|
|
fadefactor = (mi->GetLargestLodDistance() - (camdist - FADE_DISTANCE))/FADE_DISTANCE;
|
|
|
|
if(fadefactor > 1.0f)
|
|
|
|
fadefactor = 1.0f;
|
|
|
|
alpha = mi->m_alpha * fadefactor;
|
|
|
|
if(alpha == 255)
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
else{
|
|
|
|
RpGeometry *geo = RpAtomicGetGeometry(lodatm);
|
|
|
|
uint32 flags = RpGeometryGetFlags(geo);
|
|
|
|
RpGeometrySetFlags(geo, flags | rpGEOMETRYMODULATEMATERIALCOLOR);
|
|
|
|
RpGeometryForAllMaterials(geo, SetAlphaCB, (void*)alpha);
|
|
|
|
if(geo != RpAtomicGetGeometry(atomic))
|
2020-02-02 13:51:33 +00:00
|
|
|
RpAtomicSetGeometry(atomic, geo, rpATOMICSAMEBOUNDINGSPHERE); // originally 5 (mistake?)
|
2019-05-15 14:52:37 +00:00
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
RpGeometryForAllMaterials(geo, SetAlphaCB, (void*)255);
|
|
|
|
RpGeometrySetFlags(geo, flags);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderVehicleHiDetailCB(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
RwFrame *clumpframe;
|
|
|
|
float distsq, dot;
|
|
|
|
uint32 flags;
|
|
|
|
|
|
|
|
clumpframe = RpClumpGetFrame(RpAtomicGetClump(atomic));
|
|
|
|
distsq = GetDistanceSquaredFromCamera(clumpframe);
|
|
|
|
if(distsq < ms_vehicleLod0Dist){
|
|
|
|
flags = GetAtomicId(atomic);
|
|
|
|
if(distsq > ms_cullCompsDist && (flags & ATOMIC_FLAG_NOCULL) == 0){
|
|
|
|
dot = GetDotProductWithCameraVector(RwFrameGetLTM(RpAtomicGetFrame(atomic)),
|
|
|
|
RwFrameGetLTM(clumpframe), flags);
|
|
|
|
if(dot > 0.0f && ((flags & ATOMIC_FLAG_ANGLECULL) || 0.1f*distsq < dot*dot))
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
}
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderVehicleHiDetailAlphaCB(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
RwFrame *clumpframe;
|
|
|
|
float distsq, dot;
|
|
|
|
uint32 flags;
|
|
|
|
|
|
|
|
clumpframe = RpClumpGetFrame(RpAtomicGetClump(atomic));
|
|
|
|
distsq = GetDistanceSquaredFromCamera(clumpframe);
|
|
|
|
if(distsq < ms_vehicleLod0Dist){
|
|
|
|
flags = GetAtomicId(atomic);
|
|
|
|
dot = GetDotProductWithCameraVector(RwFrameGetLTM(RpAtomicGetFrame(atomic)),
|
|
|
|
RwFrameGetLTM(clumpframe), flags);
|
|
|
|
if(distsq > ms_cullCompsDist && (flags & ATOMIC_FLAG_NOCULL) == 0)
|
|
|
|
if(dot > 0.0f && ((flags & ATOMIC_FLAG_ANGLECULL) || 0.1f*distsq < dot*dot))
|
|
|
|
return atomic;
|
|
|
|
|
|
|
|
if(flags & ATOMIC_FLAG_DRAWLAST){
|
|
|
|
// sort before clump
|
|
|
|
if(!InsertAtomicIntoSortedList(atomic, distsq - 0.0001f))
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
}else{
|
|
|
|
if(!InsertAtomicIntoSortedList(atomic, distsq + dot))
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderVehicleHiDetailCB_BigVehicle(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
RwFrame *clumpframe;
|
|
|
|
float distsq, dot;
|
|
|
|
uint32 flags;
|
|
|
|
|
|
|
|
clumpframe = RpClumpGetFrame(RpAtomicGetClump(atomic));
|
|
|
|
distsq = GetDistanceSquaredFromCamera(clumpframe);
|
|
|
|
if(distsq < ms_bigVehicleLod0Dist){
|
|
|
|
flags = GetAtomicId(atomic);
|
|
|
|
if(distsq > ms_cullCompsDist && (flags & ATOMIC_FLAG_NOCULL) == 0){
|
|
|
|
dot = GetDotProductWithCameraVector(RwFrameGetLTM(RpAtomicGetFrame(atomic)),
|
|
|
|
RwFrameGetLTM(clumpframe), flags);
|
|
|
|
if(dot > 0.0f)
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
}
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderVehicleHiDetailAlphaCB_BigVehicle(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
RwFrame *clumpframe;
|
|
|
|
float distsq, dot;
|
|
|
|
uint32 flags;
|
|
|
|
|
|
|
|
clumpframe = RpClumpGetFrame(RpAtomicGetClump(atomic));
|
|
|
|
distsq = GetDistanceSquaredFromCamera(clumpframe);
|
|
|
|
if(distsq < ms_bigVehicleLod0Dist){
|
|
|
|
flags = GetAtomicId(atomic);
|
|
|
|
dot = GetDotProductWithCameraVector(RwFrameGetLTM(RpAtomicGetFrame(atomic)),
|
|
|
|
RwFrameGetLTM(clumpframe), flags);
|
|
|
|
if(dot > 0.0f)
|
|
|
|
if(distsq > ms_cullCompsDist && (flags & ATOMIC_FLAG_NOCULL) == 0)
|
|
|
|
return atomic;
|
|
|
|
|
|
|
|
if(!InsertAtomicIntoSortedList(atomic, distsq + dot))
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
}
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderVehicleHiDetailCB_Boat(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
RwFrame *clumpframe;
|
|
|
|
float distsq;
|
|
|
|
|
|
|
|
clumpframe = RpClumpGetFrame(RpAtomicGetClump(atomic));
|
|
|
|
distsq = GetDistanceSquaredFromCamera(clumpframe);
|
|
|
|
if(distsq < ms_bigVehicleLod1Dist)
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderVehicleLowDetailCB_BigVehicle(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
RwFrame *clumpframe;
|
|
|
|
float distsq, dot;
|
|
|
|
uint32 flags;
|
|
|
|
|
|
|
|
clumpframe = RpClumpGetFrame(RpAtomicGetClump(atomic));
|
|
|
|
distsq = GetDistanceSquaredFromCamera(clumpframe);
|
|
|
|
if(distsq >= ms_bigVehicleLod0Dist &&
|
|
|
|
distsq < ms_bigVehicleLod1Dist){
|
|
|
|
flags = GetAtomicId(atomic);
|
|
|
|
if(distsq > ms_cullCompsDist && (flags & ATOMIC_FLAG_NOCULL) == 0){
|
|
|
|
dot = GetDotProductWithCameraVector(RwFrameGetLTM(RpAtomicGetFrame(atomic)),
|
|
|
|
RwFrameGetLTM(clumpframe), flags);
|
|
|
|
if(dot > 0.0f)
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
}
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderVehicleLowDetailAlphaCB_BigVehicle(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
RwFrame *clumpframe;
|
|
|
|
float distsq, dot;
|
|
|
|
uint32 flags;
|
|
|
|
|
|
|
|
clumpframe = RpClumpGetFrame(RpAtomicGetClump(atomic));
|
|
|
|
distsq = GetDistanceSquaredFromCamera(clumpframe);
|
|
|
|
if(distsq >= ms_bigVehicleLod0Dist &&
|
|
|
|
distsq < ms_bigVehicleLod1Dist){
|
|
|
|
flags = GetAtomicId(atomic);
|
|
|
|
dot = GetDotProductWithCameraVector(RwFrameGetLTM(RpAtomicGetFrame(atomic)),
|
|
|
|
RwFrameGetLTM(clumpframe), flags);
|
|
|
|
if(dot > 0.0f)
|
|
|
|
if(distsq > ms_cullCompsDist && (flags & ATOMIC_FLAG_NOCULL) == 0)
|
|
|
|
return atomic;
|
|
|
|
|
|
|
|
if(!InsertAtomicIntoSortedList(atomic, distsq + dot))
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
}
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderVehicleReallyLowDetailCB(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
RpClump *clump;
|
|
|
|
float dist;
|
|
|
|
int32 alpha;
|
|
|
|
|
|
|
|
clump = RpAtomicGetClump(atomic);
|
|
|
|
dist = GetDistanceSquaredFromCamera(RpClumpGetFrame(clump));
|
|
|
|
if(dist >= ms_vehicleLod0Dist){
|
|
|
|
alpha = GetClumpAlpha(clump);
|
|
|
|
if(alpha == 255)
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
else
|
|
|
|
RenderAlphaAtomic(atomic, alpha);
|
|
|
|
}
|
|
|
|
return atomic;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderVehicleReallyLowDetailCB_BigVehicle(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
RwFrame *clumpframe;
|
|
|
|
float distsq;
|
|
|
|
|
|
|
|
clumpframe = RpClumpGetFrame(RpAtomicGetClump(atomic));
|
|
|
|
distsq = GetDistanceSquaredFromCamera(clumpframe);
|
|
|
|
if(distsq >= ms_bigVehicleLod1Dist)
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderTrainHiDetailCB(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
RwFrame *clumpframe;
|
|
|
|
float distsq, dot;
|
|
|
|
uint32 flags;
|
|
|
|
|
|
|
|
clumpframe = RpClumpGetFrame(RpAtomicGetClump(atomic));
|
|
|
|
distsq = GetDistanceSquaredFromCamera(clumpframe);
|
|
|
|
if(distsq < ms_bigVehicleLod1Dist){
|
|
|
|
flags = GetAtomicId(atomic);
|
|
|
|
if(distsq > ms_cullCompsDist && (flags & ATOMIC_FLAG_NOCULL) == 0){
|
|
|
|
dot = GetDotProductWithCameraVector(RwFrameGetLTM(RpAtomicGetFrame(atomic)),
|
|
|
|
RwFrameGetLTM(clumpframe), flags);
|
|
|
|
if(dot > 0.0f && ((flags & ATOMIC_FLAG_ANGLECULL) || 0.1f*distsq < dot*dot))
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
}
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderTrainHiDetailAlphaCB(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
RwFrame *clumpframe;
|
|
|
|
float distsq, dot;
|
|
|
|
uint32 flags;
|
|
|
|
|
|
|
|
clumpframe = RpClumpGetFrame(RpAtomicGetClump(atomic));
|
|
|
|
distsq = GetDistanceSquaredFromCamera(clumpframe);
|
|
|
|
if(distsq < ms_bigVehicleLod1Dist){
|
|
|
|
flags = GetAtomicId(atomic);
|
|
|
|
dot = GetDotProductWithCameraVector(RwFrameGetLTM(RpAtomicGetFrame(atomic)),
|
|
|
|
RwFrameGetLTM(clumpframe), flags);
|
|
|
|
if(distsq > ms_cullCompsDist && (flags & ATOMIC_FLAG_NOCULL) == 0)
|
|
|
|
if(dot > 0.0f && ((flags & ATOMIC_FLAG_ANGLECULL) || 0.1f*distsq < dot*dot))
|
|
|
|
return atomic;
|
|
|
|
|
|
|
|
if(flags & ATOMIC_FLAG_DRAWLAST){
|
|
|
|
// sort before clump
|
|
|
|
if(!InsertAtomicIntoSortedList(atomic, distsq - 0.0001f))
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
}else{
|
|
|
|
if(!InsertAtomicIntoSortedList(atomic, distsq + dot))
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderPlayerCB(RpAtomic *atomic)
|
|
|
|
{
|
2019-10-26 11:12:24 +00:00
|
|
|
if(CWorld::Players[0].m_pSkinTexture)
|
|
|
|
RpGeometryForAllMaterials(RpAtomicGetGeometry(atomic), SetTextureCB, CWorld::Players[0].m_pSkinTexture);
|
2019-05-15 14:52:37 +00:00
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderPedLowDetailCB(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
RpClump *clump;
|
|
|
|
float dist;
|
|
|
|
int32 alpha;
|
|
|
|
|
|
|
|
clump = RpAtomicGetClump(atomic);
|
|
|
|
dist = GetDistanceSquaredFromCamera(RpClumpGetFrame(clump));
|
|
|
|
if(dist >= ms_pedLod0Dist){
|
|
|
|
alpha = GetClumpAlpha(clump);
|
|
|
|
if(alpha == 255)
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
else
|
|
|
|
RenderAlphaAtomic(atomic, alpha);
|
|
|
|
}
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderPedHiDetailCB(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
RpClump *clump;
|
|
|
|
float dist;
|
|
|
|
int32 alpha;
|
|
|
|
|
|
|
|
clump = RpAtomicGetClump(atomic);
|
|
|
|
dist = GetDistanceSquaredFromCamera(RpClumpGetFrame(clump));
|
|
|
|
if(dist < ms_pedLod0Dist){
|
|
|
|
alpha = GetClumpAlpha(clump);
|
|
|
|
if(alpha == 255)
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
else
|
|
|
|
RenderAlphaAtomic(atomic, alpha);
|
|
|
|
}
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
2020-04-23 20:25:18 +00:00
|
|
|
// This is needed for peds with only one clump, i.e. skinned models
|
|
|
|
// strangely even the xbox version has no such thing
|
|
|
|
RpAtomic*
|
|
|
|
CVisibilityPlugins::RenderPedCB(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
int32 alpha;
|
|
|
|
|
|
|
|
alpha = GetClumpAlpha(RpAtomicGetClump(atomic));
|
|
|
|
if(alpha == 255)
|
|
|
|
AtomicDefaultRenderCallBack(atomic);
|
|
|
|
else
|
|
|
|
RenderAlphaAtomic(atomic, alpha);
|
|
|
|
return atomic;
|
|
|
|
}
|
|
|
|
|
2019-05-15 14:52:37 +00:00
|
|
|
float
|
|
|
|
CVisibilityPlugins::GetDistanceSquaredFromCamera(RwFrame *frame)
|
|
|
|
{
|
|
|
|
RwMatrix *m;
|
|
|
|
RwV3d dist;
|
|
|
|
m = RwFrameGetLTM(frame);
|
|
|
|
RwV3dSub(&dist, RwMatrixGetPos(m), ms_pCameraPosn);
|
|
|
|
return RwV3dDotProduct(&dist, &dist);
|
|
|
|
}
|
|
|
|
|
|
|
|
float
|
|
|
|
CVisibilityPlugins::GetDotProductWithCameraVector(RwMatrix *atomicMat, RwMatrix *clumpMat, uint32 flags)
|
|
|
|
{
|
|
|
|
RwV3d dist;
|
|
|
|
float dot, dotdoor;
|
|
|
|
|
|
|
|
// Vehicle forward is the y axis (RwMatrix.up)
|
|
|
|
// Vehicle right is the x axis (RwMatrix.right)
|
|
|
|
|
|
|
|
RwV3dSub(&dist, RwMatrixGetPos(atomicMat), ms_pCameraPosn);
|
|
|
|
// forward/backward facing
|
|
|
|
if(flags & (ATOMIC_FLAG_FRONT | ATOMIC_FLAG_REAR))
|
|
|
|
dot = RwV3dDotProduct(&dist, RwMatrixGetUp(clumpMat));
|
|
|
|
// left/right facing
|
2019-06-19 22:36:11 +00:00
|
|
|
else if(flags & (ATOMIC_FLAG_LEFT | ATOMIC_FLAG_RIGHT))
|
2019-05-15 14:52:37 +00:00
|
|
|
dot = RwV3dDotProduct(&dist, RwMatrixGetRight(clumpMat));
|
|
|
|
else
|
|
|
|
dot = 0.0f;
|
|
|
|
if(flags & (ATOMIC_FLAG_LEFT | ATOMIC_FLAG_REAR))
|
|
|
|
dot = -dot;
|
|
|
|
|
|
|
|
if(flags & (ATOMIC_FLAG_REARDOOR | ATOMIC_FLAG_FRONTDOOR)){
|
|
|
|
if(flags & ATOMIC_FLAG_REARDOOR)
|
|
|
|
dotdoor = -RwV3dDotProduct(&dist, RwMatrixGetUp(clumpMat));
|
|
|
|
else if(flags & ATOMIC_FLAG_FRONTDOOR)
|
|
|
|
dotdoor = RwV3dDotProduct(&dist, RwMatrixGetUp(clumpMat));
|
|
|
|
else
|
|
|
|
dotdoor = 0.0f;
|
|
|
|
|
|
|
|
if(dot < 0.0f && dotdoor < 0.0f)
|
|
|
|
dot += dotdoor;
|
|
|
|
if(dot > 0.0f && dotdoor > 0.0f)
|
|
|
|
dot += dotdoor;
|
|
|
|
}
|
|
|
|
|
|
|
|
return dot;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* These are all unused */
|
|
|
|
|
|
|
|
bool
|
|
|
|
CVisibilityPlugins::DefaultVisibilityCB(RpClump *clump)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-04-16 08:50:45 +00:00
|
|
|
bool
|
|
|
|
CVisibilityPlugins::MloVisibilityCB(RpClump *clump)
|
|
|
|
{
|
|
|
|
RwFrame *frame = RpClumpGetFrame(clump);
|
|
|
|
CMloModelInfo *modelInfo = (CMloModelInfo*)GetFrameHierarchyId(frame);
|
|
|
|
if (sq(modelInfo->field_34) < GetDistanceSquaredFromCamera(frame))
|
|
|
|
return false;
|
|
|
|
return CVisibilityPlugins::FrustumSphereCB(clump);
|
|
|
|
}
|
|
|
|
|
2019-05-15 14:52:37 +00:00
|
|
|
bool
|
|
|
|
CVisibilityPlugins::FrustumSphereCB(RpClump *clump)
|
|
|
|
{
|
2019-10-26 11:12:24 +00:00
|
|
|
RwSphere sphere;
|
|
|
|
RwFrame *frame = RpClumpGetFrame(clump);
|
|
|
|
|
|
|
|
CClumpModelInfo *modelInfo = (CClumpModelInfo*)GetFrameHierarchyId(frame);
|
|
|
|
sphere.radius = modelInfo->GetColModel()->boundingSphere.radius;
|
|
|
|
sphere.center.x = modelInfo->GetColModel()->boundingSphere.center.x;
|
|
|
|
sphere.center.y = modelInfo->GetColModel()->boundingSphere.center.y;
|
|
|
|
sphere.center.z = modelInfo->GetColModel()->boundingSphere.center.z;
|
|
|
|
RwV3dTransformPoints(&sphere.center, &sphere.center, 1, RwFrameGetLTM(frame));
|
|
|
|
return RwCameraFrustumTestSphere(ms_pCamera, &sphere) != rwSPHEREOUTSIDE;
|
2019-05-15 14:52:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CVisibilityPlugins::VehicleVisibilityCB(RpClump *clump)
|
|
|
|
{
|
2019-10-26 11:12:24 +00:00
|
|
|
if (GetDistanceSquaredFromCamera(RpClumpGetFrame(clump)) <= ms_vehicleLod1Dist)
|
|
|
|
return FrustumSphereCB(clump);
|
|
|
|
return false;
|
2019-05-15 14:52:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CVisibilityPlugins::VehicleVisibilityCB_BigVehicle(RpClump *clump)
|
|
|
|
{
|
2019-10-26 11:12:24 +00:00
|
|
|
return FrustumSphereCB(clump);
|
2019-05-15 14:52:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// RW Plugins
|
|
|
|
//
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
ID_VISIBILITYATOMIC = MAKECHUNKID(rwVENDORID_ROCKSTAR, 0x00),
|
|
|
|
ID_VISIBILITYCLUMP = MAKECHUNKID(rwVENDORID_ROCKSTAR, 0x01),
|
|
|
|
ID_VISIBILITYFRAME = MAKECHUNKID(rwVENDORID_ROCKSTAR, 0x02),
|
|
|
|
};
|
|
|
|
|
|
|
|
bool
|
|
|
|
CVisibilityPlugins::PluginAttach(void)
|
|
|
|
{
|
|
|
|
ms_atomicPluginOffset = RpAtomicRegisterPlugin(sizeof(AtomicExt),
|
|
|
|
ID_VISIBILITYATOMIC,
|
|
|
|
AtomicConstructor, AtomicDestructor, AtomicCopyConstructor);
|
|
|
|
|
|
|
|
ms_framePluginOffset = RwFrameRegisterPlugin(sizeof(FrameExt),
|
|
|
|
ID_VISIBILITYFRAME,
|
|
|
|
FrameConstructor, FrameDestructor, FrameCopyConstructor);
|
|
|
|
|
|
|
|
ms_clumpPluginOffset = RpClumpRegisterPlugin(sizeof(ClumpExt),
|
|
|
|
ID_VISIBILITYCLUMP,
|
|
|
|
ClumpConstructor, ClumpDestructor, ClumpCopyConstructor);
|
|
|
|
return ms_atomicPluginOffset != -1 && ms_clumpPluginOffset != -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define ATOMICEXT(o) (RWPLUGINOFFSET(AtomicExt, o, ms_atomicPluginOffset))
|
|
|
|
#define FRAMEEXT(o) (RWPLUGINOFFSET(FrameExt, o, ms_framePluginOffset))
|
|
|
|
#define CLUMPEXT(o) (RWPLUGINOFFSET(ClumpExt, o, ms_clumpPluginOffset))
|
|
|
|
|
|
|
|
//
|
|
|
|
// Atomic
|
|
|
|
//
|
|
|
|
|
|
|
|
void*
|
|
|
|
CVisibilityPlugins::AtomicConstructor(void *object, int32, int32)
|
|
|
|
{
|
|
|
|
ATOMICEXT(object)->modelInfo = nil;
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
|
|
|
CVisibilityPlugins::AtomicDestructor(void *object, int32, int32)
|
|
|
|
{
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
|
|
|
CVisibilityPlugins::AtomicCopyConstructor(void *dst, const void *src, int32, int32)
|
|
|
|
{
|
|
|
|
*ATOMICEXT(dst) = *ATOMICEXT(src);
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CVisibilityPlugins::SetAtomicModelInfo(RpAtomic *atomic,
|
|
|
|
CSimpleModelInfo *modelInfo)
|
|
|
|
{
|
|
|
|
AtomicExt *ext = ATOMICEXT(atomic);
|
|
|
|
ext->modelInfo = modelInfo;
|
|
|
|
switch(modelInfo->m_type)
|
|
|
|
case MITYPE_SIMPLE:
|
|
|
|
case MITYPE_TIME:
|
|
|
|
if(modelInfo->m_normalCull)
|
|
|
|
SetAtomicRenderCallback(atomic, RenderObjNormalAtomic);
|
|
|
|
}
|
|
|
|
|
|
|
|
CSimpleModelInfo*
|
|
|
|
CVisibilityPlugins::GetAtomicModelInfo(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
return ATOMICEXT(atomic)->modelInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CVisibilityPlugins::SetAtomicFlag(RpAtomic *atomic, int f)
|
|
|
|
{
|
|
|
|
ATOMICEXT(atomic)->flags |= f;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CVisibilityPlugins::ClearAtomicFlag(RpAtomic *atomic, int f)
|
|
|
|
{
|
|
|
|
ATOMICEXT(atomic)->flags &= ~f;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
CVisibilityPlugins::GetAtomicId(RpAtomic *atomic)
|
|
|
|
{
|
|
|
|
return ATOMICEXT(atomic)->flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is rather useless, but whatever
|
|
|
|
void
|
|
|
|
CVisibilityPlugins::SetAtomicRenderCallback(RpAtomic *atomic, RpAtomicCallBackRender cb)
|
|
|
|
{
|
|
|
|
if(cb == nil)
|
|
|
|
cb = AtomicDefaultRenderCallBack; // not necessary
|
|
|
|
RpAtomicSetRenderCallBack(atomic, cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Frame
|
|
|
|
//
|
|
|
|
|
|
|
|
void*
|
|
|
|
CVisibilityPlugins::FrameConstructor(void *object, int32, int32)
|
|
|
|
{
|
|
|
|
FRAMEEXT(object)->id = 0;
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
|
|
|
CVisibilityPlugins::FrameDestructor(void *object, int32, int32)
|
|
|
|
{
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
|
|
|
CVisibilityPlugins::FrameCopyConstructor(void *dst, const void *src, int32, int32)
|
|
|
|
{
|
|
|
|
*FRAMEEXT(dst) = *FRAMEEXT(src);
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CVisibilityPlugins::SetFrameHierarchyId(RwFrame *frame, int32 id)
|
|
|
|
{
|
|
|
|
FRAMEEXT(frame)->id = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32
|
|
|
|
CVisibilityPlugins::GetFrameHierarchyId(RwFrame *frame)
|
|
|
|
{
|
|
|
|
return FRAMEEXT(frame)->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Clump
|
|
|
|
//
|
|
|
|
|
|
|
|
void*
|
|
|
|
CVisibilityPlugins::ClumpConstructor(void *object, int32, int32)
|
|
|
|
{
|
|
|
|
ClumpExt *ext = CLUMPEXT(object);
|
|
|
|
ext->visibilityCB = DefaultVisibilityCB;
|
|
|
|
ext->alpha = 0xFF;
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
|
|
|
CVisibilityPlugins::ClumpDestructor(void *object, int32, int32)
|
|
|
|
{
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
|
|
|
CVisibilityPlugins::ClumpCopyConstructor(void *dst, const void *src, int32, int32)
|
|
|
|
{
|
|
|
|
CLUMPEXT(dst)->visibilityCB = CLUMPEXT(src)->visibilityCB;
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CVisibilityPlugins::SetClumpModelInfo(RpClump *clump, CClumpModelInfo *modelInfo)
|
|
|
|
{
|
|
|
|
CVehicleModelInfo *vmi;
|
|
|
|
SetFrameHierarchyId(RpClumpGetFrame(clump), (int32)modelInfo);
|
|
|
|
|
|
|
|
// Unused
|
|
|
|
switch(modelInfo->m_type){
|
|
|
|
// ignore MLO
|
|
|
|
case MITYPE_VEHICLE:
|
|
|
|
vmi = (CVehicleModelInfo*)modelInfo;
|
|
|
|
if(vmi->m_vehicleType == VEHICLE_TYPE_TRAIN ||
|
|
|
|
vmi->m_vehicleType == VEHICLE_TYPE_HELI ||
|
|
|
|
vmi->m_vehicleType == VEHICLE_TYPE_PLANE)
|
|
|
|
CLUMPEXT(clump)->visibilityCB = VehicleVisibilityCB_BigVehicle;
|
|
|
|
else
|
|
|
|
CLUMPEXT(clump)->visibilityCB = VehicleVisibilityCB;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CVisibilityPlugins::SetClumpAlpha(RpClump *clump, int alpha)
|
|
|
|
{
|
|
|
|
CLUMPEXT(clump)->alpha = alpha;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
CVisibilityPlugins::GetClumpAlpha(RpClump *clump)
|
|
|
|
{
|
|
|
|
return CLUMPEXT(clump)->alpha;
|
|
|
|
}
|