2017-08-01 14:30:58 +02:00
/*
Bullet Continuous Collision Detection and Physics Library
Copyright ( c ) 2003 - 2013 Erwin Coumans http : //bulletphysics.org
This software is provided ' as - is ' , without any express or implied warranty .
In no event will the authors be held liable for any damages arising from the use of this software .
Permission is granted to anyone to use this software for any purpose ,
including commercial applications , and to alter it and redistribute it freely ,
subject to the following restrictions :
1. The origin of this software must not be misrepresented ; you must not claim that you wrote the original software . If you use this software in a product , an acknowledgment in the product documentation would be appreciated but is not required .
2. Altered source versions must be plainly marked as such , and must not be misrepresented as being the original software .
3. This notice may not be removed or altered from any source distribution .
*/
# ifndef B3_OVERLAPPING_PAIR_CACHE_H
# define B3_OVERLAPPING_PAIR_CACHE_H
# include "Bullet3Common/shared/b3Int2.h"
# include "Bullet3Common/b3AlignedObjectArray.h"
class b3Dispatcher ;
# include "b3OverlappingPair.h"
2019-01-03 14:26:51 +01:00
typedef b3AlignedObjectArray < b3BroadphasePair > b3BroadphasePairArray ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
struct b3OverlapCallback
2017-08-01 14:30:58 +02:00
{
virtual ~ b3OverlapCallback ( )
2019-01-03 14:26:51 +01:00
{
}
2017-08-01 14:30:58 +02:00
//return true for deletion of the pair
2019-01-03 14:26:51 +01:00
virtual bool processOverlap ( b3BroadphasePair & pair ) = 0 ;
2017-08-01 14:30:58 +02:00
} ;
struct b3OverlapFilterCallback
{
virtual ~ b3OverlapFilterCallback ( )
2019-01-03 14:26:51 +01:00
{
}
2017-08-01 14:30:58 +02:00
// return true when pairs need collision
2019-01-03 14:26:51 +01:00
virtual bool needBroadphaseCollision ( int proxy0 , int proxy1 ) const = 0 ;
2017-08-01 14:30:58 +02:00
} ;
extern int b3g_removePairs ;
extern int b3g_addedPairs ;
extern int b3g_findPairs ;
2019-01-03 14:26:51 +01:00
const int B3_NULL_PAIR = 0xffffffff ;
2017-08-01 14:30:58 +02:00
///The b3OverlappingPairCache provides an interface for overlapping pair management (add, remove, storage), used by the b3BroadphaseInterface broadphases.
///The b3HashedOverlappingPairCache and b3SortedOverlappingPairCache classes are two implementations.
2019-01-03 14:26:51 +01:00
class b3OverlappingPairCache
2017-08-01 14:30:58 +02:00
{
public :
2019-01-03 14:26:51 +01:00
virtual ~ b3OverlappingPairCache ( ) { } // this is needed so we can get to the derived class destructor
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
virtual b3BroadphasePair * getOverlappingPairArrayPtr ( ) = 0 ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
virtual const b3BroadphasePair * getOverlappingPairArrayPtr ( ) const = 0 ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
virtual b3BroadphasePairArray & getOverlappingPairArray ( ) = 0 ;
virtual void cleanOverlappingPair ( b3BroadphasePair & pair , b3Dispatcher * dispatcher ) = 0 ;
2017-08-01 14:30:58 +02:00
virtual int getNumOverlappingPairs ( ) const = 0 ;
2019-01-03 14:26:51 +01:00
virtual void cleanProxyFromPairs ( int proxy , b3Dispatcher * dispatcher ) = 0 ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
virtual void setOverlapFilterCallback ( b3OverlapFilterCallback * callback ) = 0 ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
virtual void processAllOverlappingPairs ( b3OverlapCallback * , b3Dispatcher * dispatcher ) = 0 ;
2017-08-01 14:30:58 +02:00
virtual b3BroadphasePair * findPair ( int proxy0 , int proxy1 ) = 0 ;
2019-01-03 14:26:51 +01:00
virtual bool hasDeferredRemoval ( ) = 0 ;
2017-08-01 14:30:58 +02:00
//virtual void setInternalGhostPairCallback(b3OverlappingPairCallback* ghostPairCallback)=0;
2019-01-03 14:26:51 +01:00
virtual b3BroadphasePair * addOverlappingPair ( int proxy0 , int proxy1 ) = 0 ;
virtual void * removeOverlappingPair ( int proxy0 , int proxy1 , b3Dispatcher * dispatcher ) = 0 ;
virtual void removeOverlappingPairsContainingProxy ( int /*proxy0*/ , b3Dispatcher * /*dispatcher*/ ) = 0 ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
virtual void sortOverlappingPairs ( b3Dispatcher * dispatcher ) = 0 ;
2017-08-01 14:30:58 +02:00
} ;
/// Hash-space based Pair Cache, thanks to Erin Catto, Box2D, http://www.box2d.org, and Pierre Terdiman, Codercorner, http://codercorner.com
class b3HashedOverlappingPairCache : public b3OverlappingPairCache
{
2019-01-03 14:26:51 +01:00
b3BroadphasePairArray m_overlappingPairArray ;
2017-08-01 14:30:58 +02:00
b3OverlapFilterCallback * m_overlapFilterCallback ;
2019-01-03 14:26:51 +01:00
// bool m_blockedForChanges;
2017-08-01 14:30:58 +02:00
public :
b3HashedOverlappingPairCache ( ) ;
virtual ~ b3HashedOverlappingPairCache ( ) ;
2019-01-03 14:26:51 +01:00
virtual void removeOverlappingPairsContainingProxy ( int proxy , b3Dispatcher * dispatcher ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
virtual void * removeOverlappingPair ( int proxy0 , int proxy1 , b3Dispatcher * dispatcher ) ;
B3_FORCE_INLINE bool needsBroadphaseCollision ( int proxy0 , int proxy1 ) const
2017-08-01 14:30:58 +02:00
{
if ( m_overlapFilterCallback )
2019-01-03 14:26:51 +01:00
return m_overlapFilterCallback - > needBroadphaseCollision ( proxy0 , proxy1 ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
bool collides = true ; //(proxy0->m_collisionFilterGroup & proxy1->m_collisionFilterMask) != 0;
2017-08-01 14:30:58 +02:00
//collides = collides && (proxy1->m_collisionFilterGroup & proxy0->m_collisionFilterMask);
2019-01-03 14:26:51 +01:00
2017-08-01 14:30:58 +02:00
return collides ;
}
// Add a pair and return the new pair. If the pair already exists,
// no new pair is created and the old one is returned.
2019-01-03 14:26:51 +01:00
virtual b3BroadphasePair * addOverlappingPair ( int proxy0 , int proxy1 )
2017-08-01 14:30:58 +02:00
{
b3g_addedPairs + + ;
2019-01-03 14:26:51 +01:00
if ( ! needsBroadphaseCollision ( proxy0 , proxy1 ) )
2017-08-01 14:30:58 +02:00
return 0 ;
2019-01-03 14:26:51 +01:00
return internalAddPair ( proxy0 , proxy1 ) ;
2017-08-01 14:30:58 +02:00
}
2019-01-03 14:26:51 +01:00
void cleanProxyFromPairs ( int proxy , b3Dispatcher * dispatcher ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
virtual void processAllOverlappingPairs ( b3OverlapCallback * , b3Dispatcher * dispatcher ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
virtual b3BroadphasePair * getOverlappingPairArrayPtr ( )
2017-08-01 14:30:58 +02:00
{
return & m_overlappingPairArray [ 0 ] ;
}
2019-01-03 14:26:51 +01:00
const b3BroadphasePair * getOverlappingPairArrayPtr ( ) const
2017-08-01 14:30:58 +02:00
{
return & m_overlappingPairArray [ 0 ] ;
}
2019-01-03 14:26:51 +01:00
b3BroadphasePairArray & getOverlappingPairArray ( )
2017-08-01 14:30:58 +02:00
{
return m_overlappingPairArray ;
}
2019-01-03 14:26:51 +01:00
const b3BroadphasePairArray & getOverlappingPairArray ( ) const
2017-08-01 14:30:58 +02:00
{
return m_overlappingPairArray ;
}
2019-01-03 14:26:51 +01:00
void cleanOverlappingPair ( b3BroadphasePair & pair , b3Dispatcher * dispatcher ) ;
2017-08-01 14:30:58 +02:00
b3BroadphasePair * findPair ( int proxy0 , int proxy1 ) ;
int GetCount ( ) const { return m_overlappingPairArray . size ( ) ; }
2019-01-03 14:26:51 +01:00
// b3BroadphasePair* GetPairs() { return m_pairs; }
2017-08-01 14:30:58 +02:00
b3OverlapFilterCallback * getOverlapFilterCallback ( )
{
return m_overlapFilterCallback ;
}
void setOverlapFilterCallback ( b3OverlapFilterCallback * callback )
{
m_overlapFilterCallback = callback ;
}
2019-01-03 14:26:51 +01:00
int getNumOverlappingPairs ( ) const
2017-08-01 14:30:58 +02:00
{
return m_overlappingPairArray . size ( ) ;
}
2019-01-03 14:26:51 +01:00
2017-08-01 14:30:58 +02:00
private :
2019-01-03 14:26:51 +01:00
b3BroadphasePair * internalAddPair ( int proxy0 , int proxy1 ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
void growTables ( ) ;
2017-08-01 14:30:58 +02:00
B3_FORCE_INLINE bool equalsPair ( const b3BroadphasePair & pair , int proxyId1 , int proxyId2 )
2019-01-03 14:26:51 +01:00
{
return pair . x = = proxyId1 & & pair . y = = proxyId2 ;
2017-08-01 14:30:58 +02:00
}
/*
// Thomas Wang's hash, see: http://www.concentric.net/~Ttwang/tech/inthash.htm
// This assumes proxyId1 and proxyId2 are 16-bit.
B3_FORCE_INLINE int getHash ( int proxyId1 , int proxyId2 )
{
int key = ( proxyId2 < < 16 ) | proxyId1 ;
key = ~ key + ( key < < 15 ) ;
key = key ^ ( key > > 12 ) ;
key = key + ( key < < 2 ) ;
key = key ^ ( key > > 4 ) ;
key = key * 2057 ;
key = key ^ ( key > > 16 ) ;
return key ;
}
*/
2019-01-03 14:26:51 +01:00
B3_FORCE_INLINE unsigned int getHash ( unsigned int proxyId1 , unsigned int proxyId2 )
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
int key = static_cast < int > ( ( ( unsigned int ) proxyId1 ) | ( ( ( unsigned int ) proxyId2 ) < < 16 ) ) ;
2017-08-01 14:30:58 +02:00
// Thomas Wang's hash
key + = ~ ( key < < 15 ) ;
2019-01-03 14:26:51 +01:00
key ^ = ( key > > 10 ) ;
key + = ( key < < 3 ) ;
key ^ = ( key > > 6 ) ;
2017-08-01 14:30:58 +02:00
key + = ~ ( key < < 11 ) ;
2019-01-03 14:26:51 +01:00
key ^ = ( key > > 16 ) ;
2017-08-01 14:30:58 +02:00
return static_cast < unsigned int > ( key ) ;
}
B3_FORCE_INLINE b3BroadphasePair * internalFindPair ( int proxy0 , int proxy1 , int hash )
{
int proxyId1 = proxy0 ;
int proxyId2 = proxy1 ;
2019-01-03 14:26:51 +01:00
#if 0 // wrong, 'equalsPair' use unsorted uids, copy-past devil striked again. Nat.
2017-08-01 14:30:58 +02:00
if ( proxyId1 > proxyId2 )
b3Swap ( proxyId1 , proxyId2 ) ;
2019-01-03 14:26:51 +01:00
# endif
2017-08-01 14:30:58 +02:00
int index = m_hashTable [ hash ] ;
2019-01-03 14:26:51 +01:00
while ( index ! = B3_NULL_PAIR & & equalsPair ( m_overlappingPairArray [ index ] , proxyId1 , proxyId2 ) = = false )
2017-08-01 14:30:58 +02:00
{
index = m_next [ index ] ;
}
2019-01-03 14:26:51 +01:00
if ( index = = B3_NULL_PAIR )
2017-08-01 14:30:58 +02:00
{
return NULL ;
}
b3Assert ( index < m_overlappingPairArray . size ( ) ) ;
return & m_overlappingPairArray [ index ] ;
}
2019-01-03 14:26:51 +01:00
virtual bool hasDeferredRemoval ( )
2017-08-01 14:30:58 +02:00
{
return false ;
}
2019-01-03 14:26:51 +01:00
/* virtual void setInternalGhostPairCallback(b3OverlappingPairCallback* ghostPairCallback)
2017-08-01 14:30:58 +02:00
{
m_ghostPairCallback = ghostPairCallback ;
}
*/
2019-01-03 14:26:51 +01:00
virtual void sortOverlappingPairs ( b3Dispatcher * dispatcher ) ;
2017-08-01 14:30:58 +02:00
protected :
2019-01-03 14:26:51 +01:00
b3AlignedObjectArray < int > m_hashTable ;
b3AlignedObjectArray < int > m_next ;
// b3OverlappingPairCallback* m_ghostPairCallback;
2017-08-01 14:30:58 +02:00
} ;
///b3SortedOverlappingPairCache maintains the objects with overlapping AABB
///Typically managed by the Broadphase, Axis3Sweep or b3SimpleBroadphase
2019-01-03 14:26:51 +01:00
class b3SortedOverlappingPairCache : public b3OverlappingPairCache
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
protected :
//avoid brute-force finding all the time
b3BroadphasePairArray m_overlappingPairArray ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
//during the dispatch, check that user doesn't destroy/create proxy
bool m_blockedForChanges ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
///by default, do the removal during the pair traversal
bool m_hasDeferredRemoval ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
//if set, use the callback instead of the built in filter in needBroadphaseCollision
b3OverlapFilterCallback * m_overlapFilterCallback ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
// b3OverlappingPairCallback* m_ghostPairCallback;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
public :
b3SortedOverlappingPairCache ( ) ;
virtual ~ b3SortedOverlappingPairCache ( ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
virtual void processAllOverlappingPairs ( b3OverlapCallback * , b3Dispatcher * dispatcher ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
void * removeOverlappingPair ( int proxy0 , int proxy1 , b3Dispatcher * dispatcher ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
void cleanOverlappingPair ( b3BroadphasePair & pair , b3Dispatcher * dispatcher ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
b3BroadphasePair * addOverlappingPair ( int proxy0 , int proxy1 ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
b3BroadphasePair * findPair ( int proxy0 , int proxy1 ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
void cleanProxyFromPairs ( int proxy , b3Dispatcher * dispatcher ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
virtual void removeOverlappingPairsContainingProxy ( int proxy , b3Dispatcher * dispatcher ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
inline bool needsBroadphaseCollision ( int proxy0 , int proxy1 ) const
{
if ( m_overlapFilterCallback )
return m_overlapFilterCallback - > needBroadphaseCollision ( proxy0 , proxy1 ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
bool collides = true ; //(proxy0->m_collisionFilterGroup & proxy1->m_collisionFilterMask) != 0;
//collides = collides && (proxy1->m_collisionFilterGroup & proxy0->m_collisionFilterMask);
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
return collides ;
}
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
b3BroadphasePairArray & getOverlappingPairArray ( )
{
return m_overlappingPairArray ;
}
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
const b3BroadphasePairArray & getOverlappingPairArray ( ) const
{
return m_overlappingPairArray ;
}
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
b3BroadphasePair * getOverlappingPairArrayPtr ( )
{
return & m_overlappingPairArray [ 0 ] ;
}
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
const b3BroadphasePair * getOverlappingPairArrayPtr ( ) const
{
return & m_overlappingPairArray [ 0 ] ;
}
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
int getNumOverlappingPairs ( ) const
{
return m_overlappingPairArray . size ( ) ;
}
b3OverlapFilterCallback * getOverlapFilterCallback ( )
{
return m_overlapFilterCallback ;
}
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
void setOverlapFilterCallback ( b3OverlapFilterCallback * callback )
{
m_overlapFilterCallback = callback ;
}
virtual bool hasDeferredRemoval ( )
{
return m_hasDeferredRemoval ;
}
/* virtual void setInternalGhostPairCallback(b3OverlappingPairCallback* ghostPairCallback)
2017-08-01 14:30:58 +02:00
{
m_ghostPairCallback = ghostPairCallback ;
}
*/
2019-01-03 14:26:51 +01:00
virtual void sortOverlappingPairs ( b3Dispatcher * dispatcher ) ;
2017-08-01 14:30:58 +02:00
} ;
///b3NullPairCache skips add/removal of overlapping pairs. Userful for benchmarking and unit testing.
class b3NullPairCache : public b3OverlappingPairCache
{
2019-01-03 14:26:51 +01:00
b3BroadphasePairArray m_overlappingPairArray ;
2017-08-01 14:30:58 +02:00
public :
2019-01-03 14:26:51 +01:00
virtual b3BroadphasePair * getOverlappingPairArrayPtr ( )
2017-08-01 14:30:58 +02:00
{
return & m_overlappingPairArray [ 0 ] ;
}
2019-01-03 14:26:51 +01:00
const b3BroadphasePair * getOverlappingPairArrayPtr ( ) const
2017-08-01 14:30:58 +02:00
{
return & m_overlappingPairArray [ 0 ] ;
}
2019-01-03 14:26:51 +01:00
b3BroadphasePairArray & getOverlappingPairArray ( )
2017-08-01 14:30:58 +02:00
{
return m_overlappingPairArray ;
}
2019-01-03 14:26:51 +01:00
virtual void cleanOverlappingPair ( b3BroadphasePair & /*pair*/ , b3Dispatcher * /*dispatcher*/ )
{
2017-08-01 14:30:58 +02:00
}
virtual int getNumOverlappingPairs ( ) const
{
return 0 ;
}
2019-01-03 14:26:51 +01:00
virtual void cleanProxyFromPairs ( int /*proxy*/ , b3Dispatcher * /*dispatcher*/ )
2017-08-01 14:30:58 +02:00
{
}
2019-01-03 14:26:51 +01:00
virtual void setOverlapFilterCallback ( b3OverlapFilterCallback * /*callback*/ )
2017-08-01 14:30:58 +02:00
{
}
2019-01-03 14:26:51 +01:00
virtual void processAllOverlappingPairs ( b3OverlapCallback * , b3Dispatcher * /*dispatcher*/ )
2017-08-01 14:30:58 +02:00
{
}
virtual b3BroadphasePair * findPair ( int /*proxy0*/ , int /*proxy1*/ )
{
return 0 ;
}
2019-01-03 14:26:51 +01:00
virtual bool hasDeferredRemoval ( )
2017-08-01 14:30:58 +02:00
{
return true ;
}
2019-01-03 14:26:51 +01:00
// virtual void setInternalGhostPairCallback(b3OverlappingPairCallback* /* ghostPairCallback */)
// {
//
// }
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
virtual b3BroadphasePair * addOverlappingPair ( int /*proxy0*/ , int /*proxy1*/ )
2017-08-01 14:30:58 +02:00
{
return 0 ;
}
2019-01-03 14:26:51 +01:00
virtual void * removeOverlappingPair ( int /*proxy0*/ , int /*proxy1*/ , b3Dispatcher * /*dispatcher*/ )
2017-08-01 14:30:58 +02:00
{
return 0 ;
}
2019-01-03 14:26:51 +01:00
virtual void removeOverlappingPairsContainingProxy ( int /*proxy0*/ , b3Dispatcher * /*dispatcher*/ )
2017-08-01 14:30:58 +02:00
{
}
2019-01-03 14:26:51 +01:00
virtual void sortOverlappingPairs ( b3Dispatcher * dispatcher )
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
( void ) dispatcher ;
2017-08-01 14:30:58 +02:00
}
} ;
2019-01-03 14:26:51 +01:00
# endif //B3_OVERLAPPING_PAIR_CACHE_H