abstreet/sim/src/render.rs

114 lines
3.2 KiB
Rust
Raw Normal View History

use crate::{CarID, PedestrianID, VehicleType};
use geom::{Angle, Distance, Duration, PolyLine, Pt2D};
use map_model::{Map, Traversable, TurnID};
2018-11-13 22:34:17 +03:00
// Intermediate structures so that sim and game crates don't have a cyclic dependency.
#[derive(Clone)]
2018-11-13 22:34:17 +03:00
pub struct DrawPedestrianInput {
pub id: PedestrianID,
pub pos: Pt2D,
2019-05-06 22:12:31 +03:00
pub facing: Angle,
2018-11-13 22:34:17 +03:00
pub waiting_for_turn: Option<TurnID>,
2018-11-17 01:23:33 +03:00
pub preparing_bike: bool,
pub on: Traversable,
pub metadata: AgentMetadata,
}
#[derive(Clone)]
pub struct AgentMetadata {
pub time_spent_blocked: Duration,
pub percent_dist_crossed: f64,
pub trip_time_so_far: Duration,
pub occupying_intersection: bool,
2018-11-13 22:34:17 +03:00
}
pub struct DrawPedCrowdInput {
pub low: Distance,
pub high: Distance,
pub contraflow: bool,
pub members: Vec<PedestrianID>,
pub on: Traversable,
}
#[derive(Clone)]
2018-11-13 22:34:17 +03:00
pub struct DrawCarInput {
pub id: CarID,
pub waiting_for_turn: Option<TurnID>,
2019-02-27 03:39:17 +03:00
pub status: CarStatus,
pub on: Traversable,
2019-08-13 22:20:28 +03:00
pub label: Option<String>,
pub metadata: AgentMetadata,
2019-01-11 02:11:16 +03:00
// Starts at the BACK of the car.
2019-01-11 02:11:16 +03:00
pub body: PolyLine,
2018-11-13 22:34:17 +03:00
}
#[derive(Clone, Copy, PartialEq, Eq)]
2019-02-27 03:39:17 +03:00
pub enum CarStatus {
2018-11-13 22:34:17 +03:00
Moving,
Parked,
2018-11-13 22:34:17 +03:00
}
pub struct UnzoomedAgent {
// None means a pedestrian.
pub vehicle_type: Option<VehicleType>,
pub pos: Pt2D,
pub metadata: AgentMetadata,
}
// TODO Can we return borrows instead? Nice for time travel, not for main sim?
// actually good for main sim too; we're constantly calculating stuff while sim is paused
// otherwise? except we don't know what to calculate. maybe cache it?
pub trait GetDrawAgents {
2019-02-26 23:50:43 +03:00
fn time(&self) -> Duration;
// Every time the time changes, this should increase. For smoothly animating stuff.
fn step_count(&self) -> usize;
fn get_draw_car(&self, id: CarID, map: &Map) -> Option<DrawCarInput>;
fn get_draw_ped(&self, id: PedestrianID, map: &Map) -> Option<DrawPedestrianInput>;
fn get_draw_cars(&self, on: Traversable, map: &Map) -> Vec<DrawCarInput>;
fn get_draw_peds(
&self,
on: Traversable,
map: &Map,
) -> (Vec<DrawPedestrianInput>, Vec<DrawPedCrowdInput>);
fn get_all_draw_cars(&self, map: &Map) -> Vec<DrawCarInput>;
fn get_all_draw_peds(&self, map: &Map) -> Vec<DrawPedestrianInput>;
fn get_unzoomed_agents(&self, map: &Map) -> Vec<UnzoomedAgent>;
}
pub struct DontDrawAgents;
impl GetDrawAgents for DontDrawAgents {
fn time(&self) -> Duration {
Duration::ZERO
}
fn step_count(&self) -> usize {
0
}
fn get_draw_car(&self, _: CarID, _: &Map) -> Option<DrawCarInput> {
None
}
fn get_draw_ped(&self, _: PedestrianID, _: &Map) -> Option<DrawPedestrianInput> {
None
}
fn get_draw_cars(&self, _: Traversable, _: &Map) -> Vec<DrawCarInput> {
Vec::new()
}
fn get_draw_peds(
&self,
_: Traversable,
_: &Map,
) -> (Vec<DrawPedestrianInput>, Vec<DrawPedCrowdInput>) {
(Vec::new(), Vec::new())
}
fn get_all_draw_cars(&self, _: &Map) -> Vec<DrawCarInput> {
Vec::new()
}
fn get_all_draw_peds(&self, _: &Map) -> Vec<DrawPedestrianInput> {
Vec::new()
}
fn get_unzoomed_agents(&self, _: &Map) -> Vec<UnzoomedAgent> {
Vec::new()
}
}