2017-08-01 14:30:58 +02:00
/*
Bullet Continuous Collision Detection and Physics Library
Copyright ( c ) 2003 - 2006 Erwin Coumans http : //continuousphysics.com/Bullet/
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 .
*/
/* Hinge Constraint by Dirk Gregorius. Limits added by Marcus Hennix at Starbreeze Studios */
# ifndef BT_HINGECONSTRAINT_H
# define BT_HINGECONSTRAINT_H
# define _BT_USE_CENTER_LIMIT_ 1
# include "LinearMath/btVector3.h"
# include "btJacobianEntry.h"
# include "btTypedConstraint.h"
class btRigidBody ;
# ifdef BT_USE_DOUBLE_PRECISION
2019-01-03 14:26:51 +01:00
# define btHingeConstraintData btHingeConstraintDoubleData2 //rename to 2 for backwards compatibility, so we can still load the 'btHingeConstraintDoubleData' version
# define btHingeConstraintDataName "btHingeConstraintDoubleData2"
2017-08-01 14:30:58 +02:00
# else
2019-01-03 14:26:51 +01:00
# define btHingeConstraintData btHingeConstraintFloatData
# define btHingeConstraintDataName "btHingeConstraintFloatData"
# endif //BT_USE_DOUBLE_PRECISION
2017-08-01 14:30:58 +02:00
enum btHingeFlags
{
BT_HINGE_FLAGS_CFM_STOP = 1 ,
BT_HINGE_FLAGS_ERP_STOP = 2 ,
BT_HINGE_FLAGS_CFM_NORM = 4 ,
BT_HINGE_FLAGS_ERP_NORM = 8
} ;
/// hinge constraint between two rigidbodies each with a pivotpoint that descibes the axis location in local space
/// axis defines the orientation of the hinge axis
2019-01-03 14:26:51 +01:00
ATTRIBUTE_ALIGNED16 ( class )
btHingeConstraint : public btTypedConstraint
2017-08-01 14:30:58 +02:00
{
# ifdef IN_PARALLELL_SOLVER
public :
# endif
2019-01-03 14:26:51 +01:00
btJacobianEntry m_jac [ 3 ] ; //3 orthogonal linear constraints
btJacobianEntry m_jacAng [ 3 ] ; //2 orthogonal angular constraints+ 1 for limit/motor
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
btTransform m_rbAFrame ; // constraint axii. Assumes z is hinge axis.
2017-08-01 14:30:58 +02:00
btTransform m_rbBFrame ;
2019-01-03 14:26:51 +01:00
btScalar m_motorTargetVelocity ;
btScalar m_maxMotorImpulse ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
# ifdef _BT_USE_CENTER_LIMIT_
btAngularLimit m_limit ;
2017-08-01 14:30:58 +02:00
# else
2019-01-03 14:26:51 +01:00
btScalar m_lowerLimit ;
btScalar m_upperLimit ;
btScalar m_limitSign ;
btScalar m_correction ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
btScalar m_limitSoftness ;
btScalar m_biasFactor ;
btScalar m_relaxationFactor ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
bool m_solveLimit ;
2017-08-01 14:30:58 +02:00
# endif
2019-01-03 14:26:51 +01:00
btScalar m_kHinge ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
btScalar m_accLimitImpulse ;
btScalar m_hingeAngle ;
btScalar m_referenceSign ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
bool m_angularOnly ;
bool m_enableAngularMotor ;
bool m_useSolveConstraintObsolete ;
bool m_useOffsetForConstraintFrame ;
bool m_useReferenceFrameA ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
btScalar m_accMotorImpulse ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
int m_flags ;
btScalar m_normalCFM ;
btScalar m_normalERP ;
btScalar m_stopCFM ;
btScalar m_stopERP ;
2017-08-01 14:30:58 +02:00
public :
BT_DECLARE_ALIGNED_ALLOCATOR ( ) ;
2019-01-03 14:26:51 +01:00
btHingeConstraint ( btRigidBody & rbA , btRigidBody & rbB , const btVector3 & pivotInA , const btVector3 & pivotInB , const btVector3 & axisInA , const btVector3 & axisInB , bool useReferenceFrameA = false ) ;
btHingeConstraint ( btRigidBody & rbA , const btVector3 & pivotInA , const btVector3 & axisInA , bool useReferenceFrameA = false ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
btHingeConstraint ( btRigidBody & rbA , btRigidBody & rbB , const btTransform & rbAFrame , const btTransform & rbBFrame , bool useReferenceFrameA = false ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
btHingeConstraint ( btRigidBody & rbA , const btTransform & rbAFrame , bool useReferenceFrameA = false ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
virtual void buildJacobian ( ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
virtual void getInfo1 ( btConstraintInfo1 * info ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
void getInfo1NonVirtual ( btConstraintInfo1 * info ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
virtual void getInfo2 ( btConstraintInfo2 * info ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
void getInfo2NonVirtual ( btConstraintInfo2 * info , const btTransform & transA , const btTransform & transB , const btVector3 & angVelA , const btVector3 & angVelB ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
void getInfo2Internal ( btConstraintInfo2 * info , const btTransform & transA , const btTransform & transB , const btVector3 & angVelA , const btVector3 & angVelB ) ;
void getInfo2InternalUsingFrameOffset ( btConstraintInfo2 * info , const btTransform & transA , const btTransform & transB , const btVector3 & angVelA , const btVector3 & angVelB ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
void updateRHS ( btScalar timeStep ) ;
2017-08-01 14:30:58 +02:00
const btRigidBody & getRigidBodyA ( ) const
{
return m_rbA ;
}
const btRigidBody & getRigidBodyB ( ) const
{
return m_rbB ;
}
2019-01-03 14:26:51 +01:00
btRigidBody & getRigidBodyA ( )
{
return m_rbA ;
}
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
btRigidBody & getRigidBodyB ( )
{
return m_rbB ;
2017-08-01 14:30:58 +02:00
}
btTransform & getFrameOffsetA ( )
{
2019-01-03 14:26:51 +01:00
return m_rbAFrame ;
2017-08-01 14:30:58 +02:00
}
btTransform & getFrameOffsetB ( )
{
return m_rbBFrame ;
}
void setFrames ( const btTransform & frameA , const btTransform & frameB ) ;
2019-01-03 14:26:51 +01:00
void setAngularOnly ( bool angularOnly )
2017-08-01 14:30:58 +02:00
{
m_angularOnly = angularOnly ;
}
2019-01-03 14:26:51 +01:00
void enableAngularMotor ( bool enableMotor , btScalar targetVelocity , btScalar maxMotorImpulse )
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
m_enableAngularMotor = enableMotor ;
2017-08-01 14:30:58 +02:00
m_motorTargetVelocity = targetVelocity ;
m_maxMotorImpulse = maxMotorImpulse ;
}
// extra motor API, including ability to set a target rotation (as opposed to angular velocity)
// note: setMotorTarget sets angular velocity under the hood, so you must call it every tick to
// maintain a given angular target.
2019-01-03 14:26:51 +01:00
void enableMotor ( bool enableMotor ) { m_enableAngularMotor = enableMotor ; }
2017-08-01 14:30:58 +02:00
void setMaxMotorImpulse ( btScalar maxMotorImpulse ) { m_maxMotorImpulse = maxMotorImpulse ; }
void setMotorTargetVelocity ( btScalar motorTargetVelocity ) { m_motorTargetVelocity = motorTargetVelocity ; }
2019-01-03 14:26:51 +01:00
void setMotorTarget ( const btQuaternion & qAinB , btScalar dt ) ; // qAinB is rotation of body A wrt body B.
2017-08-01 14:30:58 +02:00
void setMotorTarget ( btScalar targetAngle , btScalar dt ) ;
2019-01-03 14:26:51 +01:00
void setLimit ( btScalar low , btScalar high , btScalar _softness = 0.9f , btScalar _biasFactor = 0.3f , btScalar _relaxationFactor = 1.0f )
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
# ifdef _BT_USE_CENTER_LIMIT_
2017-08-01 14:30:58 +02:00
m_limit . set ( low , high , _softness , _biasFactor , _relaxationFactor ) ;
# else
m_lowerLimit = btNormalizeAngle ( low ) ;
m_upperLimit = btNormalizeAngle ( high ) ;
2019-01-03 14:26:51 +01:00
m_limitSoftness = _softness ;
2017-08-01 14:30:58 +02:00
m_biasFactor = _biasFactor ;
m_relaxationFactor = _relaxationFactor ;
# endif
}
2019-01-03 14:26:51 +01:00
2017-08-01 14:30:58 +02:00
btScalar getLimitSoftness ( ) const
{
2019-01-03 14:26:51 +01:00
# ifdef _BT_USE_CENTER_LIMIT_
2017-08-01 14:30:58 +02:00
return m_limit . getSoftness ( ) ;
# else
return m_limitSoftness ;
# endif
}
btScalar getLimitBiasFactor ( ) const
{
2019-01-03 14:26:51 +01:00
# ifdef _BT_USE_CENTER_LIMIT_
2017-08-01 14:30:58 +02:00
return m_limit . getBiasFactor ( ) ;
# else
return m_biasFactor ;
# endif
}
btScalar getLimitRelaxationFactor ( ) const
{
2019-01-03 14:26:51 +01:00
# ifdef _BT_USE_CENTER_LIMIT_
2017-08-01 14:30:58 +02:00
return m_limit . getRelaxationFactor ( ) ;
# else
return m_relaxationFactor ;
# endif
}
2019-01-03 14:26:51 +01:00
void setAxis ( btVector3 & axisInA )
2017-08-01 14:30:58 +02:00
{
btVector3 rbAxisA1 , rbAxisA2 ;
btPlaneSpace1 ( axisInA , rbAxisA1 , rbAxisA2 ) ;
btVector3 pivotInA = m_rbAFrame . getOrigin ( ) ;
2019-01-03 14:26:51 +01:00
// m_rbAFrame.getOrigin() = pivotInA;
m_rbAFrame . getBasis ( ) . setValue ( rbAxisA1 . getX ( ) , rbAxisA2 . getX ( ) , axisInA . getX ( ) ,
rbAxisA1 . getY ( ) , rbAxisA2 . getY ( ) , axisInA . getY ( ) ,
rbAxisA1 . getZ ( ) , rbAxisA2 . getZ ( ) , axisInA . getZ ( ) ) ;
2017-08-01 14:30:58 +02:00
btVector3 axisInB = m_rbA . getCenterOfMassTransform ( ) . getBasis ( ) * axisInA ;
2019-01-03 14:26:51 +01:00
btQuaternion rotationArc = shortestArcQuat ( axisInA , axisInB ) ;
btVector3 rbAxisB1 = quatRotate ( rotationArc , rbAxisA1 ) ;
2017-08-01 14:30:58 +02:00
btVector3 rbAxisB2 = axisInB . cross ( rbAxisB1 ) ;
m_rbBFrame . getOrigin ( ) = m_rbB . getCenterOfMassTransform ( ) . inverse ( ) ( m_rbA . getCenterOfMassTransform ( ) ( pivotInA ) ) ;
2019-01-03 14:26:51 +01:00
m_rbBFrame . getBasis ( ) . setValue ( rbAxisB1 . getX ( ) , rbAxisB2 . getX ( ) , axisInB . getX ( ) ,
rbAxisB1 . getY ( ) , rbAxisB2 . getY ( ) , axisInB . getY ( ) ,
rbAxisB1 . getZ ( ) , rbAxisB2 . getZ ( ) , axisInB . getZ ( ) ) ;
2017-08-01 14:30:58 +02:00
m_rbBFrame . getBasis ( ) = m_rbB . getCenterOfMassTransform ( ) . getBasis ( ) . inverse ( ) * m_rbBFrame . getBasis ( ) ;
}
2019-01-03 14:26:51 +01:00
bool hasLimit ( ) const
{
# ifdef _BT_USE_CENTER_LIMIT_
return m_limit . getHalfRange ( ) > 0 ;
2017-08-01 14:30:58 +02:00
# else
2019-01-03 14:26:51 +01:00
return m_lowerLimit < = m_upperLimit ;
2017-08-01 14:30:58 +02:00
# endif
2019-01-03 14:26:51 +01:00
}
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
btScalar getLowerLimit ( ) const
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
# ifdef _BT_USE_CENTER_LIMIT_
return m_limit . getLow ( ) ;
2017-08-01 14:30:58 +02:00
# else
2019-01-03 14:26:51 +01:00
return m_lowerLimit ;
2017-08-01 14:30:58 +02:00
# endif
}
2019-01-03 14:26:51 +01:00
btScalar getUpperLimit ( ) const
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
# ifdef _BT_USE_CENTER_LIMIT_
return m_limit . getHigh ( ) ;
# else
return m_upperLimit ;
2017-08-01 14:30:58 +02:00
# endif
}
///The getHingeAngle gives the hinge angle in range [-PI,PI]
btScalar getHingeAngle ( ) ;
2019-01-03 14:26:51 +01:00
btScalar getHingeAngle ( const btTransform & transA , const btTransform & transB ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
void testLimit ( const btTransform & transA , const btTransform & transB ) ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
const btTransform & getAFrame ( ) const { return m_rbAFrame ; } ;
2017-08-01 14:30:58 +02:00
const btTransform & getBFrame ( ) const { return m_rbBFrame ; } ;
2019-01-03 14:26:51 +01:00
btTransform & getAFrame ( ) { return m_rbAFrame ; } ;
2017-08-01 14:30:58 +02:00
btTransform & getBFrame ( ) { return m_rbBFrame ; } ;
inline int getSolveLimit ( )
{
2019-01-03 14:26:51 +01:00
# ifdef _BT_USE_CENTER_LIMIT_
return m_limit . isLimit ( ) ;
2017-08-01 14:30:58 +02:00
# else
2019-01-03 14:26:51 +01:00
return m_solveLimit ;
2017-08-01 14:30:58 +02:00
# endif
}
inline btScalar getLimitSign ( )
{
2019-01-03 14:26:51 +01:00
# ifdef _BT_USE_CENTER_LIMIT_
return m_limit . getSign ( ) ;
2017-08-01 14:30:58 +02:00
# else
return m_limitSign ;
# endif
}
2019-01-03 14:26:51 +01:00
inline bool getAngularOnly ( )
{
return m_angularOnly ;
2017-08-01 14:30:58 +02:00
}
2019-01-03 14:26:51 +01:00
inline bool getEnableAngularMotor ( )
{
return m_enableAngularMotor ;
2017-08-01 14:30:58 +02:00
}
2019-01-03 14:26:51 +01:00
inline btScalar getMotorTargetVelocity ( )
{
return m_motorTargetVelocity ;
2017-08-01 14:30:58 +02:00
}
2019-01-03 14:26:51 +01:00
inline btScalar getMaxMotorImpulse ( )
{
return m_maxMotorImpulse ;
2017-08-01 14:30:58 +02:00
}
// access for UseFrameOffset
bool getUseFrameOffset ( ) { return m_useOffsetForConstraintFrame ; }
void setUseFrameOffset ( bool frameOffsetOnOff ) { m_useOffsetForConstraintFrame = frameOffsetOnOff ; }
// access for UseReferenceFrameA
bool getUseReferenceFrameA ( ) const { return m_useReferenceFrameA ; }
void setUseReferenceFrameA ( bool useReferenceFrameA ) { m_useReferenceFrameA = useReferenceFrameA ; }
2019-01-03 14:26:51 +01:00
///override the default global value of a parameter (such as ERP or CFM), optionally provide the axis (0..5).
2017-08-01 14:30:58 +02:00
///If no axis is provided, it uses the default axis for this constraint.
2019-01-03 14:26:51 +01:00
virtual void setParam ( int num , btScalar value , int axis = - 1 ) ;
2017-08-01 14:30:58 +02:00
///return the local value of parameter
2019-01-03 14:26:51 +01:00
virtual btScalar getParam ( int num , int axis = - 1 ) const ;
virtual int getFlags ( ) const
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
return m_flags ;
2017-08-01 14:30:58 +02:00
}
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
} ;
//only for backward compatibility
# ifdef BT_BACKWARDS_COMPATIBLE_SERIALIZATION
///this structure is not used, except for loading pre-2.82 .bullet files
2019-01-03 14:26:51 +01:00
struct btHingeConstraintDoubleData
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
btTypedConstraintData m_typeConstraintData ;
btTransformDoubleData m_rbAFrame ; // constraint axii. Assumes z is hinge axis.
2017-08-01 14:30:58 +02:00
btTransformDoubleData m_rbBFrame ;
2019-01-03 14:26:51 +01:00
int m_useReferenceFrameA ;
int m_angularOnly ;
int m_enableAngularMotor ;
float m_motorTargetVelocity ;
float m_maxMotorImpulse ;
float m_lowerLimit ;
float m_upperLimit ;
float m_limitSoftness ;
float m_biasFactor ;
float m_relaxationFactor ;
2017-08-01 14:30:58 +02:00
} ;
2019-01-03 14:26:51 +01:00
# endif //BT_BACKWARDS_COMPATIBLE_SERIALIZATION
2017-08-01 14:30:58 +02:00
///The getAccumulatedHingeAngle returns the accumulated hinge angle, taking rotation across the -PI/PI boundary into account
2019-01-03 14:26:51 +01:00
ATTRIBUTE_ALIGNED16 ( class )
btHingeAccumulatedAngleConstraint : public btHingeConstraint
2017-08-01 14:30:58 +02:00
{
protected :
2019-01-03 14:26:51 +01:00
btScalar m_accumulatedAngle ;
2017-08-01 14:30:58 +02:00
2019-01-03 14:26:51 +01:00
public :
2017-08-01 14:30:58 +02:00
BT_DECLARE_ALIGNED_ALLOCATOR ( ) ;
2019-01-03 14:26:51 +01:00
btHingeAccumulatedAngleConstraint ( btRigidBody & rbA , btRigidBody & rbB , const btVector3 & pivotInA , const btVector3 & pivotInB , const btVector3 & axisInA , const btVector3 & axisInB , bool useReferenceFrameA = false )
: btHingeConstraint ( rbA , rbB , pivotInA , pivotInB , axisInA , axisInB , useReferenceFrameA )
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
m_accumulatedAngle = getHingeAngle ( ) ;
2017-08-01 14:30:58 +02:00
}
2019-01-03 14:26:51 +01:00
btHingeAccumulatedAngleConstraint ( btRigidBody & rbA , const btVector3 & pivotInA , const btVector3 & axisInA , bool useReferenceFrameA = false )
: btHingeConstraint ( rbA , pivotInA , axisInA , useReferenceFrameA )
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
m_accumulatedAngle = getHingeAngle ( ) ;
2017-08-01 14:30:58 +02:00
}
2019-01-03 14:26:51 +01:00
btHingeAccumulatedAngleConstraint ( btRigidBody & rbA , btRigidBody & rbB , const btTransform & rbAFrame , const btTransform & rbBFrame , bool useReferenceFrameA = false )
: btHingeConstraint ( rbA , rbB , rbAFrame , rbBFrame , useReferenceFrameA )
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
m_accumulatedAngle = getHingeAngle ( ) ;
2017-08-01 14:30:58 +02:00
}
2019-01-03 14:26:51 +01:00
btHingeAccumulatedAngleConstraint ( btRigidBody & rbA , const btTransform & rbAFrame , bool useReferenceFrameA = false )
: btHingeConstraint ( rbA , rbAFrame , useReferenceFrameA )
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
m_accumulatedAngle = getHingeAngle ( ) ;
2017-08-01 14:30:58 +02:00
}
btScalar getAccumulatedHingeAngle ( ) ;
2019-01-03 14:26:51 +01:00
void setAccumulatedHingeAngle ( btScalar accAngle ) ;
virtual void getInfo1 ( btConstraintInfo1 * info ) ;
2017-08-01 14:30:58 +02:00
} ;
2019-01-03 14:26:51 +01:00
struct btHingeConstraintFloatData
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
btTypedConstraintData m_typeConstraintData ;
btTransformFloatData m_rbAFrame ; // constraint axii. Assumes z is hinge axis.
2017-08-01 14:30:58 +02:00
btTransformFloatData m_rbBFrame ;
2019-01-03 14:26:51 +01:00
int m_useReferenceFrameA ;
int m_angularOnly ;
int m_enableAngularMotor ;
float m_motorTargetVelocity ;
float m_maxMotorImpulse ;
float m_lowerLimit ;
float m_upperLimit ;
float m_limitSoftness ;
float m_biasFactor ;
float m_relaxationFactor ;
2017-08-01 14:30:58 +02:00
} ;
///do not change those serialization structures, it requires an updated sBulletDNAstr/sBulletDNAstr64
2019-01-03 14:26:51 +01:00
struct btHingeConstraintDoubleData2
2017-08-01 14:30:58 +02:00
{
2019-01-03 14:26:51 +01:00
btTypedConstraintDoubleData m_typeConstraintData ;
btTransformDoubleData m_rbAFrame ; // constraint axii. Assumes z is hinge axis.
2017-08-01 14:30:58 +02:00
btTransformDoubleData m_rbBFrame ;
2019-01-03 14:26:51 +01:00
int m_useReferenceFrameA ;
int m_angularOnly ;
int m_enableAngularMotor ;
double m_motorTargetVelocity ;
double m_maxMotorImpulse ;
double m_lowerLimit ;
double m_upperLimit ;
double m_limitSoftness ;
double m_biasFactor ;
double m_relaxationFactor ;
char m_padding1 [ 4 ] ;
2017-08-01 14:30:58 +02:00
} ;
2019-01-03 14:26:51 +01:00
SIMD_FORCE_INLINE int btHingeConstraint : : calculateSerializeBufferSize ( ) const
2017-08-01 14:30:58 +02:00
{
return sizeof ( btHingeConstraintData ) ;
}
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 * btHingeConstraint : : serialize ( void * dataBuffer , btSerializer * serializer ) const
2017-08-01 14:30:58 +02:00
{
btHingeConstraintData * hingeData = ( btHingeConstraintData * ) dataBuffer ;
2019-01-03 14:26:51 +01:00
btTypedConstraint : : serialize ( & hingeData - > m_typeConstraintData , serializer ) ;
2017-08-01 14:30:58 +02:00
m_rbAFrame . serialize ( hingeData - > m_rbAFrame ) ;
m_rbBFrame . serialize ( hingeData - > m_rbBFrame ) ;
hingeData - > m_angularOnly = m_angularOnly ;
hingeData - > m_enableAngularMotor = m_enableAngularMotor ;
hingeData - > m_maxMotorImpulse = float ( m_maxMotorImpulse ) ;
hingeData - > m_motorTargetVelocity = float ( m_motorTargetVelocity ) ;
hingeData - > m_useReferenceFrameA = m_useReferenceFrameA ;
2019-01-03 14:26:51 +01:00
# ifdef _BT_USE_CENTER_LIMIT_
2017-08-01 14:30:58 +02:00
hingeData - > m_lowerLimit = float ( m_limit . getLow ( ) ) ;
hingeData - > m_upperLimit = float ( m_limit . getHigh ( ) ) ;
hingeData - > m_limitSoftness = float ( m_limit . getSoftness ( ) ) ;
hingeData - > m_biasFactor = float ( m_limit . getBiasFactor ( ) ) ;
hingeData - > m_relaxationFactor = float ( m_limit . getRelaxationFactor ( ) ) ;
# else
hingeData - > m_lowerLimit = float ( m_lowerLimit ) ;
hingeData - > m_upperLimit = float ( m_upperLimit ) ;
hingeData - > m_limitSoftness = float ( m_limitSoftness ) ;
hingeData - > m_biasFactor = float ( m_biasFactor ) ;
hingeData - > m_relaxationFactor = float ( m_relaxationFactor ) ;
# endif
// Fill padding with zeros to appease msan.
# ifdef BT_USE_DOUBLE_PRECISION
hingeData - > m_padding1 [ 0 ] = 0 ;
hingeData - > m_padding1 [ 1 ] = 0 ;
hingeData - > m_padding1 [ 2 ] = 0 ;
hingeData - > m_padding1 [ 3 ] = 0 ;
# endif
return btHingeConstraintDataName ;
}
2019-01-03 14:26:51 +01:00
# endif //BT_HINGECONSTRAINT_H