From 642a333e5e4c6f8c0b56f3ce3077bea8c4a1a28b Mon Sep 17 00:00:00 2001 From: hiker Date: Fri, 25 Sep 2015 23:36:49 +1000 Subject: [PATCH] Fixed kart getting stuck at doors of overworld (and other static physical objects). --- src/karts/kart.cpp | 2 ++ src/physics/physics.cpp | 11 +++++++++++ 2 files changed, 13 insertions(+) diff --git a/src/karts/kart.cpp b/src/karts/kart.cpp index c58e33733..2369fab4b 100644 --- a/src/karts/kart.cpp +++ b/src/karts/kart.cpp @@ -1778,6 +1778,8 @@ void Kart::crashed(AbstractKart *k, bool update_attachments) // ----------------------------------------------------------------------------- /** Kart hits the track with a given material. * \param m Material hit, can be NULL if no specific material exists. + * \param normal The normal of the hit (used to push a kart back, which avoids + * that karts sometimes can get stuck). */ void Kart::crashed(const Material *m, const Vec3 &normal) { diff --git a/src/physics/physics.cpp b/src/physics/physics.cpp index 8591c5be6..864010442 100644 --- a/src/physics/physics.cpp +++ b/src/physics/physics.cpp @@ -594,10 +594,21 @@ btScalar Physics::solveGroup(btCollisionObject** bodies, int numBodies, upA, contact_manifold->getContactPoint(0).m_localPointA, upB, contact_manifold->getContactPoint(0).m_localPointB); else if(upB->is(UserPointer::UP_PHYSICAL_OBJECT)) + { // 2.3 kart hits physical object m_all_collisions.push_back( upB, contact_manifold->getContactPoint(0).m_localPointB, upA, contact_manifold->getContactPoint(0).m_localPointA); + // If the object is a statical object (e.g. a door in + // overworld) add a push back to avoid that karts get stuck + if (objB->isStaticObject()) + { + AbstractKart *kart = upA->getPointerKart(); + const btVector3 &normal = contact_manifold->getContactPoint(0) + .m_normalWorldOnB; + kart->crashed((Material*)NULL, normal); + } // isStatiObject + } else if(upB->is(UserPointer::UP_ANIMATION)) m_all_collisions.push_back( upB, contact_manifold->getContactPoint(0).m_localPointB,