[][src]Struct experiment::game::SleighState

struct SleighState {
    depot: BuildingID,
    score: usize,
    upzones_used: usize,
    energy: Duration,
    houses: HashMap<BuildingID, BldgState>,
    draw_scores: Drawable,
    draw_done: Drawable,
    config: Config,
    upzoned_depots: Vec<BuildingID>,
    draw_all_depots: Drawable,
}

Fields

depot: BuildingIDscore: usizeupzones_used: usizeenergy: Durationhouses: HashMap<BuildingID, BldgState>draw_scores: Drawabledraw_done: Drawableconfig: Configupzoned_depots: Vec<BuildingID>draw_all_depots: Drawable

Implementations

impl SleighState[src]

fn new(
    ctx: &mut EventCtx<'_>,
    app: &SimpleApp,
    depot: BuildingID,
    timer: &mut Timer<'_>
) -> SleighState
[src]

fn redraw(&mut self, ctx: &mut EventCtx<'_>, app: &SimpleApp)[src]

fn redraw_depots(&mut self, ctx: &mut EventCtx<'_>, app: &SimpleApp)[src]

fn present_dropped(
    &mut self,
    ctx: &mut EventCtx<'_>,
    app: &SimpleApp,
    id: BuildingID
) -> Option<usize>
[src]

fn recharge(
    &mut self,
    ctx: &mut EventCtx<'_>,
    app: &SimpleApp,
    id: BuildingID,
    dt: Duration
) -> bool
[src]

fn has_energy(&self) -> bool[src]

fn get_upzones(&self) -> (usize, f64)[src]

(upzones_free, next_upzone_pct)

Auto Trait Implementations

impl !RefUnwindSafe for SleighState

impl !Send for SleighState

impl !Sync for SleighState

impl Unpin for SleighState

impl UnwindSafe for SleighState

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> DowncastSync for T where
    T: Send + Sync + Any

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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>,