SDL_gamepad.h 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2023 Sam Lantinga <slouken@libsdl.org>
  4. This software is provided 'as-is', without any express or implied
  5. warranty. In no event will the authors be held liable for any damages
  6. arising from the use of this software.
  7. Permission is granted to anyone to use this software for any purpose,
  8. including commercial applications, and to alter it and redistribute it
  9. freely, subject to the following restrictions:
  10. 1. The origin of this software must not be misrepresented; you must not
  11. claim that you wrote the original software. If you use this software
  12. in a product, an acknowledgment in the product documentation would be
  13. appreciated but is not required.
  14. 2. Altered source versions must be plainly marked as such, and must not be
  15. misrepresented as being the original software.
  16. 3. This notice may not be removed or altered from any source distribution.
  17. */
  18. /**
  19. * \file SDL_gamepad.h
  20. *
  21. * \brief Include file for SDL gamepad event handling
  22. */
  23. #ifndef SDL_gamepad_h_
  24. #define SDL_gamepad_h_
  25. #include <SDL3/SDL_stdinc.h>
  26. #include <SDL3/SDL_error.h>
  27. #include <SDL3/SDL_rwops.h>
  28. #include <SDL3/SDL_sensor.h>
  29. #include <SDL3/SDL_joystick.h>
  30. #include <SDL3/SDL_begin_code.h>
  31. /* Set up for C function definitions, even when using C++ */
  32. #ifdef __cplusplus
  33. extern "C" {
  34. #endif
  35. /**
  36. * \file SDL_gamepad.h
  37. *
  38. * In order to use these functions, SDL_Init() must have been called
  39. * with the ::SDL_INIT_GAMEPAD flag. This causes SDL to scan the system
  40. * for gamepads, and load appropriate drivers.
  41. *
  42. * If you would like to receive gamepad updates while the application
  43. * is in the background, you should set the following hint before calling
  44. * SDL_Init(): SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS
  45. */
  46. /**
  47. * The structure used to identify an SDL gamepad
  48. */
  49. struct SDL_Gamepad;
  50. typedef struct SDL_Gamepad SDL_Gamepad;
  51. typedef enum
  52. {
  53. SDL_GAMEPAD_TYPE_UNKNOWN = 0,
  54. SDL_GAMEPAD_TYPE_VIRTUAL,
  55. SDL_GAMEPAD_TYPE_XBOX360,
  56. SDL_GAMEPAD_TYPE_XBOXONE,
  57. SDL_GAMEPAD_TYPE_PS3,
  58. SDL_GAMEPAD_TYPE_PS4,
  59. SDL_GAMEPAD_TYPE_PS5,
  60. SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_PRO,
  61. SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_LEFT,
  62. SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_RIGHT,
  63. SDL_GAMEPAD_TYPE_NINTENDO_SWITCH_JOYCON_PAIR,
  64. SDL_GAMEPAD_TYPE_AMAZON_LUNA,
  65. SDL_GAMEPAD_TYPE_GOOGLE_STADIA,
  66. SDL_GAMEPAD_TYPE_NVIDIA_SHIELD
  67. } SDL_GamepadType;
  68. /**
  69. * The list of buttons available on a gamepad
  70. */
  71. typedef enum
  72. {
  73. SDL_GAMEPAD_BUTTON_INVALID = -1,
  74. SDL_GAMEPAD_BUTTON_A,
  75. SDL_GAMEPAD_BUTTON_B,
  76. SDL_GAMEPAD_BUTTON_X,
  77. SDL_GAMEPAD_BUTTON_Y,
  78. SDL_GAMEPAD_BUTTON_BACK,
  79. SDL_GAMEPAD_BUTTON_GUIDE,
  80. SDL_GAMEPAD_BUTTON_START,
  81. SDL_GAMEPAD_BUTTON_LEFT_STICK,
  82. SDL_GAMEPAD_BUTTON_RIGHT_STICK,
  83. SDL_GAMEPAD_BUTTON_LEFT_SHOULDER,
  84. SDL_GAMEPAD_BUTTON_RIGHT_SHOULDER,
  85. SDL_GAMEPAD_BUTTON_DPAD_UP,
  86. SDL_GAMEPAD_BUTTON_DPAD_DOWN,
  87. SDL_GAMEPAD_BUTTON_DPAD_LEFT,
  88. SDL_GAMEPAD_BUTTON_DPAD_RIGHT,
  89. SDL_GAMEPAD_BUTTON_MISC1, /* Xbox Series X share button, PS5 microphone button, Nintendo Switch Pro capture button, Amazon Luna microphone button */
  90. SDL_GAMEPAD_BUTTON_PADDLE1, /* Xbox Elite paddle P1 (upper left, facing the back) */
  91. SDL_GAMEPAD_BUTTON_PADDLE2, /* Xbox Elite paddle P3 (upper right, facing the back) */
  92. SDL_GAMEPAD_BUTTON_PADDLE3, /* Xbox Elite paddle P2 (lower left, facing the back) */
  93. SDL_GAMEPAD_BUTTON_PADDLE4, /* Xbox Elite paddle P4 (lower right, facing the back) */
  94. SDL_GAMEPAD_BUTTON_TOUCHPAD, /* PS4/PS5 touchpad button */
  95. SDL_GAMEPAD_BUTTON_MAX
  96. } SDL_GamepadButton;
  97. /**
  98. * The list of axes available on a gamepad
  99. *
  100. * Thumbstick axis values range from SDL_JOYSTICK_AXIS_MIN to SDL_JOYSTICK_AXIS_MAX,
  101. * and are centered within ~8000 of zero, though advanced UI will allow users to set
  102. * or autodetect the dead zone, which varies between gamepads.
  103. *
  104. * Trigger axis values range from 0 to SDL_JOYSTICK_AXIS_MAX.
  105. */
  106. typedef enum
  107. {
  108. SDL_GAMEPAD_AXIS_INVALID = -1,
  109. SDL_GAMEPAD_AXIS_LEFTX,
  110. SDL_GAMEPAD_AXIS_LEFTY,
  111. SDL_GAMEPAD_AXIS_RIGHTX,
  112. SDL_GAMEPAD_AXIS_RIGHTY,
  113. SDL_GAMEPAD_AXIS_LEFT_TRIGGER,
  114. SDL_GAMEPAD_AXIS_RIGHT_TRIGGER,
  115. SDL_GAMEPAD_AXIS_MAX
  116. } SDL_GamepadAxis;
  117. /**
  118. * Add support for gamepads that SDL is unaware of or change the binding of an
  119. * existing gamepad.
  120. *
  121. * The mapping string has the format "GUID,name,mapping", where GUID is the
  122. * string value from SDL_GetJoystickGUIDString(), name is the human readable
  123. * string for the device and mappings are gamepad mappings to joystick ones.
  124. * Under Windows there is a reserved GUID of "xinput" that covers all XInput
  125. * devices. The mapping format for joystick is:
  126. *
  127. * - `bX`: a joystick button, index X
  128. * - `hX.Y`: hat X with value Y
  129. * - `aX`: axis X of the joystick
  130. *
  131. * Buttons can be used as a gamepad axes and vice versa.
  132. *
  133. * This string shows an example of a valid mapping for a gamepad:
  134. *
  135. * ```c
  136. * "341a3608000000000000504944564944,Afterglow PS3 Controller,a:b1,b:b2,y:b3,x:b0,start:b9,guide:b12,back:b8,dpup:h0.1,dpleft:h0.8,dpdown:h0.4,dpright:h0.2,leftshoulder:b4,rightshoulder:b5,leftstick:b10,rightstick:b11,leftx:a0,lefty:a1,rightx:a2,righty:a3,lefttrigger:b6,righttrigger:b7"
  137. * ```
  138. *
  139. * \param mapping the mapping string
  140. * \returns 1 if a new mapping is added, 0 if an existing mapping is updated,
  141. * -1 on error; call SDL_GetError() for more information.
  142. *
  143. * \since This function is available since SDL 3.0.0.
  144. *
  145. * \sa SDL_GetGamepadMapping
  146. * \sa SDL_GetGamepadMappingForGUID
  147. */
  148. extern DECLSPEC int SDLCALL SDL_AddGamepadMapping(const char *mapping);
  149. /**
  150. * Load a set of gamepad mappings from a seekable SDL data stream.
  151. *
  152. * You can call this function several times, if needed, to load different
  153. * database files.
  154. *
  155. * If a new mapping is loaded for an already known gamepad GUID, the later
  156. * version will overwrite the one currently loaded.
  157. *
  158. * Mappings not belonging to the current platform or with no platform field
  159. * specified will be ignored (i.e. mappings for Linux will be ignored in
  160. * Windows, etc).
  161. *
  162. * This function will load the text database entirely in memory before
  163. * processing it, so take this into consideration if you are in a memory
  164. * constrained environment.
  165. *
  166. * \param rw the data stream for the mappings to be added
  167. * \param freerw non-zero to close the stream after being read
  168. * \returns the number of mappings added or -1 on error; call SDL_GetError()
  169. * for more information.
  170. *
  171. * \since This function is available since SDL 3.0.0.
  172. *
  173. * \sa SDL_AddGamepadMapping
  174. * \sa SDL_AddGamepadMappingsFromFile
  175. * \sa SDL_GetGamepadMappingForGUID
  176. */
  177. extern DECLSPEC int SDLCALL SDL_AddGamepadMappingsFromRW(SDL_RWops *rw, int freerw);
  178. /**
  179. * Load a set of mappings from a file, filtered by the current SDL_GetPlatform()
  180. *
  181. * Convenience macro.
  182. */
  183. #define SDL_AddGamepadMappingsFromFile(file) SDL_AddGamepadMappingsFromRW(SDL_RWFromFile(file, "rb"), 1)
  184. /**
  185. * Get the number of mappings installed.
  186. *
  187. * \returns the number of mappings.
  188. *
  189. * \since This function is available since SDL 3.0.0.
  190. */
  191. extern DECLSPEC int SDLCALL SDL_GetNumGamepadMappings(void);
  192. /**
  193. * Get the mapping at a particular index.
  194. *
  195. * \param mapping_index mapping index
  196. * \returns the mapping string. Must be freed with SDL_free(). Returns NULL if
  197. * the index is out of range.
  198. *
  199. * \since This function is available since SDL 3.0.0.
  200. */
  201. extern DECLSPEC char * SDLCALL SDL_GetGamepadMappingForIndex(int mapping_index);
  202. /**
  203. * Get the gamepad mapping string for a given GUID.
  204. *
  205. * The returned string must be freed with SDL_free().
  206. *
  207. * \param guid a structure containing the GUID for which a mapping is desired
  208. * \returns a mapping string or NULL on error; call SDL_GetError() for more
  209. * information.
  210. *
  211. * \since This function is available since SDL 3.0.0.
  212. *
  213. * \sa SDL_GetJoystickInstanceGUID
  214. * \sa SDL_GetJoystickGUID
  215. */
  216. extern DECLSPEC char * SDLCALL SDL_GetGamepadMappingForGUID(SDL_JoystickGUID guid);
  217. /**
  218. * Get the current mapping of a gamepad.
  219. *
  220. * The returned string must be freed with SDL_free().
  221. *
  222. * Details about mappings are discussed with SDL_AddGamepadMapping().
  223. *
  224. * \param gamepad the gamepad you want to get the current mapping for
  225. * \returns a string that has the gamepad's mapping or NULL if no mapping is
  226. * available; call SDL_GetError() for more information.
  227. *
  228. * \since This function is available since SDL 3.0.0.
  229. *
  230. * \sa SDL_AddGamepadMapping
  231. * \sa SDL_GetGamepadMappingForGUID
  232. * \sa SDL_SetGamepadMapping
  233. */
  234. extern DECLSPEC char * SDLCALL SDL_GetGamepadMapping(SDL_Gamepad *gamepad);
  235. /**
  236. * Set the current mapping of a joystick or gamepad.
  237. *
  238. * Details about mappings are discussed with SDL_AddGamepadMapping().
  239. *
  240. * \param instance_id the joystick instance ID
  241. * \param mapping the mapping to use for this device, or NULL to clear the mapping
  242. * \returns 0 on success or a negative error code on failure; call
  243. * SDL_GetError() for more information.
  244. *
  245. * \since This function is available since SDL 3.0.0.
  246. *
  247. * \sa SDL_AddGamepadMapping
  248. * \sa SDL_GetGamepadMapping
  249. */
  250. extern DECLSPEC int SDLCALL SDL_SetGamepadMapping(SDL_JoystickID instance_id, const char *mapping);
  251. /**
  252. * Get a list of currently connected gamepads.
  253. *
  254. * \param count a pointer filled in with the number of gamepads returned
  255. * \returns a 0 terminated array of joystick instance IDs which should be
  256. * freed with SDL_free(), or NULL on error; call SDL_GetError() for
  257. * more details.
  258. *
  259. * \since This function is available since SDL 3.0.0.
  260. *
  261. * \sa SDL_OpenGamepad
  262. */
  263. extern DECLSPEC SDL_JoystickID *SDLCALL SDL_GetGamepads(int *count);
  264. /**
  265. * Check if the given joystick is supported by the gamepad interface.
  266. *
  267. * \param instance_id the joystick instance ID
  268. * \returns SDL_TRUE if the given joystick is supported by the gamepad
  269. * interface, SDL_FALSE if it isn't or it's an invalid index.
  270. *
  271. * \since This function is available since SDL 3.0.0.
  272. *
  273. * \sa SDL_GetGamepadNameForIndex
  274. * \sa SDL_OpenGamepad
  275. */
  276. extern DECLSPEC SDL_bool SDLCALL SDL_IsGamepad(SDL_JoystickID instance_id);
  277. /**
  278. * Get the implementation dependent name of a gamepad.
  279. *
  280. * This can be called before any gamepads are opened.
  281. *
  282. * \param instance_id the joystick instance ID
  283. * \returns the name of the selected gamepad. If no name can be found, this
  284. * function returns NULL; call SDL_GetError() for more information.
  285. *
  286. * \since This function is available since SDL 3.0.0.
  287. *
  288. * \sa SDL_GetGamepadName
  289. * \sa SDL_OpenGamepad
  290. */
  291. extern DECLSPEC const char *SDLCALL SDL_GetGamepadInstanceName(SDL_JoystickID instance_id);
  292. /**
  293. * Get the implementation dependent path of a gamepad.
  294. *
  295. * This can be called before any gamepads are opened.
  296. *
  297. * \param instance_id the joystick instance ID
  298. * \returns the path of the selected gamepad. If no path can be found, this
  299. * function returns NULL; call SDL_GetError() for more information.
  300. *
  301. * \since This function is available since SDL 3.0.0.
  302. *
  303. * \sa SDL_GetGamepadPath
  304. * \sa SDL_OpenGamepad
  305. */
  306. extern DECLSPEC const char *SDLCALL SDL_GetGamepadInstancePath(SDL_JoystickID instance_id);
  307. /**
  308. * Get the player index of a gamepad.
  309. *
  310. * This can be called before any gamepads are opened.
  311. *
  312. * \param instance_id the joystick instance ID
  313. * \returns the player index of a gamepad, or -1 if it's not available
  314. *
  315. * \since This function is available since SDL 3.0.0.
  316. *
  317. * \sa SDL_GetGamepadPlayerIndex
  318. * \sa SDL_OpenGamepad
  319. */
  320. extern DECLSPEC int SDLCALL SDL_GetGamepadInstancePlayerIndex(SDL_JoystickID instance_id);
  321. /**
  322. * Get the implementation-dependent GUID of a gamepad.
  323. *
  324. * This can be called before any gamepads are opened.
  325. *
  326. * \param instance_id the joystick instance ID
  327. * \returns the GUID of the selected gamepad. If called on an invalid index,
  328. * this function returns a zero GUID
  329. *
  330. * \since This function is available since SDL 3.0.0.
  331. *
  332. * \sa SDL_GetGamepadGUID
  333. * \sa SDL_GetGamepadGUIDString
  334. */
  335. extern DECLSPEC SDL_JoystickGUID SDLCALL SDL_GetGamepadInstanceGUID(SDL_JoystickID instance_id);
  336. /**
  337. * Get the USB vendor ID of a gamepad, if available.
  338. *
  339. * This can be called before any gamepads are opened. If the vendor ID isn't
  340. * available this function returns 0.
  341. *
  342. * \param instance_id the joystick instance ID
  343. * \returns the USB vendor ID of the selected gamepad. If called on an invalid
  344. * index, this function returns zero
  345. *
  346. * \since This function is available since SDL 3.0.0.
  347. */
  348. extern DECLSPEC Uint16 SDLCALL SDL_GetGamepadInstanceVendor(SDL_JoystickID instance_id);
  349. /**
  350. * Get the USB product ID of a gamepad, if available.
  351. *
  352. * This can be called before any gamepads are opened. If the product ID isn't
  353. * available this function returns 0.
  354. *
  355. * \param instance_id the joystick instance ID
  356. * \returns the USB product ID of the selected gamepad. If called on an
  357. * invalid index, this function returns zero
  358. *
  359. * \since This function is available since SDL 3.0.0.
  360. */
  361. extern DECLSPEC Uint16 SDLCALL SDL_GetGamepadInstanceProduct(SDL_JoystickID instance_id);
  362. /**
  363. * Get the product version of a gamepad, if available.
  364. *
  365. * This can be called before any gamepads are opened. If the product version
  366. * isn't available this function returns 0.
  367. *
  368. * \param instance_id the joystick instance ID
  369. * \returns the product version of the selected gamepad. If called on an
  370. * invalid index, this function returns zero
  371. *
  372. * \since This function is available since SDL 3.0.0.
  373. */
  374. extern DECLSPEC Uint16 SDLCALL SDL_GetGamepadInstanceProductVersion(SDL_JoystickID instance_id);
  375. /**
  376. * Get the type of a gamepad.
  377. *
  378. * This can be called before any gamepads are opened.
  379. *
  380. * \param instance_id the joystick instance ID
  381. * \returns the gamepad type.
  382. *
  383. * \since This function is available since SDL 3.0.0.
  384. */
  385. extern DECLSPEC SDL_GamepadType SDLCALL SDL_GetGamepadInstanceType(SDL_JoystickID instance_id);
  386. /**
  387. * Get the mapping of a gamepad.
  388. *
  389. * This can be called before any gamepads are opened.
  390. *
  391. * \param instance_id the joystick instance ID
  392. * \returns the mapping string. Must be freed with SDL_free(). Returns NULL if
  393. * no mapping is available.
  394. *
  395. * \since This function is available since SDL 3.0.0.
  396. */
  397. extern DECLSPEC char *SDLCALL SDL_GetGamepadInstanceMapping(SDL_JoystickID instance_id);
  398. /**
  399. * Open a gamepad for use.
  400. *
  401. * \param instance_id the joystick instance ID
  402. * \returns a gamepad identifier or NULL if an error occurred; call
  403. * SDL_GetError() for more information.
  404. *
  405. * \since This function is available since SDL 3.0.0.
  406. *
  407. * \sa SDL_CloseGamepad
  408. * \sa SDL_GetGamepadNameForIndex
  409. * \sa SDL_IsGamepad
  410. */
  411. extern DECLSPEC SDL_Gamepad *SDLCALL SDL_OpenGamepad(SDL_JoystickID instance_id);
  412. /**
  413. * Get the SDL_Gamepad associated with a joystick instance ID, if it has been
  414. * opened.
  415. *
  416. * \param instance_id the joystick instance ID of the gamepad
  417. * \returns an SDL_Gamepad on success or NULL on failure or if it hasn't been
  418. * opened yet; call SDL_GetError() for more information.
  419. *
  420. * \since This function is available since SDL 3.0.0.
  421. */
  422. extern DECLSPEC SDL_Gamepad *SDLCALL SDL_GetGamepadFromInstanceID(SDL_JoystickID instance_id);
  423. /**
  424. * Get the SDL_Gamepad associated with a player index.
  425. *
  426. * \param player_index the player index, which different from the instance ID
  427. * \returns the SDL_Gamepad associated with a player index.
  428. *
  429. * \since This function is available since SDL 3.0.0.
  430. *
  431. * \sa SDL_GetGamepadPlayerIndex
  432. * \sa SDL_SetGamepadPlayerIndex
  433. */
  434. extern DECLSPEC SDL_Gamepad *SDLCALL SDL_GetGamepadFromPlayerIndex(int player_index);
  435. /**
  436. * Get the instance ID of an opened gamepad.
  437. *
  438. * \param gamepad a gamepad identifier previously returned by
  439. * SDL_OpenGamepad()
  440. * \returns the instance ID of the specified gamepad on success or 0 on
  441. * failure; call SDL_GetError() for more information.
  442. *
  443. * \since This function is available since SDL 3.0.0.
  444. *
  445. * \sa SDL_OpenGamepad
  446. */
  447. extern DECLSPEC SDL_JoystickID SDLCALL SDL_GetGamepadInstanceID(SDL_Gamepad *gamepad);
  448. /**
  449. * Get the implementation-dependent name for an opened gamepad.
  450. *
  451. * This is the same name as returned by SDL_GetGamepadNameForIndex(), but it
  452. * takes a gamepad identifier instead of the (unstable) device index.
  453. *
  454. * \param gamepad a gamepad identifier previously returned by
  455. * SDL_OpenGamepad()
  456. * \returns the implementation dependent name for the gamepad, or NULL if
  457. * there is no name or the identifier passed is invalid.
  458. *
  459. * \since This function is available since SDL 3.0.0.
  460. *
  461. * \sa SDL_GetGamepadNameForIndex
  462. * \sa SDL_OpenGamepad
  463. */
  464. extern DECLSPEC const char *SDLCALL SDL_GetGamepadName(SDL_Gamepad *gamepad);
  465. /**
  466. * Get the implementation-dependent path for an opened gamepad.
  467. *
  468. * This is the same path as returned by SDL_GetGamepadNameForIndex(), but it
  469. * takes a gamepad identifier instead of the (unstable) device index.
  470. *
  471. * \param gamepad a gamepad identifier previously returned by
  472. * SDL_OpenGamepad()
  473. * \returns the implementation dependent path for the gamepad, or NULL if
  474. * there is no path or the identifier passed is invalid.
  475. *
  476. * \since This function is available since SDL 3.0.0.
  477. *
  478. * \sa SDL_GetGamepadInstancePath
  479. */
  480. extern DECLSPEC const char *SDLCALL SDL_GetGamepadPath(SDL_Gamepad *gamepad);
  481. /**
  482. * Get the type of this currently opened gamepad
  483. *
  484. * This is the same name as returned by SDL_GetGamepadInstanceType(), but it
  485. * takes a gamepad identifier instead of the (unstable) device index.
  486. *
  487. * \param gamepad the gamepad object to query.
  488. * \returns the gamepad type.
  489. *
  490. * \since This function is available since SDL 3.0.0.
  491. */
  492. extern DECLSPEC SDL_GamepadType SDLCALL SDL_GetGamepadType(SDL_Gamepad *gamepad);
  493. /**
  494. * Get the player index of an opened gamepad.
  495. *
  496. * For XInput gamepads this returns the XInput user index.
  497. *
  498. * \param gamepad the gamepad object to query.
  499. * \returns the player index for gamepad, or -1 if it's not available.
  500. *
  501. * \since This function is available since SDL 3.0.0.
  502. */
  503. extern DECLSPEC int SDLCALL SDL_GetGamepadPlayerIndex(SDL_Gamepad *gamepad);
  504. /**
  505. * Set the player index of an opened gamepad.
  506. *
  507. * \param gamepad the gamepad object to adjust.
  508. * \param player_index Player index to assign to this gamepad, or -1 to clear
  509. * the player index and turn off player LEDs.
  510. * \returns 0 on success or a negative error code on failure; call
  511. * SDL_GetError() for more information.
  512. *
  513. * \since This function is available since SDL 3.0.0.
  514. */
  515. extern DECLSPEC int SDLCALL SDL_SetGamepadPlayerIndex(SDL_Gamepad *gamepad, int player_index);
  516. /**
  517. * Get the USB vendor ID of an opened gamepad, if available.
  518. *
  519. * If the vendor ID isn't available this function returns 0.
  520. *
  521. * \param gamepad the gamepad object to query.
  522. * \returns the USB vendor ID, or zero if unavailable.
  523. *
  524. * \since This function is available since SDL 3.0.0.
  525. */
  526. extern DECLSPEC Uint16 SDLCALL SDL_GetGamepadVendor(SDL_Gamepad *gamepad);
  527. /**
  528. * Get the USB product ID of an opened gamepad, if available.
  529. *
  530. * If the product ID isn't available this function returns 0.
  531. *
  532. * \param gamepad the gamepad object to query.
  533. * \returns the USB product ID, or zero if unavailable.
  534. *
  535. * \since This function is available since SDL 3.0.0.
  536. */
  537. extern DECLSPEC Uint16 SDLCALL SDL_GetGamepadProduct(SDL_Gamepad *gamepad);
  538. /**
  539. * Get the product version of an opened gamepad, if available.
  540. *
  541. * If the product version isn't available this function returns 0.
  542. *
  543. * \param gamepad the gamepad object to query.
  544. * \returns the USB product version, or zero if unavailable.
  545. *
  546. * \since This function is available since SDL 3.0.0.
  547. */
  548. extern DECLSPEC Uint16 SDLCALL SDL_GetGamepadProductVersion(SDL_Gamepad *gamepad);
  549. /**
  550. * Get the firmware version of an opened gamepad, if available.
  551. *
  552. * If the firmware version isn't available this function returns 0.
  553. *
  554. * \param gamepad the gamepad object to query.
  555. * \returns the gamepad firmware version, or zero if unavailable.
  556. *
  557. * \since This function is available since SDL 3.0.0.
  558. */
  559. extern DECLSPEC Uint16 SDLCALL SDL_GetGamepadFirmwareVersion(SDL_Gamepad *gamepad);
  560. /**
  561. * Get the serial number of an opened gamepad, if available.
  562. *
  563. * Returns the serial number of the gamepad, or NULL if it is not available.
  564. *
  565. * \param gamepad the gamepad object to query.
  566. * \returns the serial number, or NULL if unavailable.
  567. *
  568. * \since This function is available since SDL 3.0.0.
  569. */
  570. extern DECLSPEC const char * SDLCALL SDL_GetGamepadSerial(SDL_Gamepad *gamepad);
  571. /**
  572. * Get the battery level of a gamepad, if available.
  573. *
  574. * \param gamepad a gamepad identifier previously returned by
  575. * SDL_OpenGamepad()
  576. * \returns the current battery level as SDL_JoystickPowerLevel on success or
  577. * `SDL_JOYSTICK_POWER_UNKNOWN` if it is unknown
  578. *
  579. * \since This function is available since SDL 3.0.0.
  580. */
  581. extern DECLSPEC SDL_JoystickPowerLevel SDLCALL SDL_GetGamepadPowerLevel(SDL_Gamepad *gamepad);
  582. /**
  583. * Check if a gamepad has been opened and is currently connected.
  584. *
  585. * \param gamepad a gamepad identifier previously returned by
  586. * SDL_OpenGamepad()
  587. * \returns SDL_TRUE if the gamepad has been opened and is currently
  588. * connected, or SDL_FALSE if not.
  589. *
  590. * \since This function is available since SDL 3.0.0.
  591. *
  592. * \sa SDL_CloseGamepad
  593. * \sa SDL_OpenGamepad
  594. */
  595. extern DECLSPEC SDL_bool SDLCALL SDL_GamepadConnected(SDL_Gamepad *gamepad);
  596. /**
  597. * Get the underlying joystick from a gamepad
  598. *
  599. * This function will give you a SDL_Joystick object, which allows you to use
  600. * the SDL_Joystick functions with a SDL_Gamepad object. This would be useful
  601. * for getting a joystick's position at any given time, even if it hasn't
  602. * moved (moving it would produce an event, which would have the axis' value).
  603. *
  604. * The pointer returned is owned by the SDL_Gamepad. You should not call
  605. * SDL_CloseJoystick() on it, for example, since doing so will likely cause
  606. * SDL to crash.
  607. *
  608. * \param gamepad the gamepad object that you want to get a joystick from
  609. * \returns an SDL_Joystick object; call SDL_GetError() for more information.
  610. *
  611. * \since This function is available since SDL 3.0.0.
  612. */
  613. extern DECLSPEC SDL_Joystick *SDLCALL SDL_GetGamepadJoystick(SDL_Gamepad *gamepad);
  614. /**
  615. * Set the state of gamepad event processing.
  616. *
  617. * If gamepad events are disabled, you must call SDL_UpdateGamepads() yourself
  618. * and check the state of the gamepad when you want gamepad information.
  619. *
  620. * \param enabled whether to process gamepad events or not
  621. *
  622. * \since This function is available since SDL 3.0.0.
  623. *
  624. * \sa SDL_GamepadEventsEnabled
  625. */
  626. extern DECLSPEC void SDLCALL SDL_SetGamepadEventsEnabled(SDL_bool enabled);
  627. /**
  628. * Query the state of gamepad event processing.
  629. *
  630. * If gamepad events are disabled, you must call SDL_UpdateGamepads() yourself
  631. * and check the state of the gamepad when you want gamepad information.
  632. *
  633. * \returns SDL_TRUE if gamepad events are being processed, SDL_FALSE
  634. * otherwise.
  635. *
  636. * \since This function is available since SDL 3.0.0.
  637. *
  638. * \sa SDL_SetGamepadEventsEnabled
  639. */
  640. extern DECLSPEC SDL_bool SDLCALL SDL_GamepadEventsEnabled(void);
  641. /**
  642. * Manually pump gamepad updates if not using the loop.
  643. *
  644. * This function is called automatically by the event loop if events are
  645. * enabled. Under such circumstances, it will not be necessary to call this
  646. * function.
  647. *
  648. * \since This function is available since SDL 3.0.0.
  649. */
  650. extern DECLSPEC void SDLCALL SDL_UpdateGamepads(void);
  651. /**
  652. * Convert a string into SDL_GamepadAxis enum.
  653. *
  654. * This function is called internally to translate SDL_Gamepad mapping strings
  655. * for the underlying joystick device into the consistent SDL_Gamepad mapping.
  656. * You do not normally need to call this function unless you are parsing
  657. * SDL_Gamepad mappings in your own code.
  658. *
  659. * Note specially that "righttrigger" and "lefttrigger" map to
  660. * `SDL_GAMEPAD_AXIS_RIGHT_TRIGGER` and `SDL_GAMEPAD_AXIS_LEFT_TRIGGER`,
  661. * respectively.
  662. *
  663. * \param str string representing a SDL_Gamepad axis
  664. * \returns the SDL_GamepadAxis enum corresponding to the input string, or
  665. * `SDL_GAMEPAD_AXIS_INVALID` if no match was found.
  666. *
  667. * \since This function is available since SDL 3.0.0.
  668. *
  669. * \sa SDL_GetGamepadStringForAxis
  670. */
  671. extern DECLSPEC SDL_GamepadAxis SDLCALL SDL_GetGamepadAxisFromString(const char *str);
  672. /**
  673. * Convert from an SDL_GamepadAxis enum to a string.
  674. *
  675. * The caller should not SDL_free() the returned string.
  676. *
  677. * \param axis an enum value for a given SDL_GamepadAxis
  678. * \returns a string for the given axis, or NULL if an invalid axis is
  679. * specified. The string returned is of the format used by
  680. * SDL_Gamepad mapping strings.
  681. *
  682. * \since This function is available since SDL 3.0.0.
  683. *
  684. * \sa SDL_GetGamepadAxisFromString
  685. */
  686. extern DECLSPEC const char* SDLCALL SDL_GetGamepadStringForAxis(SDL_GamepadAxis axis);
  687. /**
  688. * Query whether a gamepad has a given axis.
  689. *
  690. * This merely reports whether the gamepad's mapping defined this axis, as
  691. * that is all the information SDL has about the physical device.
  692. *
  693. * \param gamepad a gamepad
  694. * \param axis an axis enum value (an SDL_GamepadAxis value)
  695. * \returns SDL_TRUE if the gamepad has this axis, SDL_FALSE otherwise.
  696. *
  697. * \since This function is available since SDL 3.0.0.
  698. */
  699. extern DECLSPEC SDL_bool SDLCALL SDL_GamepadHasAxis(SDL_Gamepad *gamepad, SDL_GamepadAxis axis);
  700. /**
  701. * Get the current state of an axis control on a gamepad.
  702. *
  703. * The axis indices start at index 0.
  704. *
  705. * The state is a value ranging from -32768 to 32767. Triggers, however, range
  706. * from 0 to 32767 (they never return a negative value).
  707. *
  708. * \param gamepad a gamepad
  709. * \param axis an axis index (one of the SDL_GamepadAxis values)
  710. * \returns axis state (including 0) on success or 0 (also) on failure; call
  711. * SDL_GetError() for more information.
  712. *
  713. * \since This function is available since SDL 3.0.0.
  714. *
  715. * \sa SDL_GetGamepadButton
  716. */
  717. extern DECLSPEC Sint16 SDLCALL SDL_GetGamepadAxis(SDL_Gamepad *gamepad, SDL_GamepadAxis axis);
  718. /**
  719. * Convert a string into an SDL_GamepadButton enum.
  720. *
  721. * This function is called internally to translate SDL_Gamepad mapping strings
  722. * for the underlying joystick device into the consistent SDL_Gamepad mapping.
  723. * You do not normally need to call this function unless you are parsing
  724. * SDL_Gamepad mappings in your own code.
  725. *
  726. * \param str string representing a SDL_Gamepad axis
  727. * \returns the SDL_GamepadButton enum corresponding to the input string, or
  728. * `SDL_GAMEPAD_AXIS_INVALID` if no match was found.
  729. *
  730. * \since This function is available since SDL 3.0.0.
  731. */
  732. extern DECLSPEC SDL_GamepadButton SDLCALL SDL_GetGamepadButtonFromString(const char *str);
  733. /**
  734. * Convert from an SDL_GamepadButton enum to a string.
  735. *
  736. * The caller should not SDL_free() the returned string.
  737. *
  738. * \param button an enum value for a given SDL_GamepadButton
  739. * \returns a string for the given button, or NULL if an invalid button is
  740. * specified. The string returned is of the format used by
  741. * SDL_Gamepad mapping strings.
  742. *
  743. * \since This function is available since SDL 3.0.0.
  744. *
  745. * \sa SDL_GetGamepadButtonFromString
  746. */
  747. extern DECLSPEC const char* SDLCALL SDL_GetGamepadStringForButton(SDL_GamepadButton button);
  748. /**
  749. * Query whether a gamepad has a given button.
  750. *
  751. * This merely reports whether the gamepad's mapping defined this button, as
  752. * that is all the information SDL has about the physical device.
  753. *
  754. * \param gamepad a gamepad
  755. * \param button a button enum value (an SDL_GamepadButton value)
  756. * \returns SDL_TRUE if the gamepad has this button, SDL_FALSE otherwise.
  757. *
  758. * \since This function is available since SDL 3.0.0.
  759. */
  760. extern DECLSPEC SDL_bool SDLCALL SDL_GamepadHasButton(SDL_Gamepad *gamepad, SDL_GamepadButton button);
  761. /**
  762. * Get the current state of a button on a gamepad.
  763. *
  764. * \param gamepad a gamepad
  765. * \param button a button index (one of the SDL_GamepadButton values)
  766. * \returns 1 for pressed state or 0 for not pressed state or error; call
  767. * SDL_GetError() for more information.
  768. *
  769. * \since This function is available since SDL 3.0.0.
  770. *
  771. * \sa SDL_GetGamepadAxis
  772. */
  773. extern DECLSPEC Uint8 SDLCALL SDL_GetGamepadButton(SDL_Gamepad *gamepad, SDL_GamepadButton button);
  774. /**
  775. * Get the number of touchpads on a gamepad.
  776. *
  777. * \param gamepad a gamepad
  778. * \returns number of touchpads
  779. *
  780. * \since This function is available since SDL 3.0.0.
  781. */
  782. extern DECLSPEC int SDLCALL SDL_GetNumGamepadTouchpads(SDL_Gamepad *gamepad);
  783. /**
  784. * Get the number of supported simultaneous fingers on a touchpad on a game
  785. * gamepad.
  786. *
  787. * \param gamepad a gamepad
  788. * \param touchpad a touchpad
  789. * \returns number of supported simultaneous fingers
  790. *
  791. * \since This function is available since SDL 3.0.0.
  792. */
  793. extern DECLSPEC int SDLCALL SDL_GetNumGamepadTouchpadFingers(SDL_Gamepad *gamepad, int touchpad);
  794. /**
  795. * Get the current state of a finger on a touchpad on a gamepad.
  796. *
  797. * \param gamepad a gamepad
  798. * \param touchpad a touchpad
  799. * \param finger a finger
  800. * \param state filled with state
  801. * \param x filled with x position
  802. * \param y filled with y position
  803. * \param pressure filled with pressure value
  804. * \returns 0 on success or a negative error code on failure; call
  805. * SDL_GetError() for more information.
  806. *
  807. * \since This function is available since SDL 3.0.0.
  808. */
  809. extern DECLSPEC int SDLCALL SDL_GetGamepadTouchpadFinger(SDL_Gamepad *gamepad, int touchpad, int finger, Uint8 *state, float *x, float *y, float *pressure);
  810. /**
  811. * Return whether a gamepad has a particular sensor.
  812. *
  813. * \param gamepad The gamepad to query
  814. * \param type The type of sensor to query
  815. * \returns SDL_TRUE if the sensor exists, SDL_FALSE otherwise.
  816. *
  817. * \since This function is available since SDL 3.0.0.
  818. */
  819. extern DECLSPEC SDL_bool SDLCALL SDL_GamepadHasSensor(SDL_Gamepad *gamepad, SDL_SensorType type);
  820. /**
  821. * Set whether data reporting for a gamepad sensor is enabled.
  822. *
  823. * \param gamepad The gamepad to update
  824. * \param type The type of sensor to enable/disable
  825. * \param enabled Whether data reporting should be enabled
  826. * \returns 0 on success or a negative error code on failure; call
  827. * SDL_GetError() for more information.
  828. *
  829. * \since This function is available since SDL 3.0.0.
  830. */
  831. extern DECLSPEC int SDLCALL SDL_SetGamepadSensorEnabled(SDL_Gamepad *gamepad, SDL_SensorType type, SDL_bool enabled);
  832. /**
  833. * Query whether sensor data reporting is enabled for a gamepad.
  834. *
  835. * \param gamepad The gamepad to query
  836. * \param type The type of sensor to query
  837. * \returns SDL_TRUE if the sensor is enabled, SDL_FALSE otherwise.
  838. *
  839. * \since This function is available since SDL 3.0.0.
  840. */
  841. extern DECLSPEC SDL_bool SDLCALL SDL_GamepadSensorEnabled(SDL_Gamepad *gamepad, SDL_SensorType type);
  842. /**
  843. * Get the data rate (number of events per second) of a gamepad sensor.
  844. *
  845. * \param gamepad The gamepad to query
  846. * \param type The type of sensor to query
  847. * \returns the data rate, or 0.0f if the data rate is not available.
  848. *
  849. * \since This function is available since SDL 3.0.0.
  850. */
  851. extern DECLSPEC float SDLCALL SDL_GetGamepadSensorDataRate(SDL_Gamepad *gamepad, SDL_SensorType type);
  852. /**
  853. * Get the current state of a gamepad sensor.
  854. *
  855. * The number of values and interpretation of the data is sensor dependent.
  856. * See SDL_sensor.h for the details for each type of sensor.
  857. *
  858. * \param gamepad The gamepad to query
  859. * \param type The type of sensor to query
  860. * \param data A pointer filled with the current sensor state
  861. * \param num_values The number of values to write to data
  862. * \returns 0 on success or a negative error code on failure; call
  863. * SDL_GetError() for more information.
  864. *
  865. * \since This function is available since SDL 3.0.0.
  866. */
  867. extern DECLSPEC int SDLCALL SDL_GetGamepadSensorData(SDL_Gamepad *gamepad, SDL_SensorType type, float *data, int num_values);
  868. /**
  869. * Start a rumble effect on a gamepad.
  870. *
  871. * Each call to this function cancels any previous rumble effect, and calling
  872. * it with 0 intensity stops any rumbling.
  873. *
  874. * \param gamepad The gamepad to vibrate
  875. * \param low_frequency_rumble The intensity of the low frequency (left)
  876. * rumble motor, from 0 to 0xFFFF
  877. * \param high_frequency_rumble The intensity of the high frequency (right)
  878. * rumble motor, from 0 to 0xFFFF
  879. * \param duration_ms The duration of the rumble effect, in milliseconds
  880. * \returns 0, or -1 if rumble isn't supported on this gamepad
  881. *
  882. * \since This function is available since SDL 3.0.0.
  883. *
  884. * \sa SDL_GamepadHasRumble
  885. */
  886. extern DECLSPEC int SDLCALL SDL_RumbleGamepad(SDL_Gamepad *gamepad, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble, Uint32 duration_ms);
  887. /**
  888. * Start a rumble effect in the gamepad's triggers.
  889. *
  890. * Each call to this function cancels any previous trigger rumble effect, and
  891. * calling it with 0 intensity stops any rumbling.
  892. *
  893. * Note that this is rumbling of the _triggers_ and not the gamepad as a
  894. * whole. This is currently only supported on Xbox One gamepads. If you want
  895. * the (more common) whole-gamepad rumble, use SDL_RumbleGamepad() instead.
  896. *
  897. * \param gamepad The gamepad to vibrate
  898. * \param left_rumble The intensity of the left trigger rumble motor, from 0
  899. * to 0xFFFF
  900. * \param right_rumble The intensity of the right trigger rumble motor, from 0
  901. * to 0xFFFF
  902. * \param duration_ms The duration of the rumble effect, in milliseconds
  903. * \returns 0 on success or a negative error code on failure; call
  904. * SDL_GetError() for more information.
  905. *
  906. * \since This function is available since SDL 3.0.0.
  907. *
  908. * \sa SDL_GamepadHasRumbleTriggers
  909. */
  910. extern DECLSPEC int SDLCALL SDL_RumbleGamepadTriggers(SDL_Gamepad *gamepad, Uint16 left_rumble, Uint16 right_rumble, Uint32 duration_ms);
  911. /**
  912. * Query whether a gamepad has an LED.
  913. *
  914. * \param gamepad The gamepad to query
  915. * \returns SDL_TRUE, or SDL_FALSE if this gamepad does not have a modifiable
  916. * LED
  917. *
  918. * \since This function is available since SDL 3.0.0.
  919. */
  920. extern DECLSPEC SDL_bool SDLCALL SDL_GamepadHasLED(SDL_Gamepad *gamepad);
  921. /**
  922. * Query whether a gamepad has rumble support.
  923. *
  924. * \param gamepad The gamepad to query
  925. * \returns SDL_TRUE, or SDL_FALSE if this gamepad does not have rumble
  926. * support
  927. *
  928. * \since This function is available since SDL 3.0.0.
  929. *
  930. * \sa SDL_RumbleGamepad
  931. */
  932. extern DECLSPEC SDL_bool SDLCALL SDL_GamepadHasRumble(SDL_Gamepad *gamepad);
  933. /**
  934. * Query whether a gamepad has rumble support on triggers.
  935. *
  936. * \param gamepad The gamepad to query
  937. * \returns SDL_TRUE, or SDL_FALSE if this gamepad does not have trigger
  938. * rumble support
  939. *
  940. * \since This function is available since SDL 3.0.0.
  941. *
  942. * \sa SDL_RumbleGamepadTriggers
  943. */
  944. extern DECLSPEC SDL_bool SDLCALL SDL_GamepadHasRumbleTriggers(SDL_Gamepad *gamepad);
  945. /**
  946. * Update a gamepad's LED color.
  947. *
  948. * \param gamepad The gamepad to update
  949. * \param red The intensity of the red LED
  950. * \param green The intensity of the green LED
  951. * \param blue The intensity of the blue LED
  952. * \returns 0 on success or a negative error code on failure; call
  953. * SDL_GetError() for more information.
  954. *
  955. * \since This function is available since SDL 3.0.0.
  956. */
  957. extern DECLSPEC int SDLCALL SDL_SetGamepadLED(SDL_Gamepad *gamepad, Uint8 red, Uint8 green, Uint8 blue);
  958. /**
  959. * Send a gamepad specific effect packet
  960. *
  961. * \param gamepad The gamepad to affect
  962. * \param data The data to send to the gamepad
  963. * \param size The size of the data to send to the gamepad
  964. * \returns 0 on success or a negative error code on failure; call
  965. * SDL_GetError() for more information.
  966. *
  967. * \since This function is available since SDL 3.0.0.
  968. */
  969. extern DECLSPEC int SDLCALL SDL_SendGamepadEffect(SDL_Gamepad *gamepad, const void *data, int size);
  970. /**
  971. * Close a gamepad previously opened with SDL_OpenGamepad().
  972. *
  973. * \param gamepad a gamepad identifier previously returned by
  974. * SDL_OpenGamepad()
  975. *
  976. * \since This function is available since SDL 3.0.0.
  977. *
  978. * \sa SDL_OpenGamepad
  979. */
  980. extern DECLSPEC void SDLCALL SDL_CloseGamepad(SDL_Gamepad *gamepad);
  981. /**
  982. * Return the sfSymbolsName for a given button on a gamepad on Apple
  983. * platforms.
  984. *
  985. * \param gamepad the gamepad to query
  986. * \param button a button on the gamepad
  987. * \returns the sfSymbolsName or NULL if the name can't be found
  988. *
  989. * \since This function is available since SDL 3.0.0.
  990. *
  991. * \sa SDL_GetGamepadAppleSFSymbolsNameForAxis
  992. */
  993. extern DECLSPEC const char* SDLCALL SDL_GetGamepadAppleSFSymbolsNameForButton(SDL_Gamepad *gamepad, SDL_GamepadButton button);
  994. /**
  995. * Return the sfSymbolsName for a given axis on a gamepad on Apple platforms.
  996. *
  997. * \param gamepad the gamepad to query
  998. * \param axis an axis on the gamepad
  999. * \returns the sfSymbolsName or NULL if the name can't be found
  1000. *
  1001. * \since This function is available since SDL 3.0.0.
  1002. *
  1003. * \sa SDL_GetGamepadAppleSFSymbolsNameForButton
  1004. */
  1005. extern DECLSPEC const char* SDLCALL SDL_GetGamepadAppleSFSymbolsNameForAxis(SDL_Gamepad *gamepad, SDL_GamepadAxis axis);
  1006. /* Ends C function definitions when using C++ */
  1007. #ifdef __cplusplus
  1008. }
  1009. #endif
  1010. #include <SDL3/SDL_close_code.h>
  1011. #endif /* SDL_gamepad_h_ */