Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 13:58:55 +01:00
parent 4af19165ec
commit 68073add76
12458 changed files with 12350765 additions and 2 deletions

View file

@ -0,0 +1,37 @@
#pragma once
#include "routing/index_graph.hpp"
#include "routing/restrictions_serialization.hpp"
#include "coding/files_container.hpp"
#include <memory>
#include <string>
class MwmValue;
namespace routing
{
class RestrictionLoader
{
public:
explicit RestrictionLoader(MwmValue const & mwmValue, IndexGraph & graph);
bool HasRestrictions() const;
RestrictionVec && StealRestrictions();
std::vector<RestrictionUTurn> && StealNoUTurnRestrictions();
private:
std::unique_ptr<FilesContainerR::TReader> m_reader;
RestrictionHeader m_header;
RestrictionVec m_restrictions;
std::vector<RestrictionUTurn> m_noUTurnRestrictions;
std::string const m_countryFileName;
};
void ConvertRestrictionsOnlyToNo(IndexGraph const & graph, RestrictionVec const & restrictionsOnly,
RestrictionVec & restrictionsNo);
void ConvertRestrictionsOnlyUTurnToNo(IndexGraph & graph, std::vector<RestrictionUTurn> const & restrictionsOnlyUTurn,
RestrictionVec & restrictionsNo);
} // namespace routing