1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-29 18:32:36 +00:00

Merge branch 'navmesh_cleanup' into 'master'

Small cleanup for navmesh related code

See merge request OpenMW/openmw!3734
This commit is contained in:
jvoisin 2024-01-07 22:14:52 +00:00
commit bb22c6e739
2 changed files with 18 additions and 36 deletions

View File

@ -189,42 +189,18 @@ namespace DetourNavigator
void RecastMeshBuilder::addObject(const btBoxShape& shape, const btTransform& transform, const AreaType areaType)
{
constexpr std::array<int, 36> indices{ {
0,
2,
3,
3,
1,
0,
0,
4,
6,
6,
2,
0,
0,
1,
5,
5,
4,
0,
7,
5,
1,
1,
3,
7,
7,
3,
2,
2,
6,
7,
7,
6,
4,
4,
5,
7,
0, 2, 3, // triangle 0
3, 1, 0, // triangle 1
0, 4, 6, // triangle 2
6, 2, 0, // triangle 3
0, 1, 5, // triangle 4
5, 4, 0, // triangle 5
7, 5, 1, // triangle 6
1, 3, 7, // triangle 7
7, 3, 2, // triangle 8
2, 6, 7, // triangle 9
7, 6, 4, // triangle 10
4, 5, 7, // triangle 11
} };
for (std::size_t i = 0; i < indices.size(); i += 3)

View File

@ -47,6 +47,7 @@ namespace DetourNavigator
return position;
}
// Returns value in NavMesh coordinates
inline float getTileSize(const RecastSettings& settings)
{
return static_cast<float>(settings.mTileSize) * settings.mCellSize;
@ -62,16 +63,19 @@ namespace DetourNavigator
return static_cast<int>(v);
}
// Returns integer tile position for position in navmesh coordinates
inline TilePosition getTilePosition(const RecastSettings& settings, const osg::Vec2f& position)
{
return TilePosition(getTilePosition(settings, position.x()), getTilePosition(settings, position.y()));
}
// Returns integer tile position for position in navmesh coordinates
inline TilePosition getTilePosition(const RecastSettings& settings, const osg::Vec3f& position)
{
return getTilePosition(settings, osg::Vec2f(position.x(), position.z()));
}
// Returns tile bounds in navmesh coordinates
inline TileBounds makeTileBounds(const RecastSettings& settings, const TilePosition& tilePosition)
{
return TileBounds{
@ -80,6 +84,7 @@ namespace DetourNavigator
};
}
// Returns border size relative to cell size
inline float getBorderSize(const RecastSettings& settings)
{
return static_cast<float>(settings.mBorderSize) * settings.mCellSize;
@ -95,6 +100,7 @@ namespace DetourNavigator
return std::floor(std::sqrt(settings.mMaxTilesNumber / osg::PI)) - 1;
}
// Returns tile bounds in real coordinates
inline TileBounds makeRealTileBoundsWithBorder(const RecastSettings& settings, const TilePosition& tilePosition)
{
TileBounds result = makeTileBounds(settings, tilePosition);