mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-17 01:10:10 +00:00
Replace rayTest
with convexSweepTest
MovementSolver::traceDown
. Needed to prevent teleporting down through sewer grates.
This commit is contained in:
parent
ee224d00ab
commit
917132e326
@ -98,21 +98,27 @@ namespace MWPhysics
|
|||||||
// Check if we actually found a valid spawn point (use an infinitely thin ray this time).
|
// Check if we actually found a valid spawn point (use an infinitely thin ray this time).
|
||||||
// Required for some broken door destinations in Morrowind.esm, where the spawn point
|
// Required for some broken door destinations in Morrowind.esm, where the spawn point
|
||||||
// intersects with other geometry if the actor's base is taken into account
|
// intersects with other geometry if the actor's base is taken into account
|
||||||
btVector3 from = Misc::Convert::toBullet(position);
|
btVector3 from = Misc::Convert::toBullet(position + offset);
|
||||||
btVector3 to = from - btVector3(0, 0, maxHeight);
|
btVector3 to = from - btVector3(0, 0, maxHeight);
|
||||||
|
|
||||||
btCollisionWorld::ClosestRayResultCallback resultCallback1(from, to);
|
btCollisionWorld::ClosestConvexResultCallback resultCallback1(from, to);
|
||||||
resultCallback1.m_collisionFilterGroup = CollisionType_AnyPhysical;
|
resultCallback1.m_collisionFilterGroup = CollisionType_AnyPhysical;
|
||||||
resultCallback1.m_collisionFilterMask = CollisionType_World | CollisionType_HeightMap;
|
resultCallback1.m_collisionFilterMask = CollisionType_World | CollisionType_HeightMap;
|
||||||
|
|
||||||
collisionWorld->rayTest(from, to, resultCallback1);
|
const btQuaternion btrot = btQuaternion::getIdentity();
|
||||||
|
collisionWorld->convexSweepTest(
|
||||||
|
actor->getConvexShape(), btTransform(btrot, from), btTransform(btrot, to), resultCallback1);
|
||||||
|
|
||||||
if (resultCallback1.hasHit()
|
if (resultCallback1.hasHit()
|
||||||
&& ((Misc::Convert::toOsg(resultCallback1.m_hitPointWorld) - tracer.mEndPos + offset).length2() > 35 * 35
|
&& ((Misc::Convert::toOsg(resultCallback1.m_hitPointWorld) - tracer.mEndPos + offset).length2() > 35 * 35
|
||||||
|| !isWalkableSlope(tracer.mPlaneNormal)))
|
|| !isWalkableSlope(tracer.mPlaneNormal)))
|
||||||
{
|
{
|
||||||
actor->setOnSlope(!isWalkableSlope(resultCallback1.m_hitNormalWorld));
|
actor->setOnSlope(!isWalkableSlope(resultCallback1.m_hitNormalWorld));
|
||||||
return Misc::Convert::toOsg(resultCallback1.m_hitPointWorld) + osg::Vec3f(0.f, 0.f, sGroundOffset);
|
osg::Vec3f res = Misc::Convert::toOsg(resultCallback1.m_hitPointWorld);
|
||||||
|
res.x() = position.x();
|
||||||
|
res.y() = position.y();
|
||||||
|
res.z() += sGroundOffset;
|
||||||
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
actor->setOnSlope(!isWalkableSlope(tracer.mPlaneNormal));
|
actor->setOnSlope(!isWalkableSlope(tracer.mPlaneNormal));
|
||||||
|
Loading…
Reference in New Issue
Block a user