annotate test/testjoystick.c @ 4139:568c9b3c0167 SDL-1.2

* Added configure option --enable-screensaver, to allow enabling the screensaver by default. * Use XResetScreenSaver() instead of disabling screensaver entirely. Full discussion summary from Erik on the SDL mailing list: Current behaviour ================= SDL changes the user's display power management settings without permission from the user and without telling the user. The interface that it uses to do so is DPMSDisable/DPMSEnable, which should only ever be used by configuration utilities like KControl, never by normal application programs, let alone by the libraries that they use. Using an interface that is not at all intended for what SDL tries to achieve means that it will not work as it should. Firstly, the power management is completely disabled during the whole lifetime of the SDL program, not only when it should be. Secondly, it makes SDL non-reentrant, meaning that things will break when multiple SDL programs are clients of the same X server simultaneously. Thirdly, no cleanup mechanism ensures that the setting is restored if the client does not do that (for example if it crashes). In addition to that, this interface is broken on xorg, [http://bugs.freedesktop.org/show_bug.cgi?id=13962], so what SDL tries to do does not work at all on that implementation of the X Window System. (The reason that the DPMSEnable works in KControl is that it calls DPMSSetTimeout immediately after, [http://websvn.kde.org/tags/KDE/3.5.9/kdebase/kcontrol/energy/energy.cpp?annotate=774532#l343]). The problems that the current behaviour causes ============================================== 1. Information leak. When the user is away, someone might see what the user has on the display when the user counts on the screensaver preventing this. This does not even require physical access to the workstation, it is enough to see it from a distance. 2. Draining battery. An SDL program that runs on a laptop will quickly drain the battery while the user is away. The system will soon shut down and require recharging before being usable again, while it should in fact have consumed very little energy if the user's settings would have been obeyed. 3. Wasting energy. Even if battery issues are not considered, energy as such is wasted. 4. Display wear. The display may be worn out. The problems that the current behaviour tries to solve ====================================================== 1. Preventing screensaver while playing movies. Many SDL applications are media players. They have reasons to prevent screensavers from being activated while a movie is being played. When a user clicks on the play button it can be interpreted as saying "play this movie, but do not turn off the display while playing it, because I will watch it even though I do not interact with the system". 2. Preventing screensaver when some input bypasses X. Sometimes SDL uses input from another source than the X server, so that the X server is bypassed. This obviously breaks the screensaver handling. SDL tries to work around that. 3. Preventing screensaver when all input bypasses X. There is something called Direct Graphics Access mode, where a program takes control of both the display and the input devices from the X server. This obviously means that the X server can not handle the screensaver alone, since screensaver handling depends on input handling. SDL does not do what it should to help the X server to handle the screensaver. Nor does SDL take care of screeensaver handling itself. SDL simply disables the screensaver completely. How the problems should be solved ================================= The correct way for an application program to prevent the screensaver under X is to call XResetScreenSaver. This was recently discovered and implemented by the mplayer developers, [http://svn.mplayerhq.hu/mplayer?view=rev&revision=25637]. SDL needs to wrap this in an API call (SDL_ResetScreenSaver) and implement it for the other video targets (if they do not have a corresponding call, SDL should do what it takes on that particular target, for example sending fake key events). 1. When a movie is played, the player should reset the screensaver when the animation is advanced to a new frame. The same applies to anything similar, like slideshows. 2. When the X server is handling input, it must handle all input (keyboards, mice, gamepads, ...). This is necessary, not only to be able to handle the screensaver, but also so that it can send the events to the correct (the currently active) client. If there is an input device that the X server can not handle for some reason (such as lack of Plug and Play capability), the program that handles the device as a workaround must simulate what would happen if the X server would have handled the device, by calling XResetScreenSaver when input is received from the device. 3. When the X server is not handling the input, it depends on the program that does to call XResetScreenSaver whenever an input event occurs. Alternatively the program must handle the screensaver countdown internally and call XActivateScreenSaver.
author Sam Lantinga <slouken@libsdl.org>
date Fri, 29 Feb 2008 13:55:44 +0000
parents 0dd0ca51d941
children
rev   line source
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
1
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
2 /* Simple program to test the SDL joystick routines */
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
3
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
4 #include <stdio.h>
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
5 #include <stdlib.h>
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
6 #include <string.h>
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
7
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
8 #include "SDL.h"
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
9
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
10 #define SCREEN_WIDTH 640
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
11 #define SCREEN_HEIGHT 480
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
12
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
13 void WatchJoystick(SDL_Joystick *joystick)
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
14 {
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
15 SDL_Surface *screen;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
16 const char *name;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
17 int i, done;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
18 SDL_Event event;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
19 int x, y, draw;
1855
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
20 SDL_Rect axis_area[2];
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
21
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
22 /* Set a video mode to display joystick axis position */
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
23 screen = SDL_SetVideoMode(SCREEN_WIDTH, SCREEN_HEIGHT, 16, 0);
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
24 if ( screen == NULL ) {
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
25 fprintf(stderr, "Couldn't set video mode: %s\n",SDL_GetError());
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
26 return;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
27 }
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
28
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
29 /* Print info about the joystick we are watching */
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
30 name = SDL_JoystickName(SDL_JoystickIndex(joystick));
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
31 printf("Watching joystick %d: (%s)\n", SDL_JoystickIndex(joystick),
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
32 name ? name : "Unknown Joystick");
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
33 printf("Joystick has %d axes, %d hats, %d balls, and %d buttons\n",
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
34 SDL_JoystickNumAxes(joystick), SDL_JoystickNumHats(joystick),
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
35 SDL_JoystickNumBalls(joystick),SDL_JoystickNumButtons(joystick));
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
36
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
37 /* Initialize drawing rectangles */
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
38 memset(axis_area, 0, (sizeof axis_area));
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
39 draw = 0;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
40
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
41 /* Loop, getting joystick events! */
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
42 done = 0;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
43 while ( ! done ) {
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
44 while ( SDL_PollEvent(&event) ) {
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
45 switch (event.type) {
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
46 case SDL_JOYAXISMOTION:
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
47 printf("Joystick %d axis %d value: %d\n",
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
48 event.jaxis.which,
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
49 event.jaxis.axis,
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
50 event.jaxis.value);
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
51 break;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
52 case SDL_JOYHATMOTION:
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
53 printf("Joystick %d hat %d value:",
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
54 event.jhat.which,
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
55 event.jhat.hat);
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
56 if ( event.jhat.value == SDL_HAT_CENTERED )
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
57 printf(" centered");
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
58 if ( event.jhat.value & SDL_HAT_UP )
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
59 printf(" up");
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
60 if ( event.jhat.value & SDL_HAT_RIGHT )
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
61 printf(" right");
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
62 if ( event.jhat.value & SDL_HAT_DOWN )
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
63 printf(" down");
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
64 if ( event.jhat.value & SDL_HAT_LEFT )
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
65 printf(" left");
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
66 printf("\n");
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
67 break;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
68 case SDL_JOYBALLMOTION:
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
69 printf("Joystick %d ball %d delta: (%d,%d)\n",
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
70 event.jball.which,
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
71 event.jball.ball,
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
72 event.jball.xrel,
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
73 event.jball.yrel);
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
74 break;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
75 case SDL_JOYBUTTONDOWN:
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
76 printf("Joystick %d button %d down\n",
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
77 event.jbutton.which,
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
78 event.jbutton.button);
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
79 break;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
80 case SDL_JOYBUTTONUP:
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
81 printf("Joystick %d button %d up\n",
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
82 event.jbutton.which,
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
83 event.jbutton.button);
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
84 break;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
85 case SDL_KEYDOWN:
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
86 if ( event.key.keysym.sym != SDLK_ESCAPE ) {
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
87 break;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
88 }
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
89 /* Fall through to signal quit */
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
90 case SDL_QUIT:
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
91 done = 1;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
92 break;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
93 default:
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
94 break;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
95 }
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
96 }
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
97 /* Update visual joystick state */
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
98 for ( i=0; i<SDL_JoystickNumButtons(joystick); ++i ) {
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
99 SDL_Rect area;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
100
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
101 area.x = i*34;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
102 area.y = SCREEN_HEIGHT-34;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
103 area.w = 32;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
104 area.h = 32;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
105 if (SDL_JoystickGetButton(joystick, i) == SDL_PRESSED) {
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
106 SDL_FillRect(screen, &area, 0xFFFF);
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
107 } else {
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
108 SDL_FillRect(screen, &area, 0x0000);
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
109 }
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
110 SDL_UpdateRects(screen, 1, &area);
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
111 }
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
112
1855
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
113 /* Erase previous axes */
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
114 SDL_FillRect(screen, &axis_area[draw], 0x0000);
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
115
1855
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
116 /* Draw the X/Y axis */
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
117 draw = !draw;
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
118 x = (((int)SDL_JoystickGetAxis(joystick, 0))+32768);
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
119 x *= SCREEN_WIDTH;
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
120 x /= 65535;
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
121 if ( x < 0 ) {
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
122 x = 0;
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
123 } else
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
124 if ( x > (SCREEN_WIDTH-16) ) {
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
125 x = SCREEN_WIDTH-16;
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
126 }
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
127 y = (((int)SDL_JoystickGetAxis(joystick, 1))+32768);
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
128 y *= SCREEN_HEIGHT;
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
129 y /= 65535;
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
130 if ( y < 0 ) {
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
131 y = 0;
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
132 } else
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
133 if ( y > (SCREEN_HEIGHT-16) ) {
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
134 y = SCREEN_HEIGHT-16;
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
135 }
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
136 axis_area[draw].x = (Sint16)x;
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
137 axis_area[draw].y = (Sint16)y;
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
138 axis_area[draw].w = 16;
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
139 axis_area[draw].h = 16;
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
140 SDL_FillRect(screen, &axis_area[draw], 0xFFFF);
1854
2280e314a978 Closed bug #74
Sam Lantinga <slouken@libsdl.org>
parents: 0
diff changeset
141
1855
5ff2c01e475e Moved DirectInput joystick code to 1.3 branch
Sam Lantinga <slouken@libsdl.org>
parents: 1854
diff changeset
142 SDL_UpdateRects(screen, 2, axis_area);
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
143 }
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
144 }
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
145
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
146 int main(int argc, char *argv[])
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
147 {
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
148 const char *name;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
149 int i;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
150 SDL_Joystick *joystick;
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
151
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
152 /* Initialize SDL (Note: video is required to start event loop) */
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
153 if ( SDL_Init(SDL_INIT_VIDEO|SDL_INIT_JOYSTICK) < 0 ) {
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
154 fprintf(stderr, "Couldn't initialize SDL: %s\n",SDL_GetError());
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
155 exit(1);
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
156 }
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
157
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
158 /* Print information about the joysticks */
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
159 printf("There are %d joysticks attached\n", SDL_NumJoysticks());
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
160 for ( i=0; i<SDL_NumJoysticks(); ++i ) {
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
161 name = SDL_JoystickName(i);
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
162 printf("Joystick %d: %s\n",i,name ? name : "Unknown Joystick");
4073
0dd0ca51d941 Merged r3295:3296 from trunk/SDL: testjoystick reusing "joystick" variable.
Ryan C. Gordon <icculus@icculus.org>
parents: 4071
diff changeset
163 joystick = SDL_JoystickOpen(i);
0dd0ca51d941 Merged r3295:3296 from trunk/SDL: testjoystick reusing "joystick" variable.
Ryan C. Gordon <icculus@icculus.org>
parents: 4071
diff changeset
164 if (joystick == NULL) {
4071
3d9040dcc47e Dump more information about each joystick in testjoytick.c
Ryan C. Gordon <icculus@icculus.org>
parents: 1855
diff changeset
165 fprintf(stderr, "SDL_JoystickOpen(%d) failed: %s\n", i, SDL_GetError());
3d9040dcc47e Dump more information about each joystick in testjoytick.c
Ryan C. Gordon <icculus@icculus.org>
parents: 1855
diff changeset
166 } else {
4073
0dd0ca51d941 Merged r3295:3296 from trunk/SDL: testjoystick reusing "joystick" variable.
Ryan C. Gordon <icculus@icculus.org>
parents: 4071
diff changeset
167 printf(" axes: %d\n", SDL_JoystickNumAxes(joystick));
0dd0ca51d941 Merged r3295:3296 from trunk/SDL: testjoystick reusing "joystick" variable.
Ryan C. Gordon <icculus@icculus.org>
parents: 4071
diff changeset
168 printf(" balls: %d\n", SDL_JoystickNumBalls(joystick));
0dd0ca51d941 Merged r3295:3296 from trunk/SDL: testjoystick reusing "joystick" variable.
Ryan C. Gordon <icculus@icculus.org>
parents: 4071
diff changeset
169 printf(" hats: %d\n", SDL_JoystickNumHats(joystick));
0dd0ca51d941 Merged r3295:3296 from trunk/SDL: testjoystick reusing "joystick" variable.
Ryan C. Gordon <icculus@icculus.org>
parents: 4071
diff changeset
170 printf(" buttons: %d\n", SDL_JoystickNumButtons(joystick));
0dd0ca51d941 Merged r3295:3296 from trunk/SDL: testjoystick reusing "joystick" variable.
Ryan C. Gordon <icculus@icculus.org>
parents: 4071
diff changeset
171 SDL_JoystickClose(joystick);
4071
3d9040dcc47e Dump more information about each joystick in testjoytick.c
Ryan C. Gordon <icculus@icculus.org>
parents: 1855
diff changeset
172 }
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
173 }
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
174
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
175 if ( argv[1] ) {
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
176 joystick = SDL_JoystickOpen(atoi(argv[1]));
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
177 if ( joystick == NULL ) {
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
178 printf("Couldn't open joystick %d: %s\n", atoi(argv[1]),
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
179 SDL_GetError());
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
180 } else {
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
181 WatchJoystick(joystick);
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
182 SDL_JoystickClose(joystick);
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
183 }
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
184 }
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
185 SDL_QuitSubSystem(SDL_INIT_VIDEO|SDL_INIT_JOYSTICK);
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
186
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
187 return(0);
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
188 }