1 /* 2 Simple DirectMedia Layer 3 Copyright (C) 1997-2016 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 #include "../SDL_internal.h" 22 23 #ifndef _SDL_sysjoystick_h 24 #define _SDL_sysjoystick_h 25 26 /* This is the system specific header for the SDL joystick API */ 27 28 #include "SDL_joystick.h" 29 #include "SDL_joystick_c.h" 30 31 /* The SDL joystick structure */ 32 struct _SDL_Joystick 33 { 34 SDL_JoystickID instance_id; /* Device instance, monotonically increasing from 0 */ 35 char *name; /* Joystick name - system dependent */ 36 37 int naxes; /* Number of axis controls on the joystick */ 38 Sint16 *axes; /* Current axis states */ 39 Sint16 *axes_zero; /* Zero point on the axis (-32768 for triggers) */ 40 41 int nhats; /* Number of hats on the joystick */ 42 Uint8 *hats; /* Current hat states */ 43 44 int nballs; /* Number of trackballs on the joystick */ 45 struct balldelta { 46 int dx; 47 int dy; 48 } *balls; /* Current ball motion deltas */ 49 50 int nbuttons; /* Number of buttons on the joystick */ 51 Uint8 *buttons; /* Current button states */ 52 53 struct joystick_hwdata *hwdata; /* Driver dependent information */ 54 55 int ref_count; /* Reference count for multiple opens */ 56 57 SDL_bool force_recentering; /* SDL_TRUE if this device needs to have its state reset to 0 */ 58 SDL_JoystickPowerLevel epowerlevel; /* power level of this joystick, SDL_JOYSTICK_POWER_UNKNOWN if not supported */ 59 struct _SDL_Joystick *next; /* pointer to next joystick we have allocated */ 60 }; 61 62 /* Function to scan the system for joysticks. 63 * Joystick 0 should be the system default joystick. 64 * This function should return the number of available joysticks, or -1 65 * on an unrecoverable fatal error. 66 */ 67 extern int SDL_SYS_JoystickInit(void); 68 69 /* Function to return the number of joystick devices plugged in right now */ 70 extern int SDL_SYS_NumJoysticks(); 71 72 /* Function to cause any queued joystick insertions to be processed */ 73 extern void SDL_SYS_JoystickDetect(); 74 75 /* Function to get the device-dependent name of a joystick */ 76 extern const char *SDL_SYS_JoystickNameForDeviceIndex(int device_index); 77 78 /* Function to get the current instance id of the joystick located at device_index */ 79 extern SDL_JoystickID SDL_SYS_GetInstanceIdOfDeviceIndex(int device_index); 80 81 /* Function to open a joystick for use. 82 The joystick to open is specified by the device index. 83 This should fill the nbuttons and naxes fields of the joystick structure. 84 It returns 0, or -1 if there is an error. 85 */ 86 extern int SDL_SYS_JoystickOpen(SDL_Joystick * joystick, int device_index); 87 88 /* Function to query if the joystick is currently attached 89 * It returns SDL_TRUE if attached, SDL_FALSE otherwise. 90 */ 91 extern SDL_bool SDL_SYS_JoystickAttached(SDL_Joystick * joystick); 92 93 /* Function to update the state of a joystick - called as a device poll. 94 * This function shouldn't update the joystick structure directly, 95 * but instead should call SDL_PrivateJoystick*() to deliver events 96 * and update joystick device state. 97 */ 98 extern void SDL_SYS_JoystickUpdate(SDL_Joystick * joystick); 99 100 /* Function to close a joystick after use */ 101 extern void SDL_SYS_JoystickClose(SDL_Joystick * joystick); 102 103 /* Function to perform any system-specific joystick related cleanup */ 104 extern void SDL_SYS_JoystickQuit(void); 105 106 /* Function to return the stable GUID for a plugged in device */ 107 extern SDL_JoystickGUID SDL_SYS_JoystickGetDeviceGUID(int device_index); 108 109 /* Function to return the stable GUID for a opened joystick */ 110 extern SDL_JoystickGUID SDL_SYS_JoystickGetGUID(SDL_Joystick * joystick); 111 112 #if SDL_JOYSTICK_XINPUT 113 /* Function returns SDL_TRUE if this device is an XInput gamepad */ 114 extern SDL_bool SDL_SYS_IsXInputGamepad_DeviceIndex(int device_index); 115 #endif 116 117 #endif /* _SDL_sysjoystick_h */ 118 119 /* vi: set ts=4 sw=4 expandtab: */ 120