mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-12-25 07:25:47 +03:00
draw traffic signal text label properly (and way more efficiently now)
This commit is contained in:
parent
37bcfab7af
commit
d806d9509b
@ -374,27 +374,17 @@ impl GeomBatch {
|
||||
ctx.prerender.upload(self)
|
||||
}
|
||||
|
||||
// TODO Funky API. Make sure to call this in the right places.
|
||||
pub(crate) fn fix(mut self) -> GeomBatch {
|
||||
// Sets the top-left to 0, 0. Not sure exactly when this should be used.
|
||||
pub fn realign(mut self) -> GeomBatch {
|
||||
let mut bounds = Bounds::new();
|
||||
for (_, poly) in &self.list {
|
||||
bounds.union(poly.get_bounds());
|
||||
}
|
||||
let dx = if bounds.min_x < 0.0 {
|
||||
-bounds.min_x
|
||||
} else {
|
||||
0.0
|
||||
};
|
||||
let dy = if bounds.min_y < 0.0 {
|
||||
-bounds.min_y
|
||||
} else {
|
||||
0.0
|
||||
};
|
||||
if dx == 0.0 && dy == 0.0 {
|
||||
if bounds.min_x == 0.0 && bounds.min_y == 0.0 {
|
||||
return self;
|
||||
}
|
||||
for (_, poly) in &mut self.list {
|
||||
*poly = poly.translate(dx, dy);
|
||||
*poly = poly.translate(-bounds.min_x, -bounds.min_y);
|
||||
}
|
||||
self
|
||||
}
|
||||
@ -435,10 +425,14 @@ impl GeomBatch {
|
||||
pub fn add_svg(&mut self, filename: &str, center: Pt2D, scale: f64, rotate: Angle) {
|
||||
let mut batch = GeomBatch::new();
|
||||
svg::add_svg(&mut batch, filename);
|
||||
let dims = batch.get_dims();
|
||||
self.add_transformed(batch, center, scale, rotate);
|
||||
}
|
||||
|
||||
pub fn add_transformed(&mut self, other: GeomBatch, center: Pt2D, scale: f64, rotate: Angle) {
|
||||
let dims = other.get_dims();
|
||||
let dx = center.x() - dims.width * scale / 2.0;
|
||||
let dy = center.y() - dims.height * scale / 2.0;
|
||||
for (color, poly) in batch.consume() {
|
||||
for (color, poly) in other.consume() {
|
||||
self.push(color, poly.scale(scale).translate(dx, dy).rotate(rotate));
|
||||
}
|
||||
}
|
||||
|
@ -215,7 +215,7 @@ impl Text {
|
||||
);
|
||||
}
|
||||
|
||||
// TODO Do this first or not? Should we call fix() around here?
|
||||
// TODO Do this first or not? Should we call realign() around here?
|
||||
y += line_dims.height;
|
||||
|
||||
for (color, poly) in line_batch.consume() {
|
||||
|
@ -4,7 +4,7 @@ use crate::render::{
|
||||
OUTLINE_THICKNESS,
|
||||
};
|
||||
use abstutil::Timer;
|
||||
use ezgui::{Color, Drawable, GeomBatch, GfxCtx, Line, Prerender, Text};
|
||||
use ezgui::{Color, Drawable, GeomBatch, GfxCtx, Line, Prerender, ScreenPt, Text};
|
||||
use geom::{Angle, Distance, Line, PolyLine, Polygon, Pt2D, Time, EPSILON_DIST};
|
||||
use map_model::{
|
||||
Intersection, IntersectionID, IntersectionType, Map, Road, RoadWithStopSign, Turn, TurnType,
|
||||
@ -17,7 +17,7 @@ pub struct DrawIntersection {
|
||||
zorder: isize,
|
||||
|
||||
draw_default: Drawable,
|
||||
pub draw_traffic_signal: RefCell<Option<(Time, Drawable, Text, Pt2D)>>,
|
||||
pub draw_traffic_signal: RefCell<Option<(Time, Drawable)>>,
|
||||
}
|
||||
|
||||
impl DrawIntersection {
|
||||
@ -130,7 +130,7 @@ impl Renderable for DrawIntersection {
|
||||
let mut maybe_redraw = self.draw_traffic_signal.borrow_mut();
|
||||
let recalc = maybe_redraw
|
||||
.as_ref()
|
||||
.map(|(t, _, _, _)| *t != ctx.sim.time())
|
||||
.map(|(t, _)| *t != ctx.sim.time())
|
||||
.unwrap_or(true);
|
||||
if recalc {
|
||||
let (idx, phase, t) = signal.current_phase_and_remaining_time(ctx.sim.time());
|
||||
@ -143,16 +143,19 @@ impl Renderable for DrawIntersection {
|
||||
ctx,
|
||||
ctx.opts.traffic_signal_style.clone(),
|
||||
);
|
||||
*maybe_redraw = Some((
|
||||
ctx.sim.time(),
|
||||
g.prerender.upload(batch),
|
||||
Text::from(Line(format!("{}", idx + 1)).roboto().size(90)),
|
||||
let mut txt = GeomBatch::new();
|
||||
Text::from(Line(format!("{}", idx + 1)).roboto())
|
||||
.render(&mut txt, ScreenPt::new(0.0, 0.0));
|
||||
batch.add_transformed(
|
||||
txt.realign(),
|
||||
ctx.map.get_i(self.id).polygon.center(),
|
||||
));
|
||||
0.1,
|
||||
Angle::ZERO,
|
||||
);
|
||||
*maybe_redraw = Some((ctx.sim.time(), g.prerender.upload(batch)));
|
||||
}
|
||||
let (_, batch, txt, pt) = maybe_redraw.as_ref().unwrap();
|
||||
let (_, batch) = maybe_redraw.as_ref().unwrap();
|
||||
g.redraw(batch);
|
||||
g.draw_text_at_mapspace(txt, *pt);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user