mirror of https://github.com/OpenMW/openmw.git
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.
66 lines
1.9 KiB
C++
66 lines
1.9 KiB
C++
7 years ago
|
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_SETTINGSUTILS_H
|
||
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_SETTINGSUTILS_H
|
||
|
|
||
|
#include "settings.hpp"
|
||
|
#include "tileposition.hpp"
|
||
|
#include "tilebounds.hpp"
|
||
|
|
||
|
#include <osg/Vec3f>
|
||
|
|
||
|
#include <utility>
|
||
|
|
||
|
namespace DetourNavigator
|
||
|
{
|
||
|
inline float getHeight(const Settings& settings,const osg::Vec3f& agentHalfExtents)
|
||
|
{
|
||
|
return 2.0f * agentHalfExtents.z() * settings.mRecastScaleFactor;
|
||
|
}
|
||
|
|
||
|
inline float getMaxClimb(const Settings& settings)
|
||
|
{
|
||
|
return settings.mMaxClimb * settings.mRecastScaleFactor;
|
||
|
}
|
||
|
|
||
|
inline float getRadius(const Settings& settings, const osg::Vec3f& agentHalfExtents)
|
||
|
{
|
||
|
return agentHalfExtents.x() * settings.mRecastScaleFactor;
|
||
|
}
|
||
|
|
||
|
inline osg::Vec3f toNavMeshCoordinates(const Settings& settings, osg::Vec3f position)
|
||
|
{
|
||
|
std::swap(position.y(), position.z());
|
||
|
return position * settings.mRecastScaleFactor;
|
||
|
}
|
||
|
|
||
|
inline osg::Vec3f fromNavMeshCoordinates(const Settings& settings, osg::Vec3f position)
|
||
|
{
|
||
|
const auto factor = 1.0f / settings.mRecastScaleFactor;
|
||
|
position *= factor;
|
||
|
std::swap(position.y(), position.z());
|
||
|
return position;
|
||
|
}
|
||
|
|
||
|
inline float getTileSize(const Settings& settings)
|
||
|
{
|
||
|
return settings.mTileSize * settings.mCellSize;
|
||
|
}
|
||
|
|
||
|
inline TilePosition getTilePosition(const Settings& settings, const osg::Vec3f& position)
|
||
|
{
|
||
|
return TilePosition(
|
||
|
static_cast<int>(std::floor(position.x() / getTileSize(settings))),
|
||
|
static_cast<int>(std::floor(position.z() / getTileSize(settings)))
|
||
|
);
|
||
|
}
|
||
|
|
||
|
inline TileBounds makeTileBounds(const Settings& settings, const TilePosition& tilePosition)
|
||
|
{
|
||
|
return TileBounds {
|
||
|
osg::Vec2f(tilePosition.x(), tilePosition.y()) * getTileSize(settings),
|
||
|
osg::Vec2f(tilePosition.x() + 1, tilePosition.y() + 1) * getTileSize(settings),
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|