/awesome-quads

▦⧉□▣ A curated list of links to miniquad/macroquad-related code & resources

Awesome Quads

A curated list of links to miniquad/macroquad-related code & resources.

Game engines

  • miniquad - main crate, engines below build on top of it. Supports WASM. Therefore everything build on top of it supports WASM too.
  • macroquad - simple to use library from author of miniquad.
  • good-web-game - crate to easily port your ggez to WASM.
  • emerald - game engine with physics, audio, graphics, ECS.
  • rust-rpg-toolkit - a framework for creating customizable and user modifiable action RPG's, using Rust and/or JSON.
  • omegaquad - hackable, opinionated layer on top of Macroquad for writing games

Games

On top of macroquad

  • Rusty Demon Attack - game inspired by the classic atari game: demon attack.
  • Zemeroth - turn-based hexagonal tactical game.
  • Fish Game - online multiplayer game, created as a demonstration of Nakama, an open-source scalable game server.
  • Fish Fight - a continuation of Fish Game that is developed as an open source project but aims for commercial release across multiple platforms
  • Vollmond - small non violent adventure in the style of Zelda 2.
  • rymd - space shooter game prototype.
  • Scream mr. Jack - ???.
  • Power Kick - platformer fighting game.
  • The Submariner - a minimalist action game made for the LD48 Compo.
  • Totally Relaxing Golf - a very, VERY, relaxing golf game made for Brackeys Game Jam 2021.2.
  • Planetoid - a toy project with a goal of creating a multiplayer asteroid game.
  • cubedesu - Rubik's Cube simulator.
  • Procedural Spider - a game where you play a big spider chasing small spiders made for LD49.
  • onitama_macroquad - Onitama implementation.
  • Excavation Site Alpha - build as far down into the earth as you can for LD48.
  • CyberSub - a 2D submarine simulation prototype.

On top of miniquad

  • Fermi Paradox - arcanoid-like game with moving enemies in space.
  • Crate Before Attack - worms-like multiplayer game where frogs combat their friends while navigating a landscape with their sticky tongue. It is a hybrid of a realtime and turn-based game.
  • Soldank - a remake of Soldat game.
  • Fires of Eschaton - a PvP focused turn-based fantasy tactics game.

On top of good-web-game

Apps or visualizations

On top of macroquad

Docs

Publications

Example usage

Libraries

Integrations

Plugins

Plugin has additional .js file, so to use it, you need to do extra work. Before deploying of your project on WASM, you could look at your dependencies using cargo tree and if you find these crates, add .js file from them.

  • sapp-jsutils - to build plugins. If you want to send/receive string or arbitrary object to JS, you should look at this.
  • quad-snd - to play sound.
  • quad-net - to use network.
  • quad-url - to change current url, search parameters, and open links.
  • quad-storage - to save data in persistent storage using Web Storage API.

Other