diff --git a/src/collision/CollisionDetection.h b/src/collision/CollisionDetection.h index a6c36ab8..3109b44b 100644 --- a/src/collision/CollisionDetection.h +++ b/src/collision/CollisionDetection.h @@ -110,7 +110,7 @@ class CollisionDetection { void computeNarrowPhase(); /// Add a contact manifold to the linked list of contact manifolds of the two bodies - /// involed in the corresponding contact. + /// involved in the corresponding contact. void addContactManifoldToBody(OverlappingPair* pair); /// Fill-in the collision detection matrix diff --git a/src/engine/DynamicsWorld.cpp b/src/engine/DynamicsWorld.cpp index 91112d74..3e5ab482 100644 --- a/src/engine/DynamicsWorld.cpp +++ b/src/engine/DynamicsWorld.cpp @@ -359,11 +359,8 @@ void DynamicsWorld::solveContactsAndConstraints() { // For each island of the world for (uint islandIndex = 0; islandIndex < mNbIslands; islandIndex++) { - // Check if there are contacts and constraints to solve - bool isConstraintsToSolve = mIslands[islandIndex]->getNbJoints() > 0; - - // If there are constraints - if (isConstraintsToSolve) { + // If there are constraints to solve + if (mIslands[islandIndex]->getNbJoints() > 0) { // Initialize the constraint solver mConstraintSolver.initializeForIsland(mTimeStep, mIslands[islandIndex]); @@ -374,9 +371,10 @@ void DynamicsWorld::solveContactsAndConstraints() { for (uint i=0; igetNbJoints() > 0; - if (isConstraintsToSolve) { + if (mIslands[islandIndex]->getNbJoints() > 0) { + mConstraintSolver.solveVelocityConstraints(mIslands[islandIndex]); } } @@ -724,7 +722,7 @@ void DynamicsWorld::computeIslands() { RigidBody* bodyToVisit = stackBodiesToVisit[stackIndex]; assert(bodyToVisit->isActive()); - // Awake the body if it is slepping + // Awake the body if it is sleeping bodyToVisit->setIsSleeping(false); // Add the body into the island @@ -746,22 +744,27 @@ void DynamicsWorld::computeIslands() { // Check if the current contact manifold has already been added into an island if (contactManifold->isAlreadyInIsland()) continue; - // Add the contact manifold into the island - mIslands[mNbIslands]->addContactManifold(contactManifold); - contactManifold->mIsAlreadyInIsland = true; - // Get the other body of the contact manifold - RigidBody* body1 = static_cast(contactManifold->getBody1()); - RigidBody* body2 = static_cast(contactManifold->getBody2()); - RigidBody* otherBody = (body1->getId() == bodyToVisit->getId()) ? body2 : body1; + RigidBody* body1 = dynamic_cast(contactManifold->getBody1()); + RigidBody* body2 = dynamic_cast(contactManifold->getBody2()); - // Check if the other body has already been added to the island - if (otherBody->mIsAlreadyInIsland) continue; + // If the colliding body is a RigidBody (and not a CollisionBody instead) + if (body1 != nullptr && body2 != nullptr) { - // Insert the other body into the stack of bodies to visit - stackBodiesToVisit[stackIndex] = otherBody; - stackIndex++; - otherBody->mIsAlreadyInIsland = true; + // Add the contact manifold into the island + mIslands[mNbIslands]->addContactManifold(contactManifold); + contactManifold->mIsAlreadyInIsland = true; + + RigidBody* otherBody = (body1->getId() == bodyToVisit->getId()) ? body2 : body1; + + // Check if the other body has already been added to the island + if (otherBody->mIsAlreadyInIsland) continue; + + // Insert the other body into the stack of bodies to visit + stackBodiesToVisit[stackIndex] = otherBody; + stackIndex++; + otherBody->mIsAlreadyInIsland = true; + } } // For each joint in which the current body is involved