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.
42 lines
1.0 KiB
C++
42 lines
1.0 KiB
C++
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_OFFMESHCONNECTIONSMANAGER_H
|
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_OFFMESHCONNECTIONSMANAGER_H
|
|
|
|
#include "objectid.hpp"
|
|
#include "offmeshconnection.hpp"
|
|
#include "settings.hpp"
|
|
#include "tileposition.hpp"
|
|
|
|
#include <components/misc/guarded.hpp>
|
|
|
|
#include <map>
|
|
#include <set>
|
|
#include <unordered_set>
|
|
#include <vector>
|
|
|
|
namespace DetourNavigator
|
|
{
|
|
class OffMeshConnectionsManager
|
|
{
|
|
public:
|
|
explicit OffMeshConnectionsManager(const RecastSettings& settings);
|
|
|
|
void add(const ObjectId id, const OffMeshConnection& value);
|
|
|
|
std::set<TilePosition> remove(const ObjectId id);
|
|
|
|
std::vector<OffMeshConnection> get(const TilePosition& tilePosition) const;
|
|
|
|
private:
|
|
struct Values
|
|
{
|
|
std::multimap<ObjectId, OffMeshConnection> mById;
|
|
std::map<TilePosition, std::unordered_set<ObjectId>> mByTilePosition;
|
|
};
|
|
|
|
const RecastSettings& mSettings;
|
|
Misc::ScopeGuarded<Values> mValues;
|
|
};
|
|
}
|
|
|
|
#endif
|