BGE: work around a problem with DBVT culling when graphic objects are rescaled. This happens when objects with very diverse scale are instantiated with dupligroup. The problem remains when the objects are rescaled during the game. The effect of the problem is an inefficient culling: objects can have a bounding box larger than needed. Patch to fix the problem is filed at Bullet forum.

This commit is contained in:
Benoit Bolsee
2009-05-01 19:02:23 +00:00
parent 672492f563
commit e13a089d91
7 changed files with 55 additions and 3 deletions

View File

@@ -118,8 +118,17 @@ PHY_IGraphicController* CcdGraphicController::GetReplica(class PHY_IMotionState*
replica->m_motionState = motionState;
replica->m_newClientInfo = NULL;
replica->m_handle = NULL;
m_phyEnv->addCcdGraphicController(replica);
// don't add the graphic controller now: work around a bug in Bullet with rescaling,
// (the scale of the controller is not yet defined).
//m_phyEnv->addCcdGraphicController(replica);
return replica;
}
void CcdGraphicController::Activate(bool active)
{
if (active)
m_phyEnv->addCcdGraphicController(this);
else
m_phyEnv->removeCcdGraphicController(this);
}

View File

@@ -55,6 +55,10 @@ public:
* Updates the Aabb based on the motion state
*/
virtual bool SetGraphicTransform();
/**
* Add/remove to environment
*/
virtual void Activate(bool active);
// client info for culling
virtual void* getNewClientInfo() { return m_newClientInfo; }

View File

@@ -579,7 +579,7 @@ void CcdPhysicsEnvironment::refreshCcdPhysicsController(CcdPhysicsController* ct
void CcdPhysicsEnvironment::addCcdGraphicController(CcdGraphicController* ctrl)
{
if (m_cullingTree)
if (m_cullingTree && !ctrl->getBroadphaseHandle())
{
btVector3 minAabb;
btVector3 maxAabb;

View File

@@ -47,6 +47,7 @@ class PHY_IGraphicController : public PHY_IController
SynchronizeMotionStates ynchronizes dynas, kinematic and deformable entities (and do 'late binding')
*/
virtual bool SetGraphicTransform()=0;
virtual void Activate(bool active=true)=0;
virtual void setLocalAabb(const PHY__Vector3& aabbMin,const PHY__Vector3& aabbMax)=0;
virtual void setLocalAabb(const float* aabbMin,const float* aabbMax)=0;