1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-28 18:45:33 +00:00
openmw-tes3mp/components/detournavigator/navigator.cpp

49 lines
1.2 KiB
C++
Raw Normal View History

2018-03-13 22:49:08 +00:00
#include "navigator.hpp"
#include "debug.hpp"
#include "settingsutils.hpp"
namespace DetourNavigator
{
Navigator::Navigator(const Settings& settings)
: mSettings(settings)
, mNavMeshManager(mSettings)
{
}
void Navigator::addAgent(const osg::Vec3f& agentHalfExtents)
{
++mAgents[agentHalfExtents];
mNavMeshManager.addAgent(agentHalfExtents);
2018-03-13 22:49:08 +00:00
}
void Navigator::removeAgent(const osg::Vec3f& agentHalfExtents)
{
const auto it = mAgents.find(agentHalfExtents);
if (it == mAgents.end() || --it->second)
return;
mAgents.erase(it);
mNavMeshManager.reset(agentHalfExtents);
}
2018-04-02 21:04:19 +00:00
bool Navigator::addObject(std::size_t id, const btCollisionShape& shape, const btTransform& transform)
{
return mNavMeshManager.addObject(id, shape, transform);
}
2018-03-13 22:49:08 +00:00
bool Navigator::removeObject(std::size_t id)
{
return mNavMeshManager.removeObject(id);
}
void Navigator::update(const osg::Vec3f& playerPosition)
2018-03-13 22:49:08 +00:00
{
for (const auto& v : mAgents)
mNavMeshManager.update(playerPosition, v.first);
2018-03-13 22:49:08 +00:00
}
void Navigator::wait()
{
mNavMeshManager.wait();
}
}