1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
//! Pathfinding without needing to build a separate contraction hierarchy.

use std::collections::BTreeSet;

use anyhow::Result;
use petgraph::graphmap::DiGraphMap;

use geom::Duration;

use crate::pathfind::walking::{one_step_walking_path, walking_path_to_steps, WalkingNode};
use crate::pathfind::{vehicle_cost, zone_cost};
use crate::{
    DirectedRoadID, Map, MovementID, PathConstraints, PathRequest, PathV2, RoadID, RoutingParams,
    Traversable,
};

// TODO These should maybe keep the DiGraphMaps as state. It's cheap to recalculate it for edits.

pub fn pathfind(req: PathRequest, params: &RoutingParams, map: &Map) -> Option<PathV2> {
    if req.constraints == PathConstraints::Pedestrian {
        pathfind_walking(req, map)
    } else {
        let graph = build_graph_for_vehicles(map, req.constraints);
        calc_path(graph, req, params, map)
    }
}

pub fn build_graph_for_vehicles(
    map: &Map,
    constraints: PathConstraints,
) -> DiGraphMap<DirectedRoadID, MovementID> {
    let mut graph = DiGraphMap::new();
    for dr in map.all_directed_roads_for(constraints) {
        for mvmnt in map.get_movements_for(dr, constraints) {
            graph.add_edge(mvmnt.from, mvmnt.to, mvmnt);
        }
    }
    graph
}

pub fn pathfind_avoiding_roads(
    req: PathRequest,
    avoid: BTreeSet<RoadID>,
    map: &Map,
) -> Result<PathV2> {
    assert_eq!(req.constraints, PathConstraints::Car);
    let mut graph = DiGraphMap::new();
    for dr in map.all_directed_roads_for(req.constraints) {
        if avoid.contains(&dr.id) {
            continue;
        }
        for mvmnt in map.get_movements_for(dr, req.constraints) {
            graph.add_edge(mvmnt.from, mvmnt.to, mvmnt);
        }
    }

    calc_path(graph, req.clone(), map.routing_params(), map)
        .ok_or_else(|| anyhow!("No path for {} avoiding {} roads", req, avoid.len()))
}

fn calc_path(
    graph: DiGraphMap<DirectedRoadID, MovementID>,
    req: PathRequest,
    params: &RoutingParams,
    map: &Map,
) -> Option<PathV2> {
    let end = map.get_l(req.end.lane()).get_directed_parent();
    let (cost, steps) = petgraph::algo::astar(
        &graph,
        map.get_l(req.start.lane()).get_directed_parent(),
        |dr| dr == end,
        |(_, _, mvmnt)| {
            vehicle_cost(mvmnt.from, *mvmnt, req.constraints, params, map)
                + zone_cost(*mvmnt, req.constraints, map)
        },
        |_| Duration::ZERO,
    )?;
    // TODO No uber-turns yet
    Some(PathV2::from_roads(steps, req, cost, Vec::new(), map))
}

pub fn build_graph_for_pedestrians(map: &Map) -> DiGraphMap<WalkingNode, Duration> {
    let max_speed = Some(crate::MAX_WALKING_SPEED);
    let mut graph: DiGraphMap<WalkingNode, Duration> = DiGraphMap::new();
    for l in map.all_lanes().values() {
        if l.is_walkable() {
            let cost = l.length()
                / Traversable::Lane(l.id).max_speed_along(
                    max_speed,
                    PathConstraints::Pedestrian,
                    map,
                );
            let n1 = WalkingNode::SidewalkEndpoint(l.get_directed_parent(), true);
            let n2 = WalkingNode::SidewalkEndpoint(l.get_directed_parent(), false);
            graph.add_edge(n1, n2, cost);
            graph.add_edge(n2, n1, cost);

            for turn in map.get_turns_for(l.id, PathConstraints::Pedestrian) {
                graph.add_edge(
                    WalkingNode::SidewalkEndpoint(
                        l.get_directed_parent(),
                        l.dst_i == turn.id.parent,
                    ),
                    WalkingNode::SidewalkEndpoint(
                        map.get_l(turn.id.dst).get_directed_parent(),
                        map.get_l(turn.id.dst).dst_i == turn.id.parent,
                    ),
                    turn.geom.length()
                        / Traversable::Turn(turn.id).max_speed_along(
                            max_speed,
                            PathConstraints::Pedestrian,
                            map,
                        )
                        + zone_cost(turn.id.to_movement(map), PathConstraints::Pedestrian, map),
                );
            }
        }
    }
    graph
}

fn pathfind_walking(req: PathRequest, map: &Map) -> Option<PathV2> {
    if req.start.lane() == req.end.lane() {
        return Some(one_step_walking_path(req, map));
    }

    let graph = build_graph_for_pedestrians(map);

    let closest_start = WalkingNode::closest(req.start, map);
    let closest_end = WalkingNode::closest(req.end, map);
    let (cost, nodes) = petgraph::algo::astar(
        &graph,
        closest_start,
        |end| end == closest_end,
        |(_, _, cost)| *cost,
        |_| Duration::ZERO,
    )?;
    let steps = walking_path_to_steps(nodes, map);
    Some(PathV2::new(steps, req, cost, Vec::new()))
}