• Stars
    star
    423
  • Rank 102,544 (Top 3 %)
  • Language
    Rust
  • License
    MIT License
  • Created almost 7 years ago
  • Updated almost 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The Rocket game, now compiling to WASM

Rocket on WASM

An adapted version of the Rocket game, running on WASM!

Read the blog post about the development of this WASM version (includes an embedded canvas where you can play the game).

Screenshot

Screenshot

How to play

As you can see in the screenshot, you are the red rocket and have to save the world from the yellow invaders. To do so, you can use the following controls:

Keyboard Action
↑ Boost
← Rotate left
β†’ Rotate right
Space Shoot

Compiling and running

Follow the steps on the hellorust website in order to set up everything. Besides the wasm32-unknown-unknown target, the post_build.py script requires python 2.7 and wasm-gc.

After setting things up, you should be able to compile the code using the commands below:

cargo build --release --target wasm32-unknown-unknown
python post_build.py

The generated wasm will be copied to the html directory and wasm-gced.

python -m SimpleHTTPServer

Try opening http://localhost:8000/ on your browser to check whether it works.

Related projects