User Interaction

In this lesson, you will learn techniques for handling user interaction in HTML Canvas-based games.

Applications written for HTML5 Canvas offer no special features to handle user input. Essentially, HTML user input involves using the event-handling system built into browsers.

Keyboard events

We are using the arrow keys to move and rotate the pieces. For this to work, we need to listen for and handle keyboard events. We can listen for the keydown, keyup, or keypress events at the document level. Let’s add an event listener for the keydown event to our document with the addEventListener() method:

document.addEventListener('keydown', event => {
  // Handle event
});

When we are done, we can’t forget to remove the event listener with the removeEventListener() method. Otherwise, we might add multiple listeners and start moving at warp speed.

Enums

Next, we map the keycodes to names we can understand in constants.js. For this, it would be nice to have an enum.

Enum (enumeration) is ...