]> git.sur5r.net Git - cc65/blob - include/joystick.h
Merge pull request #452 from mrdudz/kbrepeat
[cc65] / include / joystick.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                joystick.h                                 */
4 /*                                                                           */
5 /*               Read the joystick on systems that support it                */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998-2011, Ullrich von Bassewitz                                      */
10 /*                Roemerstrasse 52                                           */
11 /*                D-70794 Filderstadt                                        */
12 /* EMail:         uz@cc65.org                                                */
13 /*                                                                           */
14 /*                                                                           */
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.                                    */
18 /*                                                                           */
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:                            */
22 /*                                                                           */
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              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #ifndef _JOYSTICK_H
37 #define _JOYSTICK_H
38
39
40
41 /*****************************************************************************/
42 /*                                  Definitions                              */
43 /*****************************************************************************/
44
45
46
47 /* Error codes */
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 */
53
54 /* Argument for the joy_read function */
55 #define JOY_1                   0
56 #define JOY_2                   1
57
58 /* Macros that evaluate the return code of joy_read */
59 #define JOY_UP(v)               ((v) & JOY_UP_MASK)
60 #define JOY_DOWN(v)             ((v) & JOY_DOWN_MASK)
61 #define JOY_LEFT(v)             ((v) & JOY_LEFT_MASK)
62 #define JOY_RIGHT(v)            ((v) & JOY_RIGHT_MASK)
63 #define JOY_BTN_1(v)            ((v) & JOY_BTN_1_MASK)      /* Universally available */
64 #define JOY_BTN_2(v)            ((v) & JOY_BTN_2_MASK)      /* Second button if available */
65 #define JOY_BTN_3(v)            ((v) & JOY_BTN_3_MASK)      /* Third button if available  */
66 #define JOY_BTN_4(v)            ((v) & JOY_BTN_4_MASK)      /* Fourth button if available */
67
68 /* The name of the standard joystick driver for a platform */
69 extern const char joy_stddrv[];
70
71 /* The address of the static standard joystick driver for a platform */
72 extern const void joy_static_stddrv[];
73
74
75
76 /*****************************************************************************/
77 /*                                 Functions                                 */
78 /*****************************************************************************/
79
80
81
82 unsigned char __fastcall__ joy_load_driver (const char* driver);
83 /* Load and install a joystick driver. Return an error code. */
84
85 unsigned char joy_unload (void);
86 /* Uninstall, then unload the currently loaded driver. */
87
88 unsigned char __fastcall__ joy_install (void* driver);
89 /* Install an already loaded driver. Return an error code. */
90
91 unsigned char joy_uninstall (void);
92 /* Uninstall the currently loaded driver and return an error code.
93 ** Note: This call does not free allocated memory.
94 */
95
96 unsigned char joy_count (void);
97 /* Return the number of joysticks supported by the driver */
98
99 unsigned char __fastcall__ joy_read (unsigned char joystick);
100 /* Read a particular joystick */
101
102
103
104 /* End of joystick.h */
105 #endif
106
107
108