sprunk-engine
    Preparing search index...

    GamepadManager is the central manager for handling gamepad input in browser-based games. It provides an abstraction for working with gamepads, supporting both generic gamepads and Xbox-specific controllers.

    // Create GamepadManager instance
    const gamepadManager = new GamepadManager(new ManualTicker());

    // Listen for gamepad connections
    gamepadManager.onGamepadConnected.addObserver((gamepad) => {
    console.log(`Gamepad ${gamepad.index} connected`);
    });

    // Get all connected gamepads
    const gamepads = gamepadManager.getAllGamepads();
    Index

    Constructors

    • Creates a new GamepadManager instance. Upon creation, it:

      • Checks for already connected gamepads
      • Sets up event listeners for gamepad connections/disconnections
      • Creates appropriate device instances for each connected gamepad

      Parameters

      • ticker: Ticker

        The ticker to use for polling gamepad state

      Returns GamepadManager

    Properties

    onGamepadConnected: Event<GamepadDevice> = ...

    Event emitted when a gamepad is connected. The event provides the connected GamepadDevice instance.

    gamepadManager.onGamepadConnected.addObserver((gamepad) => {
    console.log(`Gamepad ${gamepad.index} connected`);
    });
    onGamepadDisconnected: Event<GamepadDevice> = ...

    Event emitted when a gamepad is disconnected. The event provides the disconnected GamepadDevice instance.

    gamepadManager.onGamepadDisconnected.addObserver((gamepad) => {
    console.log(`Gamepad ${gamepad.index} disconnected`);
    });

    Methods