2017-08-01 14:30:58 +02:00
/*
Bullet Continuous Collision Detection and Physics Library
Copyright ( c ) 2003 - 2009 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 BT_CAPSULE_SHAPE_H
# define BT_CAPSULE_SHAPE_H
# include "btConvexInternalShape.h"
2019-01-03 14:26:51 +01:00
# include "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h" // for the types
2017-08-01 14:30:58 +02:00
///The btCapsuleShape represents a capsule around the Y axis, there is also the btCapsuleShapeX aligned around the X axis and btCapsuleShapeZ around the Z axis.
///The total height is height+2*radius, so the height is just the height between the center of each 'sphere' of the capsule caps.
///The btCapsuleShape is a convex hull of two spheres. The btMultiSphereShape is a more general collision shape that takes the convex hull of multiple sphere, so it can also represent a capsule when just using two spheres.
2019-01-03 14:26:51 +01:00
ATTRIBUTE_ALIGNED16 ( class )
btCapsuleShape : public btConvexInternalShape
2017-08-01 14:30:58 +02:00
{
protected :
2019-01-03 14:26:51 +01:00
int m_upAxis ;
2017-08-01 14:30:58 +02:00
protected :
///only used for btCapsuleShapeZ and btCapsuleShapeX subclasses.
2019-01-03 14:26:51 +01:00
btCapsuleShape ( ) : btConvexInternalShape ( ) { m_shapeType = CAPSULE_SHAPE_PROXYTYPE ; } ;
2017-08-01 14:30:58 +02:00
public :
BT_DECLARE_ALIGNED_ALLOCATOR ( ) ;
2019-01-03 14:26:51 +01:00
btCapsuleShape ( btScalar radius , btScalar height ) ;
2017-08-01 14:30:58 +02:00
///CollisionShape Interface
2019-01-03 14:26:51 +01:00
virtual void calculateLocalInertia ( btScalar mass , btVector3 & inertia ) const ;
2017-08-01 14:30:58 +02:00
/// btConvexShape Interface
2019-01-03 14:26:51 +01:00
virtual btVector3 localGetSupportingVertexWithoutMargin ( const btVector3 & vec ) const ;
virtual void batchedUnitVectorGetSupportingVertexWithoutMargin ( const btVector3 * vectors , btVector3 * supportVerticesOut , int numVectors ) const ;
2017-08-01 14:30:58 +02:00
virtual void setMargin ( btScalar collisionMargin )
{
//don't override the margin for capsules, their entire radius == margin
2018-09-07 16:11:04 +02:00
( void ) collisionMargin ;
2017-08-01 14:30:58 +02:00
}
2019-01-03 14:26:51 +01:00
virtual void getAabb ( const btTransform & t , btVector3 & aabbMin , btVector3 & aabbMax ) const
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
btVector3 halfExtents ( getRadius ( ) , getRadius ( ) , getRadius ( ) ) ;
halfExtents [ m_upAxis ] = getRadius ( ) + getHalfHeight ( ) ;
btMatrix3x3 abs_b = t . getBasis ( ) . absolute ( ) ;
btVector3 center = t . getOrigin ( ) ;
btVector3 extent = halfExtents . dot3 ( abs_b [ 0 ] , abs_b [ 1 ] , abs_b [ 2 ] ) ;
aabbMin = center - extent ;
aabbMax = center + extent ;
2017-08-01 14:30:58 +02:00
}
2019-01-03 14:26:51 +01:00
virtual const char * getName ( ) const
2017-08-01 14:30:58 +02:00
{
return " CapsuleShape " ;
}
2019-01-03 14:26:51 +01:00
int getUpAxis ( ) const
2017-08-01 14:30:58 +02:00
{
return m_upAxis ;
}
2019-01-03 14:26:51 +01:00
btScalar getRadius ( ) const
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
int radiusAxis = ( m_upAxis + 2 ) % 3 ;
2017-08-01 14:30:58 +02:00
return m_implicitShapeDimensions [ radiusAxis ] ;
}
2019-01-03 14:26:51 +01:00
btScalar getHalfHeight ( ) const
2017-08-01 14:30:58 +02:00
{
return m_implicitShapeDimensions [ m_upAxis ] ;
}
2019-01-03 14:26:51 +01:00
virtual void setLocalScaling ( const btVector3 & scaling )
2017-08-01 14:30:58 +02:00
{
btVector3 unScaledImplicitShapeDimensions = m_implicitShapeDimensions / m_localScaling ;
2019-01-03 14:26:51 +01:00
btConvexInternalShape : : setLocalScaling ( scaling ) ;
2017-08-01 14:30:58 +02:00
m_implicitShapeDimensions = ( unScaledImplicitShapeDimensions * scaling ) ;
//update m_collisionMargin, since entire radius==margin
2019-01-03 14:26:51 +01:00
int radiusAxis = ( m_upAxis + 2 ) % 3 ;
2017-08-01 14:30:58 +02:00
m_collisionMargin = m_implicitShapeDimensions [ radiusAxis ] ;
}
2019-01-03 14:26:51 +01:00
virtual btVector3 getAnisotropicRollingFrictionDirection ( ) const
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
btVector3 aniDir ( 0 , 0 , 0 ) ;
aniDir [ getUpAxis ( ) ] = 1 ;
2017-08-01 14:30:58 +02:00
return aniDir ;
}
2019-01-03 14:26:51 +01:00
virtual int calculateSerializeBufferSize ( ) const ;
2017-08-01 14:30:58 +02:00
///fills the dataBuffer and returns the struct name (and 0 on failure)
2019-01-03 14:26:51 +01:00
virtual const char * serialize ( void * dataBuffer , btSerializer * serializer ) const ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
SIMD_FORCE_INLINE void deSerializeFloat ( struct btCapsuleShapeData * dataBuffer ) ;
2017-08-01 14:30:58 +02:00
} ;
///btCapsuleShapeX represents a capsule around the Z axis
///the total height is height+2*radius, so the height is just the height between the center of each 'sphere' of the capsule caps.
class btCapsuleShapeX : public btCapsuleShape
{
public :
2019-01-03 14:26:51 +01:00
btCapsuleShapeX ( btScalar radius , btScalar height ) ;
2017-08-01 14:30:58 +02:00
//debugging
2019-01-03 14:26:51 +01:00
virtual const char * getName ( ) const
2017-08-01 14:30:58 +02:00
{
return " CapsuleX " ;
}
} ;
///btCapsuleShapeZ represents a capsule around the Z axis
///the total height is height+2*radius, so the height is just the height between the center of each 'sphere' of the capsule caps.
class btCapsuleShapeZ : public btCapsuleShape
{
public :
2019-01-03 14:26:51 +01:00
btCapsuleShapeZ ( btScalar radius , btScalar height ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
//debugging
virtual const char * getName ( ) const
2017-08-01 14:30:58 +02:00
{
return " CapsuleZ " ;
}
} ;
///do not change those serialization structures, it requires an updated sBulletDNAstr/sBulletDNAstr64
2019-01-03 14:26:51 +01:00
struct btCapsuleShapeData
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
btConvexInternalShapeData m_convexInternalShapeData ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
int m_upAxis ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
char m_padding [ 4 ] ;
2017-08-01 14:30:58 +02:00
} ;
2019-01-03 14:26:51 +01:00
SIMD_FORCE_INLINE int btCapsuleShape : : calculateSerializeBufferSize ( ) const
2017-08-01 14:30:58 +02:00
{
return sizeof ( btCapsuleShapeData ) ;
}
2019-01-03 14:26:51 +01:00
///fills the dataBuffer and returns the struct name (and 0 on failure)
SIMD_FORCE_INLINE const char * btCapsuleShape : : serialize ( void * dataBuffer , btSerializer * serializer ) const
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
btCapsuleShapeData * shapeData = ( btCapsuleShapeData * ) dataBuffer ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
btConvexInternalShape : : serialize ( & shapeData - > m_convexInternalShapeData , serializer ) ;
2017-08-01 14:30:58 +02:00
shapeData - > m_upAxis = m_upAxis ;
// Fill padding with zeros to appease msan.
shapeData - > m_padding [ 0 ] = 0 ;
shapeData - > m_padding [ 1 ] = 0 ;
shapeData - > m_padding [ 2 ] = 0 ;
shapeData - > m_padding [ 3 ] = 0 ;
return " btCapsuleShapeData " ;
}
2019-01-03 14:26:51 +01:00
SIMD_FORCE_INLINE void btCapsuleShape : : deSerializeFloat ( btCapsuleShapeData * dataBuffer )
2017-08-01 14:30:58 +02:00
{
m_implicitShapeDimensions . deSerializeFloat ( dataBuffer - > m_convexInternalShapeData . m_implicitShapeDimensions ) ;
m_collisionMargin = dataBuffer - > m_convexInternalShapeData . m_collisionMargin ;
m_localScaling . deSerializeFloat ( dataBuffer - > m_convexInternalShapeData . m_localScaling ) ;
//it is best to already pre-allocate the matching btCapsuleShape*(X/Z) version to match m_upAxis
m_upAxis = dataBuffer - > m_upAxis ;
}
2019-01-03 14:26:51 +01:00
# endif //BT_CAPSULE_SHAPE_H