sdlGetJoystickProperties function joystick

int sdlGetJoystickProperties(
  1. Pointer<SdlJoystick> joystick
)

Get the properties associated with a joystick.

The following read-only properties are provided by SDL:

  • SDL_PROP_JOYSTICK_CAP_MONO_LED_BOOLEAN: true if this joystick has an LED that has adjustable brightness
  • SDL_PROP_JOYSTICK_CAP_RGB_LED_BOOLEAN: true if this joystick has an LED that has adjustable color
  • SDL_PROP_JOYSTICK_CAP_PLAYER_LED_BOOLEAN: true if this joystick has a player LED
  • SDL_PROP_JOYSTICK_CAP_RUMBLE_BOOLEAN: true if this joystick has left/right rumble
  • SDL_PROP_JOYSTICK_CAP_TRIGGER_RUMBLE_BOOLEAN: true if this joystick has simple trigger rumble

\param joystick the SDL_Joystick obtained from SDL_OpenJoystick(). \returns a valid property ID on success or 0 on failure; call SDL_GetError() for more information.

\threadsafety It is safe to call this function from any thread.

\since This function is available since SDL 3.2.0.

extern SDL_DECLSPEC SDL_PropertiesID SDLCALL SDL_GetJoystickProperties(SDL_Joystick *joystick)

Implementation

int sdlGetJoystickProperties(Pointer<SdlJoystick> joystick) {
  final sdlGetJoystickPropertiesLookupFunction = _libSdl
      .lookupFunction<
        Uint32 Function(Pointer<SdlJoystick> joystick),
        int Function(Pointer<SdlJoystick> joystick)
      >('SDL_GetJoystickProperties');
  return sdlGetJoystickPropertiesLookupFunction(joystick);
}