From cf62483dc641d8d3ce59386e211b2463c7a69039 Mon Sep 17 00:00:00 2001 From: Mikhail Gorbushin Date: Tue, 29 Jan 2019 12:11:15 +0300 Subject: [PATCH] [routing] save start and end point --- routing/index_graph_starter.hpp | 5 +++++ routing/index_graph_starter_joints.cpp | 10 +++++++++- routing/index_graph_starter_joints.hpp | 3 +++ routing/single_vehicle_world_graph.cpp | 6 ++++++ routing/single_vehicle_world_graph.hpp | 1 + routing/transit_world_graph.cpp | 5 +++++ routing/transit_world_graph.hpp | 1 + routing/world_graph.hpp | 1 + 8 files changed, 31 insertions(+), 1 deletion(-) diff --git a/routing/index_graph_starter.hpp b/routing/index_graph_starter.hpp index da4fcf3520..a3fd11df14 100644 --- a/routing/index_graph_starter.hpp +++ b/routing/index_graph_starter.hpp @@ -100,6 +100,11 @@ public: GetPoint(to, true /* front */)); } + RouteWeight HeuristicCostEstimate(Vertex const & from, m2::PointD const & to) const + { + return m_graph.HeuristicCostEstimate(GetPoint(from, true /* front */), to); + } + RouteWeight CalcSegmentWeight(Segment const & segment) const; double CalcSegmentETA(Segment const & segment) const; diff --git a/routing/index_graph_starter_joints.cpp b/routing/index_graph_starter_joints.cpp index 8cfe5d2ec3..4c1db67525 100644 --- a/routing/index_graph_starter_joints.cpp +++ b/routing/index_graph_starter_joints.cpp @@ -1,5 +1,7 @@ #include "routing/index_graph_starter_joints.hpp" +#include "base/assert.hpp" + #include #include @@ -18,6 +20,9 @@ void IndexGraphStarterJoints::Init(Segment const & startSegment, Segment const & m_startSegment = startSegment; m_endSegment = endSegment; + m_startPoint = m_starter.GetPoint(m_startSegment, true /* front */); + m_endPoint = m_starter.GetPoint(m_endSegment, true /* front */); + CHECK(m_starter.GetGraph().GetMode() == WorldGraph::Mode::Joints || m_starter.GetGraph().GetMode() == WorldGraph::Mode::JointSingleMwm, ()); @@ -59,7 +64,10 @@ RouteWeight IndexGraphStarterJoints::HeuristicCostEstimate(JointSegment const & else fromSegment = from.GetSegment(false /* start */); - return m_starter.HeuristicCostEstimate(fromSegment, toSegment); + ASSERT(toSegment == m_startSegment || toSegment == m_endSegment, ("Invariant violated.")); + + return toSegment == m_startSegment ? m_starter.HeuristicCostEstimate(fromSegment, m_startPoint) + : m_starter.HeuristicCostEstimate(fromSegment, m_endPoint); } m2::PointD const & IndexGraphStarterJoints::GetPoint(JointSegment const & jointSegment, bool start) diff --git a/routing/index_graph_starter_joints.hpp b/routing/index_graph_starter_joints.hpp index de3af49cd2..3ea231481b 100644 --- a/routing/index_graph_starter_joints.hpp +++ b/routing/index_graph_starter_joints.hpp @@ -97,6 +97,9 @@ private: Segment m_startSegment; Segment m_endSegment; + m2::PointD m_startPoint; + m2::PointD m_endPoint; + // See comments in |GetEdgeList()| about |m_savedWeight|. std::map m_savedWeight; diff --git a/routing/single_vehicle_world_graph.cpp b/routing/single_vehicle_world_graph.cpp index 12a75fe44c..61f2996927 100644 --- a/routing/single_vehicle_world_graph.cpp +++ b/routing/single_vehicle_world_graph.cpp @@ -130,6 +130,12 @@ RouteWeight SingleVehicleWorldGraph::HeuristicCostEstimate(Segment const & from, return HeuristicCostEstimate(GetPoint(from, true /* front */), GetPoint(to, true /* front */)); } + +RouteWeight SingleVehicleWorldGraph::HeuristicCostEstimate(Segment const & from, m2::PointD const & to) +{ + return HeuristicCostEstimate(GetPoint(from, true /* front */), to); +} + RouteWeight SingleVehicleWorldGraph::HeuristicCostEstimate(m2::PointD const & from, m2::PointD const & to) { diff --git a/routing/single_vehicle_world_graph.hpp b/routing/single_vehicle_world_graph.hpp index 3d4700cdfb..03e25a93d5 100644 --- a/routing/single_vehicle_world_graph.hpp +++ b/routing/single_vehicle_world_graph.hpp @@ -49,6 +49,7 @@ public: void GetIngoingEdgesList(Segment const & segment, std::vector & edges) override; RouteWeight HeuristicCostEstimate(Segment const & from, Segment const & to) override; RouteWeight HeuristicCostEstimate(m2::PointD const & from, m2::PointD const & to) override; + RouteWeight HeuristicCostEstimate(Segment const & from, m2::PointD const & to) override; RouteWeight CalcSegmentWeight(Segment const & segment) override; RouteWeight CalcLeapWeight(m2::PointD const & from, m2::PointD const & to) const override; RouteWeight CalcOffroadWeight(m2::PointD const & from, m2::PointD const & to) const override; diff --git a/routing/transit_world_graph.cpp b/routing/transit_world_graph.cpp index 464bb4e1c0..9ca2a88077 100644 --- a/routing/transit_world_graph.cpp +++ b/routing/transit_world_graph.cpp @@ -122,6 +122,11 @@ RouteWeight TransitWorldGraph::HeuristicCostEstimate(Segment const & from, Segme return HeuristicCostEstimate(GetPoint(from, true /* front */), GetPoint(to, true /* front */)); } +RouteWeight TransitWorldGraph::HeuristicCostEstimate(Segment const & from, m2::PointD const & to) +{ + return HeuristicCostEstimate(GetPoint(from, true /* front */), to); +} + RouteWeight TransitWorldGraph::HeuristicCostEstimate(m2::PointD const & from, m2::PointD const & to) { return RouteWeight(m_estimator->CalcHeuristic(from, to)); diff --git a/routing/transit_world_graph.hpp b/routing/transit_world_graph.hpp index 22864bcb97..01621cd5a9 100644 --- a/routing/transit_world_graph.hpp +++ b/routing/transit_world_graph.hpp @@ -54,6 +54,7 @@ public: void GetIngoingEdgesList(Segment const & segment, std::vector & edges) override; RouteWeight HeuristicCostEstimate(Segment const & from, Segment const & to) override; RouteWeight HeuristicCostEstimate(m2::PointD const & from, m2::PointD const & to) override; + RouteWeight HeuristicCostEstimate(Segment const & from, m2::PointD const & to) override; RouteWeight CalcSegmentWeight(Segment const & segment) override; RouteWeight CalcLeapWeight(m2::PointD const & from, m2::PointD const & to) const override; RouteWeight CalcOffroadWeight(m2::PointD const & from, m2::PointD const & to) const override; diff --git a/routing/world_graph.hpp b/routing/world_graph.hpp index f618a58659..f8e5df06db 100644 --- a/routing/world_graph.hpp +++ b/routing/world_graph.hpp @@ -67,6 +67,7 @@ public: virtual RouteWeight HeuristicCostEstimate(Segment const & from, Segment const & to) = 0; virtual RouteWeight HeuristicCostEstimate(m2::PointD const & from, m2::PointD const & to) = 0; + virtual RouteWeight HeuristicCostEstimate(Segment const & from, m2::PointD const & to) = 0; virtual RouteWeight CalcSegmentWeight(Segment const & segment) = 0; virtual RouteWeight CalcLeapWeight(m2::PointD const & from, m2::PointD const & to) const = 0; virtual RouteWeight CalcOffroadWeight(m2::PointD const & from, m2::PointD const & to) const = 0;