macroquad 0.2.0-alpha.3

Simple and easy to use graphics library
Documentation

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

  • PC: Windows/Linux/MacOs
  • HTML5
  • Android

Features

  • Same code for all supported platforms, no platform dependent defines required
  • Efficient 2D rendering with automatic geometry batching
  • Minimal amount of dependencies: build after cargo clean takes only 16s on x230(~6years old laptop)
  • Immidiate mode UI library included
  • Single command deploy for both WASM and Android build instructions

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.

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.