macroquad

macroquad is a simple and easy to use game library for Rust programming language, heavily inspired by raylib.

macroquad attempts to avoid any rust-specific programming concepts like lifetimes/borrowing, making it very friendly for rust beginners.

Supported platforms

Features

async/await

While macroquad attempts to use as mini rust-specific concepts as possible, .await in every examples looks a bit scary. Rust's async/await is used to solve just one problem - cross platform main loop ogranisation.

details

The problem: on WASM and android its not really easy to organize main loop like this: ``` fn main() { // do some initilization

// start main loop
loop {
    // handle input 

    // update logic

    // draw frame
}

} ```

It is fixable on Android with threads, but on web there is not way to "pause" and "resume" wasm execution, so no wasm code should block ever. While that loop is blocking for the entire game execution! The C++ solution for that problem: https://kripken.github.io/blog/wasm/2019/07/16/asyncify.html

But in Rust we have async/await. Rust's futures is basicly a continuations - future's stack may be store into a variable to later pause/resume execution of future's code.

async/await in macroquad is used without any external dependencies - no runtime, executor or even futures-rs are involved. Its just a way to preserve main's stack on WASM and keep the code cross platform without any wasm-specific main loop.