2019-08-20 23:32:27 +03:00
|
|
|
mod floodfill;
|
2019-04-26 02:40:26 +03:00
|
|
|
mod objects;
|
2019-04-26 02:24:10 +03:00
|
|
|
mod polygons;
|
2019-06-25 00:48:47 +03:00
|
|
|
mod routes;
|
2019-04-26 02:02:40 +03:00
|
|
|
|
2020-03-02 20:51:20 +03:00
|
|
|
use crate::app::{App, ShowLayers, ShowObject};
|
2020-02-28 00:22:57 +03:00
|
|
|
use crate::colors;
|
2019-12-16 21:10:01 +03:00
|
|
|
use crate::common::{tool_panel, CommonState};
|
2020-02-04 23:52:47 +03:00
|
|
|
use crate::game::{msg, DrawBaselayer, State, Transition, WizardState};
|
2019-04-29 19:56:01 +03:00
|
|
|
use crate::helpers::ID;
|
2020-01-22 21:41:58 +03:00
|
|
|
use crate::managed::{WrappedComposite, WrappedOutcome};
|
2020-03-08 21:27:00 +03:00
|
|
|
use crate::render::DrawOptions;
|
2019-04-26 20:46:41 +03:00
|
|
|
use ezgui::{
|
2020-02-28 00:22:57 +03:00
|
|
|
hotkey, lctrl, Color, Composite, Drawable, EventCtx, EventLoopMode, GeomBatch, GfxCtx,
|
|
|
|
HorizontalAlignment, Key, Line, ManagedWidget, Outcome, Text, VerticalAlignment, Wizard,
|
2019-04-26 20:46:41 +03:00
|
|
|
};
|
2019-09-20 00:16:50 +03:00
|
|
|
use geom::Duration;
|
2020-02-18 19:40:05 +03:00
|
|
|
use map_model::IntersectionID;
|
2019-12-07 20:38:06 +03:00
|
|
|
use sim::Sim;
|
2019-04-29 23:55:59 +03:00
|
|
|
use std::collections::HashSet;
|
2019-04-26 01:50:16 +03:00
|
|
|
|
|
|
|
pub struct DebugMode {
|
2020-02-28 00:22:57 +03:00
|
|
|
composite: Composite,
|
2019-04-29 02:29:19 +03:00
|
|
|
common: CommonState,
|
2020-01-22 21:41:58 +03:00
|
|
|
tool_panel: WrappedComposite,
|
2019-04-26 02:40:26 +03:00
|
|
|
objects: objects::ObjectDebugger,
|
2019-04-26 08:07:48 +03:00
|
|
|
hidden: HashSet<ID>,
|
2019-04-26 08:19:54 +03:00
|
|
|
layers: ShowLayers,
|
2019-06-27 00:38:16 +03:00
|
|
|
search_results: Option<SearchResults>,
|
2019-06-25 00:48:47 +03:00
|
|
|
all_routes: routes::AllRoutesViewer,
|
2020-02-18 19:40:05 +03:00
|
|
|
|
|
|
|
highlighted_agents: Option<(IntersectionID, Drawable)>,
|
2019-04-26 01:50:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl DebugMode {
|
2019-12-04 02:08:46 +03:00
|
|
|
pub fn new(ctx: &mut EventCtx) -> DebugMode {
|
2019-04-26 01:50:16 +03:00
|
|
|
DebugMode {
|
2020-02-28 00:22:57 +03:00
|
|
|
composite: Composite::new(
|
|
|
|
ManagedWidget::col(vec![
|
|
|
|
ManagedWidget::row(vec![
|
2020-03-14 09:06:52 +03:00
|
|
|
Line("Debug Mode").roboto_bold().draw(ctx),
|
2020-02-28 00:22:57 +03:00
|
|
|
WrappedComposite::text_button(ctx, "X", hotkey(Key::Escape)).align_right(),
|
|
|
|
]),
|
2020-03-14 09:06:52 +03:00
|
|
|
Text::new().draw(ctx).named("current info"),
|
2020-02-28 00:22:57 +03:00
|
|
|
ManagedWidget::row(
|
|
|
|
vec![
|
|
|
|
(hotkey(Key::Num1), "toggle buildings"),
|
|
|
|
(hotkey(Key::Num2), "toggle intersections"),
|
|
|
|
(hotkey(Key::Num3), "toggle lanes"),
|
|
|
|
(hotkey(Key::Num4), "toggle areas"),
|
|
|
|
(hotkey(Key::Num5), "toggle extra shapes"),
|
|
|
|
(hotkey(Key::Num6), "toggle labels"),
|
|
|
|
(lctrl(Key::H), "unhide everything"),
|
|
|
|
(hotkey(Key::R), "toggle route for all agents"),
|
|
|
|
(None, "screenshot everything"),
|
|
|
|
(hotkey(Key::Slash), "search OSM metadata"),
|
|
|
|
(lctrl(Key::Slash), "clear OSM search results"),
|
|
|
|
(hotkey(Key::O), "save sim state"),
|
|
|
|
(hotkey(Key::Y), "load previous sim state"),
|
|
|
|
(hotkey(Key::U), "load next sim state"),
|
|
|
|
(None, "pick a savestate to load"),
|
|
|
|
]
|
|
|
|
.into_iter()
|
|
|
|
.map(|(key, action)| WrappedComposite::text_button(ctx, action, key))
|
|
|
|
.collect(),
|
|
|
|
)
|
|
|
|
.flex_wrap(ctx, 80),
|
|
|
|
])
|
|
|
|
.padding(10)
|
|
|
|
.bg(colors::PANEL_BG),
|
|
|
|
)
|
|
|
|
.aligned(HorizontalAlignment::Center, VerticalAlignment::Top)
|
|
|
|
.build(ctx),
|
2019-12-16 21:10:01 +03:00
|
|
|
common: CommonState::new(),
|
2020-01-20 02:20:19 +03:00
|
|
|
tool_panel: tool_panel(ctx),
|
2019-04-26 02:40:26 +03:00
|
|
|
objects: objects::ObjectDebugger::new(),
|
2019-04-26 08:07:48 +03:00
|
|
|
hidden: HashSet::new(),
|
2019-04-26 08:19:54 +03:00
|
|
|
layers: ShowLayers::new(),
|
2019-04-26 20:21:05 +03:00
|
|
|
search_results: None,
|
2019-06-25 00:48:47 +03:00
|
|
|
all_routes: routes::AllRoutesViewer::Inactive,
|
2020-02-18 19:40:05 +03:00
|
|
|
highlighted_agents: None,
|
2019-04-26 01:50:16 +03:00
|
|
|
}
|
|
|
|
}
|
2020-02-28 00:22:57 +03:00
|
|
|
|
|
|
|
fn reset_info(&mut self, ctx: &mut EventCtx) {
|
|
|
|
let mut txt = Text::new();
|
|
|
|
if !self.hidden.is_empty() {
|
|
|
|
txt.add(Line(format!("Hiding {} things", self.hidden.len())));
|
|
|
|
}
|
|
|
|
if let Some(ref results) = self.search_results {
|
|
|
|
txt.add(Line(format!(
|
|
|
|
"Search for {} has {} results",
|
|
|
|
results.query, results.num_matches
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
if let routes::AllRoutesViewer::Active(ref traces) = self.all_routes {
|
|
|
|
txt.add(Line(format!("Showing {} routes", traces.len())));
|
|
|
|
}
|
2020-03-14 09:06:52 +03:00
|
|
|
self.composite
|
|
|
|
.replace(ctx, "current info", txt.draw(ctx).named("current info"));
|
2020-02-28 00:22:57 +03:00
|
|
|
}
|
2019-06-22 19:48:42 +03:00
|
|
|
}
|
2019-04-26 01:50:16 +03:00
|
|
|
|
2019-06-22 19:48:42 +03:00
|
|
|
impl State for DebugMode {
|
2020-03-02 20:51:20 +03:00
|
|
|
fn event(&mut self, ctx: &mut EventCtx, app: &mut App) -> Transition {
|
2020-02-28 00:22:57 +03:00
|
|
|
ctx.canvas_movement();
|
|
|
|
|
2019-06-22 19:48:42 +03:00
|
|
|
if ctx.redo_mouseover() {
|
2020-03-02 20:51:20 +03:00
|
|
|
app.primary.current_selection =
|
|
|
|
app.calculate_current_selection(ctx, &app.primary.sim, self, true, false);
|
2019-06-22 19:48:42 +03:00
|
|
|
}
|
2019-05-02 00:59:20 +03:00
|
|
|
|
2020-02-28 00:22:57 +03:00
|
|
|
match self.composite.event(ctx) {
|
|
|
|
Some(Outcome::Clicked(x)) => match x.as_ref() {
|
|
|
|
"X" => {
|
|
|
|
return Transition::Pop;
|
2019-12-07 20:38:06 +03:00
|
|
|
}
|
2020-02-28 00:22:57 +03:00
|
|
|
"save sim state" => {
|
|
|
|
ctx.loading_screen("savestate", |_, timer| {
|
|
|
|
timer.start("save sim state");
|
2020-03-02 20:51:20 +03:00
|
|
|
app.primary.sim.save();
|
2020-02-28 00:22:57 +03:00
|
|
|
timer.stop("save sim state");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
"load previous sim state" => {
|
|
|
|
if let Some(t) =
|
|
|
|
ctx.loading_screen("load previous savestate", |ctx, mut timer| {
|
2020-03-02 20:51:20 +03:00
|
|
|
let prev_state = app
|
2020-02-28 00:22:57 +03:00
|
|
|
.primary
|
|
|
|
.sim
|
2020-03-02 20:51:20 +03:00
|
|
|
.find_previous_savestate(app.primary.sim.time());
|
2020-02-28 00:22:57 +03:00
|
|
|
match prev_state.clone().and_then(|path| {
|
2020-03-02 20:51:20 +03:00
|
|
|
Sim::load_savestate(path, &app.primary.map, &mut timer).ok()
|
2020-02-28 00:22:57 +03:00
|
|
|
}) {
|
|
|
|
Some(new_sim) => {
|
2020-03-02 20:51:20 +03:00
|
|
|
app.primary.sim = new_sim;
|
|
|
|
app.recalculate_current_selection(ctx);
|
2020-02-28 00:22:57 +03:00
|
|
|
None
|
|
|
|
}
|
|
|
|
None => Some(Transition::Push(msg(
|
|
|
|
"Error",
|
|
|
|
vec![format!(
|
|
|
|
"Couldn't load previous savestate {:?}",
|
|
|
|
prev_state
|
|
|
|
)],
|
|
|
|
))),
|
|
|
|
}
|
|
|
|
})
|
|
|
|
{
|
|
|
|
return t;
|
2019-12-07 20:38:06 +03:00
|
|
|
}
|
|
|
|
}
|
2020-02-28 00:22:57 +03:00
|
|
|
"load next sim state" => {
|
|
|
|
if let Some(t) = ctx.loading_screen("load next savestate", |ctx, mut timer| {
|
2020-03-02 20:51:20 +03:00
|
|
|
let next_state =
|
|
|
|
app.primary.sim.find_next_savestate(app.primary.sim.time());
|
2020-02-28 00:22:57 +03:00
|
|
|
match next_state.clone().and_then(|path| {
|
2020-03-02 20:51:20 +03:00
|
|
|
Sim::load_savestate(path, &app.primary.map, &mut timer).ok()
|
2020-02-28 00:22:57 +03:00
|
|
|
}) {
|
|
|
|
Some(new_sim) => {
|
2020-03-02 20:51:20 +03:00
|
|
|
app.primary.sim = new_sim;
|
|
|
|
app.recalculate_current_selection(ctx);
|
2020-02-28 00:22:57 +03:00
|
|
|
None
|
|
|
|
}
|
|
|
|
None => Some(Transition::Push(msg(
|
|
|
|
"Error",
|
|
|
|
vec![format!("Couldn't load next savestate {:?}", next_state)],
|
|
|
|
))),
|
|
|
|
}
|
|
|
|
}) {
|
|
|
|
return t;
|
2019-10-11 23:09:32 +03:00
|
|
|
}
|
2019-06-22 19:48:42 +03:00
|
|
|
}
|
2020-02-28 00:22:57 +03:00
|
|
|
"pick a savestate to load" => {
|
|
|
|
return Transition::Push(WizardState::new(Box::new(load_savestate)));
|
|
|
|
}
|
|
|
|
"unhide everything" => {
|
2019-06-22 19:48:42 +03:00
|
|
|
self.hidden.clear();
|
2020-03-02 20:51:20 +03:00
|
|
|
app.primary.current_selection =
|
|
|
|
app.calculate_current_selection(ctx, &app.primary.sim, self, true, false);
|
2020-02-28 00:22:57 +03:00
|
|
|
self.reset_info(ctx);
|
|
|
|
}
|
|
|
|
"toggle route for all agents" => {
|
2020-03-02 20:51:20 +03:00
|
|
|
self.all_routes.toggle(app);
|
2020-02-28 00:22:57 +03:00
|
|
|
self.reset_info(ctx);
|
|
|
|
}
|
|
|
|
"search OSM metadata" => {
|
|
|
|
return Transition::Push(WizardState::new(Box::new(search_osm)));
|
|
|
|
}
|
|
|
|
"clear OSM search results" => {
|
|
|
|
self.search_results = None;
|
|
|
|
self.reset_info(ctx);
|
|
|
|
}
|
|
|
|
"screenshot everything" => {
|
2020-03-02 20:51:20 +03:00
|
|
|
let bounds = app.primary.map.get_bounds();
|
2020-02-28 00:22:57 +03:00
|
|
|
assert!(bounds.min_x == 0.0 && bounds.min_y == 0.0);
|
|
|
|
return Transition::KeepWithMode(EventLoopMode::ScreenCaptureEverything {
|
2020-03-02 20:51:20 +03:00
|
|
|
dir: abstutil::path_pending_screenshots(app.primary.map.get_name()),
|
2020-02-28 00:22:57 +03:00
|
|
|
zoom: 3.0,
|
|
|
|
max_x: bounds.max_x,
|
|
|
|
max_y: bounds.max_y,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
"toggle buildings" => {
|
|
|
|
self.layers.show_buildings = !self.layers.show_buildings;
|
2020-03-02 20:51:20 +03:00
|
|
|
app.primary.current_selection =
|
|
|
|
app.calculate_current_selection(ctx, &app.primary.sim, self, true, false);
|
2020-02-28 00:22:57 +03:00
|
|
|
}
|
|
|
|
"toggle intersections" => {
|
|
|
|
self.layers.show_intersections = !self.layers.show_intersections;
|
2020-03-02 20:51:20 +03:00
|
|
|
app.primary.current_selection =
|
|
|
|
app.calculate_current_selection(ctx, &app.primary.sim, self, true, false);
|
2020-02-28 00:22:57 +03:00
|
|
|
}
|
|
|
|
"toggle lanes" => {
|
|
|
|
self.layers.show_lanes = !self.layers.show_lanes;
|
2020-03-02 20:51:20 +03:00
|
|
|
app.primary.current_selection =
|
|
|
|
app.calculate_current_selection(ctx, &app.primary.sim, self, true, false);
|
2020-02-28 00:22:57 +03:00
|
|
|
}
|
|
|
|
"toggle areas" => {
|
|
|
|
self.layers.show_areas = !self.layers.show_areas;
|
2020-03-02 20:51:20 +03:00
|
|
|
app.primary.current_selection =
|
|
|
|
app.calculate_current_selection(ctx, &app.primary.sim, self, true, false);
|
2020-02-28 00:22:57 +03:00
|
|
|
}
|
|
|
|
"toggle extra shapes" => {
|
|
|
|
self.layers.show_extra_shapes = !self.layers.show_extra_shapes;
|
2020-03-02 20:51:20 +03:00
|
|
|
app.primary.current_selection =
|
|
|
|
app.calculate_current_selection(ctx, &app.primary.sim, self, true, false);
|
2019-06-22 19:48:42 +03:00
|
|
|
}
|
2020-02-28 00:22:57 +03:00
|
|
|
"toggle labels" => {
|
|
|
|
self.layers.show_labels = !self.layers.show_labels;
|
2020-03-02 20:51:20 +03:00
|
|
|
app.primary.current_selection =
|
|
|
|
app.calculate_current_selection(ctx, &app.primary.sim, self, true, false);
|
2020-02-28 00:22:57 +03:00
|
|
|
}
|
|
|
|
_ => unreachable!(),
|
|
|
|
},
|
|
|
|
None => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(ID::Lane(_)) | Some(ID::Intersection(_)) | Some(ID::ExtraShape(_)) =
|
2020-03-02 20:51:20 +03:00
|
|
|
app.primary.current_selection
|
2020-02-28 00:22:57 +03:00
|
|
|
{
|
2020-03-02 20:51:20 +03:00
|
|
|
let id = app.primary.current_selection.clone().unwrap();
|
|
|
|
if app.per_obj.action(ctx, Key::H, format!("hide {:?}", id)) {
|
2020-02-28 00:22:57 +03:00
|
|
|
println!("Hiding {:?}", id);
|
2020-03-02 20:51:20 +03:00
|
|
|
app.primary.current_selection = None;
|
2020-02-28 00:22:57 +03:00
|
|
|
self.hidden.insert(id);
|
|
|
|
self.reset_info(ctx);
|
2019-06-22 19:48:42 +03:00
|
|
|
}
|
|
|
|
}
|
2019-04-26 02:02:40 +03:00
|
|
|
|
2020-03-02 20:51:20 +03:00
|
|
|
if let Some(ID::Car(id)) = app.primary.current_selection {
|
|
|
|
if app
|
2019-12-12 02:04:32 +03:00
|
|
|
.per_obj
|
|
|
|
.action(ctx, Key::Backspace, "forcibly kill this car")
|
2019-09-07 23:46:47 +03:00
|
|
|
{
|
2020-03-02 20:51:20 +03:00
|
|
|
app.primary.sim.kill_stuck_car(id, &app.primary.map);
|
|
|
|
app.primary
|
2020-02-29 01:52:41 +03:00
|
|
|
.sim
|
2020-03-02 20:51:20 +03:00
|
|
|
.normal_step(&app.primary.map, Duration::seconds(0.1));
|
|
|
|
app.primary.current_selection = None;
|
|
|
|
} else if app.per_obj.action(ctx, Key::G, "find front of blockage") {
|
2019-11-02 01:31:26 +03:00
|
|
|
return Transition::Push(msg(
|
|
|
|
"Blockage results",
|
|
|
|
vec![format!(
|
|
|
|
"{} is ultimately blocked by {}",
|
|
|
|
id,
|
2020-03-02 20:51:20 +03:00
|
|
|
app.primary.sim.find_blockage_front(id, &app.primary.map)
|
2019-11-02 01:31:26 +03:00
|
|
|
)],
|
|
|
|
));
|
2019-09-07 23:46:47 +03:00
|
|
|
}
|
|
|
|
}
|
2020-03-02 20:51:20 +03:00
|
|
|
if let Some(ID::Intersection(id)) = app.primary.current_selection {
|
2020-02-18 19:40:05 +03:00
|
|
|
if self
|
|
|
|
.highlighted_agents
|
|
|
|
.as_ref()
|
|
|
|
.map(|(i, _)| id != *i)
|
|
|
|
.unwrap_or(true)
|
|
|
|
{
|
|
|
|
let mut batch = GeomBatch::new();
|
2020-03-02 20:51:20 +03:00
|
|
|
for a in app.primary.sim.get_accepted_agents(id) {
|
2020-02-18 19:40:05 +03:00
|
|
|
batch.push(
|
2020-03-02 20:51:20 +03:00
|
|
|
app.cs.get("something associated with something else"),
|
|
|
|
app.primary
|
2020-02-18 19:40:05 +03:00
|
|
|
.draw_map
|
|
|
|
.get_obj(
|
|
|
|
ID::from_agent(a),
|
2020-03-02 20:51:20 +03:00
|
|
|
app,
|
|
|
|
&mut app.primary.draw_map.agents.borrow_mut(),
|
2020-02-18 19:40:05 +03:00
|
|
|
ctx.prerender,
|
|
|
|
)
|
|
|
|
.unwrap()
|
2020-03-02 20:51:20 +03:00
|
|
|
.get_outline(&app.primary.map),
|
2020-02-18 19:40:05 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
self.highlighted_agents = Some((id, ctx.upload(batch)));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
self.highlighted_agents = None;
|
|
|
|
}
|
|
|
|
|
2020-03-02 20:51:20 +03:00
|
|
|
self.objects.event(ctx, app);
|
2019-06-22 19:48:42 +03:00
|
|
|
|
2020-03-02 20:51:20 +03:00
|
|
|
if let Some(debugger) = polygons::PolygonDebugger::new(ctx, app) {
|
2019-06-24 03:00:34 +03:00
|
|
|
return Transition::Push(Box::new(debugger));
|
2019-06-22 19:48:42 +03:00
|
|
|
}
|
2019-04-26 02:24:10 +03:00
|
|
|
|
2020-03-02 20:51:20 +03:00
|
|
|
if let Some(floodfiller) = floodfill::Floodfiller::new(ctx, app) {
|
2019-08-20 23:32:27 +03:00
|
|
|
return Transition::Push(floodfiller);
|
|
|
|
}
|
2019-04-26 20:21:05 +03:00
|
|
|
|
2020-03-02 20:51:20 +03:00
|
|
|
if let Some(t) = self.common.event(ctx, app, None) {
|
2019-12-12 02:25:43 +03:00
|
|
|
return t;
|
|
|
|
}
|
2020-03-02 20:51:20 +03:00
|
|
|
match self.tool_panel.event(ctx, app) {
|
2020-01-22 21:41:58 +03:00
|
|
|
Some(WrappedOutcome::Transition(t)) => t,
|
|
|
|
Some(WrappedOutcome::Clicked(x)) => match x.as_ref() {
|
2019-12-16 21:10:01 +03:00
|
|
|
"back" => Transition::Pop,
|
|
|
|
_ => unreachable!(),
|
|
|
|
},
|
|
|
|
None => Transition::Keep,
|
|
|
|
}
|
2019-06-22 19:48:42 +03:00
|
|
|
}
|
2019-06-07 02:03:22 +03:00
|
|
|
|
2020-02-04 23:52:47 +03:00
|
|
|
fn draw_baselayer(&self) -> DrawBaselayer {
|
|
|
|
DrawBaselayer::Custom
|
2019-04-26 01:50:16 +03:00
|
|
|
}
|
|
|
|
|
2020-03-02 20:51:20 +03:00
|
|
|
fn draw(&self, g: &mut GfxCtx, app: &App) {
|
2020-03-08 21:27:00 +03:00
|
|
|
let mut opts = DrawOptions::new();
|
2019-08-16 22:38:39 +03:00
|
|
|
opts.label_buildings = self.layers.show_labels;
|
|
|
|
opts.label_roads = self.layers.show_labels;
|
2020-03-02 20:51:20 +03:00
|
|
|
app.draw(g, opts, &app.primary.sim, self);
|
2019-06-27 00:38:16 +03:00
|
|
|
|
2020-01-25 00:38:15 +03:00
|
|
|
if let Some(ref results) = self.search_results {
|
|
|
|
g.redraw(&results.draw);
|
2019-06-27 00:38:16 +03:00
|
|
|
}
|
2020-02-18 19:40:05 +03:00
|
|
|
if let Some((_, ref draw)) = self.highlighted_agents {
|
|
|
|
g.redraw(draw);
|
|
|
|
}
|
2019-06-27 00:38:16 +03:00
|
|
|
|
2020-03-02 20:51:20 +03:00
|
|
|
self.objects.draw(g, app);
|
|
|
|
self.all_routes.draw(g, app);
|
2019-05-02 00:59:20 +03:00
|
|
|
|
2019-06-22 19:48:42 +03:00
|
|
|
if !g.is_screencap() {
|
2020-02-28 00:22:57 +03:00
|
|
|
self.composite.draw(g);
|
2020-03-02 20:51:20 +03:00
|
|
|
self.common.draw(g, app);
|
2019-12-16 21:10:01 +03:00
|
|
|
self.tool_panel.draw(g);
|
2019-04-26 01:50:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-26 02:56:38 +03:00
|
|
|
|
|
|
|
impl ShowObject for DebugMode {
|
2019-08-15 01:09:54 +03:00
|
|
|
fn show(&self, obj: &ID) -> bool {
|
|
|
|
if self.hidden.contains(obj) {
|
2019-04-26 08:19:54 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
match obj {
|
|
|
|
ID::Road(_) | ID::Lane(_) => self.layers.show_lanes,
|
|
|
|
ID::Building(_) => self.layers.show_buildings,
|
|
|
|
ID::Intersection(_) => self.layers.show_intersections,
|
|
|
|
ID::ExtraShape(_) => self.layers.show_extra_shapes,
|
|
|
|
ID::Area(_) => self.layers.show_areas,
|
|
|
|
_ => true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn layers(&self) -> &ShowLayers {
|
|
|
|
&self.layers
|
2019-04-26 02:56:38 +03:00
|
|
|
}
|
|
|
|
}
|
2019-05-17 23:27:30 +03:00
|
|
|
|
2020-03-02 20:51:20 +03:00
|
|
|
fn search_osm(wiz: &mut Wizard, ctx: &mut EventCtx, app: &mut App) -> Option<Transition> {
|
2019-08-07 23:28:46 +03:00
|
|
|
let filter = wiz.wrap(ctx).input_string("Search for what?")?;
|
2020-01-25 00:38:15 +03:00
|
|
|
let mut num_matches = 0;
|
2019-08-07 23:28:46 +03:00
|
|
|
let mut batch = GeomBatch::new();
|
2019-06-22 19:48:42 +03:00
|
|
|
|
2020-01-25 00:38:15 +03:00
|
|
|
// TODO Case insensitive
|
2020-03-02 20:51:20 +03:00
|
|
|
let map = &app.primary.map;
|
|
|
|
let color = app.cs.get_def("search result", Color::RED);
|
2019-08-07 23:28:46 +03:00
|
|
|
for r in map.all_roads() {
|
|
|
|
if r.osm_tags
|
|
|
|
.iter()
|
|
|
|
.any(|(k, v)| format!("{} = {}", k, v).contains(&filter))
|
|
|
|
{
|
2020-01-25 00:38:15 +03:00
|
|
|
num_matches += 1;
|
2020-01-29 04:26:14 +03:00
|
|
|
batch.push(color, r.get_thick_polygon(map).unwrap());
|
2019-06-22 19:48:42 +03:00
|
|
|
}
|
|
|
|
}
|
2019-08-07 23:28:46 +03:00
|
|
|
for b in map.all_buildings() {
|
|
|
|
if b.osm_tags
|
|
|
|
.iter()
|
|
|
|
.any(|(k, v)| format!("{} = {}", k, v).contains(&filter))
|
2020-01-29 02:57:45 +03:00
|
|
|
|| b.amenities
|
|
|
|
.iter()
|
|
|
|
.any(|(n, a)| n.contains(&filter) || a.contains(&filter))
|
2019-08-07 23:28:46 +03:00
|
|
|
{
|
2020-01-25 00:38:15 +03:00
|
|
|
num_matches += 1;
|
2019-08-07 23:28:46 +03:00
|
|
|
batch.push(color, b.polygon.clone());
|
|
|
|
}
|
2019-06-22 19:48:42 +03:00
|
|
|
}
|
2019-11-14 21:54:11 +03:00
|
|
|
for a in map.all_areas() {
|
|
|
|
if a.osm_tags
|
|
|
|
.iter()
|
|
|
|
.any(|(k, v)| format!("{} = {}", k, v).contains(&filter))
|
|
|
|
{
|
2020-01-25 00:38:15 +03:00
|
|
|
num_matches += 1;
|
2019-11-14 21:54:11 +03:00
|
|
|
batch.push(color, a.polygon.clone());
|
|
|
|
}
|
|
|
|
}
|
2019-08-07 23:28:46 +03:00
|
|
|
|
|
|
|
let results = SearchResults {
|
|
|
|
query: filter,
|
2020-01-25 00:38:15 +03:00
|
|
|
num_matches,
|
|
|
|
draw: batch.upload(ctx),
|
2019-08-07 23:28:46 +03:00
|
|
|
};
|
|
|
|
|
2020-02-28 00:22:57 +03:00
|
|
|
Some(Transition::PopWithData(Box::new(|state, _, ctx| {
|
|
|
|
let mut mode = state.downcast_mut::<DebugMode>().unwrap();
|
|
|
|
mode.search_results = Some(results);
|
|
|
|
mode.reset_info(ctx);
|
2019-08-07 23:28:46 +03:00
|
|
|
})))
|
2019-06-22 19:48:42 +03:00
|
|
|
}
|
2019-06-27 00:38:16 +03:00
|
|
|
|
|
|
|
struct SearchResults {
|
|
|
|
query: String,
|
2020-01-25 00:38:15 +03:00
|
|
|
num_matches: usize,
|
|
|
|
draw: Drawable,
|
2019-06-27 00:38:16 +03:00
|
|
|
}
|
2019-12-07 20:38:06 +03:00
|
|
|
|
2020-03-02 20:51:20 +03:00
|
|
|
fn load_savestate(wiz: &mut Wizard, ctx: &mut EventCtx, app: &mut App) -> Option<Transition> {
|
2019-12-07 20:38:06 +03:00
|
|
|
let ss = wiz.wrap(ctx).choose_string("Load which savestate?", || {
|
2020-03-02 20:51:20 +03:00
|
|
|
abstutil::list_all_objects(app.primary.sim.save_dir())
|
2019-12-07 20:38:06 +03:00
|
|
|
})?;
|
|
|
|
// TODO Oh no, we have to do path construction here :(
|
2020-03-02 20:51:20 +03:00
|
|
|
let ss_path = format!("{}/{}.bin", app.primary.sim.save_dir(), ss);
|
2019-12-07 20:38:06 +03:00
|
|
|
|
|
|
|
ctx.loading_screen("load savestate", |ctx, mut timer| {
|
2020-03-02 20:51:20 +03:00
|
|
|
app.primary.sim = Sim::load_savestate(ss_path, &app.primary.map, &mut timer)
|
2019-12-18 05:08:59 +03:00
|
|
|
.expect("Can't load savestate");
|
2020-03-02 20:51:20 +03:00
|
|
|
app.recalculate_current_selection(ctx);
|
2019-12-07 20:38:06 +03:00
|
|
|
});
|
|
|
|
Some(Transition::Pop)
|
|
|
|
}
|