Snake Game With Rust, JavaScript, and WebAssembly




Snake Game With Rust, JavaScript, and WebAssembly

In this course, we will build a Snake Game with Rust, JavaScript, and WebAssembly. We will learn how to export API implemented with Rust to JavaScript app. We will get to know canvas rendering, applications of vectors, and basics of game development so that at the end of the course, you can take the core of this project and improve it or create your game.

Before we start writing code, we need to have a clear vision of what we are going to build. Let's first decide on what features the game will have and how it will look like so that we can make a plan of action.

We are going to build a classic snake game that you can see on the screen. When the snake eats food, it becomes longer, and the score increases. If the snake heats the wall or bites the tail game is over. Additionally, we will allow the player to stop the game by pressing the space button. To keep the user motivated, we will save the best score and show it alongside the current one. We make sure that the game looks good on any screen size, be it a tiny mobile phone or a large TV.

We want each component of the game to be as independent as possible. We will implement the core logic of the game with Rust and will export API to JavaScript via WebAssembly.

The main thing that we will export from Rust is Game struct with a constructor and two public methods. The first method will receive a duration from the last update and direction that the user wants a snake to take. The second method will check if the game is over.

On the JavaScript side, we will run the game loop, call API methods, render all game elements, capture user input, and save the best score.

Now let's plan how we are going to make it all happen. First, we will install the tools needed for development and start the project. Then we will create an instance of the Game struct from JavaScript. Next, we will render all the objects of the game. Then we will implement logic to place food in a random place that is free from the snake. After that, we will start the game loop and make the snake move. Next, we will allow the user to control the snake direction and stop the game. After that, we will make that every time the snake eats the food, its tail grows longer. Finally, we will complete the development of the game by adding logic that will restart the game when the player lost and deploy the game.

All the source code you can find in the repository. Each part will have a link to the corresponding commit. There are a lot of things to cover in this short course, so let's jump in.


Build a Real Game With Rust and Javascript

Url: View Details

What you will learn
  • Connect JavaScript and Rust with WebAssembly
  • Game Development Basics
  • Practical Applications of Vectors

Rating: 3.35

Level: All Levels

Duration: 1 hour

Instructor: Rodion Chachura


Courses By:   0-9  A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z 

About US

The display of third-party trademarks and trade names on this site does not necessarily indicate any affiliation or endorsement of hugecourses.com.


© 2021 hugecourses.com. All rights reserved.
View Sitemap