forked from organicmaps/organicmaps
Generating segments for bicycle routing.
This commit is contained in:
parent
37ec235f89
commit
c759e9bf87
3 changed files with 7 additions and 6 deletions
|
@ -146,7 +146,7 @@ namespace routing
|
|||
BicycleDirectionsEngine::BicycleDirectionsEngine(Index const & index,
|
||||
std::shared_ptr<NumMwmIds> numMwmIds,
|
||||
bool generateTrafficSegs)
|
||||
: m_index(index), m_numMwmIds(numMwmIds), m_generateTrafficSegs(generateTrafficSegs)
|
||||
: m_index(index), m_numMwmIds(numMwmIds)
|
||||
{
|
||||
CHECK(m_numMwmIds, ());
|
||||
}
|
||||
|
@ -353,7 +353,9 @@ void BicycleDirectionsEngine::FillPathSegmentsAndAdjacentEdgesMap(
|
|||
startSegId = inSegId;
|
||||
|
||||
prevJunctions.push_back(prevJunction);
|
||||
if (m_generateTrafficSegs && !inEdge.IsFake())
|
||||
if (inEdge.IsFake())
|
||||
prevSegments.push_back(Segment()); // Fake segment
|
||||
else
|
||||
prevSegments.push_back(GetSegment(inFeatureId, inSegId, inIsForward));
|
||||
|
||||
if (!IsJoint(ingoingEdges, outgoingEdges, inEdge, routeEdges[i], isCurrJunctionFinish,
|
||||
|
@ -385,7 +387,7 @@ void BicycleDirectionsEngine::FillPathSegmentsAndAdjacentEdgesMap(
|
|||
// It leads to preventing pushing item to |prevSegments|. So if there's no enough items in |prevSegments|
|
||||
// |pathSegment.m_trafficSegs| should be empty.
|
||||
// Note. For the time being BicycleDirectionsEngine is used for turn generation for bicycle and car routes.
|
||||
if (m_generateTrafficSegs && prevSegments.size() + 1 == prevJunctionSize)
|
||||
if (prevSegments.size() + 1 == prevJunctionSize)
|
||||
pathSegment.m_trafficSegs = std::move(prevSegments);
|
||||
|
||||
auto const it = m_adjacentEdges.insert(make_pair(uniNodeId, std::move(adjacentEdges)));
|
||||
|
|
|
@ -60,8 +60,5 @@ private:
|
|||
Index const & m_index;
|
||||
std::shared_ptr<NumMwmIds> m_numMwmIds;
|
||||
std::unique_ptr<Index::FeaturesLoaderGuard> m_loader;
|
||||
// If |m_generateTrafficSegs| is set to true |LoadedPathSegment::m_trafficSeg| is filled
|
||||
// and not otherwise.
|
||||
bool const m_generateTrafficSegs;
|
||||
};
|
||||
} // namespace routing
|
||||
|
|
|
@ -42,6 +42,8 @@ public:
|
|||
|
||||
RoadPoint GetRoadPoint(bool front) const { return RoadPoint(m_featureId, GetPointId(front)); }
|
||||
|
||||
bool IsValid() const { return m_mwmId == kFakeNumMwmId; }
|
||||
|
||||
bool operator<(Segment const & seg) const
|
||||
{
|
||||
if (m_featureId != seg.m_featureId)
|
||||
|
|
Loading…
Add table
Reference in a new issue