Mercurial > sdl-ios-xcode
annotate include/SDL_joystick.h @ 1554:0ca607a5d173
Fixed bug #84
Date: Sun, 23 Oct 2005 16:39:03 +0200
From: "A. Schmid" <sahib@phreaker.net>
Subject: [SDL] no software surfaces with svgalib driver?
Hi,
I noticed that the SDL (1.2.9) svgalib driver only makes use of linear
addressable (framebuffer) video modes. On older systems (like one of
mine), linear addressable modes are often not available.
Especially for cards with VESA VBE < 2.0 the svgalib vesa driver is
unusable, since VESA only supports framebuffering for VBE 2.0 and later.
The changes necessary to add support for software surfaces seem to be
relatively small. I only had to hack src/video/svga/SDL_svgavideo.c (see
attached patch). The code worked fine for me, but it is no more than a
proof of concept and should be reviewed (probably has a memory leak when
switching modes). It also uses the vgagl library (included in the
svgalib package) and needs to be linked against it.
-Alex
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 19 Mar 2006 12:04:40 +0000 |
parents | c71e05b4dc2e |
children | 782fd950bd46 c121d94672cb a1b03ba2fcd0 |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
905
diff
changeset
|
3 Copyright (C) 1997-2006 Sam Lantinga |
0 | 4 |
5 This library is free software; you can redistribute it and/or | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
905
diff
changeset
|
6 modify it under the terms of the GNU Lesser General Public |
0 | 7 License as published by the Free Software Foundation; either |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
905
diff
changeset
|
8 version 2.1 of the License, or (at your option) any later version. |
0 | 9 |
10 This library is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
905
diff
changeset
|
13 Lesser General Public License for more details. |
0 | 14 |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
905
diff
changeset
|
15 You should have received a copy of the GNU Lesser General Public |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
905
diff
changeset
|
16 License along with this library; if not, write to the Free Software |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
905
diff
changeset
|
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 18 |
19 Sam Lantinga | |
251
b8688cfdc232
Updated the headers with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
20 slouken@libsdl.org |
0 | 21 */ |
22 | |
23 /* Include file for SDL joystick event handling */ | |
24 | |
25 #ifndef _SDL_joystick_h | |
26 #define _SDL_joystick_h | |
27 | |
1356
67114343400d
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
28 #include "SDL_stdinc.h" |
1358
c71e05b4dc2e
More header massaging... works great on Windows. ;-)
Sam Lantinga <slouken@libsdl.org>
parents:
1356
diff
changeset
|
29 #include "SDL_error.h" |
0 | 30 |
31 #include "begin_code.h" | |
32 /* Set up for C function definitions, even when using C++ */ | |
33 #ifdef __cplusplus | |
34 extern "C" { | |
35 #endif | |
36 | |
37 /* In order to use these functions, SDL_Init() must have been called | |
38 with the SDL_INIT_JOYSTICK flag. This causes SDL to scan the system | |
39 for joysticks, and load appropriate drivers. | |
40 */ | |
41 | |
42 /* The joystick structure used to identify an SDL joystick */ | |
43 struct _SDL_Joystick; | |
44 typedef struct _SDL_Joystick SDL_Joystick; | |
45 | |
46 | |
47 /* Function prototypes */ | |
48 /* | |
49 * Count the number of joysticks attached to the system | |
50 */ | |
337
9154ec9ca3d2
Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
51 extern DECLSPEC int SDLCALL SDL_NumJoysticks(void); |
0 | 52 |
53 /* | |
54 * Get the implementation dependent name of a joystick. | |
55 * This can be called before any joysticks are opened. | |
56 * If no name can be found, this function returns NULL. | |
57 */ | |
337
9154ec9ca3d2
Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
58 extern DECLSPEC const char * SDLCALL SDL_JoystickName(int device_index); |
0 | 59 |
60 /* | |
61 * Open a joystick for use - the index passed as an argument refers to | |
62 * the N'th joystick on the system. This index is the value which will | |
63 * identify this joystick in future joystick events. | |
64 * | |
65 * This function returns a joystick identifier, or NULL if an error occurred. | |
66 */ | |
905
e6ceebb0f0eb
Date: Wed, 7 Jul 2004 12:57:58 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
67 extern DECLSPEC SDL_Joystick * SDLCALL SDL_JoystickOpen(int device_index); |
0 | 68 |
69 /* | |
70 * Returns 1 if the joystick has been opened, or 0 if it has not. | |
71 */ | |
337
9154ec9ca3d2
Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
72 extern DECLSPEC int SDLCALL SDL_JoystickOpened(int device_index); |
0 | 73 |
74 /* | |
75 * Get the device index of an opened joystick. | |
76 */ | |
337
9154ec9ca3d2
Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
77 extern DECLSPEC int SDLCALL SDL_JoystickIndex(SDL_Joystick *joystick); |
0 | 78 |
79 /* | |
80 * Get the number of general axis controls on a joystick | |
81 */ | |
337
9154ec9ca3d2
Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
82 extern DECLSPEC int SDLCALL SDL_JoystickNumAxes(SDL_Joystick *joystick); |
0 | 83 |
84 /* | |
85 * Get the number of trackballs on a joystick | |
86 * Joystick trackballs have only relative motion events associated | |
87 * with them and their state cannot be polled. | |
88 */ | |
337
9154ec9ca3d2
Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
89 extern DECLSPEC int SDLCALL SDL_JoystickNumBalls(SDL_Joystick *joystick); |
0 | 90 |
91 /* | |
92 * Get the number of POV hats on a joystick | |
93 */ | |
337
9154ec9ca3d2
Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
94 extern DECLSPEC int SDLCALL SDL_JoystickNumHats(SDL_Joystick *joystick); |
0 | 95 |
96 /* | |
97 * Get the number of buttons on a joystick | |
98 */ | |
337
9154ec9ca3d2
Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
99 extern DECLSPEC int SDLCALL SDL_JoystickNumButtons(SDL_Joystick *joystick); |
0 | 100 |
101 /* | |
102 * Update the current state of the open joysticks. | |
103 * This is called automatically by the event loop if any joystick | |
104 * events are enabled. | |
105 */ | |
337
9154ec9ca3d2
Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
106 extern DECLSPEC void SDLCALL SDL_JoystickUpdate(void); |
0 | 107 |
108 /* | |
109 * Enable/disable joystick event polling. | |
110 * If joystick events are disabled, you must call SDL_JoystickUpdate() | |
111 * yourself and check the state of the joystick when you want joystick | |
112 * information. | |
113 * The state can be one of SDL_QUERY, SDL_ENABLE or SDL_IGNORE. | |
114 */ | |
337
9154ec9ca3d2
Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
115 extern DECLSPEC int SDLCALL SDL_JoystickEventState(int state); |
0 | 116 |
117 /* | |
118 * Get the current state of an axis control on a joystick | |
119 * The state is a value ranging from -32768 to 32767. | |
120 * The axis indices start at index 0. | |
121 */ | |
337
9154ec9ca3d2
Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
122 extern DECLSPEC Sint16 SDLCALL SDL_JoystickGetAxis(SDL_Joystick *joystick, int axis); |
0 | 123 |
124 /* | |
125 * Get the current state of a POV hat on a joystick | |
126 * The return value is one of the following positions: | |
127 */ | |
128 #define SDL_HAT_CENTERED 0x00 | |
129 #define SDL_HAT_UP 0x01 | |
130 #define SDL_HAT_RIGHT 0x02 | |
131 #define SDL_HAT_DOWN 0x04 | |
132 #define SDL_HAT_LEFT 0x08 | |
133 #define SDL_HAT_RIGHTUP (SDL_HAT_RIGHT|SDL_HAT_UP) | |
134 #define SDL_HAT_RIGHTDOWN (SDL_HAT_RIGHT|SDL_HAT_DOWN) | |
135 #define SDL_HAT_LEFTUP (SDL_HAT_LEFT|SDL_HAT_UP) | |
136 #define SDL_HAT_LEFTDOWN (SDL_HAT_LEFT|SDL_HAT_DOWN) | |
137 /* | |
138 * The hat indices start at index 0. | |
139 */ | |
337
9154ec9ca3d2
Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
140 extern DECLSPEC Uint8 SDLCALL SDL_JoystickGetHat(SDL_Joystick *joystick, int hat); |
0 | 141 |
142 /* | |
143 * Get the ball axis change since the last poll | |
144 * This returns 0, or -1 if you passed it invalid parameters. | |
145 * The ball indices start at index 0. | |
146 */ | |
337
9154ec9ca3d2
Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
147 extern DECLSPEC int SDLCALL SDL_JoystickGetBall(SDL_Joystick *joystick, int ball, int *dx, int *dy); |
0 | 148 |
149 /* | |
150 * Get the current state of a button on a joystick | |
151 * The button indices start at index 0. | |
152 */ | |
337
9154ec9ca3d2
Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
153 extern DECLSPEC Uint8 SDLCALL SDL_JoystickGetButton(SDL_Joystick *joystick, int button); |
0 | 154 |
155 /* | |
156 * Close a joystick previously opened with SDL_JoystickOpen() | |
157 */ | |
337
9154ec9ca3d2
Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
158 extern DECLSPEC void SDLCALL SDL_JoystickClose(SDL_Joystick *joystick); |
0 | 159 |
160 | |
161 /* Ends C function definitions when using C++ */ | |
162 #ifdef __cplusplus | |
163 } | |
164 #endif | |
165 #include "close_code.h" | |
166 | |
167 #endif /* _SDL_joystick_h */ |