All Projects → mozilla → Mortar Game Stub

mozilla / Mortar Game Stub

A simple web game template.

Programming Languages

javascript
184084 projects - #8 most used programming language

Game Stub

This is a small game template including a basic render loop where you can move the player around.

This is part of the mortar template collection for building Open Web Apps.

Downloading

There are a few ways to get this template:

If you use Git:

git clone https://github.com/mozilla/mortar-game-stub.git

Or download the latest version in this ZIP file.

Usage

Start a local server to simulate accessing the hosted app from the browser, and trying the Install button flow.

For example:

python -m SimpleHTTPServer 8000

then access localhost:8000 or your.computer.ip:8000 (for example, 192.168.0.25) using Firefox (Desktop or Mobile), or the Browser app in a Firefox OS simulator (or device).

You'll need to use the IP address when using a physical device. Change the port accordingly, if you're running a webserver in this port already.

Code walkthrough

The game logic is defined in js/app.js. This is where we define the player entity, and set up the render loop, and the input and install handlers. In the interest of keeping things tidy and easy to follow, we have extracted the code for input and install onto two files (js/input.js and js/install.js) that we then reference in index.html, right before js/app.js.

If you're interested in reading more about how game loops work, you are strongly advised to read Anatomy of a video game, an article describing all these topics.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].