You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
#include "steering.hpp"
|
|
|
|
#include <components/misc/mathutil.hpp>
|
|
#include <components/settings/settings.hpp>
|
|
|
|
#include "../mwworld/class.hpp"
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
|
|
#include "movement.hpp"
|
|
|
|
namespace MWMechanics
|
|
{
|
|
|
|
bool smoothTurn(const MWWorld::Ptr& actor, float targetAngleRadians, int axis, float epsilonRadians)
|
|
{
|
|
MWMechanics::Movement& movement = actor.getClass().getMovementSettings(actor);
|
|
float diff = Misc::normalizeAngle(targetAngleRadians - actor.getRefData().getPosition().rot[axis]);
|
|
float absDiff = std::abs(diff);
|
|
|
|
// The turning animation actually moves you slightly, so the angle will be wrong again.
|
|
// Use epsilon to prevent jerkiness.
|
|
if (absDiff < epsilonRadians)
|
|
return true;
|
|
|
|
float limit = getAngularVelocity(actor.getClass().getMaxSpeed(actor)) * MWBase::Environment::get().getFrameDuration();
|
|
static const bool smoothMovement = Settings::Manager::getBool("smooth movement", "Game");
|
|
if (smoothMovement)
|
|
limit *= std::min(absDiff / osg::PI + 0.1, 0.5);
|
|
|
|
if (absDiff > limit)
|
|
diff = osg::sign(diff) * limit;
|
|
|
|
movement.mRotation[axis] = diff;
|
|
return false;
|
|
}
|
|
|
|
bool zTurn(const MWWorld::Ptr& actor, float targetAngleRadians, float epsilonRadians)
|
|
{
|
|
return smoothTurn(actor, targetAngleRadians, 2, epsilonRadians);
|
|
}
|
|
|
|
}
|