Skip to content

Latest commit

 

History

History
283 lines (252 loc) · 7.54 KB

SDL_x11mouse.c

File metadata and controls

283 lines (252 loc) · 7.54 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
22
23
24
25
*/
#include <X11/Xlib.h>
#include <X11/Xutil.h>
Feb 7, 2006
Feb 7, 2006
26
27
#include "SDL_stdlib.h"
#include "SDL_string.h"
Apr 26, 2001
Apr 26, 2001
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include "SDL_error.h"
#include "SDL_mouse.h"
#include "SDL_events_c.h"
#include "SDL_cursor_c.h"
#include "SDL_x11dga_c.h"
#include "SDL_x11mouse_c.h"
/* The implementation dependent data for the window manager cursor */
struct WMcursor {
Cursor x_cursor;
};
void X11_FreeWMCursor(_THIS, WMcursor *cursor)
{
if ( SDL_Display != NULL ) {
SDL_Lock_EventThread();
Nov 5, 2005
Nov 5, 2005
46
47
pXFreeCursor(SDL_Display, cursor->x_cursor);
pXSync(SDL_Display, False);
Apr 26, 2001
Apr 26, 2001
48
49
SDL_Unlock_EventThread();
}
Feb 7, 2006
Feb 7, 2006
50
SDL_free(cursor);
Apr 26, 2001
Apr 26, 2001
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
}
WMcursor *X11_CreateWMCursor(_THIS,
Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y)
{
WMcursor *cursor;
XGCValues GCvalues;
GC GCcursor;
XImage *data_image, *mask_image;
Pixmap data_pixmap, mask_pixmap;
int clen, i;
char *x_data, *x_mask;
static XColor black = { 0, 0, 0, 0 };
static XColor white = { 0xffff, 0xffff, 0xffff, 0xffff };
/* Allocate the cursor memory */
Feb 7, 2006
Feb 7, 2006
67
cursor = (WMcursor *)SDL_malloc(sizeof(WMcursor));
Apr 26, 2001
Apr 26, 2001
68
69
70
71
72
73
74
if ( cursor == NULL ) {
SDL_OutOfMemory();
return(NULL);
}
/* Mix the mask and the data */
clen = (w/8)*h;
Feb 7, 2006
Feb 7, 2006
75
x_data = (char *)SDL_malloc(clen);
Apr 26, 2001
Apr 26, 2001
76
if ( x_data == NULL ) {
Feb 7, 2006
Feb 7, 2006
77
SDL_free(cursor);
Apr 26, 2001
Apr 26, 2001
78
79
80
SDL_OutOfMemory();
return(NULL);
}
Feb 7, 2006
Feb 7, 2006
81
x_mask = (char *)SDL_malloc(clen);
Apr 26, 2001
Apr 26, 2001
82
if ( x_mask == NULL ) {
Feb 7, 2006
Feb 7, 2006
83
84
SDL_free(cursor);
SDL_free(x_data);
Apr 26, 2001
Apr 26, 2001
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
SDL_OutOfMemory();
return(NULL);
}
for ( i=0; i<clen; ++i ) {
/* The mask is OR'd with the data to turn inverted color
pixels black since inverted color cursors aren't supported
under X11.
*/
x_mask[i] = data[i] | mask[i];
x_data[i] = data[i];
}
/* Prevent the event thread from running while we use the X server */
SDL_Lock_EventThread();
/* Create the data image */
Nov 5, 2005
Nov 5, 2005
101
data_image = pXCreateImage(SDL_Display,
Apr 26, 2001
Apr 26, 2001
102
103
104
105
DefaultVisual(SDL_Display, SDL_Screen),
1, XYBitmap, 0, x_data, w, h, 8, w/8);
data_image->byte_order = MSBFirst;
data_image->bitmap_bit_order = MSBFirst;
Nov 5, 2005
Nov 5, 2005
106
data_pixmap = pXCreatePixmap(SDL_Display, SDL_Root, w, h, 1);
Apr 26, 2001
Apr 26, 2001
107
108
/* Create the data mask */
Nov 5, 2005
Nov 5, 2005
109
mask_image = pXCreateImage(SDL_Display,
Apr 26, 2001
Apr 26, 2001
110
111
112
113
DefaultVisual(SDL_Display, SDL_Screen),
1, XYBitmap, 0, x_mask, w, h, 8, w/8);
mask_image->byte_order = MSBFirst;
mask_image->bitmap_bit_order = MSBFirst;
Nov 5, 2005
Nov 5, 2005
114
mask_pixmap = pXCreatePixmap(SDL_Display, SDL_Root, w, h, 1);
Apr 26, 2001
Apr 26, 2001
115
116
117
118
119
120
/* Create the graphics context */
GCvalues.function = GXcopy;
GCvalues.foreground = ~0;
GCvalues.background = 0;
GCvalues.plane_mask = AllPlanes;
Nov 5, 2005
Nov 5, 2005
121
GCcursor = pXCreateGC(SDL_Display, data_pixmap,
Apr 26, 2001
Apr 26, 2001
122
123
124
125
(GCFunction|GCForeground|GCBackground|GCPlaneMask),
&GCvalues);
/* Blit the images to the pixmaps */
Nov 5, 2005
Nov 5, 2005
126
pXPutImage(SDL_Display, data_pixmap, GCcursor, data_image,
Apr 26, 2001
Apr 26, 2001
127
0, 0, 0, 0, w, h);
Nov 5, 2005
Nov 5, 2005
128
pXPutImage(SDL_Display, mask_pixmap, GCcursor, mask_image,
Apr 26, 2001
Apr 26, 2001
129
0, 0, 0, 0, w, h);
Nov 5, 2005
Nov 5, 2005
130
pXFreeGC(SDL_Display, GCcursor);
Apr 26, 2001
Apr 26, 2001
131
/* These free the x_data and x_mask memory pointers */
Nov 5, 2005
Nov 5, 2005
132
133
pXDestroyImage(data_image);
pXDestroyImage(mask_image);
Apr 26, 2001
Apr 26, 2001
134
135
/* Create the cursor */
Nov 5, 2005
Nov 5, 2005
136
cursor->x_cursor = pXCreatePixmapCursor(SDL_Display, data_pixmap,
Apr 26, 2001
Apr 26, 2001
137
mask_pixmap, &black, &white, hot_x, hot_y);
Nov 5, 2005
Nov 5, 2005
138
139
pXFreePixmap(SDL_Display, data_pixmap);
pXFreePixmap(SDL_Display, mask_pixmap);
Apr 26, 2001
Apr 26, 2001
140
141
/* Release the event thread */
Nov 5, 2005
Nov 5, 2005
142
pXSync(SDL_Display, False);
Apr 26, 2001
Apr 26, 2001
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
SDL_Unlock_EventThread();
return(cursor);
}
int X11_ShowWMCursor(_THIS, WMcursor *cursor)
{
/* Don't do anything if the display is gone */
if ( SDL_Display == NULL ) {
return(0);
}
/* Set the X11 cursor cursor, or blank if cursor is NULL */
if ( SDL_Window ) {
SDL_Lock_EventThread();
if ( cursor == NULL ) {
if ( SDL_BlankCursor != NULL ) {
Nov 5, 2005
Nov 5, 2005
160
pXDefineCursor(SDL_Display, SDL_Window,
Apr 26, 2001
Apr 26, 2001
161
162
163
SDL_BlankCursor->x_cursor);
}
} else {
Nov 5, 2005
Nov 5, 2005
164
pXDefineCursor(SDL_Display, SDL_Window, cursor->x_cursor);
Apr 26, 2001
Apr 26, 2001
165
}
Nov 5, 2005
Nov 5, 2005
166
pXSync(SDL_Display, False);
Apr 26, 2001
Apr 26, 2001
167
168
169
170
171
172
173
174
SDL_Unlock_EventThread();
}
return(1);
}
void X11_WarpWMCursor(_THIS, Uint16 x, Uint16 y)
{
if ( using_dga & DGA_MOUSE ) {
Oct 11, 2002
Oct 11, 2002
175
176
177
178
179
SDL_PrivateMouseMotion(0, 0, x, y);
} else if ( mouse_relative) {
/* RJR: March 28, 2000
leave physical cursor at center of screen if
mouse hidden and grabbed */
Apr 26, 2001
Apr 26, 2001
180
181
182
SDL_PrivateMouseMotion(0, 0, x, y);
} else {
SDL_Lock_EventThread();
Nov 5, 2005
Nov 5, 2005
183
184
pXWarpPointer(SDL_Display, None, SDL_Window, 0, 0, 0, 0, x, y);
pXSync(SDL_Display, False);
Apr 26, 2001
Apr 26, 2001
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
SDL_Unlock_EventThread();
}
}
/* Sets the mouse acceleration from a string of the form:
2/1/0
The first number is the numerator, followed by the acceleration
denumenator and threshold.
*/
static void SetMouseAccel(_THIS, const char *accel_param)
{
int i;
int accel_value[3];
char *mouse_param, *mouse_param_buf, *pin;
Feb 7, 2006
Feb 7, 2006
200
mouse_param_buf = (char *)SDL_malloc(SDL_strlen(accel_param)+1);
Apr 26, 2001
Apr 26, 2001
201
202
203
if ( ! mouse_param_buf ) {
return;
}
Feb 7, 2006
Feb 7, 2006
204
SDL_strcpy(mouse_param_buf, accel_param);
Apr 26, 2001
Apr 26, 2001
205
206
207
mouse_param = mouse_param_buf;
for ( i=0; (i < 3) && mouse_param; ++i ) {
Feb 7, 2006
Feb 7, 2006
208
pin = SDL_strchr(mouse_param, '/');
Apr 26, 2001
Apr 26, 2001
209
210
211
212
213
214
215
216
217
218
219
if ( pin ) {
*pin = '\0';
}
accel_value[i] = atoi(mouse_param);
if ( pin ) {
mouse_param = pin+1;
} else {
mouse_param = NULL;
}
}
if ( mouse_param_buf ) {
Nov 5, 2005
Nov 5, 2005
220
pXChangePointerControl(SDL_Display, True, True,
Apr 26, 2001
Apr 26, 2001
221
accel_value[0], accel_value[1], accel_value[2]);
Feb 7, 2006
Feb 7, 2006
222
SDL_free(mouse_param_buf);
Apr 26, 2001
Apr 26, 2001
223
224
225
226
227
228
}
}
/* Check to see if we need to enter or leave mouse relative mode */
void X11_CheckMouseModeNoLock(_THIS)
{
Jun 23, 2001
Jun 23, 2001
229
230
231
232
233
234
235
char *env_override;
int enable_relative = 1;
/* Allow the user to override the relative mouse mode.
They almost never want to do this, as it seriously affects
applications that rely on continuous relative mouse motion.
*/
Feb 7, 2006
Feb 7, 2006
236
env_override = SDL_getenv("SDL_MOUSE_RELATIVE");
Jun 23, 2001
Jun 23, 2001
237
238
239
240
if ( env_override ) {
enable_relative = atoi(env_override);
}
Apr 26, 2001
Apr 26, 2001
241
/* If the mouse is hidden and input is grabbed, we use relative mode */
Jun 23, 2001
Jun 23, 2001
242
243
if ( enable_relative &&
!(SDL_cursorstate & CURSOR_VISIBLE) &&
Apr 26, 2001
Apr 26, 2001
244
(this->input_grab != SDL_GRAB_OFF) &&
Jun 23, 2001
Jun 23, 2001
245
(SDL_GetAppState() & SDL_APPACTIVE) ) {
Apr 26, 2001
Apr 26, 2001
246
247
248
249
250
251
252
if ( ! mouse_relative ) {
X11_EnableDGAMouse(this);
if ( ! (using_dga & DGA_MOUSE) ) {
char *xmouse_accel;
SDL_GetMouseState(&mouse_last.x, &mouse_last.y);
/* Use as raw mouse mickeys as possible */
Nov 5, 2005
Nov 5, 2005
253
pXGetPointerControl(SDL_Display,
Apr 26, 2001
Apr 26, 2001
254
255
256
&mouse_accel.numerator,
&mouse_accel.denominator,
&mouse_accel.threshold);
Feb 7, 2006
Feb 7, 2006
257
xmouse_accel=SDL_getenv("SDL_VIDEO_X11_MOUSEACCEL");
Apr 26, 2001
Apr 26, 2001
258
259
260
261
262
263
264
265
266
267
268
if ( xmouse_accel ) {
SetMouseAccel(this, xmouse_accel);
}
}
mouse_relative = 1;
}
} else {
if ( mouse_relative ) {
if ( using_dga & DGA_MOUSE ) {
X11_DisableDGAMouse(this);
} else {
Nov 5, 2005
Nov 5, 2005
269
pXChangePointerControl(SDL_Display, True, True,
Apr 26, 2001
Apr 26, 2001
270
271
272
273
274
275
276
277
278
279
280
281
282
283
mouse_accel.numerator,
mouse_accel.denominator,
mouse_accel.threshold);
}
mouse_relative = 0;
}
}
}
void X11_CheckMouseMode(_THIS)
{
SDL_Lock_EventThread();
X11_CheckMouseModeNoLock(this);
SDL_Unlock_EventThread();
}