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
use std::fmt;
use serde::{Deserialize, Serialize};
use abstutil::{deserialize_usize, serialize_usize};
use geom::{Angle, Line, PolyLine, Polygon, Pt2D};
use crate::{osm, Position};
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq, PartialOrd, Ord, Serialize, Deserialize)]
pub struct ParkingLotID(
#[serde(
serialize_with = "serialize_usize",
deserialize_with = "deserialize_usize"
)]
pub usize,
);
impl fmt::Display for ParkingLotID {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Parking lot #{}", self.0)
}
}
#[derive(Serialize, Deserialize)]
pub struct ParkingLot {
pub id: ParkingLotID,
pub polygon: Polygon,
pub aisles: Vec<Vec<Pt2D>>,
pub osm_id: osm::OsmID,
pub spots: Vec<(Pt2D, Angle)>,
pub extra_spots: usize,
pub driveway_line: PolyLine,
pub driving_pos: Position,
pub sidewalk_line: Line,
pub sidewalk_pos: Position,
}
impl ParkingLot {
pub fn capacity(&self) -> usize {
self.spots.len() + self.extra_spots
}
}