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

Latest commit

 

History

History
807 lines (696 loc) · 18.5 KB

SDL_mouse.c

File metadata and controls

807 lines (696 loc) · 18.5 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
Aug 25, 2008
Aug 25, 2008
32
33
34
static int SDL_num_mice = 0;
static int SDL_current_mouse = -1;
static SDL_Mouse **SDL_mice = NULL;
Apr 26, 2001
Apr 26, 2001
35
36
37
/* Public functions */
Jul 10, 2006
Jul 10, 2006
38
39
int
SDL_MouseInit(void)
Apr 26, 2001
Apr 26, 2001
40
{
Jul 10, 2006
Jul 10, 2006
41
return (0);
Apr 26, 2001
Apr 26, 2001
42
}
Jul 10, 2006
Jul 10, 2006
43
44
45
46
47
48
49
50
51
52
SDL_Mouse *
SDL_GetMouse(int index)
{
if (index < 0 || index >= SDL_num_mice) {
return NULL;
}
return SDL_mice[index];
}
Jan 1, 2009
Jan 1, 2009
53
static int
Aug 25, 2008
Aug 25, 2008
54
SDL_GetMouseIndexId(int id)
Aug 25, 2008
Aug 25, 2008
55
{
Jan 1, 2009
Jan 1, 2009
56
57
58
59
60
61
62
63
int index;
SDL_Mouse *mouse;
for (index = 0; index < SDL_num_mice; ++index) {
mouse = SDL_GetMouse(index);
if (mouse->id == id) {
return index;
}
Aug 25, 2008
Aug 25, 2008
64
}
Jan 1, 2009
Jan 1, 2009
65
return -1;
Aug 25, 2008
Aug 25, 2008
66
67
68
}
int
Jan 1, 2009
Jan 1, 2009
69
SDL_AddMouse(const SDL_Mouse * mouse, char *name, int pressure_max,
Aug 25, 2008
Aug 25, 2008
70
int pressure_min, int ends)
Jul 10, 2006
Jul 10, 2006
71
72
73
{
SDL_Mouse **mice;
int selected_mouse;
Sep 5, 2009
Sep 5, 2009
74
75
int index;
size_t length;
Jul 10, 2006
Jul 10, 2006
76
Jan 1, 2009
Jan 1, 2009
77
78
79
if (SDL_GetMouseIndexId(mouse->id) != -1) {
SDL_SetError("Mouse ID already in use");
}
Jul 10, 2006
Jul 10, 2006
80
Jan 1, 2009
Jan 1, 2009
81
82
83
84
85
86
/* Add the mouse to the list of mice */
mice = (SDL_Mouse **) SDL_realloc(SDL_mice,
(SDL_num_mice + 1) * sizeof(*mice));
if (!mice) {
SDL_OutOfMemory();
return -1;
Jul 10, 2006
Jul 10, 2006
87
}
Jan 1, 2009
Jan 1, 2009
88
89
90
91
SDL_mice = mice;
index = SDL_num_mice++;
Jul 10, 2006
Jul 10, 2006
92
93
94
95
96
97
98
SDL_mice[index] = (SDL_Mouse *) SDL_malloc(sizeof(*SDL_mice[index]));
if (!SDL_mice[index]) {
SDL_OutOfMemory();
return -1;
}
*SDL_mice[index] = *mouse;
Aug 25, 2008
Aug 25, 2008
99
100
101
/* we're setting the mouse properties */
length = 0;
length = SDL_strlen(name);
Jun 11, 2009
Jun 11, 2009
102
SDL_mice[index]->focus = 0;
Aug 25, 2008
Aug 25, 2008
103
SDL_mice[index]->name = SDL_malloc((length + 2) * sizeof(char));
Aug 26, 2008
Aug 26, 2008
104
SDL_strlcpy(SDL_mice[index]->name, name, length + 1);
Aug 25, 2008
Aug 25, 2008
105
106
SDL_mice[index]->pressure_max = pressure_max;
SDL_mice[index]->pressure_min = pressure_min;
Jul 10, 2006
Jul 10, 2006
107
108
109
110
111
112
113
SDL_mice[index]->cursor_shown = SDL_TRUE;
selected_mouse = SDL_SelectMouse(index);
SDL_mice[index]->cur_cursor = NULL;
SDL_mice[index]->def_cursor =
SDL_CreateCursor(default_cdata, default_cmask, DEFAULT_CWIDTH,
DEFAULT_CHEIGHT, DEFAULT_CHOTX, DEFAULT_CHOTY);
SDL_SetCursor(SDL_mice[index]->def_cursor);
Aug 25, 2008
Aug 25, 2008
114
115
116
117
118
119
120
121
/* we're assuming that all mice are in the computer sensing zone */
SDL_mice[index]->proximity = SDL_TRUE;
/* we're assuming that all mice are working in the absolute position mode
thanx to that, the users that don't want to use many mice don't have to
worry about anything */
SDL_mice[index]->relative_mode = SDL_FALSE;
SDL_mice[index]->current_end = 0;
SDL_mice[index]->total_ends = ends;
Jul 10, 2006
Jul 10, 2006
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
SDL_SelectMouse(selected_mouse);
return index;
}
void
SDL_DelMouse(int index)
{
SDL_Mouse *mouse = SDL_GetMouse(index);
if (!mouse) {
return;
}
mouse->def_cursor = NULL;
Aug 25, 2008
Aug 25, 2008
137
SDL_free(mouse->name);
Jul 10, 2006
Jul 10, 2006
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
while (mouse->cursors) {
SDL_FreeCursor(mouse->cursors);
}
if (mouse->FreeMouse) {
mouse->FreeMouse(mouse);
}
SDL_free(mouse);
SDL_mice[index] = NULL;
}
void
SDL_ResetMouse(int index)
{
SDL_Mouse *mouse = SDL_GetMouse(index);
if (!mouse) {
return;
}
/* FIXME */
}
void
SDL_MouseQuit(void)
{
int i;
for (i = 0; i < SDL_num_mice; ++i) {
SDL_DelMouse(i);
}
SDL_num_mice = 0;
Oct 4, 2008
Oct 4, 2008
171
SDL_current_mouse = -1;
Jul 10, 2006
Jul 10, 2006
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
if (SDL_mice) {
SDL_free(SDL_mice);
SDL_mice = NULL;
}
}
int
SDL_GetNumMice(void)
{
return SDL_num_mice;
}
int
SDL_SelectMouse(int index)
Aug 21, 2005
Aug 21, 2005
187
{
Jul 10, 2006
Jul 10, 2006
188
189
190
191
if (index >= 0 && index < SDL_num_mice) {
SDL_current_mouse = index;
}
return SDL_current_mouse;
Aug 21, 2005
Aug 21, 2005
192
}
Apr 26, 2001
Apr 26, 2001
193
Jan 21, 2010
Jan 21, 2010
194
SDL_Window *
Aug 25, 2008
Aug 25, 2008
195
SDL_GetMouseFocusWindow(int index)
Aug 20, 2002
Aug 20, 2002
196
{
Aug 25, 2008
Aug 25, 2008
197
SDL_Mouse *mouse = SDL_GetMouse(index);
Jul 10, 2006
Jul 10, 2006
198
199
200
201
202
if (!mouse) {
return 0;
}
return mouse->focus;
Aug 20, 2002
Aug 20, 2002
203
204
}
Oct 17, 2006
Oct 17, 2006
205
static int SDLCALL
Jul 10, 2006
Jul 10, 2006
206
FlushMouseMotion(void *param, SDL_Event * event)
Apr 26, 2001
Apr 26, 2001
207
{
Jul 10, 2006
Jul 10, 2006
208
209
210
211
212
213
if (event->type == SDL_MOUSEMOTION
&& event->motion.which == (Uint8) SDL_current_mouse) {
return 0;
} else {
return 1;
}
Apr 26, 2001
Apr 26, 2001
214
215
}
Jul 10, 2006
Jul 10, 2006
216
int
Aug 25, 2008
Aug 25, 2008
217
SDL_SetRelativeMouseMode(int index, SDL_bool enabled)
Apr 26, 2001
Apr 26, 2001
218
{
Aug 25, 2008
Aug 25, 2008
219
SDL_Mouse *mouse = SDL_GetMouse(index);
Jul 10, 2006
Jul 10, 2006
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
if (!mouse) {
return -1;
}
/* Flush pending mouse motion */
mouse->flush_motion = SDL_TRUE;
SDL_PumpEvents();
mouse->flush_motion = SDL_FALSE;
SDL_FilterEvents(FlushMouseMotion, mouse);
/* Set the relative mode */
mouse->relative_mode = enabled;
/* Update cursor visibility */
SDL_SetCursor(NULL);
if (!enabled) {
/* Restore the expected mouse position */
SDL_WarpMouseInWindow(mouse->focus, mouse->x, mouse->y);
}
return 0;
Apr 26, 2001
Apr 26, 2001
242
243
}
Jul 10, 2006
Jul 10, 2006
244
SDL_bool
Aug 25, 2008
Aug 25, 2008
245
SDL_GetRelativeMouseMode(int index)
Apr 26, 2001
Apr 26, 2001
246
{
Aug 25, 2008
Aug 25, 2008
247
SDL_Mouse *mouse = SDL_GetMouse(index);
Jul 10, 2006
Jul 10, 2006
248
249
250
251
252
if (!mouse) {
return SDL_FALSE;
}
return mouse->relative_mode;
Apr 26, 2001
Apr 26, 2001
253
254
}
Jul 10, 2006
Jul 10, 2006
255
Uint8
Dec 16, 2009
Dec 16, 2009
256
SDL_GetMouseState(int *x, int *y)
Apr 26, 2001
Apr 26, 2001
257
{
Dec 16, 2009
Dec 16, 2009
258
SDL_Mouse *mouse = SDL_GetMouse(SDL_current_mouse);
Jul 10, 2006
Jul 10, 2006
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
if (!mouse) {
if (x) {
*x = 0;
}
if (y) {
*y = 0;
}
return 0;
}
if (x) {
*x = mouse->x;
}
if (y) {
*y = mouse->y;
}
return mouse->buttonstate;
}
Uint8
Aug 25, 2008
Aug 25, 2008
280
SDL_GetRelativeMouseState(int index, int *x, int *y)
Jul 10, 2006
Jul 10, 2006
281
{
Aug 25, 2008
Aug 25, 2008
282
SDL_Mouse *mouse = SDL_GetMouse(index);
Jul 10, 2006
Jul 10, 2006
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
if (!mouse) {
if (x) {
*x = 0;
}
if (y) {
*y = 0;
}
return 0;
}
if (x) {
*x = mouse->xdelta;
}
if (y) {
*y = mouse->ydelta;
}
mouse->xdelta = 0;
mouse->ydelta = 0;
return mouse->buttonstate;
}
void
Jan 21, 2010
Jan 21, 2010
306
SDL_SetMouseFocus(int id, SDL_Window * window)
Jul 10, 2006
Jul 10, 2006
307
{
Aug 25, 2008
Aug 25, 2008
308
309
310
int index = SDL_GetMouseIndexId(id);
SDL_Mouse *mouse = SDL_GetMouse(index);
int i;
Jul 10, 2006
Jul 10, 2006
311
312
SDL_bool focus;
Jan 21, 2010
Jan 21, 2010
313
if (!mouse || (mouse->focus == window)) {
Jul 10, 2006
Jul 10, 2006
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
return;
}
/* See if the current window has lost focus */
if (mouse->focus) {
focus = SDL_FALSE;
for (i = 0; i < SDL_num_mice; ++i) {
SDL_Mouse *check;
if (i != index) {
check = SDL_GetMouse(i);
if (check && check->focus == mouse->focus) {
focus = SDL_TRUE;
break;
}
}
}
if (!focus) {
SDL_SendWindowEvent(mouse->focus, SDL_WINDOWEVENT_LEAVE, 0, 0);
}
}
Jan 21, 2010
Jan 21, 2010
335
mouse->focus = window;
Jul 10, 2006
Jul 10, 2006
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
if (mouse->focus) {
focus = SDL_FALSE;
for (i = 0; i < SDL_num_mice; ++i) {
SDL_Mouse *check;
if (i != index) {
check = SDL_GetMouse(i);
if (check && check->focus == mouse->focus) {
focus = SDL_TRUE;
break;
}
}
}
if (!focus) {
SDL_SendWindowEvent(mouse->focus, SDL_WINDOWEVENT_ENTER, 0, 0);
}
}
}
int
Aug 25, 2008
Aug 25, 2008
356
SDL_SendProximity(int id, int x, int y, int type)
Jul 10, 2006
Jul 10, 2006
357
{
Aug 25, 2008
Aug 25, 2008
358
359
int index = SDL_GetMouseIndexId(id);
SDL_Mouse *mouse = SDL_GetMouse(index);
Aug 25, 2008
Aug 25, 2008
360
int posted = 0;
Aug 26, 2008
Aug 26, 2008
361
362
363
364
365
if (!mouse) {
return 0;
}
Dec 8, 2008
Dec 8, 2008
366
367
mouse->last_x = x;
mouse->last_y = y;
Mar 25, 2010
Mar 25, 2010
368
if (SDL_GetEventState(type) == SDL_ENABLE) {
Aug 25, 2008
Aug 25, 2008
369
370
371
372
373
374
SDL_Event event;
event.proximity.which = (Uint8) index;
event.proximity.x = x;
event.proximity.y = y;
event.proximity.cursor = mouse->current_end;
event.proximity.type = type;
Jun 10, 2009
Jun 10, 2009
375
/* FIXME: is this right? */
Jan 21, 2010
Jan 21, 2010
376
event.proximity.windowID = mouse->focus ? mouse->focus->id : 0;
Aug 25, 2008
Aug 25, 2008
377
378
379
380
381
382
383
384
385
386
387
388
389
posted = (SDL_PushEvent(&event) > 0);
if (type == SDL_PROXIMITYIN) {
mouse->proximity = SDL_TRUE;
} else {
mouse->proximity = SDL_FALSE;
}
}
return posted;
}
int
SDL_SendMouseMotion(int id, int relative, int x, int y, int pressure)
{
Aug 25, 2008
Aug 25, 2008
390
391
int index = SDL_GetMouseIndexId(id);
SDL_Mouse *mouse = SDL_GetMouse(index);
Jul 10, 2006
Jul 10, 2006
392
393
394
int posted;
int xrel;
int yrel;
Dec 8, 2008
Dec 8, 2008
395
int x_max = 0, y_max = 0;
Jul 10, 2006
Jul 10, 2006
396
397
398
399
400
if (!mouse || mouse->flush_motion) {
return 0;
}
Aug 25, 2008
Aug 25, 2008
401
402
/* if the mouse is out of proximity we don't to want to have any motion from it */
if (mouse->proximity == SDL_FALSE) {
Dec 8, 2008
Dec 8, 2008
403
404
mouse->last_x = x;
mouse->last_y = y;
Aug 25, 2008
Aug 25, 2008
405
return 0;
Jul 10, 2006
Jul 10, 2006
406
407
}
Aug 25, 2008
Aug 25, 2008
408
/* the relative motion is calculated regarding the system cursor last position */
Dec 6, 2008
Dec 6, 2008
409
410
411
if (relative) {
xrel = x;
yrel = y;
Dec 8, 2008
Dec 8, 2008
412
413
x = (mouse->last_x + x);
y = (mouse->last_y + y);
Dec 6, 2008
Dec 6, 2008
414
} else {
Dec 8, 2008
Dec 8, 2008
415
416
xrel = x - mouse->last_x;
yrel = y - mouse->last_y;
Dec 6, 2008
Dec 6, 2008
417
}
Aug 25, 2008
Aug 25, 2008
418
Jul 10, 2006
Jul 10, 2006
419
420
/* Drop events that don't change state */
if (!xrel && !yrel) {
Jan 29, 2006
Jan 29, 2006
421
#if 0
Jul 10, 2006
Jul 10, 2006
422
printf("Mouse event didn't change state - dropped!\n");
Jan 29, 2006
Jan 29, 2006
423
#endif
Jul 10, 2006
Jul 10, 2006
424
425
426
return 0;
}
Aug 25, 2008
Aug 25, 2008
427
428
/* Update internal mouse coordinates */
if (mouse->relative_mode == SDL_FALSE) {
Jul 10, 2006
Jul 10, 2006
429
430
mouse->x = x;
mouse->y = y;
Aug 25, 2008
Aug 25, 2008
431
} else {
Dec 8, 2008
Dec 8, 2008
432
433
434
mouse->x += xrel;
mouse->y += yrel;
}
Dec 7, 2008
Dec 7, 2008
435
Dec 8, 2008
Dec 8, 2008
436
SDL_GetWindowSize(mouse->focus, &x_max, &y_max);
Dec 7, 2008
Dec 7, 2008
437
Dec 8, 2008
Dec 8, 2008
438
439
440
441
442
443
444
445
446
447
448
449
/* 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
450
}
Dec 8, 2008
Dec 8, 2008
451
Jul 10, 2006
Jul 10, 2006
452
453
mouse->xdelta += xrel;
mouse->ydelta += yrel;
Aug 25, 2008
Aug 25, 2008
454
mouse->pressure = pressure;
Jul 10, 2006
Jul 10, 2006
455
456
457
458
459
460
461
462
463
/* Move the mouse cursor, if needed */
if (mouse->cursor_shown && !mouse->relative_mode &&
mouse->MoveCursor && mouse->cur_cursor) {
mouse->MoveCursor(mouse->cur_cursor);
}
/* Post the event, if desired */
posted = 0;
Mar 25, 2010
Mar 25, 2010
464
if (SDL_GetEventState(SDL_MOUSEMOTION) == SDL_ENABLE &&
Aug 25, 2008
Aug 25, 2008
465
mouse->proximity == SDL_TRUE) {
Jul 10, 2006
Jul 10, 2006
466
467
468
469
470
471
SDL_Event event;
event.motion.type = SDL_MOUSEMOTION;
event.motion.which = (Uint8) index;
event.motion.state = mouse->buttonstate;
event.motion.x = mouse->x;
event.motion.y = mouse->y;
Jun 9, 2009
Jun 9, 2009
472
event.motion.z = mouse->z;
Aug 25, 2008
Aug 25, 2008
473
474
475
event.motion.pressure = mouse->pressure;
event.motion.pressure_max = mouse->pressure_max;
event.motion.pressure_min = mouse->pressure_min;
Jun 9, 2009
Jun 9, 2009
476
event.motion.rotation = 0;
Dec 16, 2009
Dec 16, 2009
477
478
event.motion.tilt_x = 0;
event.motion.tilt_y = 0;
Aug 25, 2008
Aug 25, 2008
479
event.motion.cursor = mouse->current_end;
Jun 9, 2009
Jun 9, 2009
480
481
event.motion.xrel = xrel;
event.motion.yrel = yrel;
Jan 21, 2010
Jan 21, 2010
482
event.motion.windowID = mouse->focus ? mouse->focus->id : 0;
Jul 10, 2006
Jul 10, 2006
483
484
posted = (SDL_PushEvent(&event) > 0);
}
Apr 28, 2009
Apr 28, 2009
485
486
mouse->last_x = mouse->x;
mouse->last_y = mouse->y;
Jul 10, 2006
Jul 10, 2006
487
488
489
490
return posted;
}
int
Aug 25, 2008
Aug 25, 2008
491
SDL_SendMouseButton(int id, Uint8 state, Uint8 button)
Jul 10, 2006
Jul 10, 2006
492
{
Aug 25, 2008
Aug 25, 2008
493
494
int index = SDL_GetMouseIndexId(id);
SDL_Mouse *mouse = SDL_GetMouse(index);
Jul 10, 2006
Jul 10, 2006
495
int posted;
Mar 25, 2010
Mar 25, 2010
496
Uint32 type;
Jul 10, 2006
Jul 10, 2006
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
if (!mouse) {
return 0;
}
/* 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
513
if (!(mouse->buttonstate & SDL_BUTTON(button))) {
Aug 25, 2008
Aug 25, 2008
514
515
516
/* Ignore this event, no state change */
return 0;
}
Jul 10, 2006
Jul 10, 2006
517
518
519
520
521
522
523
524
525
526
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
527
if (SDL_GetEventState(type) == SDL_ENABLE) {
Jul 10, 2006
Jul 10, 2006
528
529
530
531
532
533
534
SDL_Event event;
event.type = type;
event.button.which = (Uint8) index;
event.button.state = state;
event.button.button = button;
event.button.x = mouse->x;
event.button.y = mouse->y;
Jan 21, 2010
Jan 21, 2010
535
event.button.windowID = mouse->focus ? mouse->focus->id : 0;
Jul 10, 2006
Jul 10, 2006
536
537
538
539
540
541
posted = (SDL_PushEvent(&event) > 0);
}
return posted;
}
int
Jul 6, 2007
Jul 6, 2007
542
SDL_SendMouseWheel(int index, int x, int y)
Jul 10, 2006
Jul 10, 2006
543
544
545
546
{
SDL_Mouse *mouse = SDL_GetMouse(index);
int posted;
Jul 6, 2007
Jul 6, 2007
547
if (!mouse || (!x && !y)) {
Jul 10, 2006
Jul 10, 2006
548
549
550
551
552
return 0;
}
/* Post the event, if desired */
posted = 0;
Mar 25, 2010
Mar 25, 2010
553
if (SDL_GetEventState(SDL_MOUSEWHEEL) == SDL_ENABLE) {
Jul 10, 2006
Jul 10, 2006
554
555
556
SDL_Event event;
event.type = SDL_MOUSEWHEEL;
event.wheel.which = (Uint8) index;
Jul 6, 2007
Jul 6, 2007
557
558
event.wheel.x = x;
event.wheel.y = y;
Jan 21, 2010
Jan 21, 2010
559
event.wheel.windowID = mouse->focus ? mouse->focus->id : 0;
Jul 10, 2006
Jul 10, 2006
560
561
562
563
564
565
posted = (SDL_PushEvent(&event) > 0);
}
return posted;
}
void
Jan 21, 2010
Jan 21, 2010
566
SDL_WarpMouseInWindow(SDL_Window * window, int x, int y)
Jul 10, 2006
Jul 10, 2006
567
568
569
570
571
572
573
574
{
SDL_Mouse *mouse = SDL_GetMouse(SDL_current_mouse);
if (!mouse) {
return;
}
if (mouse->WarpMouse) {
Jan 21, 2010
Jan 21, 2010
575
mouse->WarpMouse(mouse, window, x, y);
Jul 10, 2006
Jul 10, 2006
576
} else {
Jan 21, 2010
Jan 21, 2010
577
SDL_SetMouseFocus(SDL_current_mouse, window);
Aug 25, 2008
Aug 25, 2008
578
SDL_SendMouseMotion(SDL_current_mouse, 0, x, y, 0);
Jul 10, 2006
Jul 10, 2006
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
}
}
SDL_Cursor *
SDL_CreateCursor(const Uint8 * data, const Uint8 * mask,
int w, int h, int hot_x, int hot_y)
{
SDL_Mouse *mouse = SDL_GetMouse(SDL_current_mouse);
SDL_Surface *surface;
SDL_Cursor *cursor;
int x, y;
Uint32 *pixel;
Uint8 datab, maskb;
const Uint32 black = 0xFF000000;
const Uint32 white = 0xFFFFFFFF;
const Uint32 transparent = 0x00000000;
if (!mouse) {
SDL_SetError("No mice are initialized");
return NULL;
}
if (!mouse->CreateCursor) {
SDL_SetError("Current mouse doesn't have cursor support");
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->mouse = mouse;
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)
{
SDL_Mouse *mouse = SDL_GetMouse(SDL_current_mouse);
if (!mouse) {
SDL_SetError("No mice are initialized");
return;
}
/* 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)
{
SDL_Mouse *mouse = SDL_GetMouse(SDL_current_mouse);
if (!mouse) {
return NULL;
}
return mouse->cur_cursor;
}
void
SDL_FreeCursor(SDL_Cursor * cursor)
{
SDL_Mouse *mouse;
SDL_Cursor *curr, *prev;
if (!cursor) {
return;
}
mouse = cursor->mouse;
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
738
739
}
Jul 10, 2006
Jul 10, 2006
740
741
int
SDL_ShowCursor(int toggle)
Apr 26, 2001
Apr 26, 2001
742
{
Jul 10, 2006
Jul 10, 2006
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
SDL_Mouse *mouse = SDL_GetMouse(SDL_current_mouse);
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
762
763
}
Aug 25, 2008
Aug 25, 2008
764
765
766
767
768
769
770
771
772
773
774
775
776
char *
SDL_GetMouseName(int index)
{
SDL_Mouse *mouse = SDL_GetMouse(index);
if (!mouse) {
return NULL;
}
return mouse->name;
}
void
SDL_ChangeEnd(int id, int end)
{
Aug 25, 2008
Aug 25, 2008
777
778
int index = SDL_GetMouseIndexId(id);
SDL_Mouse *mouse = SDL_GetMouse(index);
Aug 25, 2008
Aug 25, 2008
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
if (mouse) {
mouse->current_end = end;
}
}
int
SDL_GetCursorsNumber(int index)
{
SDL_Mouse *mouse = SDL_GetMouse(index);
if (!mouse) {
return -1;
}
return mouse->total_ends;
}
int
SDL_GetCurrentCursor(int index)
{
SDL_Mouse *mouse = SDL_GetMouse(index);
if (!mouse) {
return -1;
}
return mouse->current_end;
}
Jul 10, 2006
Jul 10, 2006
807
/* vi: set ts=4 sw=4 expandtab: */