arsa  2.7
SDL_joystick.h
Go to the documentation of this file.
1 /*
2  Simple DirectMedia Layer
3  Copyright (C) 1997-2019 Sam Lantinga <slouken@libsdl.org>
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any damages
7  arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any purpose,
10  including commercial applications, and to alter it and redistribute it
11  freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you must not
14  claim that you wrote the original software. If you use this software
15  in a product, an acknowledgment in the product documentation would be
16  appreciated but is not required.
17  2. Altered source versions must be plainly marked as such, and must not be
18  misrepresented as being the original software.
19  3. This notice may not be removed or altered from any source distribution.
20 */
21 
39 #ifndef SDL_joystick_h_
40 #define SDL_joystick_h_
41 
42 #include "SDL_stdinc.h"
43 #include "SDL_error.h"
44 
45 #include "begin_code.h"
46 /* Set up for C function definitions, even when using C++ */
47 #ifdef __cplusplus
48 extern "C" {
49 #endif
50 
66 struct _SDL_Joystick;
67 typedef struct _SDL_Joystick SDL_Joystick;
68 
69 /* A structure that encodes the stable unique id for a joystick device */
70 typedef struct {
71  Uint8 data[16];
73 
82 
83 typedef enum
84 {
96 
97 typedef enum
98 {
103  SDL_JOYSTICK_POWER_FULL, /* <= 100% */
107 
108 /* Function prototypes */
109 
120 extern DECLSPEC void SDLCALL SDL_LockJoysticks(void);
121 extern DECLSPEC void SDLCALL SDL_UnlockJoysticks(void);
122 
126 extern DECLSPEC int SDLCALL SDL_NumJoysticks(void);
127 
133 extern DECLSPEC const char *SDLCALL SDL_JoystickNameForIndex(int device_index);
134 
139 extern DECLSPEC int SDLCALL SDL_JoystickGetDevicePlayerIndex(int device_index);
140 
146 
152 extern DECLSPEC Uint16 SDLCALL SDL_JoystickGetDeviceVendor(int device_index);
153 
159 extern DECLSPEC Uint16 SDLCALL SDL_JoystickGetDeviceProduct(int device_index);
160 
167 
173 
180 
190 extern DECLSPEC SDL_Joystick *SDLCALL SDL_JoystickOpen(int device_index);
191 
196 
201 extern DECLSPEC const char *SDLCALL SDL_JoystickName(SDL_Joystick * joystick);
202 
209 
214 
220 
226 
232 
237 
242 extern DECLSPEC void SDLCALL SDL_JoystickGetGUIDString(SDL_JoystickGUID guid, char *pszGUID, int cbGUID);
243 
248 
253 
258 
262 extern DECLSPEC int SDLCALL SDL_JoystickNumAxes(SDL_Joystick * joystick);
263 
270 extern DECLSPEC int SDLCALL SDL_JoystickNumBalls(SDL_Joystick * joystick);
271 
275 extern DECLSPEC int SDLCALL SDL_JoystickNumHats(SDL_Joystick * joystick);
276 
280 extern DECLSPEC int SDLCALL SDL_JoystickNumButtons(SDL_Joystick * joystick);
281 
288 extern DECLSPEC void SDLCALL SDL_JoystickUpdate(void);
289 
299 extern DECLSPEC int SDLCALL SDL_JoystickEventState(int state);
300 
301 #define SDL_JOYSTICK_AXIS_MAX 32767
302 #define SDL_JOYSTICK_AXIS_MIN -32768
303 
311  int axis);
312 
323  int axis, Sint16 *state);
324 
328 /* @{ */
329 #define SDL_HAT_CENTERED 0x00
330 #define SDL_HAT_UP 0x01
331 #define SDL_HAT_RIGHT 0x02
332 #define SDL_HAT_DOWN 0x04
333 #define SDL_HAT_LEFT 0x08
334 #define SDL_HAT_RIGHTUP (SDL_HAT_RIGHT|SDL_HAT_UP)
335 #define SDL_HAT_RIGHTDOWN (SDL_HAT_RIGHT|SDL_HAT_DOWN)
336 #define SDL_HAT_LEFTUP (SDL_HAT_LEFT|SDL_HAT_UP)
337 #define SDL_HAT_LEFTDOWN (SDL_HAT_LEFT|SDL_HAT_DOWN)
338 /* @} */
339 
357  int hat);
358 
366 extern DECLSPEC int SDLCALL SDL_JoystickGetBall(SDL_Joystick * joystick,
367  int ball, int *dx, int *dy);
368 
375  int button);
376 
388 extern DECLSPEC int SDLCALL SDL_JoystickRumble(SDL_Joystick * joystick, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble, Uint32 duration_ms);
389 
393 extern DECLSPEC void SDLCALL SDL_JoystickClose(SDL_Joystick * joystick);
394 
399 
400 /* Ends C function definitions when using C++ */
401 #ifdef __cplusplus
402 }
403 #endif
404 #include "close_code.h"
405 
406 #endif /* SDL_joystick_h_ */
407 
408 /* vi: set ts=4 sw=4 expandtab: */
DECLSPEC const char *SDLCALL SDL_JoystickNameForIndex(int device_index)
DECLSPEC void SDLCALL SDL_JoystickUpdate(void)
DECLSPEC int SDLCALL SDL_JoystickNumBalls(SDL_Joystick *joystick)
SDL_bool
Definition: SDL_stdinc.h:161
DECLSPEC SDL_JoystickID SDLCALL SDL_JoystickInstanceID(SDL_Joystick *joystick)
DECLSPEC SDL_bool SDLCALL SDL_JoystickGetAttached(SDL_Joystick *joystick)
DECLSPEC void SDLCALL SDL_JoystickClose(SDL_Joystick *joystick)
Sint32 SDL_JoystickID
Definition: SDL_joystick.h:81
DECLSPEC SDL_JoystickPowerLevel SDLCALL SDL_JoystickCurrentPowerLevel(SDL_Joystick *joystick)
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
Definition: SDL_opengl.h:1974
DECLSPEC SDL_JoystickGUID SDLCALL SDL_JoystickGetDeviceGUID(int device_index)
DECLSPEC SDL_JoystickGUID SDLCALL SDL_JoystickGetGUIDFromString(const char *pchGUID)
DECLSPEC void SDLCALL SDL_JoystickGetGUIDString(SDL_JoystickGUID guid, char *pszGUID, int cbGUID)
#define DECLSPEC
Definition: begin_code.h:74
uint32_t Uint32
Definition: SDL_stdinc.h:203
DECLSPEC Uint16 SDLCALL SDL_JoystickGetDeviceProductVersion(int device_index)
DECLSPEC Sint16 SDLCALL SDL_JoystickGetAxis(SDL_Joystick *joystick, int axis)
DECLSPEC SDL_JoystickID SDLCALL SDL_JoystickGetDeviceInstanceID(int device_index)
#define SDLCALL
Definition: begin_code.h:89
DECLSPEC Uint16 SDLCALL SDL_JoystickGetVendor(SDL_Joystick *joystick)
DECLSPEC SDL_JoystickType SDLCALL SDL_JoystickGetDeviceType(int device_index)
DECLSPEC Uint8 SDLCALL SDL_JoystickGetButton(SDL_Joystick *joystick, int button)
DECLSPEC SDL_bool SDLCALL SDL_JoystickGetAxisInitialState(SDL_Joystick *joystick, int axis, Sint16 *state)
struct _SDL_Joystick SDL_Joystick
Definition: SDL_joystick.h:67
DECLSPEC int SDLCALL SDL_JoystickGetDevicePlayerIndex(int device_index)
uint16_t Uint16
Definition: SDL_stdinc.h:191
DECLSPEC Uint16 SDLCALL SDL_JoystickGetDeviceProduct(int device_index)
DECLSPEC int SDLCALL SDL_JoystickGetBall(SDL_Joystick *joystick, int ball, int *dx, int *dy)
DECLSPEC void SDLCALL SDL_UnlockJoysticks(void)
DECLSPEC void SDLCALL SDL_LockJoysticks(void)
DECLSPEC int SDLCALL SDL_JoystickRumble(SDL_Joystick *joystick, Uint16 low_frequency_rumble, Uint16 high_frequency_rumble, Uint32 duration_ms)
DECLSPEC Uint16 SDLCALL SDL_JoystickGetDeviceVendor(int device_index)
DECLSPEC int SDLCALL SDL_JoystickNumButtons(SDL_Joystick *joystick)
int32_t Sint32
Definition: SDL_stdinc.h:197
SDL_JoystickPowerLevel
Definition: SDL_joystick.h:97
SDL_JoystickType
Definition: SDL_joystick.h:83
DECLSPEC int SDLCALL SDL_JoystickEventState(int state)
DECLSPEC Uint16 SDLCALL SDL_JoystickGetProductVersion(SDL_Joystick *joystick)
DECLSPEC const char *SDLCALL SDL_JoystickName(SDL_Joystick *joystick)
DECLSPEC SDL_JoystickGUID SDLCALL SDL_JoystickGetGUID(SDL_Joystick *joystick)
DECLSPEC int SDLCALL SDL_JoystickNumHats(SDL_Joystick *joystick)
DECLSPEC SDL_Joystick *SDLCALL SDL_JoystickFromInstanceID(SDL_JoystickID joyid)
DECLSPEC SDL_Joystick *SDLCALL SDL_JoystickOpen(int device_index)
DECLSPEC int SDLCALL SDL_JoystickGetPlayerIndex(SDL_Joystick *joystick)
DECLSPEC Uint16 SDLCALL SDL_JoystickGetProduct(SDL_Joystick *joystick)
uint8_t Uint8
Definition: SDL_stdinc.h:179
DECLSPEC int SDLCALL SDL_JoystickNumAxes(SDL_Joystick *joystick)
DECLSPEC SDL_JoystickType SDLCALL SDL_JoystickGetType(SDL_Joystick *joystick)
DECLSPEC Uint8 SDLCALL SDL_JoystickGetHat(SDL_Joystick *joystick, int hat)
int16_t Sint16
Definition: SDL_stdinc.h:185
DECLSPEC int SDLCALL SDL_NumJoysticks(void)