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

Latest commit

 

History

History
545 lines (468 loc) · 11.9 KB

SDL_mouse.c

File metadata and controls

545 lines (468 loc) · 11.9 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"
Jun 7, 2006
Jun 7, 2006
28
#include "SDL_mouse_c.h"
Jun 9, 2006
Jun 9, 2006
29
#include "default_cursor.h"
Apr 26, 2001
Apr 26, 2001
30
31
Jun 7, 2006
Jun 7, 2006
32
33
static int SDL_num_mice;
static int SDL_current_mouse;
Jun 9, 2006
Jun 9, 2006
34
static SDL_Mouse **SDL_mice;
Apr 26, 2001
Apr 26, 2001
35
36
37
/* Public functions */
May 28, 2006
May 28, 2006
38
int
May 29, 2006
May 29, 2006
39
SDL_MouseInit(void)
Apr 26, 2001
Apr 26, 2001
40
{
May 28, 2006
May 28, 2006
41
return (0);
Apr 26, 2001
Apr 26, 2001
42
}
May 28, 2006
May 28, 2006
43
Jun 9, 2006
Jun 9, 2006
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];
}
Jun 7, 2006
Jun 7, 2006
53
int
Jun 9, 2006
Jun 9, 2006
54
SDL_AddMouse(const SDL_Mouse * mouse, int index)
Jun 7, 2006
Jun 7, 2006
55
{
Jun 9, 2006
Jun 9, 2006
56
57
58
59
60
61
62
63
64
65
66
67
68
SDL_Mouse **mice;
SDL_Cursor *cursor;
int selected_mouse;
/* 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;
}
Jun 7, 2006
Jun 7, 2006
69
Jun 9, 2006
Jun 9, 2006
70
71
72
73
74
SDL_mice = mice;
index = SDL_num_mice++;
}
SDL_mice[index] = (SDL_Mouse *) SDL_malloc(sizeof(*SDL_mice[index]));
if (!SDL_mice[index]) {
Jun 7, 2006
Jun 7, 2006
75
76
77
SDL_OutOfMemory();
return -1;
}
Jun 9, 2006
Jun 9, 2006
78
79
80
81
82
83
84
85
86
87
88
*SDL_mice[index] = *mouse;
/* Create the default cursor for the mouse */
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);
SDL_SelectMouse(selected_mouse);
Jun 7, 2006
Jun 7, 2006
89
90
91
92
return index;
}
Jun 9, 2006
Jun 9, 2006
93
94
void
SDL_DelMouse(int index)
Jun 7, 2006
Jun 7, 2006
95
{
Jun 9, 2006
Jun 9, 2006
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
SDL_Mouse *mouse = SDL_GetMouse(index);
if (!mouse) {
return;
}
mouse->def_cursor = NULL;
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;
Jun 7, 2006
Jun 7, 2006
122
}
Jun 9, 2006
Jun 9, 2006
123
124
/* FIXME */
Jun 7, 2006
Jun 7, 2006
125
126
}
May 28, 2006
May 28, 2006
127
void
May 29, 2006
May 29, 2006
128
SDL_MouseQuit(void)
Aug 21, 2005
Aug 21, 2005
129
{
Jun 9, 2006
Jun 9, 2006
130
131
132
133
134
int i;
for (i = 0; i < SDL_num_mice; ++i) {
SDL_DelMouse(i);
}
Jun 7, 2006
Jun 7, 2006
135
136
137
138
139
140
141
142
143
144
145
146
147
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;
Aug 21, 2005
Aug 21, 2005
148
}
Apr 26, 2001
Apr 26, 2001
149
Jun 7, 2006
Jun 7, 2006
150
151
int
SDL_SelectMouse(int index)
Aug 20, 2002
Aug 20, 2002
152
{
Jun 7, 2006
Jun 7, 2006
153
154
if (index >= 0 && index < SDL_num_mice) {
SDL_current_mouse = index;
May 28, 2006
May 28, 2006
155
}
Jun 7, 2006
Jun 7, 2006
156
157
158
159
160
161
162
163
164
165
166
167
return SDL_current_mouse;
}
SDL_WindowID
SDL_GetMouseFocusWindow()
{
SDL_Mouse *mouse = SDL_GetMouse(SDL_current_mouse);
if (!mouse) {
return 0;
}
return mouse->focus;
Aug 20, 2002
Aug 20, 2002
168
169
}
May 28, 2006
May 28, 2006
170
Uint8
May 29, 2006
May 29, 2006
171
SDL_GetMouseState(int *x, int *y)
Apr 26, 2001
Apr 26, 2001
172
{
Jun 7, 2006
Jun 7, 2006
173
174
175
176
177
178
179
180
181
182
183
184
SDL_Mouse *mouse = SDL_GetMouse(SDL_current_mouse);
if (!mouse) {
if (x) {
*x = 0;
}
if (y) {
*y = 0;
}
return 0;
}
May 28, 2006
May 28, 2006
185
if (x) {
Jun 7, 2006
Jun 7, 2006
186
*x = mouse->x;
May 28, 2006
May 28, 2006
187
188
}
if (y) {
Jun 7, 2006
Jun 7, 2006
189
*y = mouse->y;
May 28, 2006
May 28, 2006
190
}
Jun 7, 2006
Jun 7, 2006
191
return mouse->buttonstate;
Apr 26, 2001
Apr 26, 2001
192
193
}
May 28, 2006
May 28, 2006
194
Uint8
May 29, 2006
May 29, 2006
195
SDL_GetRelativeMouseState(int *x, int *y)
Apr 26, 2001
Apr 26, 2001
196
{
Jun 7, 2006
Jun 7, 2006
197
SDL_Mouse *mouse = SDL_GetMouse(SDL_current_mouse);
Apr 26, 2001
Apr 26, 2001
198
Jun 7, 2006
Jun 7, 2006
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
if (!mouse) {
if (x) {
*x = 0;
}
if (y) {
*y = 0;
}
return 0;
}
if (x) {
*x = mouse->xdelta;
}
if (y) {
*y = mouse->ydelta;
May 28, 2006
May 28, 2006
214
}
Jun 7, 2006
Jun 7, 2006
215
216
217
mouse->xdelta = 0;
mouse->ydelta = 0;
return mouse->buttonstate;
Apr 26, 2001
Apr 26, 2001
218
219
}
May 28, 2006
May 28, 2006
220
int
Jun 7, 2006
Jun 7, 2006
221
222
SDL_SendMouseMotion(int index, SDL_WindowID windowID, int relative, int x,
int y)
Apr 26, 2001
Apr 26, 2001
223
{
Jun 7, 2006
Jun 7, 2006
224
SDL_Mouse *mouse = SDL_GetMouse(index);
May 28, 2006
May 28, 2006
225
int posted;
Jun 7, 2006
Jun 7, 2006
226
227
int xrel;
int yrel;
May 28, 2006
May 28, 2006
228
Jun 7, 2006
Jun 7, 2006
229
230
if (!mouse) {
return 0;
May 28, 2006
May 28, 2006
231
232
}
Jun 7, 2006
Jun 7, 2006
233
234
if (windowID) {
mouse->focus = windowID;
May 28, 2006
May 28, 2006
235
236
237
238
}
if (relative) {
/* Push the cursor around */
Jun 7, 2006
Jun 7, 2006
239
240
241
242
xrel = x;
yrel = y;
x = (mouse->x + xrel);
y = (mouse->y + yrel);
May 28, 2006
May 28, 2006
243
} else {
Jun 7, 2006
Jun 7, 2006
244
245
xrel = x - mouse->x;
yrel = y - mouse->y;
May 28, 2006
May 28, 2006
246
247
248
}
/* Drop events that don't change state */
Jun 7, 2006
Jun 7, 2006
249
if (!xrel && !yrel) {
Jan 29, 2006
Jan 29, 2006
250
#if 0
May 29, 2006
May 29, 2006
251
printf("Mouse event didn't change state - dropped!\n");
Jan 29, 2006
Jan 29, 2006
252
#endif
Jun 7, 2006
Jun 7, 2006
253
return 0;
May 28, 2006
May 28, 2006
254
255
256
}
/* Update internal mouse state */
Jun 9, 2006
Jun 9, 2006
257
258
mouse->x = x;
mouse->y = y;
Jun 7, 2006
Jun 7, 2006
259
260
mouse->xdelta += xrel;
mouse->ydelta += yrel;
May 28, 2006
May 28, 2006
261
Jun 9, 2006
Jun 9, 2006
262
263
264
265
266
/* Move the mouse cursor, if needed */
if (mouse->MoveCursor && mouse->cur_cursor) {
mouse->MoveCursor(mouse->cur_cursor);
}
May 28, 2006
May 28, 2006
267
268
269
270
/* Post the event, if desired */
posted = 0;
if (SDL_ProcessEvents[SDL_MOUSEMOTION] == SDL_ENABLE) {
SDL_Event event;
Jun 7, 2006
Jun 7, 2006
271
272
273
274
275
276
277
278
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;
event.motion.xrel = xrel;
event.motion.yrel = yrel;
event.motion.windowID = mouse->focus;
May 28, 2006
May 28, 2006
279
280
if ((SDL_EventOK == NULL) || (*SDL_EventOK) (&event)) {
posted = 1;
May 29, 2006
May 29, 2006
281
SDL_PushEvent(&event);
May 28, 2006
May 28, 2006
282
283
}
}
Jun 7, 2006
Jun 7, 2006
284
return posted;
Apr 26, 2001
Apr 26, 2001
285
286
}
May 28, 2006
May 28, 2006
287
int
Jun 9, 2006
Jun 9, 2006
288
289
SDL_SendMouseButton(int index, SDL_WindowID windowID, Uint8 state,
Uint8 button)
Apr 26, 2001
Apr 26, 2001
290
{
Jun 7, 2006
Jun 7, 2006
291
SDL_Mouse *mouse = SDL_GetMouse(index);
May 28, 2006
May 28, 2006
292
int posted;
Jun 7, 2006
Jun 7, 2006
293
294
295
296
297
298
299
300
Uint8 type;
if (!mouse) {
return 0;
}
if (windowID) {
mouse->focus = windowID;
May 28, 2006
May 28, 2006
301
302
303
304
305
}
/* Figure out which event to perform */
switch (state) {
case SDL_PRESSED:
Jun 7, 2006
Jun 7, 2006
306
307
308
309
310
311
if (mouse->buttonstate & SDL_BUTTON(button)) {
/* Ignore this event, no state change */
return 0;
}
type = SDL_MOUSEBUTTONDOWN;
mouse->buttonstate |= SDL_BUTTON(button);
May 28, 2006
May 28, 2006
312
313
break;
case SDL_RELEASED:
Jun 7, 2006
Jun 7, 2006
314
315
316
317
318
319
if (!(mouse->buttonstate & SDL_BUTTON(button))) {
/* Ignore this event, no state change */
return 0;
}
type = SDL_MOUSEBUTTONUP;
mouse->buttonstate &= ~SDL_BUTTON(button);
May 28, 2006
May 28, 2006
320
321
322
break;
default:
/* Invalid state -- bail */
Jun 7, 2006
Jun 7, 2006
323
return 0;
May 28, 2006
May 28, 2006
324
325
326
327
}
/* Post the event, if desired */
posted = 0;
Jun 7, 2006
Jun 7, 2006
328
329
330
331
if (SDL_ProcessEvents[type] == SDL_ENABLE) {
SDL_Event event;
event.type = type;
event.button.which = (Uint8) index;
May 28, 2006
May 28, 2006
332
333
event.button.state = state;
event.button.button = button;
Jun 7, 2006
Jun 7, 2006
334
335
336
event.button.x = mouse->x;
event.button.y = mouse->y;
event.button.windowID = windowID;
May 28, 2006
May 28, 2006
337
338
if ((SDL_EventOK == NULL) || (*SDL_EventOK) (&event)) {
posted = 1;
May 29, 2006
May 29, 2006
339
SDL_PushEvent(&event);
May 28, 2006
May 28, 2006
340
341
}
}
Jun 7, 2006
Jun 7, 2006
342
return posted;
Apr 26, 2001
Apr 26, 2001
343
344
}
Jun 9, 2006
Jun 9, 2006
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
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
423
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
457
458
459
460
461
462
463
464
465
466
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
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
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_SendMouseMotion(SDL_current_mouse, windowID, 0, x, y);
}
}
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 +
x * 4);
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) {
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;
}
}
}
int
SDL_ShowCursor(int toggle)
{
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;
}
May 28, 2006
May 28, 2006
545
/* vi: set ts=4 sw=4 expandtab: */