Mercurial > sdl-ios-xcode
annotate src/video/wincommon/SDL_sysmouse.c @ 3877:81f66f258d77 SDL-1.2
Fixed bug #281
------- Comment #2 From Christian Walther 2006-07-23 07:37 [reply] -------
Wow, that was an interesting bug to chase. It was a timing issue: it seems that
for some reason, a certain time must pass between ShowMenuBar() being called in
QZ_UnsetVideoMode() and the application quitting. Before rev. 1885, this delay
was provided by the slow hand-coded fade. With the asynchronous Core Graphics
fading introduced in rev. 1885, that delay was no longer present (most of the
time) and the bug became apparent. Adding an SDL_Delay(100) somewhere between
ShowMenuBar() and the end of QZ_VideoQuit() lowered the frequency of the bug
appearing from "almost every time" to "very rarely" here.
However, there is another solution: doing the ShowMenuBar() before releasing
the captured display instead of afterwards. Apparently, no delay is necessary
in that case, and it looks nicer to me anyway because it is the reverse order
of the way things are set up in the beginning: capture display - set video mode
- hide menu bar - ... - show menu bar - reset video mode - release captured
display. So, this is what the attached patch does.
In addition, I've taken the liberty of
- removing some unused code that I forgot to remove in rev. 1885,
- fixing two warnings about undeclared functions in SDL_QuartzVideo.m by
including OpenGL.h (whose name is a bit misleading - it only declares CGL
stuff, so there's no interference with SDL_opengl.h).
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 24 Sep 2006 01:27:40 +0000 |
parents | 4aac8563c296 |
children | 782fd950bd46 c121d94672cb a1b03ba2fcd0 |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1251
diff
changeset
|
3 Copyright (C) 1997-2006 Sam Lantinga |
0 | 4 |
5 This library is free software; you can redistribute it and/or | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1251
diff
changeset
|
6 modify it under the terms of the GNU Lesser General Public |
0 | 7 License as published by the Free Software Foundation; either |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1251
diff
changeset
|
8 version 2.1 of the License, or (at your option) any later version. |
0 | 9 |
10 This library is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1251
diff
changeset
|
13 Lesser General Public License for more details. |
0 | 14 |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1251
diff
changeset
|
15 You should have received a copy of the GNU Lesser General Public |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1251
diff
changeset
|
16 License along with this library; if not, write to the Free Software |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1251
diff
changeset
|
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 18 |
19 Sam Lantinga | |
252
e8157fcb3114
Updated the source with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents:
13
diff
changeset
|
20 slouken@libsdl.org |
0 | 21 */ |
1402
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1361
diff
changeset
|
22 #include "SDL_config.h" |
0 | 23 |
1433
bb6839704ed6
SDL_windows.h is no longer necessary
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
24 #define WIN32_LEAN_AND_MEAN |
bb6839704ed6
SDL_windows.h is no longer necessary
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
25 #include <windows.h> |
0 | 26 |
27 #include "SDL_mouse.h" | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
28 #include "../../events/SDL_events_c.h" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
29 #include "../SDL_cursor_c.h" |
0 | 30 #include "SDL_sysmouse_c.h" |
31 #include "SDL_lowvideo.h" | |
32 | |
33 #ifdef _WIN32_WCE | |
34 #define USE_STATIC_CURSOR | |
35 #endif | |
36 | |
37 HCURSOR SDL_hcursor = NULL; /* Exported for SDL_eventloop.c */ | |
38 | |
39 /* The implementation dependent data for the window manager cursor */ | |
40 /* For some reason when creating a windows cursor, the ands and xors memory | |
41 is not copied, so we need to keep track of it and free it when we are done | |
42 with the cursor. If we free the memory prematurely, the app crashes. :-} | |
43 */ | |
44 struct WMcursor { | |
45 HCURSOR curs; | |
46 #ifndef USE_STATIC_CURSOR | |
47 Uint8 *ands; | |
48 Uint8 *xors; | |
49 #endif | |
50 }; | |
51 | |
52 /* Convert bits to padded bytes */ | |
53 #define PAD_BITS(bits) ((bits+7)/8) | |
54 | |
55 #ifdef CURSOR_DEBUG | |
56 static void PrintBITMAP(FILE *out, char *bits, int w, int h) | |
57 { | |
58 int i; | |
59 unsigned char ch; | |
60 | |
61 while ( h-- > 0 ) { | |
62 for ( i=0; i<w; ++i ) { | |
63 if ( (i%8) == 0 ) | |
64 ch = *bits++; | |
65 if ( ch&0x80 ) | |
66 fprintf(out, "X"); | |
67 else | |
68 fprintf(out, " "); | |
69 ch <<= 1; | |
70 } | |
71 fprintf(out, "\n"); | |
72 } | |
73 } | |
74 #endif | |
75 | |
76 #ifndef USE_STATIC_CURSOR | |
77 /* Local functions to convert the SDL cursor mask into Windows format */ | |
78 static void memnot(Uint8 *dst, Uint8 *src, int len) | |
79 { | |
80 while ( len-- > 0 ) | |
81 *dst++ = ~*src++; | |
82 } | |
83 static void memxor(Uint8 *dst, Uint8 *src1, Uint8 *src2, int len) | |
84 { | |
85 while ( len-- > 0 ) | |
86 *dst++ = (*src1++)^(*src2++); | |
87 } | |
88 #endif /* !USE_STATIC_CURSOR */ | |
89 | |
90 void WIN_FreeWMCursor(_THIS, WMcursor *cursor) | |
91 { | |
92 #ifndef USE_STATIC_CURSOR | |
506
f097dba83975
Fixed cursor resource leak in Windows (thanks Huib-Jan Imbens!)
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
93 if ( cursor->curs == GetCursor() ) |
f097dba83975
Fixed cursor resource leak in Windows (thanks Huib-Jan Imbens!)
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
94 SetCursor(NULL); |
0 | 95 if ( cursor->curs != NULL ) |
96 DestroyCursor(cursor->curs); | |
97 if ( cursor->ands != NULL ) | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
98 SDL_free(cursor->ands); |
0 | 99 if ( cursor->xors != NULL ) |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
100 SDL_free(cursor->xors); |
0 | 101 #endif /* !USE_STATIC_CURSOR */ |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
102 SDL_free(cursor); |
0 | 103 } |
104 | |
105 WMcursor *WIN_CreateWMCursor(_THIS, | |
106 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y) | |
107 { | |
108 #ifdef USE_STATIC_CURSOR | |
109 WMcursor *cursor; | |
110 | |
111 /* Allocate the cursor */ | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
112 cursor = (WMcursor *)SDL_malloc(sizeof(*cursor)); |
0 | 113 if ( cursor ) { |
114 cursor->curs = LoadCursor(NULL, IDC_ARROW); | |
115 } | |
116 return(cursor); | |
117 #else | |
118 WMcursor *cursor; | |
119 int allowed_x; | |
120 int allowed_y; | |
121 int run, pad, i; | |
122 Uint8 *aptr, *xptr; | |
123 | |
124 /* Check to make sure the cursor size is okay */ | |
125 allowed_x = GetSystemMetrics(SM_CXCURSOR); | |
126 allowed_y = GetSystemMetrics(SM_CYCURSOR); | |
127 if ( (w > allowed_x) || (h > allowed_y) ) { | |
128 SDL_SetError("Only cursors of dimension (%dx%d) are allowed", | |
129 allowed_x, allowed_y); | |
130 return(NULL); | |
131 } | |
132 | |
133 /* Allocate the cursor */ | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
134 cursor = (WMcursor *)SDL_malloc(sizeof(*cursor)); |
0 | 135 if ( cursor == NULL ) { |
136 SDL_SetError("Out of memory"); | |
137 return(NULL); | |
138 } | |
139 cursor->curs = NULL; | |
140 cursor->ands = NULL; | |
141 cursor->xors = NULL; | |
142 | |
143 /* Pad out to the normal cursor size */ | |
144 run = PAD_BITS(w); | |
145 pad = PAD_BITS(allowed_x)-run; | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
146 aptr = cursor->ands = (Uint8 *)SDL_malloc((run+pad)*allowed_y); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
147 xptr = cursor->xors = (Uint8 *)SDL_malloc((run+pad)*allowed_y); |
0 | 148 if ( (aptr == NULL) || (xptr == NULL) ) { |
149 WIN_FreeWMCursor(NULL, cursor); | |
150 SDL_OutOfMemory(); | |
151 return(NULL); | |
152 } | |
153 for ( i=0; i<h; ++i ) { | |
154 memxor(xptr, data, mask, run); | |
155 xptr += run; | |
156 data += run; | |
157 memnot(aptr, mask, run); | |
158 mask += run; | |
159 aptr += run; | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
160 SDL_memset(xptr, 0, pad); |
0 | 161 xptr += pad; |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
162 SDL_memset(aptr, ~0, pad); |
0 | 163 aptr += pad; |
164 } | |
165 pad += run; | |
166 for ( ; i<allowed_y; ++i ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
167 SDL_memset(xptr, 0, pad); |
0 | 168 xptr += pad; |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
169 SDL_memset(aptr, ~0, pad); |
0 | 170 aptr += pad; |
171 } | |
172 | |
173 /* Create the cursor */ | |
174 cursor->curs = CreateCursor( | |
1472
4aac8563c296
Fixed more Win64 portability issues
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
175 (HINSTANCE)GetWindowLongPtr(SDL_Window, GWLP_HINSTANCE), |
0 | 176 hot_x, hot_y, allowed_x, allowed_y, |
177 cursor->ands, cursor->xors); | |
178 if ( cursor->curs == NULL ) { | |
179 WIN_FreeWMCursor(NULL, cursor); | |
180 SDL_SetError("Windows couldn't create the requested cursor"); | |
181 return(NULL); | |
182 } | |
183 return(cursor); | |
184 #endif /* USE_STATIC_CURSOR */ | |
185 } | |
186 | |
187 int WIN_ShowWMCursor(_THIS, WMcursor *cursor) | |
188 { | |
189 POINT mouse_pos; | |
190 | |
191 /* The fullscreen cursor must be done in software with DirectInput */ | |
13
e30a8ce27c22
Fixed double-mouse event bug on Windows using OpenGL
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
192 if ( !this->screen || DDRAW_FULLSCREEN() ) { |
0 | 193 return(0); |
194 } | |
195 | |
196 /* Set the window cursor to our cursor, if applicable */ | |
197 if ( cursor != NULL ) { | |
198 SDL_hcursor = cursor->curs; | |
199 } else { | |
200 SDL_hcursor = NULL; | |
201 } | |
202 GetCursorPos(&mouse_pos); | |
203 if ( PtInRect(&SDL_bounds, mouse_pos) ) { | |
204 SetCursor(SDL_hcursor); | |
205 } | |
206 return(1); | |
207 } | |
208 | |
209 void WIN_WarpWMCursor(_THIS, Uint16 x, Uint16 y) | |
210 { | |
13
e30a8ce27c22
Fixed double-mouse event bug on Windows using OpenGL
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
211 if ( DDRAW_FULLSCREEN() ) { |
0 | 212 SDL_PrivateMouseMotion(0, 0, x, y); |
213 } else if ( mouse_relative) { | |
214 /* RJR: March 28, 2000 | |
215 leave physical cursor at center of screen if | |
216 mouse hidden and grabbed */ | |
217 SDL_PrivateMouseMotion(0, 0, x, y); | |
218 } else { | |
527
5c74ac147358
Fixed mouse warp position bug with offset video modes
Sam Lantinga <slouken@libsdl.org>
parents:
506
diff
changeset
|
219 POINT pt; |
0 | 220 pt.x = x; |
221 pt.y = y; | |
222 ClientToScreen(SDL_Window, &pt); | |
223 SetCursorPos(pt.x, pt.y); | |
224 } | |
225 } | |
226 | |
227 /* Update the current mouse state and position */ | |
228 void WIN_UpdateMouse(_THIS) | |
229 { | |
230 RECT rect; | |
231 POINT pt; | |
232 | |
13
e30a8ce27c22
Fixed double-mouse event bug on Windows using OpenGL
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
233 if ( ! DDRAW_FULLSCREEN() ) { |
0 | 234 GetClientRect(SDL_Window, &rect); |
235 GetCursorPos(&pt); | |
236 MapWindowPoints(NULL, SDL_Window, &pt, 1); | |
237 if (PtInRect(&rect, pt) && (WindowFromPoint(pt) == SDL_Window)){ | |
238 SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS); | |
239 SDL_PrivateMouseMotion(0,0, (Sint16)pt.x, (Sint16)pt.y); | |
240 } else { | |
241 SDL_PrivateAppActive(0, SDL_APPMOUSEFOCUS); | |
242 } | |
243 } | |
244 } | |
245 | |
246 /* Check to see if we need to enter or leave mouse relative mode */ | |
247 void WIN_CheckMouseMode(_THIS) | |
248 { | |
1251
86d0d01290ea
Updated Windows CE/PocketPC support...adds GAPI driver, landscape mode,
Ryan C. Gordon <icculus@icculus.org>
parents:
527
diff
changeset
|
249 #ifndef _WIN32_WCE |
0 | 250 /* If the mouse is hidden and input is grabbed, we use relative mode */ |
251 if ( !(SDL_cursorstate & CURSOR_VISIBLE) && | |
252 (this->input_grab != SDL_GRAB_OFF) ) { | |
253 mouse_relative = 1; | |
254 } else { | |
255 mouse_relative = 0; | |
256 } | |
1251
86d0d01290ea
Updated Windows CE/PocketPC support...adds GAPI driver, landscape mode,
Ryan C. Gordon <icculus@icculus.org>
parents:
527
diff
changeset
|
257 #else |
86d0d01290ea
Updated Windows CE/PocketPC support...adds GAPI driver, landscape mode,
Ryan C. Gordon <icculus@icculus.org>
parents:
527
diff
changeset
|
258 mouse_relative = 0; |
86d0d01290ea
Updated Windows CE/PocketPC support...adds GAPI driver, landscape mode,
Ryan C. Gordon <icculus@icculus.org>
parents:
527
diff
changeset
|
259 #endif |
0 | 260 } |