Movatterモバイル変換


[0]ホーム

URL:


MDN Web Docs

Using the Gamepad API

BaselineWidely available *

HTML provides the necessary components for rich, interactive game development. Technologies like<canvas>, WebGL,<audio>, and<video>, along with JavaScript implementations, support tasks that provide similar, if not the same, features as native code. The Gamepad API allows developers and designers to access and use gamepads and other game controllers.

TheGamepad API introduces new events on theWindow object for reading gamepad and controller (hereby referred to asgamepad) state. In addition to these events, the API also adds aGamepad object, which you can use to query the state of a connected gamepad, and anavigator.getGamepads() method which you can use to get a list of gamepads known to the page.

Connecting to a gamepad

When a new gamepad is connected to the computer, the focused page first receives agamepadconnected event. If a gamepad is already connected when the page loaded, thegamepadconnected event is dispatched to the focused page when the user presses a button or moves an axis.

Note:In Firefox, gamepads are only exposed to a page when the user interacts with one with the page visible. This helps prevent gamepads from being used forfingerprinting the user. Once one gamepad has been interacted with, other gamepads that are connected will automatically be visible.

You can usegamepadconnected like this:

js
window.addEventListener("gamepadconnected", (e) => {  console.log(    "Gamepad connected at index %d: %s. %d buttons, %d axes.",    e.gamepad.index,    e.gamepad.id,    e.gamepad.buttons.length,    e.gamepad.axes.length,  );});

Each gamepad has a unique ID associated with it, which is available on the event'sgamepad property.

Disconnecting a gamepad

When a gamepad is disconnected, and if a page has previously received data for that gamepad (e.g.,gamepadconnected), a second event is dispatched to the focused window,gamepaddisconnected:

js
window.addEventListener("gamepaddisconnected", (e) => {  console.log(    "Gamepad disconnected from index %d: %s",    e.gamepad.index,    e.gamepad.id,  );});

The gamepad'sindex property will be unique per-device connected to the system, even if multiple controllers of the same type are used. Theindex property also functions as the index into theArray returned byNavigator.getGamepads().

js
const gamepads = {};function gamepadHandler(event, connected) {  const gamepad = event.gamepad;  // Note:  // gamepad === navigator.getGamepads()[gamepad.index]  if (connected) {    gamepads[gamepad.index] = gamepad;  } else {    delete gamepads[gamepad.index];  }}window.addEventListener(  "gamepadconnected",  (e) => {    gamepadHandler(e, true);  },  false,);window.addEventListener(  "gamepaddisconnected",  (e) => {    gamepadHandler(e, false);  },  false,);

This previous example also demonstrates how thegamepad property can be held after the event has completed — a technique we will use for device state querying later.

Querying the Gamepad object

As you can see, thegamepad events discussed above include agamepad property on the event object, which returns aGamepad object. We can use this in order to determine which gamepad (i.e., its ID) had caused the event, since multiple gamepads might be connected at once. We can do much more with theGamepad object, including holding a reference to it and querying it to find out which buttons and axes are being pressed at any one time. Doing so is often desirable for games or other interactive web pages that need to know the state of a gamepad now vs. the next time an event fires.

Performing such checks tends to involve using theGamepad object in conjunction with an animation loop (e.g.,requestAnimationFrame), where developers want to make decisions for the current frame based on the state of the gamepad or gamepads.

TheNavigator.getGamepads() method returns an array of all devices currently visible to the webpage, asGamepad objects (the first value is alwaysnull, sonull will be returned if there are no gamepads connected.) This can then be used to get the same information. For example, the first code example above could be rewritten as shown below:

js
window.addEventListener("gamepadconnected", (e) => {  const gp = navigator.getGamepads()[e.gamepad.index];  console.log(    "Gamepad connected at index %d: %s. %d buttons, %d axes.",    gp.index,    gp.id,    gp.buttons.length,    gp.axes.length,  );});

TheGamepad object's properties are as follows:

  • id: A string containing some information about the controller. This is not strictly specified, but in Firefox it will contain three pieces of information separated by dashes (-): two 4-digit hexadecimal strings containing the USB vendor and product id of the controller, and the name of the controller as provided by the driver. This information is intended to allow you to find a mapping for the controls on the device as well as display useful feedback to the user.

  • index: An integer that is unique for each gamepad currently connected to the system. This can be used to distinguish multiple controllers. Note that disconnecting a device and then connecting a new device may reuse the previous index.

  • mapping: A string indicating whether the browser has remapped the controls on the device to a known layout. Currently there is only one supported known layout — thestandard gamepad. If the browser is able to map controls on the device to that layout themapping property will be set to the stringstandard.

  • connected: A boolean indicating whether the gamepad is still connected to the system. If this is so the value isTrue; if not, it isFalse.

  • buttons: An array ofGamepadButton objects representing the buttons present on the device. EachGamepadButton has apressed and avalue property:

    • Thepressed property is a boolean indicating whether the button is currently pressed (true) or unpressed (false).
    • Thevalue property is a floating point value used to enable representing analog buttons, such as the triggers on many modern gamepads. The values are normalized to the range 0.0..1.0, with 0.0 representing a button that is not pressed, and 1.0 representing a button that is fully pressed.
  • axes: An array representing the controls with axes present on the device (e.g., analog thumb sticks). Each entry in the array is a floating point value in the range -1.0 - 1.0, representing the axis position from the lowest value (-1.0) to the highest value (1.0).

  • timestamp: This returns aDOMHighResTimeStamp representing the last time the data for this gamepad was updated, allowing developers to determine if theaxes andbutton data have been updated from the hardware. The value must be relative to thenavigationStart attribute of thePerformanceTiming interface. Values are monotonically increasing, meaning that they can be compared to determine the ordering of updates, as newer values will always be greater than or equal to older values. Note that this property is not currently supported in Firefox.

Note:The Gamepad object is available on thegamepadconnected event rather than theWindow object itself, for security reasons. Once we have a reference to it, we can query its properties for information about the current state of the gamepad. Behind the scenes, this object will be updated every time the gamepad's state changes.

Using button information

Let's look at an example that displays connection information for one gamepad (it ignores subsequent gamepad connections) and allows you to move a ball around the screen using the four gamepad buttons on the right-hand side of the gamepad. You canview the demo live, andfind the source code on GitHub.

To start with, we declare some variables: ThegamepadInfo paragraph that the connection info is written into, theball that we want to move, thestart variable that acts as the ID forrequestAnimation Frame, thea andb variables that act as position modifiers for moving the ball, and the shorthand variables that will be used for therequestAnimationFrame() andcancelAnimationFrame() cross browser forks.

js
const gamepadInfo = document.getElementById("gamepad-info");const ball = document.getElementById("ball");let start;let a = 0;let b = 0;

Next we use thegamepadconnected event to check for a gamepad being connected. When one is connected, we grab the gamepad usingnavigator.getGamepads()[0], print information about the gamepad into our gamepad infodiv, and fire thegameLoop() function that starts the whole ball movement process up.

js
window.addEventListener("gamepadconnected", (e) => {  const gp = navigator.getGamepads()[e.gamepad.index];  gamepadInfo.textContent = `Gamepad connected at index ${gp.index}: ${gp.id}. It has ${gp.buttons.length} buttons and ${gp.axes.length} axes.`;  gameLoop();});

Now we use thegamepaddisconnected event to check if the gamepad is disconnected again. If so, we stop therequestAnimationFrame() loop (see below) and revert the gamepad information back to what it was originally.

js
window.addEventListener("gamepaddisconnected", (e) => {  gamepadInfo.textContent = "Waiting for gamepad.";  cancelAnimationFrame(start);});

Now on to the main game loop. In each execution of the loop we check if one of four buttons is being pressed; if so, we update the values of thea andb movement variables appropriately, then update theleft andtop properties, changing their values to the current values ofa andb respectively. This has the effect of moving the ball around the screen.

After all this is done, we use ourrequestAnimationFrame() to request the next animation frame, runninggameLoop() again.

js
function gameLoop() {  const gamepads = navigator.getGamepads();  if (!gamepads) {    return;  }  const gp = gamepads[0];  if (gp.buttons[0].pressed) {    b--;  }  if (gp.buttons[2].pressed) {    b++;  }  if (gp.buttons[1].pressed) {    a++;  }  if (gp.buttons[3].pressed) {    a--;  }  ball.style.left = `${a * 2}px`;  ball.style.top = `${b * 2}px`;  start = requestAnimationFrame(gameLoop);}

Complete example: Displaying gamepad state

This example shows how to use theGamepad object, as well as thegamepadconnected andgamepaddisconnected events to display the state of all gamepads connected to the system. The example is based on aGamepad demo, which has thesource code available on GitHub.

js
let loopStarted = false;window.addEventListener("gamepadconnected", (evt) => {  addGamepad(evt.gamepad);});window.addEventListener("gamepaddisconnected", (evt) => {  removeGamepad(evt.gamepad);});function addGamepad(gamepad) {  const d = document.createElement("div");  d.setAttribute("id", `controller${gamepad.index}`);  const t = document.createElement("h1");  t.textContent = `gamepad: ${gamepad.id}`;  d.append(t);  const b = document.createElement("ul");  b.className = "buttons";  gamepad.buttons.forEach((button, i) => {    const e = document.createElement("li");    e.className = "button";    e.textContent = `Button ${i}`;    b.append(e);  });  d.append(b);  const a = document.createElement("div");  a.className = "axes";  gamepad.axes.forEach((axis, i) => {    const p = document.createElement("progress");    p.className = "axis";    p.setAttribute("max", "2");    p.setAttribute("value", "1");    p.textContent = i;    a.append(p);  });  d.appendChild(a);  // See https://github.com/luser/gamepadtest/blob/master/index.html  const start = document.querySelector("#start");  if (start) {    start.style.display = "none";  }  document.body.append(d);  if (!loopStarted) {    requestAnimationFrame(updateStatus);    loopStarted = true;  }}function removeGamepad(gamepad) {  document.querySelector(`#controller${gamepad.index}`).remove();}function updateStatus() {  for (const gamepad of navigator.getGamepads()) {    if (!gamepad) continue;    const d = document.getElementById(`controller${gamepad.index}`);    const buttonElements = d.getElementsByClassName("button");    for (const [i, button] of gamepad.buttons.entries()) {      const el = buttonElements[i];      const pct = `${Math.round(button.value * 100)}%`;      el.style.backgroundSize = `${pct} ${pct}`;      if (button.pressed) {        el.textContent = `Button ${i} [PRESSED]`;        el.style.color = "#42f593";        el.className = "button pressed";      } else {        el.textContent = `Button ${i}`;        el.style.color = "#2e2d33";        el.className = "button";      }    }    const axisElements = d.getElementsByClassName("axis");    for (const [i, axis] of gamepad.axes.entries()) {      const el = axisElements[i];      el.textContent = `${i}: ${axis.toFixed(4)}`;      el.setAttribute("value", axis + 1);    }  }  requestAnimationFrame(updateStatus);}

Specifications

Specification
Gamepad
# gamepad-interface
Gamepad Extensions
# partial-gamepad-interface

Browser compatibility

Help improve MDN

Learn how to contribute.

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp