1 /*****************************************************************************/
5 /* Read the joystick on systems that support it */
9 /* (C) 1998-2004 Ullrich von Bassewitz */
10 /* Römerstrasse 52 */
11 /* D-70794 Filderstadt */
12 /* EMail: uz@cc65.org */
15 /* This software is provided 'as-is', without any expressed or implied */
16 /* warranty. In no event will the authors be held liable for any damages */
17 /* arising from the use of this software. */
19 /* Permission is granted to anyone to use this software for any purpose, */
20 /* including commercial applications, and to alter it and redistribute it */
21 /* freely, subject to the following restrictions: */
23 /* 1. The origin of this software must not be misrepresented; you must not */
24 /* claim that you wrote the original software. If you use this software */
25 /* in a product, an acknowledgment in the product documentation would be */
26 /* appreciated but is not required. */
27 /* 2. Altered source versions must be plainly marked as such, and must not */
28 /* be misrepresented as being the original software. */
29 /* 3. This notice may not be removed or altered from any source */
32 /*****************************************************************************/
41 /*****************************************************************************/
43 /*****************************************************************************/
48 #define JOY_ERR_OK 0 /* No error */
49 #define JOY_ERR_NO_DRIVER 1 /* No driver available */
50 #define JOY_ERR_CANNOT_LOAD 2 /* Error loading driver */
51 #define JOY_ERR_INV_DRIVER 3 /* Invalid driver */
52 #define JOY_ERR_NO_DEVICE 4 /* Device (hardware) not found */
54 /* Argument for the joy_read function */
58 /* The following codes are *indices* into the joy_masks array */
64 #define JOY_FIRE2 5 /* Second fire button if available */
66 /* Array of masks used to check the return value of joy_read for a state */
67 extern const unsigned char joy_masks[8];
69 /* Macros that evaluate the return code of joy_read */
70 #define JOY_BTN_UP(v) ((v) & joy_masks[JOY_UP])
71 #define JOY_BTN_DOWN(v) ((v) & joy_masks[JOY_DOWN])
72 #define JOY_BTN_LEFT(v) ((v) & joy_masks[JOY_LEFT])
73 #define JOY_BTN_RIGHT(v) ((v) & joy_masks[JOY_RIGHT])
74 #define JOY_BTN_FIRE(v) ((v) & joy_masks[JOY_FIRE])
75 #define JOY_BTN_FIRE2(v) ((v) & joy_masks[JOY_FIRE2])
77 /* The name of the standard joystick driver for a platform */
78 extern const char joy_stddrv[];
82 /*****************************************************************************/
84 /*****************************************************************************/
88 unsigned char __fastcall__ joy_load_driver (const char* driver);
89 /* Load and install a joystick driver. Return an error code. */
91 unsigned char __fastcall__ joy_unload (void);
92 /* Uninstall, then unload the currently loaded driver. */
94 unsigned char __fastcall__ joy_install (void* driver);
95 /* Install an already loaded driver. Return an error code. */
97 unsigned char __fastcall__ joy_uninstall (void);
98 /* Uninstall the currently loaded driver and return an error code.
99 * Note: This call does not free allocated memory.
102 unsigned char __fastcall__ joy_count (void);
103 /* Return the number of joysticks supported by the driver */
105 unsigned char __fastcall__ joy_read (unsigned char joystick);
106 /* Read a particular joystick */
110 /* End of joystick.h */