[][src]Struct game::app::App

pub struct App {
    pub primary: PerMap,
    pub cs: ColorScheme,
    pub unzoomed_agents: UnzoomedAgents,
    pub opts: Options,
    pub per_obj: PerObjectActions,
    pub session: SessionState,
}

The top-level data that lasts through the entire game, no matter what state the game is in.

Fields

primary: PerMapcs: ColorSchemeunzoomed_agents: UnzoomedAgentsopts: Optionsper_obj: PerObjectActionssession: SessionState

Static data that lasts the entire session. Use sparingly.

Implementations

impl App[src]

pub fn new(
    flags: Flags,
    opts: Options,
    ctx: &mut EventCtx<'_>,
    splash: bool
) -> App
[src]

pub fn has_prebaked(&self) -> Option<(&String, &String)>[src]

pub fn prebaked(&self) -> &Analytics[src]

pub fn set_prebaked(&mut self, prebaked: Option<(String, String, Analytics)>)[src]

pub fn map_switched(
    &mut self,
    ctx: &mut EventCtx<'_>,
    map: Map,
    sim: Sim,
    timer: &mut Timer<'_>
)
[src]

pub fn draw(
    &self,
    g: &mut GfxCtx<'_>,
    opts: DrawOptions,
    show_objs: &dyn ShowObject
)
[src]

pub fn recalculate_current_selection(&mut self, ctx: &EventCtx<'_>)[src]

Assumes some defaults.

pub fn mouseover_unzoomed_roads_and_intersections(
    &self,
    ctx: &EventCtx<'_>
) -> Option<ID>
[src]

pub fn mouseover_unzoomed_buildings(&self, ctx: &EventCtx<'_>) -> Option<ID>[src]

pub fn mouseover_unzoomed_everything(&self, ctx: &EventCtx<'_>) -> Option<ID>[src]

pub fn mouseover_debug_mode(
    &self,
    ctx: &EventCtx<'_>,
    show_objs: &dyn ShowObject
) -> Option<ID>
[src]

fn calculate_current_selection(
    &self,
    ctx: &EventCtx<'_>,
    show_objs: &dyn ShowObject,
    debug_mode: bool,
    unzoomed_roads_and_intersections: bool,
    unzoomed_buildings: bool
) -> Option<ID>
[src]

fn get_renderables_back_to_front<'a>(
    &'a self,
    bounds: Bounds,
    prerender: &Prerender,
    agents: &'a mut AgentCache,
    show_objs: &dyn ShowObject
) -> Vec<&'a (dyn Renderable + 'a)>
[src]

Auto Trait Implementations

impl !RefUnwindSafe for App

impl !Send for App

impl !Sync for App

impl Unpin for App

impl !UnwindSafe for App

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,