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
use std::collections::{HashMap, HashSet};
use geom::Distance;
use map_model::osm::RoadRank;
use map_model::{Block, PathConstraints, Perimeter};
use widgetry::mapspace::{ObjectID, World, WorldOutcome};
use widgetry::{
Color, EventCtx, GfxCtx, HorizontalAlignment, Key, Line, Outcome, Panel, SimpleState, State,
TextExt, VerticalAlignment, Widget,
};
use crate::app::{App, Transition};
use crate::debug::polygons;
const COLORS: [Color; 6] = [
Color::BLUE,
Color::YELLOW,
Color::GREEN,
Color::PURPLE,
Color::PINK,
Color::ORANGE,
];
const MODIFIED: Color = Color::RED;
const TO_MERGE: Color = Color::CYAN;
pub struct Blockfinder {
panel: Panel,
id_counter: usize,
blocks: HashMap<Obj, Block>,
world: World<Obj>,
to_merge: HashSet<Obj>,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
struct Obj(usize);
impl ObjectID for Obj {}
impl Blockfinder {
pub fn new_state(ctx: &mut EventCtx, app: &App) -> Box<dyn State<App>> {
let mut state = Blockfinder {
panel: make_panel(ctx),
id_counter: 0,
blocks: HashMap::new(),
world: World::bounded(app.primary.map.get_bounds()),
to_merge: HashSet::new(),
};
ctx.loading_screen("calculate all blocks", |ctx, _| {
let blocks = Block::find_all_single_blocks(&app.primary.map);
let colors = Perimeter::calculate_coloring(
blocks.iter().map(|x| &x.perimeter).collect(),
COLORS.len(),
)
.unwrap_or_else(|| (0..blocks.len()).collect());
for (block, color_idx) in blocks.into_iter().zip(colors.into_iter()) {
let id = state.new_id();
state.add_block(ctx, id, COLORS[color_idx % COLORS.len()], block);
}
});
state.world.initialize_hover(ctx);
Box::new(state)
}
fn new_id(&mut self) -> Obj {
let id = Obj(self.id_counter);
self.id_counter += 1;
id
}
fn add_block(&mut self, ctx: &mut EventCtx, id: Obj, color: Color, block: Block) {
let mut obj = self
.world
.add(id)
.hitbox(block.polygon.clone())
.draw_color(color.alpha(0.5))
.hover_outline(Color::BLACK, Distance::meters(5.0))
.clickable();
if self.to_merge.contains(&id) {
obj = obj.hotkey(Key::Space, "remove from merge set")
} else {
obj = obj.hotkey(Key::Space, "add to merge set")
}
obj.build(ctx);
self.blocks.insert(id, block);
}
}
impl State<App> for Blockfinder {
fn event(&mut self, ctx: &mut EventCtx, app: &mut App) -> Transition {
if let Outcome::Clicked(x) = self.panel.event(ctx) {
match x.as_ref() {
"close" => {
return Transition::Pop;
}
"Merge" => {
let mut blocks = Vec::new();
for id in self.to_merge.drain() {
blocks.push(self.blocks.remove(&id).unwrap());
self.world.delete(id);
}
for block in Block::merge_all(&app.primary.map, blocks) {
let id = self.new_id();
self.add_block(ctx, id, MODIFIED, block);
}
return Transition::Keep;
}
"Auto-merge all neighborhoods" => {
let perimeters: Vec<Perimeter> =
self.blocks.drain().map(|(_, b)| b.perimeter).collect();
let map = &app.primary.map;
let partitions = Perimeter::partition_by_predicate(perimeters, |r| {
let road = map.get_r(r);
road.get_rank() == RoadRank::Local
&& road
.lanes
.iter()
.any(|l| PathConstraints::Car.can_use(l, map))
});
self.id_counter = 0;
self.world = World::bounded(app.primary.map.get_bounds());
self.to_merge.clear();
for (color_idx, perimeters) in partitions.into_iter().enumerate() {
let color = COLORS[color_idx % COLORS.len()];
for perimeter in perimeters {
if let Ok(block) = perimeter.to_block(map) {
let id = self.new_id();
self.add_block(ctx, id, color, block);
}
}
}
}
_ => unreachable!(),
}
}
match self.world.event(ctx) {
WorldOutcome::Keypress("add to merge set", id) => {
self.to_merge.insert(id);
let block = self.blocks.remove(&id).unwrap();
self.world.delete_before_replacement(id);
self.add_block(ctx, id, TO_MERGE, block);
}
WorldOutcome::Keypress("remove from merge set", id) => {
self.to_merge.remove(&id);
let block = self.blocks.remove(&id).unwrap();
self.world.delete_before_replacement(id);
self.add_block(ctx, id, MODIFIED, block);
}
WorldOutcome::ClickedObject(id) => {
return Transition::Push(OneBlock::new_state(ctx, self.blocks[&id].clone()));
}
_ => {}
}
Transition::Keep
}
fn draw(&self, g: &mut GfxCtx, _: &App) {
self.world.draw(g);
self.panel.draw(g);
}
}
pub struct OneBlock {
block: Block,
}
impl OneBlock {
pub fn new_state(ctx: &mut EventCtx, block: Block) -> Box<dyn State<App>> {
let panel = Panel::new_builder(Widget::col(vec![
Widget::row(vec![
Line("Blockfinder").small_heading().into_widget(ctx),
ctx.style().btn_close_widget(ctx),
]),
ctx.style()
.btn_outline
.text("Show perimeter in order")
.build_def(ctx),
ctx.style().btn_outline.text("Debug polygon").build_def(ctx),
]))
.aligned(HorizontalAlignment::Center, VerticalAlignment::Top)
.build(ctx);
<dyn SimpleState<_>>::new_state(panel, Box::new(OneBlock { block }))
}
}
impl SimpleState<App> for OneBlock {
fn on_click(&mut self, ctx: &mut EventCtx, app: &mut App, x: &str, _: &Panel) -> Transition {
match x {
"close" => Transition::Pop,
"Show perimeter in order" => {
let mut items = Vec::new();
let map = &app.primary.map;
for road_side in &self.block.perimeter.roads {
let lane = road_side.get_outermost_lane(map);
items.push(polygons::Item::Polygon(lane.get_thick_polygon()));
}
return Transition::Push(polygons::PolygonDebugger::new_state(
ctx,
"side of road",
items,
None,
));
}
"Debug polygon" => {
return Transition::Push(polygons::PolygonDebugger::new_state(
ctx,
"pt",
self.block
.polygon
.clone()
.into_points()
.into_iter()
.map(polygons::Item::Point)
.collect(),
None,
));
}
_ => unreachable!(),
}
}
fn other_event(&mut self, ctx: &mut EventCtx, _: &mut App) -> Transition {
ctx.canvas_movement();
Transition::Keep
}
fn draw(&self, g: &mut GfxCtx, _: &App) {
g.draw_polygon(Color::RED.alpha(0.8), self.block.polygon.clone());
}
}
fn make_panel(ctx: &mut EventCtx) -> Panel {
Panel::new_builder(Widget::col(vec![
Widget::row(vec![
Line("Blockfinder").small_heading().into_widget(ctx),
ctx.style().btn_close_widget(ctx),
]),
"Click a block to examine.".text_widget(ctx),
"Press space to mark/unmark for merging".text_widget(ctx),
ctx.style()
.btn_outline
.text("Merge")
.hotkey(Key::M)
.build_def(ctx),
ctx.style()
.btn_outline
.text("Auto-merge all neighborhoods")
.hotkey(Key::N)
.build_def(ctx),
]))
.aligned(HorizontalAlignment::Left, VerticalAlignment::Top)
.build(ctx)
}