[][src]Struct gc_nes_web::WebNes

pub struct WebNes { /* fields omitted */ }

Structure used the represent the NES itself in WASM.

Implementations

impl WebNes[src]

pub fn new(cartridge: WebCartridge) -> WebNes[src]

Creates a new NES instance with no connected controllers.

pub fn cycle(&mut self)[src]

Runs a single cycle on the NES

pub fn frame(&mut self) -> Vec<u8>[src]

Runs as many cycles as necessary to complete the current frame. Returns the frame as a Vector of bytes, with each pixel of the NES screen represented by four bytes in RGBA order.

pub fn get_screen(&mut self) -> Vec<u8>[src]

Gets the current state of the screen from the PPU's screen buffer. Returns the frame as a Vector of bytes, with each pixel of the NES screen represented by four bytes in RGBA order.

pub fn update_controller_one(&mut self, controller_state: u8)[src]

Updates the state of the input device connected to the first port.

pub fn update_controller_two(&mut self, controller_state: u8)[src]

Updates the state of the input device connected to the first port.

pub fn reset(&mut self)[src]

Resets the state of the NES.

Trait Implementations

impl From<WebNes> for JsValue[src]

impl FromWasmAbi for WebNes[src]

type Abi = u32

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for WebNes[src]

type Abi = u32

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl OptionFromWasmAbi for WebNes[src]

impl OptionIntoWasmAbi for WebNes[src]

impl RefFromWasmAbi for WebNes[src]

type Abi = u32

The wasm ABI type references to Self are recovered from.

type Anchor = Ref<'static, WebNes>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more

impl RefMutFromWasmAbi for WebNes[src]

type Abi = u32

Same as RefFromWasmAbi::Abi

type Anchor = RefMut<'static, WebNes>

Same as RefFromWasmAbi::Anchor

impl WasmDescribe for WebNes[src]

Auto Trait Implementations

impl !RefUnwindSafe for WebNes

impl !Send for WebNes

impl !Sync for WebNes

impl Unpin for WebNes

impl !UnwindSafe for WebNes

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> From<T> for T[src]

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

impl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

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.