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

Latest commit

 

History

History
521 lines (440 loc) · 11.6 KB

SDL_mouse.c

File metadata and controls

521 lines (440 loc) · 11.6 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 12, 2011
Feb 12, 2011
3
Copyright (C) 1997-2011 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
Feb 21, 2011
Feb 21, 2011
32
/* The mouse state */
May 10, 2010
May 10, 2010
33
static SDL_Mouse SDL_mouse;
Jul 10, 2006
Jul 10, 2006
34
35
May 10, 2010
May 10, 2010
36
/* Public functions */
Jul 10, 2006
Jul 10, 2006
37
int
May 10, 2010
May 10, 2010
38
SDL_MouseInit(void)
Jul 10, 2006
Jul 10, 2006
39
{
Feb 22, 2011
Feb 22, 2011
40
41
42
43
SDL_Mouse *mouse = SDL_GetMouse();
mouse->cursor_shown = SDL_TRUE;
May 10, 2010
May 10, 2010
44
return (0);
Jul 10, 2006
Jul 10, 2006
45
46
}
Feb 28, 2011
Feb 28, 2011
47
48
49
50
51
52
53
54
55
56
57
void
SDL_SetDefaultCursor(SDL_Cursor * cursor)
{
SDL_Mouse *mouse = SDL_GetMouse();
mouse->def_cursor = cursor;
if (!mouse->cur_cursor) {
SDL_SetCursor(cursor);
}
}
Feb 21, 2011
Feb 21, 2011
58
59
60
61
62
63
SDL_Mouse *
SDL_GetMouse(void)
{
return &SDL_mouse;
}
Jan 21, 2010
Jan 21, 2010
64
SDL_Window *
May 10, 2010
May 10, 2010
65
SDL_GetMouseFocus(void)
Aug 20, 2002
Aug 20, 2002
66
{
Feb 21, 2011
Feb 21, 2011
67
SDL_Mouse *mouse = SDL_GetMouse();
Jul 10, 2006
Jul 10, 2006
68
69
return mouse->focus;
Aug 20, 2002
Aug 20, 2002
70
71
}
Jul 10, 2006
Jul 10, 2006
72
void
May 10, 2010
May 10, 2010
73
SDL_SetMouseFocus(SDL_Window * window)
Jul 10, 2006
Jul 10, 2006
74
{
Feb 21, 2011
Feb 21, 2011
75
SDL_Mouse *mouse = SDL_GetMouse();
Jul 10, 2006
Jul 10, 2006
76
May 10, 2010
May 10, 2010
77
if (mouse->focus == window) {
Jul 10, 2006
Jul 10, 2006
78
79
80
81
82
return;
}
/* See if the current window has lost focus */
if (mouse->focus) {
May 10, 2010
May 10, 2010
83
SDL_SendWindowEvent(mouse->focus, SDL_WINDOWEVENT_LEAVE, 0, 0);
Jul 10, 2006
Jul 10, 2006
84
85
}
Jan 21, 2010
Jan 21, 2010
86
mouse->focus = window;
Jul 10, 2006
Jul 10, 2006
87
88
if (mouse->focus) {
May 10, 2010
May 10, 2010
89
SDL_SendWindowEvent(mouse->focus, SDL_WINDOWEVENT_ENTER, 0, 0);
Jul 10, 2006
Jul 10, 2006
90
91
92
93
}
}
int
Jul 6, 2010
Jul 6, 2010
94
SDL_SendMouseMotion(SDL_Window * window, int relative, int x, int y)
Jul 10, 2006
Jul 10, 2006
95
{
Feb 21, 2011
Feb 21, 2011
96
SDL_Mouse *mouse = SDL_GetMouse();
Jul 10, 2006
Jul 10, 2006
97
98
99
int posted;
int xrel;
int yrel;
Dec 8, 2008
Dec 8, 2008
100
int x_max = 0, y_max = 0;
Jul 10, 2006
Jul 10, 2006
101
Jul 6, 2010
Jul 6, 2010
102
103
104
105
if (window) {
SDL_SetMouseFocus(window);
}
Aug 25, 2008
Aug 25, 2008
106
/* the relative motion is calculated regarding the system cursor last position */
Dec 6, 2008
Dec 6, 2008
107
108
109
if (relative) {
xrel = x;
yrel = y;
Dec 8, 2008
Dec 8, 2008
110
111
x = (mouse->last_x + x);
y = (mouse->last_y + y);
Dec 6, 2008
Dec 6, 2008
112
} else {
Dec 8, 2008
Dec 8, 2008
113
114
xrel = x - mouse->last_x;
yrel = y - mouse->last_y;
Dec 6, 2008
Dec 6, 2008
115
}
Aug 25, 2008
Aug 25, 2008
116
Jul 10, 2006
Jul 10, 2006
117
118
/* Drop events that don't change state */
if (!xrel && !yrel) {
Jan 29, 2006
Jan 29, 2006
119
#if 0
Jul 10, 2006
Jul 10, 2006
120
printf("Mouse event didn't change state - dropped!\n");
Jan 29, 2006
Jan 29, 2006
121
#endif
Jul 10, 2006
Jul 10, 2006
122
123
124
return 0;
}
Aug 25, 2008
Aug 25, 2008
125
126
/* Update internal mouse coordinates */
if (mouse->relative_mode == SDL_FALSE) {
Jul 10, 2006
Jul 10, 2006
127
128
mouse->x = x;
mouse->y = y;
Aug 25, 2008
Aug 25, 2008
129
} else {
Dec 8, 2008
Dec 8, 2008
130
131
132
mouse->x += xrel;
mouse->y += yrel;
}
Dec 7, 2008
Dec 7, 2008
133
Dec 8, 2008
Dec 8, 2008
134
SDL_GetWindowSize(mouse->focus, &x_max, &y_max);
Feb 21, 2011
Feb 21, 2011
135
136
--x_max;
--y_max;
Dec 7, 2008
Dec 7, 2008
137
Dec 8, 2008
Dec 8, 2008
138
139
/* make sure that the pointers find themselves inside the windows */
/* only check if mouse->xmax is set ! */
Feb 21, 2011
Feb 21, 2011
140
if (mouse->x > x_max) {
Dec 8, 2008
Dec 8, 2008
141
mouse->x = x_max;
Feb 21, 2011
Feb 21, 2011
142
143
}
if (mouse->x < 0) {
Dec 8, 2008
Dec 8, 2008
144
145
146
mouse->x = 0;
}
Feb 21, 2011
Feb 21, 2011
147
if (mouse->y > y_max) {
Dec 8, 2008
Dec 8, 2008
148
mouse->y = y_max;
Feb 21, 2011
Feb 21, 2011
149
150
}
if (mouse->y < 0) {
Dec 8, 2008
Dec 8, 2008
151
mouse->y = 0;
Jul 10, 2006
Jul 10, 2006
152
}
Dec 8, 2008
Dec 8, 2008
153
Jul 10, 2006
Jul 10, 2006
154
155
156
mouse->xdelta += xrel;
mouse->ydelta += yrel;
May 10, 2010
May 10, 2010
157
#if 0 /* FIXME */
Jul 10, 2006
Jul 10, 2006
158
159
160
161
162
/* 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
163
#endif
Jul 10, 2006
Jul 10, 2006
164
165
166
/* Post the event, if desired */
posted = 0;
May 10, 2010
May 10, 2010
167
if (SDL_GetEventState(SDL_MOUSEMOTION) == SDL_ENABLE) {
Jul 10, 2006
Jul 10, 2006
168
169
SDL_Event event;
event.motion.type = SDL_MOUSEMOTION;
May 10, 2010
May 10, 2010
170
event.motion.windowID = mouse->focus ? mouse->focus->id : 0;
Jul 10, 2006
Jul 10, 2006
171
172
173
event.motion.state = mouse->buttonstate;
event.motion.x = mouse->x;
event.motion.y = mouse->y;
Jun 9, 2009
Jun 9, 2009
174
175
event.motion.xrel = xrel;
event.motion.yrel = yrel;
Jul 10, 2006
Jul 10, 2006
176
177
posted = (SDL_PushEvent(&event) > 0);
}
Apr 28, 2009
Apr 28, 2009
178
179
mouse->last_x = mouse->x;
mouse->last_y = mouse->y;
Jul 10, 2006
Jul 10, 2006
180
181
182
183
return posted;
}
int
Jul 6, 2010
Jul 6, 2010
184
SDL_SendMouseButton(SDL_Window * window, Uint8 state, Uint8 button)
Jul 10, 2006
Jul 10, 2006
185
{
Feb 21, 2011
Feb 21, 2011
186
SDL_Mouse *mouse = SDL_GetMouse();
Jul 10, 2006
Jul 10, 2006
187
int posted;
Mar 25, 2010
Mar 25, 2010
188
Uint32 type;
Jul 10, 2006
Jul 10, 2006
189
Jul 6, 2010
Jul 6, 2010
190
191
192
193
if (window) {
SDL_SetMouseFocus(window);
}
Jul 10, 2006
Jul 10, 2006
194
195
196
197
198
199
200
201
202
203
204
/* 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
205
if (!(mouse->buttonstate & SDL_BUTTON(button))) {
Aug 25, 2008
Aug 25, 2008
206
207
208
/* Ignore this event, no state change */
return 0;
}
Jul 10, 2006
Jul 10, 2006
209
210
211
212
213
214
215
216
217
218
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
219
if (SDL_GetEventState(type) == SDL_ENABLE) {
Jul 10, 2006
Jul 10, 2006
220
221
222
223
224
225
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
226
event.button.windowID = mouse->focus ? mouse->focus->id : 0;
Jul 10, 2006
Jul 10, 2006
227
228
229
230
231
232
posted = (SDL_PushEvent(&event) > 0);
}
return posted;
}
int
Jul 6, 2010
Jul 6, 2010
233
SDL_SendMouseWheel(SDL_Window * window, int x, int y)
Jul 10, 2006
Jul 10, 2006
234
{
Feb 21, 2011
Feb 21, 2011
235
SDL_Mouse *mouse = SDL_GetMouse();
Jul 10, 2006
Jul 10, 2006
236
237
int posted;
Jul 6, 2010
Jul 6, 2010
238
239
240
241
if (window) {
SDL_SetMouseFocus(window);
}
May 10, 2010
May 10, 2010
242
if (!x && !y) {
Jul 10, 2006
Jul 10, 2006
243
244
245
246
247
return 0;
}
/* Post the event, if desired */
posted = 0;
Mar 25, 2010
Mar 25, 2010
248
if (SDL_GetEventState(SDL_MOUSEWHEEL) == SDL_ENABLE) {
Jul 10, 2006
Jul 10, 2006
249
250
SDL_Event event;
event.type = SDL_MOUSEWHEEL;
May 10, 2010
May 10, 2010
251
event.wheel.windowID = mouse->focus ? mouse->focus->id : 0;
Jul 6, 2007
Jul 6, 2007
252
253
event.wheel.x = x;
event.wheel.y = y;
Jul 10, 2006
Jul 10, 2006
254
255
256
257
258
259
posted = (SDL_PushEvent(&event) > 0);
}
return posted;
}
void
May 10, 2010
May 10, 2010
260
SDL_MouseQuit(void)
Jul 10, 2006
Jul 10, 2006
261
{
May 10, 2010
May 10, 2010
262
}
Jul 10, 2006
Jul 10, 2006
263
May 10, 2010
May 10, 2010
264
265
266
Uint8
SDL_GetMouseState(int *x, int *y)
{
Feb 21, 2011
Feb 21, 2011
267
SDL_Mouse *mouse = SDL_GetMouse();
May 10, 2010
May 10, 2010
268
269
270
271
272
273
if (x) {
*x = mouse->x;
}
if (y) {
*y = mouse->y;
Jul 10, 2006
Jul 10, 2006
274
}
May 10, 2010
May 10, 2010
275
276
277
278
279
280
return mouse->buttonstate;
}
Uint8
SDL_GetRelativeMouseState(int *x, int *y)
{
Feb 21, 2011
Feb 21, 2011
281
SDL_Mouse *mouse = SDL_GetMouse();
May 10, 2010
May 10, 2010
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
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)
{
Feb 21, 2011
Feb 21, 2011
297
SDL_Mouse *mouse = SDL_GetMouse();
Jul 10, 2006
Jul 10, 2006
298
299
if (mouse->WarpMouse) {
Feb 21, 2011
Feb 21, 2011
300
mouse->WarpMouse(window, x, y);
Jul 10, 2006
Jul 10, 2006
301
} else {
Jul 6, 2010
Jul 6, 2010
302
SDL_SendMouseMotion(window, 0, x, y);
May 10, 2010
May 10, 2010
303
304
305
306
307
308
}
}
int
SDL_SetRelativeMouseMode(SDL_bool enabled)
{
Feb 21, 2011
Feb 21, 2011
309
SDL_Mouse *mouse = SDL_GetMouse();
May 10, 2010
May 10, 2010
310
Feb 28, 2011
Feb 28, 2011
311
312
313
314
315
316
317
318
319
320
321
322
if (enabled == mouse->relative_mode) {
return 0;
}
if (!mouse->SetRelativeMouseMode) {
SDL_Unsupported();
return -1;
}
if (mouse->SetRelativeMouseMode(enabled) < 0) {
return -1;
}
May 10, 2010
May 10, 2010
323
324
325
326
327
328
329
/* 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
330
}
May 10, 2010
May 10, 2010
331
Feb 28, 2011
Feb 28, 2011
332
333
334
/* Flush pending mouse motion */
SDL_FlushEvent(SDL_MOUSEMOTION);
May 10, 2010
May 10, 2010
335
336
337
338
339
340
341
342
343
/* Update cursor visibility */
SDL_SetCursor(NULL);
return 0;
}
SDL_bool
SDL_GetRelativeMouseMode()
{
Feb 21, 2011
Feb 21, 2011
344
SDL_Mouse *mouse = SDL_GetMouse();
May 10, 2010
May 10, 2010
345
346
return mouse->relative_mode;
Jul 10, 2006
Jul 10, 2006
347
348
349
350
351
352
}
SDL_Cursor *
SDL_CreateCursor(const Uint8 * data, const Uint8 * mask,
int w, int h, int hot_x, int hot_y)
{
Feb 21, 2011
Feb 21, 2011
353
SDL_Mouse *mouse = SDL_GetMouse();
Jul 10, 2006
Jul 10, 2006
354
355
356
357
SDL_Surface *surface;
SDL_Cursor *cursor;
int x, y;
Uint32 *pixel;
May 10, 2010
May 10, 2010
358
Uint8 datab = 0, maskb = 0;
Jul 10, 2006
Jul 10, 2006
359
360
361
362
363
const Uint32 black = 0xFF000000;
const Uint32 white = 0xFFFFFFFF;
const Uint32 transparent = 0x00000000;
if (!mouse->CreateCursor) {
May 10, 2010
May 10, 2010
364
SDL_SetError("Cursors are not currently supported");
Jul 10, 2006
Jul 10, 2006
365
366
367
368
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
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)
{
Feb 21, 2011
Feb 21, 2011
419
SDL_Mouse *mouse = SDL_GetMouse();
Jul 10, 2006
Jul 10, 2006
420
421
422
423
/* Set the new cursor */
if (cursor) {
/* Make sure the cursor is still valid for this mouse */
Feb 28, 2011
Feb 28, 2011
424
425
426
427
428
429
430
431
432
433
if (cursor != mouse->def_cursor) {
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;
Jul 10, 2006
Jul 10, 2006
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
}
}
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)
{
Feb 21, 2011
Feb 21, 2011
455
SDL_Mouse *mouse = SDL_GetMouse();
Jul 10, 2006
Jul 10, 2006
456
457
458
459
460
461
462
463
464
465
if (!mouse) {
return NULL;
}
return mouse->cur_cursor;
}
void
SDL_FreeCursor(SDL_Cursor * cursor)
{
Feb 21, 2011
Feb 21, 2011
466
SDL_Mouse *mouse = SDL_GetMouse();
Jul 10, 2006
Jul 10, 2006
467
468
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
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
495
496
}
Jul 10, 2006
Jul 10, 2006
497
498
int
SDL_ShowCursor(int toggle)
Apr 26, 2001
Apr 26, 2001
499
{
Feb 21, 2011
Feb 21, 2011
500
SDL_Mouse *mouse = SDL_GetMouse();
Jul 10, 2006
Jul 10, 2006
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
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
519
520
}
Jul 10, 2006
Jul 10, 2006
521
/* vi: set ts=4 sw=4 expandtab: */