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
use std::fmt;
use serde::{Deserialize, Serialize};
use abstutil::{deserialize_usize, serialize_usize};
use geom::Time;
use crate::{osm, LaneID, Map, PathConstraints, PathRequest, Position};
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
pub struct BusStopID {
pub sidewalk: LaneID,
pub(crate) idx: usize,
}
impl fmt::Display for BusStopID {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "BusStopID({0}, {1})", self.sidewalk, self.idx)
}
}
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq, PartialOrd, Ord, Serialize, Deserialize)]
pub struct BusRouteID(
#[serde(
serialize_with = "serialize_usize",
deserialize_with = "deserialize_usize"
)]
pub usize,
);
impl fmt::Display for BusRouteID {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "BusRoute #{}", self.0)
}
}
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub struct BusStop {
pub id: BusStopID,
pub name: String,
pub driving_pos: Position,
pub sidewalk_pos: Position,
pub is_train_stop: bool,
}
#[derive(Serialize, Deserialize, Debug)]
pub struct BusRoute {
pub id: BusRouteID,
pub full_name: String,
pub short_name: String,
pub gtfs_trip_marker: Option<String>,
pub osm_rel_id: osm::RelationID,
pub stops: Vec<BusStopID>,
pub start: LaneID,
pub end_border: Option<LaneID>,
pub route_type: PathConstraints,
pub spawn_times: Vec<Time>,
pub orig_spawn_times: Vec<Time>,
}
impl BusRoute {
pub fn all_steps(&self, map: &Map) -> Vec<PathRequest> {
let mut steps = vec![PathRequest {
start: Position::start(self.start),
end: map.get_bs(self.stops[0]).driving_pos,
constraints: self.route_type,
}];
for pair in self.stops.windows(2) {
steps.push(PathRequest {
start: map.get_bs(pair[0]).driving_pos,
end: map.get_bs(pair[1]).driving_pos,
constraints: self.route_type,
});
}
if let Some(end) = self.end_border {
steps.push(PathRequest {
start: map.get_bs(*self.stops.last().unwrap()).driving_pos,
end: Position::end(end, map),
constraints: self.route_type,
});
}
steps
}
pub fn plural_noun(&self) -> &'static str {
if self.route_type == PathConstraints::Bus {
"buses"
} else {
"trains"
}
}
}