This is a copy of the Github readme.
Find the original on https://github.com/bestia-dev/mem1.

mem1

Learning to use Rust Wasm/WebAssembly with Dodrio Virtual Dom on a simple memory game for kids.
version: 1.0 date: 2019-04-06 author: bestia.dev repository: GitHub

Hits

Hashtags: #rustlang #game #tutorial
My projects on Github are more like a tutorial than a finished product: bestia-dev tutorials.

The images are funny cartoon characters from the alphabet.
The cards grid is only 4x4.
You can play it here ( hosted on google cloud platform ):
https://bestia.dev/mem1/

Read the Last projects first:
https://github.com/bestia-dev/rust01_the_beginning
https://github.com/bestia-dev/rust02_workspace_and_testing

Prepare the development environment (Windows)

In my previous projects are the instructions how to install a basic Rust environment.
For wasm workflow tool installation on Windows:
https://rustwasm.github.io/wasm-pack/installer/
You will need also a simple static file server:

cargo install basic-http-server

Source

Absolutely everything manually coded is in Rust language in the file /src/lib.rs.
No manual JavaScript or HTML needed.
The index.html file is a standard scaffold.
The pkg/mem.js file is generated by wasm-bindgen.
I prepared a small simple mem1.css with flex objects for styling.
No need for npm or web-pack.
The compiled files for the GitHub page are here
(the game needs only a simple static file server):
https://github.com/bestia-dev/mem1_website
You already know how to clone a GitHub repository:
(in the rustprojects/ folder execute)

clone git@github.com:bestia-dev/mem1.git

Build

Run in mem1/ folder

wasm-pack build --target no-modules

The warning for rand::Rng::shuffle will be solved in my second project. Ignore it.

Serve

Run the html server in mem1/ folder in a second terminal. So it can continuously run while you incrementally build your changes in the first terminal.

basic-http-server

Open the default URI in your browser
http://localhost:4000/

Cross-platform

The web application can easily be converted into a cross-platform quasi native application with Electron for Desktops and PhoneGap for Mobile.
The electron desktop application (Windows, MacOS, Linux) is here:
https://github.com/bestia-dev/mem1_electron
The PhoneGap app (Android, iOS, WindowsPhone) is here:
https://github.com/bestia-dev/mem1_phonegap

Memory game rules

For the sake of simplicity, the first iteration is made as single player mode.
The game starts with a grid of 8 randomly shuffled card pairs face down - 16 cards in all.
The player flips over two cards with two clicks.
If the cards do not match, the player starts a new turn with a click to turn both cards back face down. Then two clicks to flip over two cards.
If the cards match, they are left face up and the player continues with the next turn. No additional third click needed in that case.
The Count of clicks can be used as score. The lower the Count, the better score it is.
snap01

Next projects

The next iteration of this project is here:
https://github.com/bestia-dev/mem2

cargo crev reviews and advisory

It is recommended to always use cargo-crev
to verify the trustworthiness of each of your dependencies.
Please, spread this info.
On the web use this url to read crate reviews. Example:
https://web.crev.dev/rust-reviews/crate/num-traits/

Programming references

https://doc.rust-lang.org/book/
https://github.com/fitzgen/dodrio
https://github.com/brson/basic-http-server
https://rust-lang-nursery.github.io/rust-cookbook/
https://github.com/anderejd/wasm-bindgen-minimal-example
https://www.w3schools.com/w3css/

Clarified the "rand" problem and solution for wasm-bindgen:
https://medium.com/@rossharrison/generating-sudoku-boards-pt-3-rust-for-webassembly-85bd7294c34a
In this book I didn't find a clear explanation for rand and wasm:
https://rust-random.github.io/book/

Images included free cartoon characters:
https://vectorcharacters.net/alphabet-vectors/alphabet-cartoon-characters

Open-source and free as a beer

My open-source projects are free as a beer (MIT license).
I just love programming.
But I need also to drink. If you find my projects and tutorials helpful, please buy me a beer by donating to my PayPal.
You know the price of a beer in your local bar ;-)
So I can drink a free beer for your health :-)
Na zdravje! Alla salute! Prost! Nazdravlje! 🍻

//bestia.dev
//github.com/bestia-dev
//bestiadev.substack.com
//youtube.com/@bestia-dev-tutorials