[][src]Struct ludus::console::Console

pub struct Console { /* fields omitted */ }

Used to act as an owner of everything needed to run a game Is also responsible for holding ram, as well as communication between processors.

Methods

impl Console[src]

pub fn new(cart: Cart, sample_rate: u32) -> Self[src]

pub fn step<'a, A, V>(&'a mut self, audio: &mut A, video: &mut V) -> i32 where
    A: AudioDevice,
    V: VideoDevice
[src]

Advance the console by a single CPU cycle.

This needs access to the audio and video devices, because the APU may generate audio samples, and the PPU may generate a frame.

pub fn step_micros<'a, A, V>(
    &'a mut self,
    audio: &mut A,
    video: &mut V,
    micros: u32
) where
    A: AudioDevice,
    V: VideoDevice
[src]

Advance the console by a certain number of micro seconds.

pub fn step_frame<'a, A, V>(&'a mut self, audio: &mut A, video: &mut V) where
    A: AudioDevice,
    V: VideoDevice
[src]

Advance the console until the next frame.

Unlike the other step methods, this is not based on timing, but based on waiting until the ppu actually generates a video frame. This is more useful for applications that want to do something at the start of every frame, like playing the next frame of input from a recorded script, or things like that.

pub fn update_controller(&mut self, buttons: ButtonState)[src]

pub fn reset(&mut self)[src]

Resets everything to it's initial state

Auto Trait Implementations

impl !Send for Console

impl !Sync for Console

Blanket Implementations

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

impl<T> From<T> for 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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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