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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
use std::collections::HashSet;

use abstutil::prettyprint_usize;
use geom::{Circle, Distance, Duration, Percent, Pt2D, Tessellation, Time, UnitFmt};

use crate::{Color, EventCtx, GeomBatch, ScreenDims, TextExt, Toggle, Widget};

#[derive(Default)]
pub struct PlotOptions<X: Axis<X>, Y: Axis<Y>> {
    pub filterable: bool,
    pub max_x: Option<X>,
    pub max_y: Option<Y>,
    pub disabled: HashSet<String>,
    pub dims: Option<ScreenDims>,
}

impl<X: Axis<X>, Y: Axis<Y>> PlotOptions<X, Y> {
    pub fn filterable() -> PlotOptions<X, Y> {
        PlotOptions {
            filterable: true,
            ..Default::default()
        }
    }

    pub fn fixed() -> PlotOptions<X, Y> {
        PlotOptions {
            filterable: false,
            ..Default::default()
        }
    }
}

pub trait Axis<T>: 'static + Copy + std::cmp::Ord + Default {
    // percent is [0.0, 1.0]
    fn from_percent(&self, percent: f64) -> T;
    fn to_percent(self, max: T) -> f64;
    fn prettyprint(self, unit_fmt: &UnitFmt) -> String;
    // For order of magnitude calculations
    fn to_f64(self) -> f64;
    fn from_f64(&self, x: f64) -> T;
    fn zero() -> T;
}

impl Axis<usize> for usize {
    fn from_percent(&self, percent: f64) -> usize {
        ((*self as f64) * percent) as usize
    }
    fn to_percent(self, max: usize) -> f64 {
        if max == 0 {
            0.0
        } else {
            (self as f64) / (max as f64)
        }
    }
    fn prettyprint(self, _: &UnitFmt) -> String {
        prettyprint_usize(self)
    }
    fn to_f64(self) -> f64 {
        self as f64
    }
    fn from_f64(&self, x: f64) -> usize {
        x as usize
    }
    fn zero() -> usize {
        0
    }
}

impl Axis<Duration> for Duration {
    fn from_percent(&self, percent: f64) -> Duration {
        *self * percent
    }
    fn to_percent(self, max: Duration) -> f64 {
        if max == Duration::ZERO {
            0.0
        } else {
            self / max
        }
    }
    fn prettyprint(self, _: &UnitFmt) -> String {
        self.to_string(&UnitFmt {
            metric: false,
            round_durations: true,
        })
    }
    fn to_f64(self) -> f64 {
        self.inner_seconds() as f64
    }
    fn from_f64(&self, x: f64) -> Duration {
        Duration::seconds(x as f64)
    }
    fn zero() -> Duration {
        Duration::ZERO
    }
}

impl Axis<Time> for Time {
    fn from_percent(&self, percent: f64) -> Time {
        self.percent_of(percent)
    }
    fn to_percent(self, max: Time) -> f64 {
        if max == Time::START_OF_DAY {
            0.0
        } else {
            self.to_percent(max)
        }
    }
    fn prettyprint(self, _: &UnitFmt) -> String {
        self.ampm_tostring()
    }
    fn to_f64(self) -> f64 {
        self.inner_seconds() as f64
    }
    fn from_f64(&self, x: f64) -> Time {
        Time::START_OF_DAY + Duration::seconds(x as f64)
    }
    fn zero() -> Time {
        Time::START_OF_DAY
    }
}

impl Axis<Distance> for Distance {
    fn from_percent(&self, percent: f64) -> Distance {
        *self * percent
    }
    fn to_percent(self, max: Distance) -> f64 {
        if max == Distance::ZERO {
            0.0
        } else {
            self / max
        }
    }
    fn prettyprint(self, unit_fmt: &UnitFmt) -> String {
        self.to_string(unit_fmt)
    }
    fn to_f64(self) -> f64 {
        self.inner_meters() as f64
    }
    fn from_f64(&self, x: f64) -> Distance {
        Distance::meters(x as f64)
    }
    fn zero() -> Distance {
        Distance::ZERO
    }
}

pub struct Series<X, Y> {
    pub label: String,
    pub color: Color,
    // Assume this is sorted by X.
    pub pts: Vec<(X, Y)>,
}

pub fn make_legend<X: Axis<X>, Y: Axis<Y>>(
    ctx: &EventCtx,
    series: &[Series<X, Y>],
    opts: &PlotOptions<X, Y>,
) -> Widget {
    let mut row = Vec::new();
    let mut seen = HashSet::new();
    for s in series {
        if seen.contains(&s.label) {
            continue;
        }
        seen.insert(s.label.clone());
        if opts.filterable {
            row.push(Toggle::colored_checkbox(
                ctx,
                &s.label,
                s.color,
                !opts.disabled.contains(&s.label),
            ));
        } else {
            let radius = 15.0;
            row.push(Widget::row(vec![
                GeomBatch::from(vec![(
                    s.color,
                    Circle::new(Pt2D::new(radius, radius), Distance::meters(radius)).to_polygon(),
                )])
                .into_widget(ctx),
                s.label.clone().text_widget(ctx),
            ]));
        }
    }
    match opts.dims {
        Some(ScreenDims { width, .. }) => Widget::custom_row(row).force_width(width),
        _ => Widget::custom_row(row).flex_wrap(ctx, Percent::int(24)),
    }
}

// TODO If this proves useful, lift to geom
pub fn thick_lineseries(pts: Vec<Pt2D>, width: Distance) -> Tessellation {
    use lyon::math::{point, Point};
    use lyon::path::Path;
    use lyon::tessellation::geometry_builder::{BuffersBuilder, Positions, VertexBuffers};
    use lyon::tessellation::{StrokeOptions, StrokeTessellator};

    let mut builder = Path::builder().with_svg();
    for (idx, pt) in pts.into_iter().enumerate() {
        let pt = point(pt.x() as f32, pt.y() as f32);
        if idx == 0 {
            builder.move_to(pt);
        } else {
            builder.line_to(pt);
        }
    }
    let path = builder.build();

    let mut geom: VertexBuffers<Point, u32> = VertexBuffers::new();
    let mut buffer = BuffersBuilder::new(&mut geom, Positions);
    StrokeTessellator::new()
        .tessellate(
            &path,
            &StrokeOptions::tolerance(0.01).with_line_width(width.inner_meters() as f32),
            &mut buffer,
        )
        .unwrap();
    Tessellation::new(
        geom.vertices
            .into_iter()
            .map(|v| Pt2D::new(f64::from(v.x), f64::from(v.y)))
            .collect(),
        geom.indices.into_iter().map(|idx| idx as usize).collect(),
    )
}