1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 07:53:53 +00:00
openmw/components/detournavigator/recastmeshmanager.cpp

104 lines
3.7 KiB
C++
Raw Normal View History

2018-03-13 22:49:08 +00:00
#include "recastmeshmanager.hpp"
#include "recastmeshbuilder.hpp"
2018-03-13 22:49:08 +00:00
namespace DetourNavigator
{
2019-11-27 22:45:01 +00:00
RecastMeshManager::RecastMeshManager(const Settings& settings, const TileBounds& bounds, std::size_t generation)
: mSettings(settings)
, mGeneration(generation)
, mTileBounds(bounds)
{
}
2018-03-13 22:49:08 +00:00
2018-09-22 15:36:57 +00:00
bool RecastMeshManager::addObject(const ObjectId id, const btCollisionShape& shape, const btTransform& transform,
2018-07-18 19:09:50 +00:00
const AreaType areaType)
2018-03-13 22:49:08 +00:00
{
const auto object = mObjects.lower_bound(id);
if (object != mObjects.end() && object->first == id)
return false;
mObjects.emplace_hint(object, id,
OscillatingRecastMeshObject(RecastMeshObject(shape, transform, areaType), mRevision + 1));
2019-11-27 22:45:01 +00:00
++mRevision;
return true;
2018-03-13 22:49:08 +00:00
}
2018-09-22 15:36:57 +00:00
bool RecastMeshManager::updateObject(const ObjectId id, const btTransform& transform, const AreaType areaType)
2018-05-26 14:44:25 +00:00
{
const auto object = mObjects.find(id);
if (object == mObjects.end())
return false;
const std::size_t lastChangeRevision = mLastNavMeshReportedChange.has_value()
? mLastNavMeshReportedChange->mRevision : mRevision;
if (!object->second.update(transform, areaType, lastChangeRevision, mTileBounds))
2018-05-26 14:44:25 +00:00
return false;
2019-11-27 22:45:01 +00:00
++mRevision;
return true;
2018-05-26 14:44:25 +00:00
}
std::optional<RemovedRecastMeshObject> RecastMeshManager::removeObject(const ObjectId id)
2018-03-13 22:49:08 +00:00
{
const auto object = mObjects.find(id);
if (object == mObjects.end())
return std::nullopt;
const RemovedRecastMeshObject result {object->second.getImpl().getShape(), object->second.getImpl().getTransform()};
mObjects.erase(object);
2019-11-27 22:45:01 +00:00
++mRevision;
return result;
2018-03-13 22:49:08 +00:00
}
2018-07-20 19:11:34 +00:00
bool RecastMeshManager::addWater(const osg::Vec2i& cellPosition, const int cellSize,
const btTransform& transform)
{
if (!mWater.emplace(cellPosition, Water {cellSize, transform}).second)
2018-07-20 19:11:34 +00:00
return false;
2019-11-27 22:45:01 +00:00
++mRevision;
2018-07-20 19:11:34 +00:00
return true;
}
std::optional<RecastMeshManager::Water> RecastMeshManager::removeWater(const osg::Vec2i& cellPosition)
2018-07-20 19:11:34 +00:00
{
const auto water = mWater.find(cellPosition);
if (water == mWater.end())
return std::nullopt;
2019-11-27 22:45:01 +00:00
++mRevision;
const Water result = water->second;
2018-07-20 19:11:34 +00:00
mWater.erase(water);
return result;
}
2018-03-13 22:49:08 +00:00
std::shared_ptr<RecastMesh> RecastMeshManager::getMesh()
{
RecastMeshBuilder builder(mSettings, mTileBounds);
for (const auto& [k, v] : mWater)
builder.addWater(v.mCellSize, v.mTransform);
for (const auto& [k, object] : mObjects)
{
const RecastMeshObject& v = object.getImpl();
builder.addObject(v.getShape(), v.getTransform(), v.getAreaType());
}
return std::move(builder).create(mGeneration, mRevision);
2018-03-13 22:49:08 +00:00
}
2018-04-15 22:07:18 +00:00
bool RecastMeshManager::isEmpty() const
{
return mObjects.empty();
}
2021-06-25 19:52:02 +00:00
void RecastMeshManager::reportNavMeshChange(const Version& recastMeshVersion, const Version& navMeshVersion)
{
if (recastMeshVersion.mGeneration != mGeneration)
return;
if (mLastNavMeshReport.has_value() && navMeshVersion < mLastNavMeshReport->mNavMeshVersion)
return;
mLastNavMeshReport = {recastMeshVersion.mRevision, navMeshVersion};
if (!mLastNavMeshReportedChange.has_value()
|| mLastNavMeshReportedChange->mNavMeshVersion < mLastNavMeshReport->mNavMeshVersion)
mLastNavMeshReportedChange = mLastNavMeshReport;
}
Version RecastMeshManager::getVersion() const
{
return Version {mGeneration, mRevision};
}
2018-03-13 22:49:08 +00:00
}