Skip to content

Commit 126b676

Browse files
authored
Merge pull request #2034 from erwincoumans/master
Cleaning up the issue tracked with old/out-of-date/issues that haven't been addressed for too long.
2 parents 8bc1c8e + 21d9465 commit 126b676

File tree

5 files changed

+22
-14
lines changed

5 files changed

+22
-14
lines changed

build3/premake5.exe

641 KB
Binary file not shown.

src/BulletCollision/CollisionDispatch/btCompoundCollisionAlgorithm.cpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,12 @@ struct btCompoundLeafCallback : btDbvt::ICollide
113113
const btCompoundShape* compoundShape = static_cast<const btCompoundShape*>(m_compoundColObjWrap->getCollisionShape());
114114
btAssert(index < compoundShape->getNumChildShapes());
115115

116+
if (gCompoundChildShapePairCallback)
117+
{
118+
if (!gCompoundChildShapePairCallback(m_otherObjWrap->getCollisionShape(), childShape))
119+
return;
120+
}
121+
116122
//backup
117123
btTransform orgTrans = m_compoundColObjWrap->getWorldTransform();
118124

@@ -130,11 +136,6 @@ struct btCompoundLeafCallback : btDbvt::ICollide
130136
btVector3 aabbMin1, aabbMax1;
131137
m_otherObjWrap->getCollisionShape()->getAabb(m_otherObjWrap->getWorldTransform(), aabbMin1, aabbMax1);
132138

133-
if (gCompoundChildShapePairCallback)
134-
{
135-
if (!gCompoundChildShapePairCallback(m_otherObjWrap->getCollisionShape(), childShape))
136-
return;
137-
}
138139

139140
if (TestAabbAgainstAabb2(aabbMin0, aabbMax0, aabbMin1, aabbMax1))
140141
{

src/BulletCollision/Gimpact/btGImpactCollisionAlgorithm.cpp

+11-4
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,11 @@ class btPlaneShape : public btStaticPlaneShape
5050

5151
void get_plane_equation_transformed(const btTransform& trans, btVector4& equation) const
5252
{
53-
equation[0] = trans.getBasis().getRow(0).dot(m_planeNormal);
54-
equation[1] = trans.getBasis().getRow(1).dot(m_planeNormal);
55-
equation[2] = trans.getBasis().getRow(2).dot(m_planeNormal);
56-
equation[3] = trans.getOrigin().dot(m_planeNormal) + m_planeConstant;
53+
const btVector3 normal = trans.getBasis() * m_planeNormal;
54+
equation[0] = normal[0];
55+
equation[1] = normal[1];
56+
equation[2] = normal[2];
57+
equation[3] = normal.dot(trans * (m_planeConstant * m_planeNormal));
5758
}
5859
};
5960

@@ -821,6 +822,12 @@ void btGImpactCollisionAlgorithm::processCollision(const btCollisionObjectWrappe
821822

822823
gimpact_vs_shape(body1Wrap, body0Wrap, gimpactshape1, body0Wrap->getCollisionShape(), true);
823824
}
825+
826+
// Ensure that gContactProcessedCallback is called for concave shapes.
827+
if (getLastManifold())
828+
{
829+
m_resultOut->refreshContactPoints();
830+
}
824831
}
825832

826833
btScalar btGImpactCollisionAlgorithm::calculateTimeOfImpact(btCollisionObject* body0, btCollisionObject* body1, const btDispatcherInfo& dispatchInfo, btManifoldResult* resultOut)

src/BulletDynamics/Character/btKinematicCharacterController.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ void btKinematicCharacterController::playerStep(btCollisionWorld* collisionWorld
737737
}
738738

739739
// quick check...
740-
if (!m_useWalkDirection && (m_velocityTimeInterval <= 0.0))
740+
if (!m_useWalkDirection && (m_velocityTimeInterval <= 0.0 || m_walkDirection.fuzzyZero()))
741741
{
742742
// printf("\n");
743743
return; // no motion

src/BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -918,9 +918,9 @@ void btSequentialImpulseConstraintSolver::setupContactConstraint(btSolverConstra
918918
{
919919
solverConstraint.m_appliedImpulse = cp.m_appliedImpulse * infoGlobal.m_warmstartingFactor;
920920
if (rb0)
921-
bodyA->internalApplyImpulse(solverConstraint.m_contactNormal1 * bodyA->internalGetInvMass() * rb0->getLinearFactor(), solverConstraint.m_angularComponentA, solverConstraint.m_appliedImpulse);
921+
bodyA->internalApplyImpulse(solverConstraint.m_contactNormal1 * bodyA->internalGetInvMass(), solverConstraint.m_angularComponentA, solverConstraint.m_appliedImpulse);
922922
if (rb1)
923-
bodyB->internalApplyImpulse(-solverConstraint.m_contactNormal2 * bodyB->internalGetInvMass() * rb1->getLinearFactor(), -solverConstraint.m_angularComponentB, -(btScalar)solverConstraint.m_appliedImpulse);
923+
bodyB->internalApplyImpulse(-solverConstraint.m_contactNormal2 * bodyB->internalGetInvMass() , -solverConstraint.m_angularComponentB, -(btScalar)solverConstraint.m_appliedImpulse);
924924
}
925925
else
926926
{
@@ -990,9 +990,9 @@ void btSequentialImpulseConstraintSolver::setFrictionConstraintImpulse(btSolverC
990990
{
991991
frictionConstraint1.m_appliedImpulse = cp.m_appliedImpulseLateral1 * infoGlobal.m_warmstartingFactor;
992992
if (rb0)
993-
bodyA->internalApplyImpulse(frictionConstraint1.m_contactNormal1 * rb0->getInvMass() * rb0->getLinearFactor(), frictionConstraint1.m_angularComponentA, frictionConstraint1.m_appliedImpulse);
993+
bodyA->internalApplyImpulse(frictionConstraint1.m_contactNormal1 * rb0->getInvMass() , frictionConstraint1.m_angularComponentA, frictionConstraint1.m_appliedImpulse);
994994
if (rb1)
995-
bodyB->internalApplyImpulse(-frictionConstraint1.m_contactNormal2 * rb1->getInvMass() * rb1->getLinearFactor(), -frictionConstraint1.m_angularComponentB, -(btScalar)frictionConstraint1.m_appliedImpulse);
995+
bodyB->internalApplyImpulse(-frictionConstraint1.m_contactNormal2 * rb1->getInvMass() , -frictionConstraint1.m_angularComponentB, -(btScalar)frictionConstraint1.m_appliedImpulse);
996996
}
997997
else
998998
{

0 commit comments

Comments
 (0)