ltn/
app.rs

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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
use abstio::MapName;
use abstutil::Timer;
use geom::{Duration, Pt2D, Time};
use map_gui::colors::ColorScheme;
use map_gui::load::MapLoader;
use map_gui::options::Options;
use map_gui::render::{DrawMap, DrawOptions};
use map_gui::tools::CameraState;
use map_gui::tools::DrawSimpleRoadLabels;
use map_gui::{AppLike, ID};
use map_model::{osm, CrossingType, FilterType, IntersectionID, Map, MapEdits, RoutingParams};
use widgetry::tools::URLManager;
use widgetry::{Canvas, Drawable, EventCtx, GfxCtx, SharedAppState, State, Warper};

use crate::logic::Partitioning;
use crate::{logic, pages, render, NeighbourhoodID};

pub type Transition = widgetry::Transition<App>;

pub struct App {
    pub per_map: PerMap,
    pub cs: ColorScheme,
    pub opts: Options,

    pub session: Session,
}

pub struct PerMap {
    pub map: Map,
    pub draw_map: DrawMap,

    // The last edited neighbourhood
    pub current_neighbourhood: Option<NeighbourhoodID>,

    // These capture modal filters that exist in the map already. Whenever we pathfind in this app
    // in the "before changes" case, we have to use these. Do NOT use the map's built-in
    // pathfinder. (https://github.com/a-b-street/abstreet/issues/852 would make this more clear)
    pub routing_params_before_changes: RoutingParams,
    pub proposals: crate::save::Proposals,
    pub impact: logic::Impact,

    pub consultation: Option<NeighbourhoodID>,
    pub consultation_id: Option<String>,

    pub draw_all_filters: render::Toggle3Zoomed,
    pub draw_major_road_labels: DrawSimpleRoadLabels,
    pub draw_all_local_road_labels: Option<DrawSimpleRoadLabels>,
    pub draw_poi_icons: Drawable,
    pub draw_bus_routes: Drawable,
    pub draw_turn_restrictions: Drawable,

    pub current_trip_name: Option<String>,
}

impl PerMap {
    fn new(
        ctx: &mut EventCtx,
        mut map: Map,
        opts: &Options,
        cs: &ColorScheme,
        timer: &mut Timer,
    ) -> Self {
        // Do this before creating the default partitioning. Non-driveable roads in OSM get turned
        // into driveable roads and a filter here, and we want the partitioning to "see" those
        // roads.
        logic::transform_existing(&mut map, timer);
        let proposals = crate::save::Proposals::new(&map, timer);

        let routing_params_before_changes = map.routing_params_respecting_modal_filters();

        let draw_all_filters = render::render_modal_filters(ctx, &map);

        // Create DrawMap after transform_existing_filters, which modifies road widths
        let draw_map = DrawMap::new(ctx, &map, opts, cs, timer);
        let draw_poi_icons = render::render_poi_icons(ctx, &map);
        let draw_bus_routes = render::render_bus_routes(ctx, &map);
        let draw_turn_restrictions = render::render_turn_restrictions(ctx, &map);

        let per_map = Self {
            map,
            draw_map,

            current_neighbourhood: None,

            routing_params_before_changes,
            proposals,
            impact: logic::Impact::empty(ctx),

            consultation: None,
            consultation_id: None,

            draw_all_filters,
            draw_major_road_labels: DrawSimpleRoadLabels::empty(ctx),
            draw_all_local_road_labels: None,
            draw_poi_icons,
            draw_bus_routes,
            draw_turn_restrictions,

            current_trip_name: None,
        };

        if !CameraState::load(ctx, per_map.map.get_name()) {
            // If we didn't restore a previous camera position, start zoomed out, centered on the
            // map's center.
            ctx.canvas.cam_zoom = ctx.canvas.min_zoom();
            ctx.canvas
                .center_on_map_pt(per_map.map.get_boundary_polygon().center());
        }
        per_map
    }
}

pub struct Session {
    pub edit_mode: pages::EditMode,
    pub filter_type: FilterType,
    pub crossing_type: CrossingType,

    // Remember form settings in different tabs.
    // Pick areas:
    pub draw_neighbourhood_style: pages::PickAreaStyle,
    // Plan a route:
    pub main_road_penalty: f64,
    pub show_walking_cycling_routes: bool,
    // Select boundary:
    pub add_intermediate_blocks: bool,

    // Shared in all modes
    pub layers: crate::components::Layers,
    pub manage_proposals: bool,
}

impl AppLike for App {
    #[inline]
    fn map(&self) -> &Map {
        &self.per_map.map
    }
    #[inline]
    fn cs(&self) -> &ColorScheme {
        &self.cs
    }
    #[inline]
    fn mut_cs(&mut self) -> &mut ColorScheme {
        &mut self.cs
    }
    #[inline]
    fn draw_map(&self) -> &DrawMap {
        &self.per_map.draw_map
    }
    #[inline]
    fn mut_draw_map(&mut self) -> &mut DrawMap {
        &mut self.per_map.draw_map
    }
    #[inline]
    fn opts(&self) -> &Options {
        &self.opts
    }
    #[inline]
    fn mut_opts(&mut self) -> &mut Options {
        &mut self.opts
    }

    fn map_switched(&mut self, ctx: &mut EventCtx, map: Map, timer: &mut Timer) {
        CameraState::save(ctx.canvas, self.per_map.map.get_name());
        self.per_map = PerMap::new(ctx, map, &self.opts, &self.cs, timer);
        self.per_map.draw_major_road_labels =
            DrawSimpleRoadLabels::only_major_roads(ctx, self, render::colors::MAIN_ROAD_LABEL);
        self.opts.units.metric = self.per_map.map.get_name().city.uses_metric();
    }

    fn draw_with_opts(&self, g: &mut GfxCtx, _l: DrawOptions) {
        self.draw_with_layering(g, |_| {});
    }
    fn make_warper(
        &mut self,
        ctx: &EventCtx,
        pt: Pt2D,
        target_cam_zoom: Option<f64>,
        _: Option<ID>,
    ) -> Box<dyn State<App>> {
        Box::new(SimpleWarper {
            warper: Warper::new(ctx, pt, target_cam_zoom),
        })
    }

    fn sim_time(&self) -> Time {
        Time::START_OF_DAY
    }

    fn current_stage_and_remaining_time(&self, _: IntersectionID) -> (usize, Duration) {
        (0, Duration::ZERO)
    }
}

impl SharedAppState for App {
    fn draw_default(&self, g: &mut GfxCtx) {
        self.draw_with_opts(g, DrawOptions::new());
    }

    fn dump_before_abort(&self, canvas: &Canvas) {
        CameraState::save(canvas, self.per_map.map.get_name());
    }

    fn before_quit(&self, canvas: &Canvas) {
        CameraState::save(canvas, self.per_map.map.get_name());
    }

    fn free_memory(&mut self) {
        self.per_map.draw_map.free_memory();
    }
}

impl App {
    pub fn new<F: 'static + Fn(&mut EventCtx, &mut App) -> Vec<Box<dyn State<App>>>>(
        ctx: &mut EventCtx,
        opts: Options,
        map_name: MapName,
        cam: Option<String>,
        init_states: F,
    ) -> (App, Vec<Box<dyn State<App>>>) {
        abstutil::logger::setup();
        ctx.canvas.settings = opts.canvas_settings.clone();

        let session = Session {
            edit_mode: pages::EditMode::Filters,
            filter_type: FilterType::WalkCycleOnly,
            crossing_type: CrossingType::Unsignalized,

            draw_neighbourhood_style: pages::PickAreaStyle::Simple,
            main_road_penalty: 1.0,
            show_walking_cycling_routes: false,
            add_intermediate_blocks: true,

            layers: crate::components::Layers::new(ctx),
            manage_proposals: false,
        };

        let cs = ColorScheme::new(ctx, opts.color_scheme);
        let app = App {
            // Start with a blank map
            per_map: PerMap::new(
                ctx,
                Map::almost_blank(),
                &opts,
                &cs,
                &mut Timer::throwaway(),
            ),
            cs,
            opts,
            session,
        };

        let states = vec![MapLoader::new_state(
            ctx,
            &app,
            map_name,
            Box::new(move |ctx, app| {
                URLManager::change_camera(ctx, cam.as_ref(), app.map().get_gps_bounds());
                Transition::Clear(init_states(ctx, app))
            }),
        )];
        (app, states)
    }

    /// Draw unzoomed, but after the water/park areas layer, draw something custom.
    pub fn draw_with_layering<F: Fn(&mut GfxCtx)>(&self, g: &mut GfxCtx, custom: F) {
        g.clear(self.cs.void_background);
        g.redraw(&self.per_map.draw_map.boundary_polygon);
        g.redraw(&self.per_map.draw_map.draw_all_areas);
        custom(g);
        g.redraw(&self.per_map.draw_map.draw_all_unzoomed_parking_lots);
        g.redraw(
            &self
                .per_map
                .draw_map
                .draw_all_unzoomed_roads_and_intersections,
        );
        g.redraw(&self.per_map.draw_map.draw_all_buildings);
        g.redraw(&self.per_map.draw_map.draw_all_building_outlines);
    }

    pub fn partitioning(&self) -> &Partitioning {
        &self.per_map.proposals.get_current().partitioning
    }

    pub fn calculate_draw_all_local_road_labels(&mut self, ctx: &mut EventCtx) {
        if self.per_map.draw_all_local_road_labels.is_none() {
            self.per_map.draw_all_local_road_labels = Some(DrawSimpleRoadLabels::new(
                ctx,
                self,
                render::colors::LOCAL_ROAD_LABEL,
                Box::new(|r| r.get_rank() == osm::RoadRank::Local && !r.is_light_rail()),
            ));
        }
    }

    pub fn apply_edits(&mut self, edits: MapEdits) {
        // Keep the map and the current proposal synced
        self.per_map.proposals.before_edit(edits.clone());
        self.per_map
            .map
            .must_apply_edits(edits, &mut Timer::throwaway());
    }
}

struct SimpleWarper {
    warper: Warper,
}

impl State<App> for SimpleWarper {
    fn event(&mut self, ctx: &mut EventCtx, _: &mut App) -> Transition {
        if self.warper.event(ctx) {
            Transition::Keep
        } else {
            Transition::Pop
        }
    }

    fn draw(&self, _: &mut GfxCtx, _: &App) {}
}