map_gui/render/
transit_stop.rs
use geom::{Angle, Bounds, Circle, Distance, Line, Pt2D, Tessellation};
use map_model::{Map, TransitStop, TransitStopID};
use widgetry::{Drawable, EventCtx, GeomBatch, GfxCtx};
use crate::colors::ColorScheme;
use crate::render::{DrawOptions, Renderable, OUTLINE_THICKNESS};
use crate::{AppLike, ID};
const RADIUS: Distance = Distance::const_meters(1.0);
pub struct DrawTransitStop {
pub id: TransitStopID,
center: Pt2D,
zorder: isize,
draw_default: Drawable,
}
impl DrawTransitStop {
pub fn new(ctx: &EventCtx, stop: &TransitStop, map: &Map, cs: &ColorScheme) -> DrawTransitStop {
let (pt, angle) = stop.sidewalk_pos.pt_and_angle(map);
let center = pt.project_away(
map.get_l(stop.sidewalk_pos.lane()).width / 2.0,
angle.rotate_degs(90.0),
);
let mut icon = GeomBatch::new();
icon.append(
GeomBatch::load_svg(
ctx.prerender,
if stop.is_train_stop {
"system/assets/map/light_rail.svg"
} else {
"system/assets/meters/bus.svg"
},
)
.scale(0.05)
.centered_on(center),
);
let mut batch = GeomBatch::new();
batch.push(
cs.bus_layer.alpha(0.8),
Circle::new(center, RADIUS).to_polygon(),
);
batch.append(icon.autocrop().centered_on(center));
batch.push(
cs.stop_sign_pole,
Line::must_new(
center.project_away(RADIUS, Angle::degrees(90.0)),
center.project_away(1.5 * RADIUS, Angle::degrees(90.0)),
)
.make_polygons(Distance::meters(0.3)),
);
DrawTransitStop {
id: stop.id,
center,
zorder: map.get_parent(stop.sidewalk_pos.lane()).zorder,
draw_default: ctx.upload(batch),
}
}
}
impl Renderable for DrawTransitStop {
fn get_id(&self) -> ID {
ID::TransitStop(self.id)
}
fn draw(&self, g: &mut GfxCtx, _: &dyn AppLike, _: &DrawOptions) {
g.redraw(&self.draw_default);
}
fn get_outline(&self, _: &Map) -> Tessellation {
Tessellation::from(
Circle::new(self.center, RADIUS)
.to_outline(OUTLINE_THICKNESS)
.expect("constants defined wrong"),
)
}
fn get_bounds(&self, _: &Map) -> Bounds {
Circle::new(self.center, RADIUS).get_bounds()
}
fn contains_pt(&self, pt: Pt2D, _: &Map) -> bool {
Circle::new(self.center, RADIUS).contains_pt(pt)
}
fn get_zorder(&self) -> isize {
self.zorder
}
}