From 2a26b0ffb4d67565f289910eed1d62de35cee8e6 Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Tue, 7 Sep 2021 15:50:04 +0300 Subject: [PATCH] [routing] Fixed bug with pedestrian/bicycle routing on motorcar-allowed ferry. Signed-off-by: Viktor Govako --- data/classificator.txt | 5 +- data/drules_proto.bin | Bin 208827 -> 207596 bytes data/drules_proto.txt | 404 ------------------ data/drules_proto_clear.bin | Bin 209569 -> 208338 bytes data/drules_proto_clear.txt | 404 ------------------ data/drules_proto_dark.bin | Bin 208339 -> 207128 bytes data/drules_proto_dark.txt | 404 ------------------ data/mapcss-mapping.csv | 4 +- data/types.txt | 4 +- data/visibility.txt | 5 +- generator/generator_tests/osm_type_test.cpp | 75 ++-- generator/osm2type.cpp | 35 +- routing/routing_options.cpp | 2 - routing/single_vehicle_world_graph.cpp | 1 + routing_common/car_model.cpp | 4 +- routing_common/car_model_coefs.hpp | 6 +- .../vehicle_model_test.cpp | 4 +- routing_common/vehicle_model.cpp | 21 +- routing_common/vehicle_model.hpp | 4 +- 19 files changed, 106 insertions(+), 1276 deletions(-) diff --git a/data/classificator.txt b/data/classificator.txt index 877750f5ac..7f1dadda52 100644 --- a/data/classificator.txt +++ b/data/classificator.txt @@ -832,10 +832,7 @@ world + toxic - {} route + - ferry + - motor_vehicle - - motorcar - - {} + ferry - shuttle_train - {} shop + diff --git a/data/drules_proto.bin b/data/drules_proto.bin index 9e661d9cccd27f69fde178fc674f1ce182c8f3d5..61bd582a400e9498e038943ad50c05d57b1c0bec 100644 GIT binary patch delta 19 bcmdmepXbe0o`x32Elg_`Y_DF*Q delta 80 zcmaEJm1p;To`x32Elg_`$UbM`k}S$EElJf)OD!s@)XmK=$uEj8OU=kk&Pm-KKaa_m TN#YR;mk5TMgMK`gMK`(Type::Count)); for (auto const & kv : kTypeToName) @@ -285,7 +288,15 @@ public: return t == Get(Type::Highway); } - bool IsRailwayStation(uint32_t t) const { return t == Get(Type::RailwayStation); } + bool IsFerry(uint32_t t) const + { + return t == Get(Type::Ferry); + } + + bool IsRailwayStation(uint32_t t) const + { + return t == Get(Type::RailwayStation); + } bool IsSubwayStation(uint32_t t) const { @@ -725,12 +736,15 @@ void PostprocessElement(OsmElement * p, FeatureBuilderParams & params) bool highwayDone = false; bool subwayDone = false; bool railwayDone = false; + bool ferryDone = false; bool addOneway = false; bool noOneway = false; + bool yesMotorFerry = false; // Get a copy of source types, because we will modify params in the loop; FeatureBuilderParams::Types const vTypes = params.m_types; + for (size_t i = 0; i < vTypes.size(); ++i) { if (!highwayDone && types.IsHighway(vTypes[i])) @@ -787,6 +801,23 @@ void PostprocessElement(OsmElement * p, FeatureBuilderParams & params) highwayDone = true; } + if (!ferryDone && types.IsFerry(vTypes[i])) + { + TagProcessor(p).ApplyRules({ + {"foot", "!", [¶ms] { params.AddType(types.Get(CachedTypes::Type::NoFoot)); }}, + {"foot", "~", [¶ms] { params.AddType(types.Get(CachedTypes::Type::YesFoot)); }}, + {"bicycle", "!", [¶ms] { params.AddType(types.Get(CachedTypes::Type::NoBicycle)); }}, + {"bicycle", "~", [¶ms] { params.AddType(types.Get(CachedTypes::Type::YesBicycle)); }}, + {"motor_vehicle", "yes", [&yesMotorFerry] { yesMotorFerry = true; }}, + {"motorcar", "yes", [&yesMotorFerry] { yesMotorFerry = true; }}, + }); + + // For car routing 'motorcar' tag should be explicitly defined. + params.AddType(types.Get(yesMotorFerry ? CachedTypes::Type::YesCar : CachedTypes::Type::NoCar)); + + ferryDone = true; + } + /// @todo Probably, we can delete this processing because cities /// are matched by limit rect in MatchCity. if (!subwayDone && types.IsSubwayStation(vTypes[i])) diff --git a/routing/routing_options.cpp b/routing/routing_options.cpp index f709b23530..34c9429c52 100644 --- a/routing/routing_options.cpp +++ b/routing/routing_options.cpp @@ -67,8 +67,6 @@ RoutingOptionsClassifier::RoutingOptionsClassifier() {{"hwtag", "toll"}, RoutingOptions::Road::Toll}, {{"route", "ferry"}, RoutingOptions::Road::Ferry}, - {{"route", "ferry", "motorcar"}, RoutingOptions::Road::Ferry}, - {{"route", "ferry", "motor_vehicle"}, RoutingOptions::Road::Ferry}, {{"highway", "track"}, RoutingOptions::Road::Dirty}, {{"highway", "road"}, RoutingOptions::Road::Dirty}, diff --git a/routing/single_vehicle_world_graph.cpp b/routing/single_vehicle_world_graph.cpp index 8f19845653..c88ab2de68 100644 --- a/routing/single_vehicle_world_graph.cpp +++ b/routing/single_vehicle_world_graph.cpp @@ -120,6 +120,7 @@ void SingleVehicleWorldGraph::GetEdgeList( auto & indexGraph = GetIndexGraph(parent.GetMwmId()); indexGraph.GetEdgeList(parentVertexData, parent, isOutgoing, jointEdges, parentWeights, parents); + // Comment this call to debug routing on single generated mwm. if (m_mode != WorldGraphMode::JointSingleMwm) CheckAndProcessTransitFeatures(parent, jointEdges, parentWeights, isOutgoing); } diff --git a/routing_common/car_model.cpp b/routing_common/car_model.cpp index 72868262b8..8d405fa49a 100644 --- a/routing_common/car_model.cpp +++ b/routing_common/car_model.cpp @@ -129,11 +129,9 @@ VehicleModel::LimitsInitList const kCarOptionsGermany = { vector const kAdditionalTags = { // {{highway tags}, {weightSpeed, etaSpeed}} - {{"route", "ferry", "motorcar"}, kHighwayBasedSpeeds.at(HighwayType::RouteFerryMotorcar)}, - {{"route", "ferry", "motor_vehicle"}, kHighwayBasedSpeeds.at(HighwayType::RouteFerryMotorVehicle)}, {{"railway", "rail", "motor_vehicle"}, kHighwayBasedSpeeds.at(HighwayType::RailwayRailMotorVehicle)}, {{"route", "shuttle_train"}, kHighwayBasedSpeeds.at(HighwayType::RouteShuttleTrain)}, - {{"route", "ferry"}, kHighwayBasedSpeeds.at(HighwayType::RouteFerryMotorcar)}, + {{"route", "ferry"}, kHighwayBasedSpeeds.at(HighwayType::RouteFerry)}, {{"man_made", "pier"}, kHighwayBasedSpeeds.at(HighwayType::ManMadePier)}}; VehicleModel::SurfaceInitList const kCarSurface = { diff --git a/routing_common/car_model_coefs.hpp b/routing_common/car_model_coefs.hpp index 1619b657db..8562232246 100644 --- a/routing_common/car_model_coefs.hpp +++ b/routing_common/car_model_coefs.hpp @@ -32,8 +32,7 @@ HighwayBasedFactors const kHighwayBasedFactors = { {HighwayType::HighwayUnclassified, InOutCityFactor(0.80)}, {HighwayType::ManMadePier, InOutCityFactor(0.90)}, {HighwayType::RailwayRailMotorVehicle, InOutCityFactor(0.90)}, - {HighwayType::RouteFerryMotorcar, InOutCityFactor(0.90)}, - {HighwayType::RouteFerryMotorVehicle, InOutCityFactor(0.90)}, + {HighwayType::RouteFerry, InOutCityFactor(0.90)}, {HighwayType::RouteShuttleTrain, InOutCityFactor(0.90)}, }; @@ -57,8 +56,7 @@ HighwayBasedSpeeds const kHighwayBasedSpeeds = { {HighwayType::HighwayUnclassified, InOutCitySpeedKMpH({30.00, 30.00} /* in city */, {40.00, 40.00} /* out city */)}, {HighwayType::ManMadePier, InOutCitySpeedKMpH({17.00, 10.00} /* in city */, {17.00, 10.00} /* out city */)}, {HighwayType::RailwayRailMotorVehicle, InOutCitySpeedKMpH({10.00, 10.00} /* in city */, {10.00, 10.00} /* out city */)}, - {HighwayType::RouteFerryMotorcar, InOutCitySpeedKMpH({10.00, 10.00} /* in city */, {10.00, 10.00} /* out city */)}, - {HighwayType::RouteFerryMotorVehicle, InOutCitySpeedKMpH({10.00, 10.00} /* in city */, {10.00, 10.00} /* out city */)}, + {HighwayType::RouteFerry, InOutCitySpeedKMpH({10.00, 10.00} /* in city */, {10.00, 10.00} /* out city */)}, {HighwayType::RouteShuttleTrain, InOutCitySpeedKMpH({25.00, 25.00} /* in city */, {25.00, 25.00} /* out city */)}, }; } // namespace routing diff --git a/routing_common/routing_common_tests/vehicle_model_test.cpp b/routing_common/routing_common_tests/vehicle_model_test.cpp index 66be591616..c637e01601 100644 --- a/routing_common/routing_common_tests/vehicle_model_test.cpp +++ b/routing_common/routing_common_tests/vehicle_model_test.cpp @@ -274,8 +274,8 @@ UNIT_TEST(VehicleModel_CarModelValidation) HighwayType::HighwayTrack, HighwayType::HighwayTrunk, HighwayType::HighwayTrunkLink, HighwayType::HighwayUnclassified, HighwayType::ManMadePier, HighwayType::RailwayRailMotorVehicle, - HighwayType::RouteFerryMotorcar, HighwayType::RouteFerryMotorVehicle, - HighwayType::RouteShuttleTrain}; + HighwayType::RouteFerry, HighwayType::RouteShuttleTrain, + }; for (auto const hwType : carRoadTypes) { diff --git a/routing_common/vehicle_model.cpp b/routing_common/vehicle_model.cpp index 21b696bb92..56579aadf9 100644 --- a/routing_common/vehicle_model.cpp +++ b/routing_common/vehicle_model.cpp @@ -94,6 +94,11 @@ void VehicleModel::SetAdditionalRoadTypes(Classificator const & c, } } +uint32_t VehicleModel::PrepareToMatchType(uint32_t type) +{ + return ftypes::BaseChecker::PrepareToMatch(type, 2); +} + SpeedKMpH VehicleModel::GetSpeed(FeatureType & f, SpeedParams const & speedParams) const { feature::TypesHolder const types(f); @@ -130,8 +135,7 @@ double VehicleModel::GetMaxWeightSpeed() const optional VehicleModel::GetHighwayType(uint32_t type) const { optional hwType; - type = ftypes::BaseChecker::PrepareToMatch(type, 2); - auto const it = m_roadTypes.find(type); + auto const it = m_roadTypes.find(PrepareToMatchType(type)); if (it != m_roadTypes.cend()) hwType = it->second.GetHighwayType(); @@ -287,8 +291,7 @@ bool VehicleModel::HasPassThroughType(feature::TypesHolder const & types) const { for (uint32_t t : types) { - uint32_t const type = ftypes::BaseChecker::PrepareToMatch(t, 2); - auto it = m_roadTypes.find(type); + auto it = m_roadTypes.find(PrepareToMatchType(t)); if (it != m_roadTypes.end() && it->second.IsPassThroughAllowed()) return true; } @@ -299,7 +302,7 @@ bool VehicleModel::HasPassThroughType(feature::TypesHolder const & types) const bool VehicleModel::IsRoadType(uint32_t type) const { return FindAdditionalRoadType(type) != m_addRoadTypes.cend() || - m_roadTypes.find(ftypes::BaseChecker::PrepareToMatch(type, 2)) != m_roadTypes.end(); + m_roadTypes.find(PrepareToMatchType(type)) != m_roadTypes.end(); } VehicleModelInterface::RoadAvailability VehicleModel::GetRoadAvailability(feature::TypesHolder const & /* types */) const @@ -307,11 +310,11 @@ VehicleModelInterface::RoadAvailability VehicleModel::GetRoadAvailability(featur return RoadAvailability::Unknown; } -vector::const_iterator VehicleModel::FindAdditionalRoadType( - uint32_t type) const +vector::const_iterator +VehicleModel::FindAdditionalRoadType(uint32_t type) const { return find_if(m_addRoadTypes.begin(), m_addRoadTypes.cend(), - [&type](AdditionalRoadType const & t) { return t.m_type == type; }); + [type](AdditionalRoadType const & t) { return t.m_type == type; }); } VehicleModelFactory::VehicleModelFactory( @@ -455,8 +458,6 @@ string DebugPrint(HighwayType type) case HighwayType::HighwaySecondaryLink: return "highway-secondary_link"; case HighwayType::RouteFerry: return "route-ferry"; case HighwayType::HighwayTertiaryLink: return "highway-tertiary_link"; - case HighwayType::RouteFerryMotorcar: return "route-ferry-motorcar"; - case HighwayType::RouteFerryMotorVehicle: return "route-ferry-motor_vehicle"; case HighwayType::RailwayRailMotorVehicle: return "railway-rail-motor_vehicle"; case HighwayType::RouteShuttleTrain: return "route-shuttle_train"; } diff --git a/routing_common/vehicle_model.hpp b/routing_common/vehicle_model.hpp index c37e102e4a..796fee8bf2 100644 --- a/routing_common/vehicle_model.hpp +++ b/routing_common/vehicle_model.hpp @@ -57,8 +57,6 @@ enum class HighwayType : uint32_t HighwaySecondaryLink = 176, RouteFerry = 259, HighwayTertiaryLink = 272, - RouteFerryMotorcar = 988, - RouteFerryMotorVehicle = 993, RailwayRailMotorVehicle = 994, RouteShuttleTrain = 1054, }; @@ -323,6 +321,8 @@ protected: void SetAdditionalRoadTypes(Classificator const & c, std::vector const & additionalTags); + static uint32_t PrepareToMatchType(uint32_t type); + /// \returns true if |types| is a oneway feature. /// \note According to OSM, tag "oneway" could have value "-1". That means it's a oneway feature /// with reversed geometry. In that case at map generation the geometry of such features