[][src]Struct pixel_engine::EngineWrapper

pub struct EngineWrapper(_);

A Wrapper around an Engine

Implementations

impl EngineWrapper[src]

pub fn new(title: String, size: (u32, u32, u32)) -> Self[src]

Create the Engine and the Wrapper

pub fn run<F>(self, main_func: F) -> Self where
    F: FnMut(&mut Engine) -> Result<bool, Box<dyn Error>> + 'static, 
[src]

The core of your program,

Takes a function F that will be run every frame, It will do the event handling and similar things between frames.

Methods from Deref<Target = Engine>

pub fn size(&self) -> (u32, u32)[src]

Return the current Target size in pixel

pub fn get_key(&self, keycode: Keycodes) -> Input[src]

Get The status of a key

pub fn get_mouse_btn(&self, btn: MouseBtn) -> Input[src]

Get the status of a Mouse Button

pub fn get_mouse_location(&self) -> (u32, u32)[src]

Get the mouse location (in pixel) on the screen Will be defaulted to (0,0) at the start of the program

pub fn get_mouse_wheel(&self) -> MouseWheel[src]

Get the scroll wheel direction (If Any) during the frame

pub fn get_pressed(&self) -> HashSet<Keycodes>[src]

Get all Keys pressed during the last frame

pub fn create_decal(&mut self, sprite: &Sprite) -> Decal[src]

Create a GPU version of Sprite

pub fn destroy_decal(&mut self, decal: Decal)[src]

Tell the GPU to destroy everything related to that [Decal]

Trait Implementations

impl Debug for EngineWrapper[src]

impl Deref for EngineWrapper[src]

type Target = Engine

The resulting type after dereferencing.

impl DerefMut for EngineWrapper[src]

Auto Trait Implementations

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> SetParameter for T

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.