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

Latest commit

 

History

History
497 lines (422 loc) · 11.1 KB

SDL_mouse.c

File metadata and controls

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