forked from joncampbell123/dosbox-x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSDL-12hg-win32.diff
297 lines (277 loc) · 9.52 KB
/
SDL-12hg-win32.diff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
diff -rupN SDL-1.2-orig//src/video/wincommon/SDL_lowvideo.h SDL-1.2-mouse//src/video/wincommon/SDL_lowvideo.h
--- SDL-1.2-orig//src/video/wincommon/SDL_lowvideo.h 2012-01-19 01:30:06 -0500
+++ SDL-1.2-mouse//src/video/wincommon/SDL_lowvideo.h 2016-10-24 19:53:20 -0400
@@ -70,13 +70,7 @@
(SDL_strcmp(this->name, "directx") == 0) \
)
-#define DINPUT_FULLSCREEN() \
-( \
- FULLSCREEN() && \
- (strcmp(this->name, "directx") == 0) \
-)
-
-#define DINPUT() (strcmp(this->name, "directx") == 0)
+#define DINPUT_FULLSCREEN() DDRAW_FULLSCREEN()
/* The main window -- and a function to set it for the audio */
#ifdef _WIN32_WCE
diff -rupN SDL-1.2-orig//src/video/wincommon/SDL_sysevents.c SDL-1.2-mouse//src/video/wincommon/SDL_sysevents.c
--- SDL-1.2-orig//src/video/wincommon/SDL_sysevents.c 2012-01-19 01:30:06 -0500
+++ SDL-1.2-mouse//src/video/wincommon/SDL_sysevents.c 2016-10-24 20:40:16 -0400
@@ -251,6 +251,7 @@ DJM: This is no longer static as (DX5/DI
LRESULT CALLBACK WinMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
SDL_VideoDevice *this = current_video;
+ static int in_window = 0;
#ifdef WMMSG_DEBUG
fprintf(stderr, "Received windows message: ");
if ( msg > MAX_WMMSG ) {
@@ -330,36 +331,59 @@ LRESULT CALLBACK WinMessage(HWND hwnd, U
case WM_MOUSEMOVE: {
-#ifdef WM_MOUSELEAVE
- if ( SDL_VideoSurface ) {
- /* mouse has entered the window */
+ /* Mouse is handled by DirectInput when fullscreen */
+ if ( SDL_VideoSurface && ! DINPUT_FULLSCREEN() ) {
+ Sint16 x, y;
- if ( !(SDL_GetAppState() & SDL_APPMOUSEFOCUS) ) {
+ /* mouse has entered the window */
+ if ( ! in_window ) {
+#ifdef WM_MOUSELEAVE
TRACKMOUSEEVENT tme;
tme.cbSize = sizeof(tme);
tme.dwFlags = TME_LEAVE;
tme.hwndTrack = SDL_Window;
_TrackMouseEvent(&tme);
- }
- }
#endif /* WM_MOUSELEAVE */
+ in_window = TRUE;
- /* Mouse motion is handled in DIB_PumpEvents or
- * DX5_PumpEvents, depending on the video driver
- * in use */
+ posted = SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS);
+ }
- posted = SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS);
+ /* mouse has moved within the window */
+ x = LOWORD(lParam);
+ y = HIWORD(lParam);
+ if ( mouse_relative ) {
+ POINT center;
+ center.x = (SDL_VideoSurface->w/2);
+ center.y = (SDL_VideoSurface->h/2);
+ x -= (Sint16)center.x;
+ y -= (Sint16)center.y;
+ if ( x || y ) {
+ ClientToScreen(SDL_Window, ¢er);
+ SetCursorPos(center.x, center.y);
+ posted = SDL_PrivateMouseMotion(0, 1, x, y);
+ }
+ } else {
+#ifdef _WIN32_WCE
+ if (SDL_VideoSurface)
+ GapiTransform(this->hidden->userOrientation, this->hidden->hiresFix, &x, &y);
+#endif
+ posted = SDL_PrivateMouseMotion(0, 0, x, y);
+ }
+ }
}
return(0);
#ifdef WM_MOUSELEAVE
case WM_MOUSELEAVE: {
- if ( SDL_VideoSurface ) {
+ /* Mouse is handled by DirectInput when fullscreen */
+ if ( SDL_VideoSurface && ! DINPUT_FULLSCREEN() ) {
/* mouse has left the window */
posted = SDL_PrivateAppActive(0, SDL_APPMOUSEFOCUS);
}
+ in_window = FALSE;
}
return(0);
#endif /* WM_MOUSELEAVE */
@@ -373,7 +397,7 @@ LRESULT CALLBACK WinMessage(HWND hwnd, U
case WM_XBUTTONDOWN:
case WM_XBUTTONUP: {
/* Mouse is handled by DirectInput when fullscreen */
- if ( SDL_VideoSurface && ! DINPUT() ) {
+ if ( SDL_VideoSurface && ! DINPUT_FULLSCREEN() ) {
WORD xbuttonval = 0;
Uint8 button, state;
int x, y;
@@ -472,7 +496,7 @@ this->hidden->hiresFix, &x, &y);
#if (_WIN32_WINNT >= 0x0400) || (_WIN32_WINDOWS > 0x0400)
case WM_MOUSEWHEEL:
- if ( SDL_VideoSurface && ! DINPUT() ) {
+ if ( SDL_VideoSurface && ! DINPUT_FULLSCREEN() ) {
int move = (short)HIWORD(wParam);
if ( move ) {
Uint8 button;
diff -rupN SDL-1.2-ORIG//src/video/wincommon/SDL_sysmouse.c SDL-1.2/src/video/wincommon/SDL_sysmouse.c
--- SDL-1.2-ORIG//src/video/wincommon/SDL_sysmouse.c 2014-01-14 20:03:09 -0500
+++ SDL-1.2/src/video/wincommon/SDL_sysmouse.c 2016-10-24 22:05:42 -0400
@@ -188,7 +188,8 @@ int WIN_ShowWMCursor(_THIS, WMcursor *cu
{
POINT mouse_pos;
- if ( !this->screen ) {
+ /* The fullscreen cursor must be done in software with DirectInput */
+ if ( !this->screen || DDRAW_FULLSCREEN() ) {
return(0);
}
@@ -207,20 +208,15 @@ int WIN_ShowWMCursor(_THIS, WMcursor *cu
void WIN_WarpWMCursor(_THIS, Uint16 x, Uint16 y)
{
- if ( mouse_relative) {
+ if ( DDRAW_FULLSCREEN() ) {
+ SDL_PrivateMouseMotion(0, 0, x, y);
+ } else if ( mouse_relative) {
/* RJR: March 28, 2000
leave physical cursor at center of screen if
mouse hidden and grabbed */
SDL_PrivateMouseMotion(0, 0, x, y);
} else {
POINT pt;
-
- /* With DirectInput the position doesn't follow
- * the cursor, so it is set manually */
- if ( DINPUT() ) {
- SDL_PrivateMouseMotion(0, 0, x, y);
- }
-
pt.x = x;
pt.y = y;
ClientToScreen(SDL_Window, &pt);
@@ -231,15 +227,20 @@ void WIN_WarpWMCursor(_THIS, Uint16 x, U
/* Update the current mouse state and position */
void WIN_UpdateMouse(_THIS)
{
+ RECT rect;
POINT pt;
- /* Always unset SDL_APPMOUSEFOCUS to give the WM_MOUSEMOVE event
- * handler a chance to install a TRACKMOUSEEVENT */
- SDL_PrivateAppActive(0, SDL_APPMOUSEFOCUS);
-
- GetCursorPos(&pt);
- ScreenToClient(SDL_Window, &pt);
- SDL_PrivateMouseMotion(0,0, (Sint16)pt.x, (Sint16)pt.y);
+ if ( ! DDRAW_FULLSCREEN() ) {
+ GetClientRect(SDL_Window, &rect);
+ GetCursorPos(&pt);
+ MapWindowPoints(NULL, SDL_Window, &pt, 1);
+ if (PtInRect(&rect, pt) && (WindowFromPoint(pt) == SDL_Window)){
+ SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS);
+ SDL_PrivateMouseMotion(0,0, (Sint16)pt.x, (Sint16)pt.y);
+ } else {
+ SDL_PrivateAppActive(0, SDL_APPMOUSEFOCUS);
+ }
+ }
}
/* Check to see if we need to enter or leave mouse relative mode */
diff -rupN SDL-1.2-ORIG//src/video/windx5/SDL_dx5events.c SDL-1.2/src/video/windx5/SDL_dx5events.c
--- SDL-1.2-ORIG//src/video/windx5/SDL_dx5events.c 2012-01-19 01:30:06 -0500
+++ SDL-1.2/src/video/windx5/SDL_dx5events.c 2016-10-24 20:24:33 -0400
@@ -143,12 +143,7 @@ struct {
(DISCL_FOREGROUND|DISCL_NONEXCLUSIVE),
(DISCL_FOREGROUND|DISCL_NONEXCLUSIVE), handle_keyboard },
{ "mouse",
- &GUID_SysMouse,
-#if DIRECTINPUT_VERSION >= 0x700
- &c_dfDIMouse2,
-#else
- &c_dfDIMouse,
-#endif
+ &GUID_SysMouse, &c_dfDIMouse,
(DISCL_BACKGROUND|DISCL_NONEXCLUSIVE),
(DISCL_BACKGROUND|DISCL_NONEXCLUSIVE), handle_mouse },
{ NULL, NULL, NULL, 0, 0, NULL }
@@ -370,11 +365,18 @@ static void handle_mouse(const int numev
return;
}
+ /* If we are in windowed mode, Windows is taking care of the mouse */
+ if ( (SDL_PublicSurface->flags & SDL_OPENGL) ||
+ !(SDL_PublicSurface->flags & SDL_FULLSCREEN) ) {
+ return;
+ }
+
/* If mouse focus has been lost, make sure we release the cursor. */
if ( !(SDL_GetAppState() & SDL_APPMOUSEFOCUS) ) {
mouse_lost = 1;
ClipCursor(NULL);
} else {
+
/* If the mouse was lost, regain some sense of mouse state */
if ( mouse_lost ) {
POINT mouse_pos;
@@ -390,11 +392,7 @@ static void handle_mouse(const int numev
old_state = SDL_GetMouseState(NULL, NULL);
new_state = 0;
{ /* Get the new DirectInput button state for the mouse */
- #if DIRECTINPUT_VERSION >= 0x700
- DIMOUSESTATE2 distate;
- #else
DIMOUSESTATE distate;
- #endif
HRESULT result;
result=IDirectInputDevice2_GetDeviceState(SDL_DIdev[1],
@@ -415,13 +413,14 @@ static void handle_mouse(const int numev
for ( i=0; i<8; ++i ) {
if ( (old_state&0x01) != (new_state&0x01) ) {
button = (Uint8)(i+1);
- /* Map DI button numbers to SDL */
- switch ( button ) {
- case 2: button = SDL_BUTTON_RIGHT; break;
- case 3: button = SDL_BUTTON_MIDDLE; break;
- case 4: button = SDL_BUTTON_X1; break;
- case 5: button = SDL_BUTTON_X2; break;
- default: break;
+ /* Button #2 on two button mice is button 3
+ (the middle button is button 2)
+ */
+ if ( button == 2 ) {
+ button = 3;
+ } else
+ if ( button == 3 ) {
+ button = 2;
}
if ( new_state & 0x01 ) {
/* Grab mouse so we get mouse-up */
@@ -499,12 +498,6 @@ static void handle_mouse(const int numev
case DIMOFS_BUTTON1:
case DIMOFS_BUTTON2:
case DIMOFS_BUTTON3:
- #if DIRECTINPUT_VERSION >= 0x700
- case DIMOFS_BUTTON4:
- case DIMOFS_BUTTON5:
- case DIMOFS_BUTTON6:
- case DIMOFS_BUTTON7:
- #endif
if ( xrel || yrel ) {
post_mouse_motion(1, xrel, yrel);
xrel = 0;
diff -rupN SDL-1.2-ORIG//src/video/windx5/directx.h SDL-1.2/src/video/windx5/directx.h
--- SDL-1.2-ORIG//src/video/windx5/directx.h 2012-01-19 01:30:06 -0500
+++ SDL-1.2/src/video/windx5/directx.h 2016-10-24 20:00:54 -0400
@@ -72,26 +72,10 @@
/* We need these defines to mark what version of DirectX API we use */
#define DIRECTDRAW_VERSION 0x0700
#define DIRECTSOUND_VERSION 0x0500
-#define DIRECTINPUT_VERSION 0x0700
+#define DIRECTINPUT_VERSION 0x0500
#include <ddraw.h>
#include <dsound.h>
#include <dinput.h>
-#if DIRECTINPUT_VERSION >= 0x0700 && !defined(DIMOFS_BUTTON4)
-typedef struct _DIMOUSESTATE2 {
- LONG lX;
- LONG lY;
- LONG lZ;
- BYTE rgbButtons[8];
-} DIMOUSESTATE2, *LPDIMOUSESTATE2;
-
-#define DIMOFS_BUTTON4 (FIELD_OFFSET(DIMOUSESTATE2, rgbButtons) + 4)
-#define DIMOFS_BUTTON5 (FIELD_OFFSET(DIMOUSESTATE2, rgbButtons) + 5)
-#define DIMOFS_BUTTON6 (FIELD_OFFSET(DIMOUSESTATE2, rgbButtons) + 6)
-#define DIMOFS_BUTTON7 (FIELD_OFFSET(DIMOUSESTATE2, rgbButtons) + 7)
-
-extern const DIDATAFORMAT c_dfDIMouse2;
-#endif
-
#endif /* _directx_h */