Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
523 lines (440 loc) · 11.9 KB

SDL_mouse.c

File metadata and controls

523 lines (440 loc) · 11.9 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Jan 24, 2010
Jan 24, 2010
3
Copyright (C) 1997-2010 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
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
26
27
/* General mouse handling code for SDL */
#include "SDL_events.h"
#include "SDL_events_c.h"
Jul 10, 2006
Jul 10, 2006
28
#include "default_cursor.h"
Jan 21, 2010
Jan 21, 2010
29
#include "../video/SDL_sysvideo.h"
Apr 26, 2001
Apr 26, 2001
30
31
May 10, 2010
May 10, 2010
32
/* Global mouse information */
Apr 26, 2001
Apr 26, 2001
33
May 10, 2010
May 10, 2010
34
typedef struct SDL_Mouse SDL_Mouse;
Apr 26, 2001
Apr 26, 2001
35
May 10, 2010
May 10, 2010
36
struct SDL_Mouse
Apr 26, 2001
Apr 26, 2001
37
{
May 10, 2010
May 10, 2010
38
39
/* Create a cursor from a surface */
SDL_Cursor *(*CreateCursor) (SDL_Surface * surface, int hot_x, int hot_y);
Jul 10, 2006
Jul 10, 2006
40
May 10, 2010
May 10, 2010
41
42
/* Show the specified cursor, or hide if cursor is NULL */
int (*ShowCursor) (SDL_Cursor * cursor);
Jul 10, 2006
Jul 10, 2006
43
May 10, 2010
May 10, 2010
44
45
/* This is called when a mouse motion event occurs */
void (*MoveCursor) (SDL_Cursor * cursor);
Jan 1, 2009
Jan 1, 2009
46
May 10, 2010
May 10, 2010
47
48
/* Free a window manager cursor */
void (*FreeCursor) (SDL_Cursor * cursor);
Aug 25, 2008
Aug 25, 2008
49
May 10, 2010
May 10, 2010
50
51
/* Warp the mouse to (x,y) */
void (*WarpMouse) (SDL_Mouse * mouse, SDL_Window * window, int x, int y);
Jul 10, 2006
Jul 10, 2006
52
May 10, 2010
May 10, 2010
53
54
55
56
57
58
59
60
61
/* Data common to all mice */
SDL_Window *focus;
int x;
int y;
int xdelta;
int ydelta;
int last_x, last_y; /* the last reported x and y coordinates */
Uint8 buttonstate;
SDL_bool relative_mode;
Jul 10, 2006
Jul 10, 2006
62
May 10, 2010
May 10, 2010
63
64
65
66
67
SDL_Cursor *cursors;
SDL_Cursor *def_cursor;
SDL_Cursor *cur_cursor;
SDL_bool cursor_shown;
};
Jul 10, 2006
Jul 10, 2006
68
May 10, 2010
May 10, 2010
69
static SDL_Mouse SDL_mouse;
Jul 10, 2006
Jul 10, 2006
70
71
May 10, 2010
May 10, 2010
72
/* Public functions */
Jul 10, 2006
Jul 10, 2006
73
int
May 10, 2010
May 10, 2010
74
SDL_MouseInit(void)
Jul 10, 2006
Jul 10, 2006
75
{
May 10, 2010
May 10, 2010
76
return (0);
Jul 10, 2006
Jul 10, 2006
77
78
}
May 10, 2010
May 10, 2010
79
80
void
SDL_ResetMouse(void)
Aug 21, 2005
Aug 21, 2005
81
{
May 10, 2010
May 10, 2010
82
/* FIXME */
Aug 21, 2005
Aug 21, 2005
83
}
Apr 26, 2001
Apr 26, 2001
84
Jan 21, 2010
Jan 21, 2010
85
SDL_Window *
May 10, 2010
May 10, 2010
86
SDL_GetMouseFocus(void)
Aug 20, 2002
Aug 20, 2002
87
{
May 10, 2010
May 10, 2010
88
SDL_Mouse *mouse = &SDL_mouse;
Jul 10, 2006
Jul 10, 2006
89
90
return mouse->focus;
Aug 20, 2002
Aug 20, 2002
91
92
}
Jul 10, 2006
Jul 10, 2006
93
void
May 10, 2010
May 10, 2010
94
SDL_SetMouseFocus(SDL_Window * window)
Jul 10, 2006
Jul 10, 2006
95
{
May 10, 2010
May 10, 2010
96
SDL_Mouse *mouse = &SDL_mouse;
Jul 10, 2006
Jul 10, 2006
97
May 10, 2010
May 10, 2010
98
if (mouse->focus == window) {
Jul 10, 2006
Jul 10, 2006
99
100
101
102
103
return;
}
/* See if the current window has lost focus */
if (mouse->focus) {
May 10, 2010
May 10, 2010
104
SDL_SendWindowEvent(mouse->focus, SDL_WINDOWEVENT_LEAVE, 0, 0);
Jul 10, 2006
Jul 10, 2006
105
106
}
Jan 21, 2010
Jan 21, 2010
107
mouse->focus = window;
Jul 10, 2006
Jul 10, 2006
108
109
if (mouse->focus) {
May 10, 2010
May 10, 2010
110
SDL_SendWindowEvent(mouse->focus, SDL_WINDOWEVENT_ENTER, 0, 0);
Jul 10, 2006
Jul 10, 2006
111
112
113
114
}
}
int
Jul 6, 2010
Jul 6, 2010
115
SDL_SendMouseMotion(SDL_Window * window, int relative, int x, int y)
Jul 10, 2006
Jul 10, 2006
116
{
May 10, 2010
May 10, 2010
117
SDL_Mouse *mouse = &SDL_mouse;
Jul 10, 2006
Jul 10, 2006
118
119
120
int posted;
int xrel;
int yrel;
Dec 8, 2008
Dec 8, 2008
121
int x_max = 0, y_max = 0;
Jul 10, 2006
Jul 10, 2006
122
Jul 6, 2010
Jul 6, 2010
123
124
125
126
if (window) {
SDL_SetMouseFocus(window);
}
Aug 25, 2008
Aug 25, 2008
127
/* the relative motion is calculated regarding the system cursor last position */
Dec 6, 2008
Dec 6, 2008
128
129
130
if (relative) {
xrel = x;
yrel = y;
Dec 8, 2008
Dec 8, 2008
131
132
x = (mouse->last_x + x);
y = (mouse->last_y + y);
Dec 6, 2008
Dec 6, 2008
133
} else {
Dec 8, 2008
Dec 8, 2008
134
135
xrel = x - mouse->last_x;
yrel = y - mouse->last_y;
Dec 6, 2008
Dec 6, 2008
136
}
Aug 25, 2008
Aug 25, 2008
137
Jul 10, 2006
Jul 10, 2006
138
139
/* Drop events that don't change state */
if (!xrel && !yrel) {
Jan 29, 2006
Jan 29, 2006
140
#if 0
Jul 10, 2006
Jul 10, 2006
141
printf("Mouse event didn't change state - dropped!\n");
Jan 29, 2006
Jan 29, 2006
142
#endif
Jul 10, 2006
Jul 10, 2006
143
144
145
return 0;
}
Aug 25, 2008
Aug 25, 2008
146
147
/* Update internal mouse coordinates */
if (mouse->relative_mode == SDL_FALSE) {
Jul 10, 2006
Jul 10, 2006
148
149
mouse->x = x;
mouse->y = y;
Aug 25, 2008
Aug 25, 2008
150
} else {
Dec 8, 2008
Dec 8, 2008
151
152
153
mouse->x += xrel;
mouse->y += yrel;
}
Dec 7, 2008
Dec 7, 2008
154
Dec 8, 2008
Dec 8, 2008
155
SDL_GetWindowSize(mouse->focus, &x_max, &y_max);
Dec 7, 2008
Dec 7, 2008
156
Dec 8, 2008
Dec 8, 2008
157
158
159
160
161
162
163
164
165
166
167
168
/* make sure that the pointers find themselves inside the windows */
/* only check if mouse->xmax is set ! */
if (x_max && mouse->x > x_max) {
mouse->x = x_max;
} else if (mouse->x < 0) {
mouse->x = 0;
}
if (y_max && mouse->y > y_max) {
mouse->y = y_max;
} else if (mouse->y < 0) {
mouse->y = 0;
Jul 10, 2006
Jul 10, 2006
169
}
Dec 8, 2008
Dec 8, 2008
170
Jul 10, 2006
Jul 10, 2006
171
172
173
mouse->xdelta += xrel;
mouse->ydelta += yrel;
May 10, 2010
May 10, 2010
174
#if 0 /* FIXME */
Jul 10, 2006
Jul 10, 2006
175
176
177
178
179
/* Move the mouse cursor, if needed */
if (mouse->cursor_shown && !mouse->relative_mode &&
mouse->MoveCursor && mouse->cur_cursor) {
mouse->MoveCursor(mouse->cur_cursor);
}
May 10, 2010
May 10, 2010
180
#endif
Jul 10, 2006
Jul 10, 2006
181
182
183
/* Post the event, if desired */
posted = 0;
May 10, 2010
May 10, 2010
184
if (SDL_GetEventState(SDL_MOUSEMOTION) == SDL_ENABLE) {
Jul 10, 2006
Jul 10, 2006
185
186
SDL_Event event;
event.motion.type = SDL_MOUSEMOTION;
May 10, 2010
May 10, 2010
187
event.motion.windowID = mouse->focus ? mouse->focus->id : 0;
Jul 10, 2006
Jul 10, 2006
188
189
190
event.motion.state = mouse->buttonstate;
event.motion.x = mouse->x;
event.motion.y = mouse->y;
Jun 9, 2009
Jun 9, 2009
191
192
event.motion.xrel = xrel;
event.motion.yrel = yrel;
Jul 10, 2006
Jul 10, 2006
193
194
posted = (SDL_PushEvent(&event) > 0);
}
Apr 28, 2009
Apr 28, 2009
195
196
mouse->last_x = mouse->x;
mouse->last_y = mouse->y;
Jul 10, 2006
Jul 10, 2006
197
198
199
200
return posted;
}
int
Jul 6, 2010
Jul 6, 2010
201
SDL_SendMouseButton(SDL_Window * window, Uint8 state, Uint8 button)
Jul 10, 2006
Jul 10, 2006
202
{
May 10, 2010
May 10, 2010
203
SDL_Mouse *mouse = &SDL_mouse;
Jul 10, 2006
Jul 10, 2006
204
int posted;
Mar 25, 2010
Mar 25, 2010
205
Uint32 type;
Jul 10, 2006
Jul 10, 2006
206
Jul 6, 2010
Jul 6, 2010
207
208
209
210
if (window) {
SDL_SetMouseFocus(window);
}
Jul 10, 2006
Jul 10, 2006
211
212
213
214
215
216
217
218
219
220
221
/* Figure out which event to perform */
switch (state) {
case SDL_PRESSED:
if (mouse->buttonstate & SDL_BUTTON(button)) {
/* Ignore this event, no state change */
return 0;
}
type = SDL_MOUSEBUTTONDOWN;
mouse->buttonstate |= SDL_BUTTON(button);
break;
case SDL_RELEASED:
Aug 26, 2008
Aug 26, 2008
222
if (!(mouse->buttonstate & SDL_BUTTON(button))) {
Aug 25, 2008
Aug 25, 2008
223
224
225
/* Ignore this event, no state change */
return 0;
}
Jul 10, 2006
Jul 10, 2006
226
227
228
229
230
231
232
233
234
235
type = SDL_MOUSEBUTTONUP;
mouse->buttonstate &= ~SDL_BUTTON(button);
break;
default:
/* Invalid state -- bail */
return 0;
}
/* Post the event, if desired */
posted = 0;
Mar 25, 2010
Mar 25, 2010
236
if (SDL_GetEventState(type) == SDL_ENABLE) {
Jul 10, 2006
Jul 10, 2006
237
238
239
240
241
242
SDL_Event event;
event.type = type;
event.button.state = state;
event.button.button = button;
event.button.x = mouse->x;
event.button.y = mouse->y;
Jan 21, 2010
Jan 21, 2010
243
event.button.windowID = mouse->focus ? mouse->focus->id : 0;
Jul 10, 2006
Jul 10, 2006
244
245
246
247
248
249
posted = (SDL_PushEvent(&event) > 0);
}
return posted;
}
int
Jul 6, 2010
Jul 6, 2010
250
SDL_SendMouseWheel(SDL_Window * window, int x, int y)
Jul 10, 2006
Jul 10, 2006
251
{
May 10, 2010
May 10, 2010
252
SDL_Mouse *mouse = &SDL_mouse;
Jul 10, 2006
Jul 10, 2006
253
254
int posted;
Jul 6, 2010
Jul 6, 2010
255
256
257
258
if (window) {
SDL_SetMouseFocus(window);
}
May 10, 2010
May 10, 2010
259
if (!x && !y) {
Jul 10, 2006
Jul 10, 2006
260
261
262
263
264
return 0;
}
/* Post the event, if desired */
posted = 0;
Mar 25, 2010
Mar 25, 2010
265
if (SDL_GetEventState(SDL_MOUSEWHEEL) == SDL_ENABLE) {
Jul 10, 2006
Jul 10, 2006
266
267
SDL_Event event;
event.type = SDL_MOUSEWHEEL;
May 10, 2010
May 10, 2010
268
event.wheel.windowID = mouse->focus ? mouse->focus->id : 0;
Jul 6, 2007
Jul 6, 2007
269
270
event.wheel.x = x;
event.wheel.y = y;
Jul 10, 2006
Jul 10, 2006
271
272
273
274
275
276
posted = (SDL_PushEvent(&event) > 0);
}
return posted;
}
void
May 10, 2010
May 10, 2010
277
SDL_MouseQuit(void)
Jul 10, 2006
Jul 10, 2006
278
{
May 10, 2010
May 10, 2010
279
}
Jul 10, 2006
Jul 10, 2006
280
May 10, 2010
May 10, 2010
281
282
283
284
285
286
287
288
289
290
Uint8
SDL_GetMouseState(int *x, int *y)
{
SDL_Mouse *mouse = &SDL_mouse;
if (x) {
*x = mouse->x;
}
if (y) {
*y = mouse->y;
Jul 10, 2006
Jul 10, 2006
291
}
May 10, 2010
May 10, 2010
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
return mouse->buttonstate;
}
Uint8
SDL_GetRelativeMouseState(int *x, int *y)
{
SDL_Mouse *mouse = &SDL_mouse;
if (x) {
*x = mouse->xdelta;
}
if (y) {
*y = mouse->ydelta;
}
mouse->xdelta = 0;
mouse->ydelta = 0;
return mouse->buttonstate;
}
void
SDL_WarpMouseInWindow(SDL_Window * window, int x, int y)
{
SDL_Mouse *mouse = &SDL_mouse;
Jul 10, 2006
Jul 10, 2006
315
316
if (mouse->WarpMouse) {
Jan 21, 2010
Jan 21, 2010
317
mouse->WarpMouse(mouse, window, x, y);
Jul 10, 2006
Jul 10, 2006
318
} else {
Jul 6, 2010
Jul 6, 2010
319
SDL_SendMouseMotion(window, 0, x, y);
May 10, 2010
May 10, 2010
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
}
}
int
SDL_SetRelativeMouseMode(SDL_bool enabled)
{
SDL_Mouse *mouse = &SDL_mouse;
/* Flush pending mouse motion */
SDL_FlushEvent(SDL_MOUSEMOTION);
/* Set the relative mode */
mouse->relative_mode = enabled;
if (!enabled) {
/* Restore the expected mouse position */
SDL_WarpMouseInWindow(mouse->focus, mouse->x, mouse->y);
Jul 10, 2006
Jul 10, 2006
337
}
May 10, 2010
May 10, 2010
338
339
340
341
342
343
344
345
346
347
348
349
350
/* Update cursor visibility */
SDL_SetCursor(NULL);
return 0;
}
SDL_bool
SDL_GetRelativeMouseMode()
{
SDL_Mouse *mouse = &SDL_mouse;
return mouse->relative_mode;
Jul 10, 2006
Jul 10, 2006
351
352
353
354
355
356
}
SDL_Cursor *
SDL_CreateCursor(const Uint8 * data, const Uint8 * mask,
int w, int h, int hot_x, int hot_y)
{
May 10, 2010
May 10, 2010
357
SDL_Mouse *mouse = &SDL_mouse;
Jul 10, 2006
Jul 10, 2006
358
359
360
361
SDL_Surface *surface;
SDL_Cursor *cursor;
int x, y;
Uint32 *pixel;
May 10, 2010
May 10, 2010
362
Uint8 datab = 0, maskb = 0;
Jul 10, 2006
Jul 10, 2006
363
364
365
366
367
const Uint32 black = 0xFF000000;
const Uint32 white = 0xFFFFFFFF;
const Uint32 transparent = 0x00000000;
if (!mouse->CreateCursor) {
May 10, 2010
May 10, 2010
368
SDL_SetError("Cursors are not currently supported");
Jul 10, 2006
Jul 10, 2006
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
return NULL;
}
/* Sanity check the hot spot */
if ((hot_x < 0) || (hot_y < 0) || (hot_x >= w) || (hot_y >= h)) {
SDL_SetError("Cursor hot spot doesn't lie within cursor");
return NULL;
}
/* Make sure the width is a multiple of 8 */
w = ((w + 7) & ~7);
/* Create the surface from a bitmap */
surface =
SDL_CreateRGBSurface(0, w, h, 32, 0x00FF0000, 0x0000FF00, 0x000000FF,
0xFF000000);
if (!surface) {
return NULL;
}
for (y = 0; y < h; ++y) {
pixel = (Uint32 *) ((Uint8 *) surface->pixels + y * surface->pitch);
for (x = 0; x < w; ++x) {
if ((x % 8) == 0) {
datab = *data++;
maskb = *mask++;
}
if (maskb & 0x80) {
*pixel++ = (datab & 0x80) ? black : white;
} else {
*pixel++ = (datab & 0x80) ? black : transparent;
}
datab <<= 1;
maskb <<= 1;
}
}
cursor = mouse->CreateCursor(surface, hot_x, hot_y);
if (cursor) {
cursor->next = mouse->cursors;
mouse->cursors = cursor;
}
SDL_FreeSurface(surface);
return cursor;
}
/* SDL_SetCursor(NULL) can be used to force the cursor redraw,
if this is desired for any reason. This is used when setting
the video mode and when the SDL window gains the mouse focus.
*/
void
SDL_SetCursor(SDL_Cursor * cursor)
{
May 10, 2010
May 10, 2010
423
SDL_Mouse *mouse = &SDL_mouse;
Jul 10, 2006
Jul 10, 2006
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
/* Set the new cursor */
if (cursor) {
/* Make sure the cursor is still valid for this mouse */
SDL_Cursor *found;
for (found = mouse->cursors; found; found = found->next) {
if (found == cursor) {
break;
}
}
if (!found) {
SDL_SetError("Cursor not associated with the current mouse");
return;
}
mouse->cur_cursor = cursor;
} else {
cursor = mouse->cur_cursor;
}
if (cursor && mouse->cursor_shown && !mouse->relative_mode) {
if (mouse->ShowCursor) {
mouse->ShowCursor(cursor);
}
} else {
if (mouse->ShowCursor) {
mouse->ShowCursor(NULL);
}
}
}
SDL_Cursor *
SDL_GetCursor(void)
{
May 10, 2010
May 10, 2010
457
SDL_Mouse *mouse = &SDL_mouse;
Jul 10, 2006
Jul 10, 2006
458
459
460
461
462
463
464
465
466
467
if (!mouse) {
return NULL;
}
return mouse->cur_cursor;
}
void
SDL_FreeCursor(SDL_Cursor * cursor)
{
May 10, 2010
May 10, 2010
468
SDL_Mouse *mouse = &SDL_mouse;
Jul 10, 2006
Jul 10, 2006
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
SDL_Cursor *curr, *prev;
if (!cursor) {
return;
}
if (cursor == mouse->def_cursor) {
return;
}
if (cursor == mouse->cur_cursor) {
SDL_SetCursor(mouse->def_cursor);
}
for (prev = NULL, curr = mouse->cursors; curr;
prev = curr, curr = curr->next) {
if (curr == cursor) {
if (prev) {
prev->next = curr->next;
} else {
mouse->cursors = curr->next;
}
if (mouse->FreeCursor) {
mouse->FreeCursor(curr);
}
return;
}
}
Apr 26, 2001
Apr 26, 2001
497
498
}
Jul 10, 2006
Jul 10, 2006
499
500
int
SDL_ShowCursor(int toggle)
Apr 26, 2001
Apr 26, 2001
501
{
May 10, 2010
May 10, 2010
502
SDL_Mouse *mouse = &SDL_mouse;
Jul 10, 2006
Jul 10, 2006
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
SDL_bool shown;
if (!mouse) {
return 0;
}
shown = mouse->cursor_shown;
if (toggle >= 0) {
if (toggle) {
mouse->cursor_shown = SDL_TRUE;
} else {
mouse->cursor_shown = SDL_FALSE;
}
if (mouse->cursor_shown != shown) {
SDL_SetCursor(NULL);
}
}
return shown;
Apr 26, 2001
Apr 26, 2001
521
522
}
Jul 10, 2006
Jul 10, 2006
523
/* vi: set ts=4 sw=4 expandtab: */