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

Latest commit

 

History

History
778 lines (686 loc) · 17.2 KB

SDL_mouse.c

File metadata and controls

778 lines (686 loc) · 17.2 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
*/
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"
Apr 26, 2001
Apr 26, 2001
29
30
Jul 10, 2006
Jul 10, 2006
31
32
33
static int SDL_num_mice;
static int SDL_current_mouse;
static SDL_Mouse **SDL_mice;
Jun 6, 2008
Jun 6, 2008
34
35
int *SDL_IdIndex;
int SDL_highestId;
Jul 3, 2008
Jul 3, 2008
36
37
int last_x, last_y;
int x_max, y_max;
Apr 26, 2001
Apr 26, 2001
38
/* Public functions */
Jul 10, 2006
Jul 10, 2006
39
40
int
SDL_MouseInit(void)
Apr 26, 2001
Apr 26, 2001
41
{
Jul 10, 2006
Jul 10, 2006
42
return (0);
Apr 26, 2001
Apr 26, 2001
43
}
Jul 10, 2006
Jul 10, 2006
44
45
46
47
48
49
50
51
52
53
54
SDL_Mouse *
SDL_GetMouse(int index)
{
if (index < 0 || index >= SDL_num_mice) {
return NULL;
}
return SDL_mice[index];
}
int
Jul 6, 2008
Jul 6, 2008
55
SDL_AddMouse(const SDL_Mouse * mouse, int index, char* name,int pressure_max,int pressure_min)
Jul 10, 2006
Jul 10, 2006
56
57
58
{
SDL_Mouse **mice;
int selected_mouse;
Jun 6, 2008
Jun 6, 2008
59
char* temp_name;
Jul 10, 2006
Jul 10, 2006
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* Add the mouse to the list of mice */
if (index < 0 || index >= SDL_num_mice || SDL_mice[index]) {
mice =
(SDL_Mouse **) SDL_realloc(SDL_mice,
(SDL_num_mice + 1) * sizeof(*mice));
if (!mice) {
SDL_OutOfMemory();
return -1;
}
SDL_mice = mice;
index = SDL_num_mice++;
}
SDL_mice[index] = (SDL_Mouse *) SDL_malloc(sizeof(*SDL_mice[index]));
if (!SDL_mice[index]) {
SDL_OutOfMemory();
return -1;
}
*SDL_mice[index] = *mouse;
Jun 6, 2008
Jun 6, 2008
79
80
SDL_mice[index]->name=SDL_malloc(strlen(name)*sizeof(char));
strcpy(SDL_mice[index]->name,name);
Jul 6, 2008
Jul 6, 2008
81
82
SDL_mice[index]->pressure_max=pressure_max;
SDL_mice[index]->pressure_min=pressure_min;
Jul 10, 2006
Jul 10, 2006
83
84
85
86
87
88
89
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);
Jul 3, 2008
Jul 3, 2008
90
91
SDL_mice[index]->proximity=SDL_TRUE;
SDL_mice[index]->relative_mode=SDL_FALSE;
Jul 10, 2006
Jul 10, 2006
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
SDL_SelectMouse(selected_mouse);
return index;
}
void
SDL_DelMouse(int index)
{
SDL_Mouse *mouse = SDL_GetMouse(index);
if (!mouse) {
return;
}
mouse->def_cursor = NULL;
Jun 6, 2008
Jun 6, 2008
107
SDL_free(mouse->name);
Jul 10, 2006
Jul 10, 2006
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
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;
SDL_current_mouse = 0;
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
157
{
Jul 10, 2006
Jul 10, 2006
158
159
160
161
if (index >= 0 && index < SDL_num_mice) {
SDL_current_mouse = index;
}
return SDL_current_mouse;
Aug 21, 2005
Aug 21, 2005
162
}
Apr 26, 2001
Apr 26, 2001
163
Jul 10, 2006
Jul 10, 2006
164
165
SDL_WindowID
SDL_GetMouseFocusWindow()
Aug 20, 2002
Aug 20, 2002
166
{
Jul 10, 2006
Jul 10, 2006
167
168
169
170
171
172
SDL_Mouse *mouse = SDL_GetMouse(SDL_current_mouse);
if (!mouse) {
return 0;
}
return mouse->focus;
Aug 20, 2002
Aug 20, 2002
173
174
}
Oct 17, 2006
Oct 17, 2006
175
static int SDLCALL
Jul 10, 2006
Jul 10, 2006
176
FlushMouseMotion(void *param, SDL_Event * event)
Apr 26, 2001
Apr 26, 2001
177
{
Jul 10, 2006
Jul 10, 2006
178
179
180
181
182
183
if (event->type == SDL_MOUSEMOTION
&& event->motion.which == (Uint8) SDL_current_mouse) {
return 0;
} else {
return 1;
}
Apr 26, 2001
Apr 26, 2001
184
185
}
Jul 10, 2006
Jul 10, 2006
186
int
Jul 3, 2008
Jul 3, 2008
187
SDL_SetRelativeMouseMode(SDL_bool enabled, int index)
Apr 26, 2001
Apr 26, 2001
188
{
Jul 3, 2008
Jul 3, 2008
189
SDL_Mouse *mouse = SDL_GetMouse(index);
Jul 10, 2006
Jul 10, 2006
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
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
212
213
}
Jul 10, 2006
Jul 10, 2006
214
215
SDL_bool
SDL_GetRelativeMouseMode()
Apr 26, 2001
Apr 26, 2001
216
{
Jul 10, 2006
Jul 10, 2006
217
218
219
220
221
222
SDL_Mouse *mouse = SDL_GetMouse(SDL_current_mouse);
if (!mouse) {
return SDL_FALSE;
}
return mouse->relative_mode;
Apr 26, 2001
Apr 26, 2001
223
224
}
Jul 10, 2006
Jul 10, 2006
225
226
Uint8
SDL_GetMouseState(int *x, int *y)
Apr 26, 2001
Apr 26, 2001
227
{
Jul 10, 2006
Jul 10, 2006
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
SDL_Mouse *mouse = SDL_GetMouse(SDL_current_mouse);
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
SDL_GetRelativeMouseState(int *x, int *y)
{
SDL_Mouse *mouse = SDL_GetMouse(SDL_current_mouse);
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
Jun 6, 2008
Jun 6, 2008
276
SDL_SetMouseFocus(int id, SDL_WindowID windowID)
Jul 10, 2006
Jul 10, 2006
277
{
Jun 6, 2008
Jun 6, 2008
278
int index = SDL_GetIndexById(id);
Jul 10, 2006
Jul 10, 2006
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
SDL_Mouse *mouse = SDL_GetMouse(index);
int i;
SDL_bool focus;
if (!mouse || (mouse->focus == windowID)) {
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);
}
}
mouse->focus = windowID;
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);
}
}
}
Jul 2, 2008
Jul 2, 2008
325
326
327
328
329
330
331
332
int
SDL_SendProximity(int id, int x, int y, int type)
{
int index=SDL_GetIndexById(id);
int posted=0;
if(SDL_ProcessEvents[type]==SDL_ENABLE)
{
SDL_Event event;
Jul 3, 2008
Jul 3, 2008
333
event.proximity.which=(Uint8)index;
Jul 2, 2008
Jul 2, 2008
334
335
336
337
338
event.proximity.x=x;
event.proximity.y=y;
event.type=type;
event.proximity.type=type;
posted = (SDL_PushEvent(&event) > 0);
Jul 3, 2008
Jul 3, 2008
339
340
341
342
343
344
345
346
if(type==SDL_PROXIMITYIN)
{
SDL_mice[index]->proximity=SDL_TRUE;
}
else
{
SDL_mice[index]->proximity=SDL_FALSE;
}
Jul 2, 2008
Jul 2, 2008
347
348
349
350
}
return posted;
}
Jul 10, 2006
Jul 10, 2006
351
int
Jun 6, 2008
Jun 6, 2008
352
SDL_SendMouseMotion(int id, int relative, int x, int y,int z)
Jul 10, 2006
Jul 10, 2006
353
{
Jun 6, 2008
Jun 6, 2008
354
int index=SDL_GetIndexById(id);
Jul 10, 2006
Jul 10, 2006
355
356
357
358
359
360
361
362
SDL_Mouse *mouse = SDL_GetMouse(index);
int posted;
int xrel;
int yrel;
if (!mouse || mouse->flush_motion) {
return 0;
}
Jul 3, 2008
Jul 3, 2008
363
364
365
366
367
368
369
if(mouse->proximity==SDL_FALSE)
{
last_x=x;
last_y=y;
return 0;
}
if (mouse->relative_mode==SDL_TRUE && mouse->proximity==SDL_TRUE) {
Jul 10, 2006
Jul 10, 2006
370
/* Push the cursor around */
Jul 3, 2008
Jul 3, 2008
371
372
xrel = x - last_x;
yrel = y - last_y;
Jul 10, 2006
Jul 10, 2006
373
} else {
Jul 3, 2008
Jul 3, 2008
374
375
xrel = x - last_x;
yrel = y - last_y;
Jul 10, 2006
Jul 10, 2006
376
377
378
379
}
/* Drop events that don't change state */
if (!xrel && !yrel) {
Jan 29, 2006
Jan 29, 2006
380
#if 0
Jul 10, 2006
Jul 10, 2006
381
printf("Mouse event didn't change state - dropped!\n");
Jan 29, 2006
Jan 29, 2006
382
#endif
Jul 10, 2006
Jul 10, 2006
383
384
385
386
return 0;
}
/* Update internal mouse state */
Jul 3, 2008
Jul 3, 2008
387
if (mouse->relative_mode==SDL_FALSE) {
Jul 10, 2006
Jul 10, 2006
388
389
390
mouse->x = x;
mouse->y = y;
}
Jul 3, 2008
Jul 3, 2008
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
else
{
if(mouse->x+xrel>x_max)
{
mouse->x=x_max;
}
else if(mouse->x+xrel<0)
{
mouse->x=0;
}
else
{
mouse->x+=xrel;
}
if(mouse->y+yrel>y_max)
{
mouse->y=y_max;
}
else if(mouse->y+yrel<0)
{
mouse->y=0;
}
else
{
mouse->y+=yrel;
}
}
Jul 10, 2006
Jul 10, 2006
418
419
mouse->xdelta += xrel;
mouse->ydelta += yrel;
Jul 5, 2008
Jul 5, 2008
420
mouse->pressure=z;
Jul 10, 2006
Jul 10, 2006
421
422
423
424
425
426
427
428
429
/* 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;
Jul 3, 2008
Jul 3, 2008
430
if (SDL_ProcessEvents[SDL_MOUSEMOTION] == SDL_ENABLE && SDL_mice[index]->proximity==SDL_TRUE) {
Jul 10, 2006
Jul 10, 2006
431
432
SDL_Event event;
event.motion.type = SDL_MOUSEMOTION;
Jul 3, 2008
Jul 3, 2008
433
event.motion.which = (Uint8) index;
Jul 10, 2006
Jul 10, 2006
434
435
436
event.motion.state = mouse->buttonstate;
event.motion.x = mouse->x;
event.motion.y = mouse->y;
Jul 5, 2008
Jul 5, 2008
437
event.motion.pressure= mouse->pressure;
Jul 10, 2006
Jul 10, 2006
438
439
440
event.motion.xrel = xrel;
event.motion.yrel = yrel;
event.motion.windowID = mouse->focus;
Jul 6, 2008
Jul 6, 2008
441
442
event.motion.pressure_max=mouse->pressure_max;
event.motion.pressure_min=mouse->pressure_min;
Jul 10, 2006
Jul 10, 2006
443
444
posted = (SDL_PushEvent(&event) > 0);
}
Jul 3, 2008
Jul 3, 2008
445
446
last_x=x;
last_y=y;
Jul 10, 2006
Jul 10, 2006
447
448
449
450
return posted;
}
int
Jun 6, 2008
Jun 6, 2008
451
SDL_SendMouseButton(int id, Uint8 state, Uint8 button)
Jul 10, 2006
Jul 10, 2006
452
{
Jun 6, 2008
Jun 6, 2008
453
int index=SDL_GetIndexById(id);
Jul 10, 2006
Jul 10, 2006
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
SDL_Mouse *mouse = SDL_GetMouse(index);
int posted;
Uint8 type;
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:
Jun 6, 2008
Jun 6, 2008
473
474
475
476
//if (!(mouse->buttonstate & SDL_BUTTON(button))) {
// /* Ignore this event, no state change */
// return 0;
//}*/
Jul 10, 2006
Jul 10, 2006
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
type = SDL_MOUSEBUTTONUP;
mouse->buttonstate &= ~SDL_BUTTON(button);
break;
default:
/* Invalid state -- bail */
return 0;
}
/* Post the event, if desired */
posted = 0;
if (SDL_ProcessEvents[type] == SDL_ENABLE) {
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;
event.button.windowID = mouse->focus;
posted = (SDL_PushEvent(&event) > 0);
}
return posted;
}
int
Jul 6, 2007
Jul 6, 2007
502
SDL_SendMouseWheel(int index, int x, int y)
Jul 10, 2006
Jul 10, 2006
503
504
505
506
{
SDL_Mouse *mouse = SDL_GetMouse(index);
int posted;
Jul 6, 2007
Jul 6, 2007
507
if (!mouse || (!x && !y)) {
Jul 10, 2006
Jul 10, 2006
508
509
510
511
512
513
514
515
516
return 0;
}
/* Post the event, if desired */
posted = 0;
if (SDL_ProcessEvents[SDL_MOUSEWHEEL] == SDL_ENABLE) {
SDL_Event event;
event.type = SDL_MOUSEWHEEL;
event.wheel.which = (Uint8) index;
Jul 6, 2007
Jul 6, 2007
517
518
event.wheel.x = x;
event.wheel.y = y;
Jul 10, 2006
Jul 10, 2006
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
event.wheel.windowID = mouse->focus;
posted = (SDL_PushEvent(&event) > 0);
}
return posted;
}
void
SDL_WarpMouseInWindow(SDL_WindowID windowID, int x, int y)
{
SDL_Mouse *mouse = SDL_GetMouse(SDL_current_mouse);
if (!mouse) {
return;
}
if (mouse->WarpMouse) {
mouse->WarpMouse(mouse, windowID, x, y);
} else {
SDL_SetMouseFocus(SDL_current_mouse, windowID);
Jun 6, 2008
Jun 6, 2008
538
SDL_SendMouseMotion(SDL_current_mouse, 0, x, y,0);
Jul 10, 2006
Jul 10, 2006
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
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
}
}
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
698
699
}
Jul 10, 2006
Jul 10, 2006
700
701
int
SDL_ShowCursor(int toggle)
Apr 26, 2001
Apr 26, 2001
702
{
Jul 10, 2006
Jul 10, 2006
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
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
722
723
}
Jun 6, 2008
Jun 6, 2008
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
void SDL_SetIndexId(int id, int index)
{
if(id>SDL_highestId)
{
int *indexes;
indexes =
(int*) SDL_realloc(SDL_IdIndex,
(id + 1) * sizeof(int));
if (!indexes) {
SDL_OutOfMemory();
return -1;
}
SDL_IdIndex=indexes;
SDL_IdIndex[id]=index;
SDL_highestId=id;
}
else
{
SDL_IdIndex[id]=index;
}
}
int SDL_GetIndexById(int id)
{
if(id>SDL_highestId)
{
return -1;
}
else
{
return SDL_IdIndex[id];
}
}
int SDL_GetNumOfMice(void)
{
return SDL_num_mice;
}
char* SDL_GetMouseName(int index)
{
SDL_Mouse* mouse = SDL_GetMouse(index);
if(!mouse)
{
return NULL;
}
return mouse->name;
}
Jul 3, 2008
Jul 3, 2008
773
774
775
776
777
void SDL_UpdateCoordinates(int x, int y)
{
x_max=x;
y_max=y;
}
Jul 10, 2006
Jul 10, 2006
778
/* vi: set ts=4 sw=4 expandtab: */