🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

421 lines
14 KiB

  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2020 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_gamecontroller.h
  20. *
  21. * Include file for SDL game controller event handling
  22. */
  23. #ifndef SDL_gamecontroller_h_
  24. #define SDL_gamecontroller_h_
  25. #include "SDL_stdinc.h"
  26. #include "SDL_error.h"
  27. #include "SDL_rwops.h"
  28. #include "SDL_joystick.h"
  29. #include "begin_code.h"
  30. /* Set up for C function definitions, even when using C++ */
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34. /**
  35. * \file SDL_gamecontroller.h
  36. *
  37. * In order to use these functions, SDL_Init() must have been called
  38. * with the ::SDL_INIT_GAMECONTROLLER flag. This causes SDL to scan the system
  39. * for game controllers, and load appropriate drivers.
  40. *
  41. * If you would like to receive controller updates while the application
  42. * is in the background, you should set the following hint before calling
  43. * SDL_Init(): SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS
  44. */
  45. /**
  46. * The gamecontroller structure used to identify an SDL game controller
  47. */
  48. struct _SDL_GameController;
  49. typedef struct _SDL_GameController SDL_GameController;
  50. typedef enum
  51. {
  52. SDL_CONTROLLER_TYPE_UNKNOWN = 0,
  53. SDL_CONTROLLER_TYPE_XBOX360,
  54. SDL_CONTROLLER_TYPE_XBOXONE,
  55. SDL_CONTROLLER_TYPE_PS3,
  56. SDL_CONTROLLER_TYPE_PS4,
  57. SDL_CONTROLLER_TYPE_NINTENDO_SWITCH_PRO,
  58. SDL_CONTROLLER_TYPE_VIRTUAL
  59. } SDL_GameControllerType;
  60. typedef enum
  61. {
  62. SDL_CONTROLLER_BINDTYPE_NONE = 0,
  63. SDL_CONTROLLER_BINDTYPE_BUTTON,
  64. SDL_CONTROLLER_BINDTYPE_AXIS,
  65. SDL_CONTROLLER_BINDTYPE_HAT
  66. } SDL_GameControllerBindType;
  67. /**
  68. * Get the SDL joystick layer binding for this controller button/axis mapping
  69. */
  70. typedef struct SDL_GameControllerButtonBind
  71. {
  72. SDL_GameControllerBindType bindType;
  73. union
  74. {
  75. int button;
  76. int axis;
  77. struct {
  78. int hat;
  79. int hat_mask;
  80. } hat;
  81. } value;
  82. } SDL_GameControllerButtonBind;
  83. /**
  84. * To count the number of game controllers in the system for the following:
  85. * int nJoysticks = SDL_NumJoysticks();
  86. * int nGameControllers = 0;
  87. * for (int i = 0; i < nJoysticks; i++) {
  88. * if (SDL_IsGameController(i)) {
  89. * nGameControllers++;
  90. * }
  91. * }
  92. *
  93. * Using the SDL_HINT_GAMECONTROLLERCONFIG hint or the SDL_GameControllerAddMapping() you can add support for controllers SDL is unaware of or cause an existing controller to have a different binding. The format is:
  94. * guid,name,mappings
  95. *
  96. * Where GUID is the string value from SDL_JoystickGetGUIDString(), name is the human readable string for the device and mappings are controller mappings to joystick ones.
  97. * Under Windows there is a reserved GUID of "xinput" that covers any XInput devices.
  98. * The mapping format for joystick is:
  99. * bX - a joystick button, index X
  100. * hX.Y - hat X with value Y
  101. * aX - axis X of the joystick
  102. * Buttons can be used as a controller axis and vice versa.
  103. *
  104. * This string shows an example of a valid mapping for a controller
  105. * "03000000341a00003608000000000000,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",
  106. *
  107. */
  108. /**
  109. * Load a set of mappings from a seekable SDL data stream (memory or file), filtered by the current SDL_GetPlatform()
  110. * A community sourced database of controllers is available at https://raw.github.com/gabomdq/SDL_GameControllerDB/master/gamecontrollerdb.txt
  111. *
  112. * If \c freerw is non-zero, the stream will be closed after being read.
  113. *
  114. * \return number of mappings added, -1 on error
  115. */
  116. extern DECLSPEC int SDLCALL SDL_GameControllerAddMappingsFromRW(SDL_RWops * rw, int freerw);
  117. /**
  118. * Load a set of mappings from a file, filtered by the current SDL_GetPlatform()
  119. *
  120. * Convenience macro.
  121. */
  122. #define SDL_GameControllerAddMappingsFromFile(file) SDL_GameControllerAddMappingsFromRW(SDL_RWFromFile(file, "rb"), 1)
  123. /**
  124. * Add or update an existing mapping configuration
  125. *
  126. * \return 1 if mapping is added, 0 if updated, -1 on error
  127. */
  128. extern DECLSPEC int SDLCALL SDL_GameControllerAddMapping(const char* mappingString);
  129. /**
  130. * Get the number of mappings installed
  131. *
  132. * \return the number of mappings
  133. */
  134. extern DECLSPEC int SDLCALL SDL_GameControllerNumMappings(void);
  135. /**
  136. * Get the mapping at a particular index.
  137. *
  138. * \return the mapping string. Must be freed with SDL_free(). Returns NULL if the index is out of range.
  139. */
  140. extern DECLSPEC char * SDLCALL SDL_GameControllerMappingForIndex(int mapping_index);
  141. /**
  142. * Get a mapping string for a GUID
  143. *
  144. * \return the mapping string. Must be freed with SDL_free(). Returns NULL if no mapping is available
  145. */
  146. extern DECLSPEC char * SDLCALL SDL_GameControllerMappingForGUID(SDL_JoystickGUID guid);
  147. /**
  148. * Get a mapping string for an open GameController
  149. *
  150. * \return the mapping string. Must be freed with SDL_free(). Returns NULL if no mapping is available
  151. */
  152. extern DECLSPEC char * SDLCALL SDL_GameControllerMapping(SDL_GameController * gamecontroller);
  153. /**
  154. * Is the joystick on this index supported by the game controller interface?
  155. */
  156. extern DECLSPEC SDL_bool SDLCALL SDL_IsGameController(int joystick_index);
  157. /**
  158. * Get the implementation dependent name of a game controller.
  159. * This can be called before any controllers are opened.
  160. * If no name can be found, this function returns NULL.
  161. */
  162. extern DECLSPEC const char *SDLCALL SDL_GameControllerNameForIndex(int joystick_index);
  163. /**
  164. * Get the type of a game controller.
  165. * This can be called before any controllers are opened.
  166. */
  167. extern DECLSPEC SDL_GameControllerType SDLCALL SDL_GameControllerTypeForIndex(int joystick_index);
  168. /**
  169. * Get the mapping of a game controller.
  170. * This can be called before any controllers are opened.
  171. *
  172. * \return the mapping string. Must be freed with SDL_free(). Returns NULL if no mapping is available
  173. */
  174. extern DECLSPEC char *SDLCALL SDL_GameControllerMappingForDeviceIndex(int joystick_index);
  175. /**
  176. * Open a game controller for use.
  177. * The index passed as an argument refers to the N'th game controller on the system.
  178. * This index is not the value which will identify this controller in future
  179. * controller events. The joystick's instance id (::SDL_JoystickID) will be
  180. * used there instead.
  181. *
  182. * \return A controller identifier, or NULL if an error occurred.
  183. */
  184. extern DECLSPEC SDL_GameController *SDLCALL SDL_GameControllerOpen(int joystick_index);
  185. /**
  186. * Return the SDL_GameController associated with an instance id.
  187. */
  188. extern DECLSPEC SDL_GameController *SDLCALL SDL_GameControllerFromInstanceID(SDL_JoystickID joyid);
  189. /**
  190. * Return the SDL_GameController associated with a player index.
  191. */
  192. extern DECLSPEC SDL_GameController *SDLCALL SDL_GameControllerFromPlayerIndex(int player_index);
  193. /**
  194. * Return the name for this currently opened controller
  195. */
  196. extern DECLSPEC const char *SDLCALL SDL_GameControllerName(SDL_GameController *gamecontroller);
  197. /**
  198. * Return the type of this currently opened controller
  199. */
  200. extern DECLSPEC SDL_GameControllerType SDLCALL SDL_GameControllerGetType(SDL_GameController *gamecontroller);
  201. /**
  202. * Get the player index of an opened game controller, or -1 if it's not available
  203. *
  204. * For XInput controllers this returns the XInput user index.
  205. */
  206. extern DECLSPEC int SDLCALL SDL_GameControllerGetPlayerIndex(SDL_GameController *gamecontroller);
  207. /**
  208. * Set the player index of an opened game controller
  209. */
  210. extern DECLSPEC void SDLCALL SDL_GameControllerSetPlayerIndex(SDL_GameController *gamecontroller, int player_index);
  211. /**
  212. * Get the USB vendor ID of an opened controller, if available.
  213. * If the vendor ID isn't available this function returns 0.
  214. */
  215. extern DECLSPEC Uint16 SDLCALL SDL_GameControllerGetVendor(SDL_GameController * gamecontroller);
  216. /**
  217. * Get the USB product ID of an opened controller, if available.
  218. * If the product ID isn't available this function returns 0.
  219. */
  220. extern DECLSPEC Uint16 SDLCALL SDL_GameControllerGetProduct(SDL_GameController * gamecontroller);
  221. /**
  222. * Get the product version of an opened controller, if available.
  223. * If the product version isn't available this function returns 0.
  224. */
  225. extern DECLSPEC Uint16 SDLCALL SDL_GameControllerGetProductVersion(SDL_GameController * gamecontroller);
  226. /**
  227. * Returns SDL_TRUE if the controller has been opened and currently connected,
  228. * or SDL_FALSE if it has not.
  229. */
  230. extern DECLSPEC SDL_bool SDLCALL SDL_GameControllerGetAttached(SDL_GameController *gamecontroller);
  231. /**
  232. * Get the underlying joystick object used by a controller
  233. */
  234. extern DECLSPEC SDL_Joystick *SDLCALL SDL_GameControllerGetJoystick(SDL_GameController *gamecontroller);
  235. /**
  236. * Enable/disable controller event polling.
  237. *
  238. * If controller events are disabled, you must call SDL_GameControllerUpdate()
  239. * yourself and check the state of the controller when you want controller
  240. * information.
  241. *
  242. * The state can be one of ::SDL_QUERY, ::SDL_ENABLE or ::SDL_IGNORE.
  243. */
  244. extern DECLSPEC int SDLCALL SDL_GameControllerEventState(int state);
  245. /**
  246. * Update the current state of the open game controllers.
  247. *
  248. * This is called automatically by the event loop if any game controller
  249. * events are enabled.
  250. */
  251. extern DECLSPEC void SDLCALL SDL_GameControllerUpdate(void);
  252. /**
  253. * The list of axes available from a controller
  254. *
  255. * Thumbstick axis values range from SDL_JOYSTICK_AXIS_MIN to SDL_JOYSTICK_AXIS_MAX,
  256. * and are centered within ~8000 of zero, though advanced UI will allow users to set
  257. * or autodetect the dead zone, which varies between controllers.
  258. *
  259. * Trigger axis values range from 0 to SDL_JOYSTICK_AXIS_MAX.
  260. */
  261. typedef enum
  262. {
  263. SDL_CONTROLLER_AXIS_INVALID = -1,
  264. SDL_CONTROLLER_AXIS_LEFTX,
  265. SDL_CONTROLLER_AXIS_LEFTY,
  266. SDL_CONTROLLER_AXIS_RIGHTX,
  267. SDL_CONTROLLER_AXIS_RIGHTY,
  268. SDL_CONTROLLER_AXIS_TRIGGERLEFT,
  269. SDL_CONTROLLER_AXIS_TRIGGERRIGHT,
  270. SDL_CONTROLLER_AXIS_MAX
  271. } SDL_GameControllerAxis;
  272. /**
  273. * turn this string into a axis mapping
  274. */
  275. extern DECLSPEC SDL_GameControllerAxis SDLCALL SDL_GameControllerGetAxisFromString(const char *pchString);
  276. /**
  277. * turn this axis enum into a string mapping
  278. */
  279. extern DECLSPEC const char* SDLCALL SDL_GameControllerGetStringForAxis(SDL_GameControllerAxis axis);
  280. /**
  281. * Get the SDL joystick layer binding for this controller button mapping
  282. */
  283. extern DECLSPEC SDL_GameControllerButtonBind SDLCALL
  284. SDL_GameControllerGetBindForAxis(SDL_GameController *gamecontroller,
  285. SDL_GameControllerAxis axis);
  286. /**
  287. * Get the current state of an axis control on a game controller.
  288. *
  289. * The state is a value ranging from -32768 to 32767 (except for the triggers,
  290. * which range from 0 to 32767).
  291. *
  292. * The axis indices start at index 0.
  293. */
  294. extern DECLSPEC Sint16 SDLCALL
  295. SDL_GameControllerGetAxis(SDL_GameController *gamecontroller,
  296. SDL_GameControllerAxis axis);
  297. /**
  298. * The list of buttons available from a controller
  299. */
  300. typedef enum
  301. {
  302. SDL_CONTROLLER_BUTTON_INVALID = -1,
  303. SDL_CONTROLLER_BUTTON_A,
  304. SDL_CONTROLLER_BUTTON_B,
  305. SDL_CONTROLLER_BUTTON_X,
  306. SDL_CONTROLLER_BUTTON_Y,
  307. SDL_CONTROLLER_BUTTON_BACK,
  308. SDL_CONTROLLER_BUTTON_GUIDE,
  309. SDL_CONTROLLER_BUTTON_START,
  310. SDL_CONTROLLER_BUTTON_LEFTSTICK,
  311. SDL_CONTROLLER_BUTTON_RIGHTSTICK,
  312. SDL_CONTROLLER_BUTTON_LEFTSHOULDER,
  313. SDL_CONTROLLER_BUTTON_RIGHTSHOULDER,
  314. SDL_CONTROLLER_BUTTON_DPAD_UP,
  315. SDL_CONTROLLER_BUTTON_DPAD_DOWN,
  316. SDL_CONTROLLER_BUTTON_DPAD_LEFT,
  317. SDL_CONTROLLER_BUTTON_DPAD_RIGHT,
  318. SDL_CONTROLLER_BUTTON_MAX
  319. } SDL_GameControllerButton;
  320. /**
  321. * turn this string into a button mapping
  322. */
  323. extern DECLSPEC SDL_GameControllerButton SDLCALL SDL_GameControllerGetButtonFromString(const char *pchString);
  324. /**
  325. * turn this button enum into a string mapping
  326. */
  327. extern DECLSPEC const char* SDLCALL SDL_GameControllerGetStringForButton(SDL_GameControllerButton button);
  328. /**
  329. * Get the SDL joystick layer binding for this controller button mapping
  330. */
  331. extern DECLSPEC SDL_GameControllerButtonBind SDLCALL
  332. SDL_GameControllerGetBindForButton(SDL_GameController *gamecontroller,
  333. SDL_GameControllerButton button);
  334. /**
  335. * Get the current state of a button on a game controller.
  336. *
  337. * The button indices start at index 0.
  338. */
  339. extern DECLSPEC Uint8 SDLCALL SDL_GameControllerGetButton(SDL_GameController *gamecontroller,
  340. SDL_GameControllerButton button);
  341. /**
  342. * Trigger a rumble effect
  343. * Each call to this function cancels any previous rumble effect, and calling it with 0 intensity stops any rumbling.
  344. *
  345. * \param gamecontroller The controller to vibrate
  346. * \param low_frequency_rumble The intensity of the low frequency (left) rumble motor, from 0 to 0xFFFF
  347. * \param high_frequency_rumble The intensity of the high frequency (right) rumble motor, from 0 to 0xFFFF
  348. * \param duration_ms The duration of the rumble effect, in milliseconds
  349. *
  350. * \return 0, or -1 if rumble isn't supported on this joystick
  351. */
  352. extern DECLSPEC int SDLCALL SDL_GameControllerRumble(SDL_GameController *gamecontroller, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble, Uint32 duration_ms);
  353. /**
  354. * Close a controller previously opened with SDL_GameControllerOpen().
  355. */
  356. extern DECLSPEC void SDLCALL SDL_GameControllerClose(SDL_GameController *gamecontroller);
  357. /* Ends C function definitions when using C++ */
  358. #ifdef __cplusplus
  359. }
  360. #endif
  361. #include "close_code.h"
  362. #endif /* SDL_gamecontroller_h_ */
  363. /* vi: set ts=4 sw=4 expandtab: */