Mercurial > sdl-ios-xcode
annotate src/video/windib/SDL_dibvideo.c @ 1433:bb6839704ed6
SDL_windows.h is no longer necessary
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 25 Feb 2006 22:18:25 +0000 |
parents | d910939febfa |
children | 8dfa9a6d69a5 |
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:
1295
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:
1295
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:
1295
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:
1295
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:
1295
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:
1295
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:
1295
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:
169
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> |
1152
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
26 |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
27 #if defined(_WIN32_WCE) |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
28 |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
29 // defined and used in SDL_sysevents.c |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
30 extern HINSTANCE aygshell; |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
31 |
514
1080bfc4aa96
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
453
diff
changeset
|
32 #endif |
0 | 33 |
34 /* Not yet in the mingw32 cross-compile headers */ | |
35 #ifndef CDS_FULLSCREEN | |
36 #define CDS_FULLSCREEN 4 | |
37 #endif | |
38 | |
39 #include "SDL_syswm.h" | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
40 #include "../SDL_sysvideo.h" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
41 #include "../SDL_pixels_c.h" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
42 #include "../../events/SDL_sysevents.h" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
43 #include "../../events/SDL_events_c.h" |
0 | 44 #include "SDL_dibvideo.h" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
45 #include "../wincommon/SDL_syswm_c.h" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
46 #include "../wincommon/SDL_sysmouse_c.h" |
0 | 47 #include "SDL_dibevents_c.h" |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
48 #include "../wincommon/SDL_wingl_c.h" |
0 | 49 |
50 #ifdef _WIN32_WCE | |
51 #define NO_GETDIBITS | |
52 #define NO_CHANGEDISPLAYSETTINGS | |
53 #define NO_GAMMA_SUPPORT | |
54 #endif | |
453
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
55 #ifndef WS_MAXIMIZE |
766
ed57c876700d
Date: Wed, 26 Nov 2003 01:52:02 +0800
Sam Lantinga <slouken@libsdl.org>
parents:
515
diff
changeset
|
56 #define WS_MAXIMIZE 0 |
ed57c876700d
Date: Wed, 26 Nov 2003 01:52:02 +0800
Sam Lantinga <slouken@libsdl.org>
parents:
515
diff
changeset
|
57 #endif |
ed57c876700d
Date: Wed, 26 Nov 2003 01:52:02 +0800
Sam Lantinga <slouken@libsdl.org>
parents:
515
diff
changeset
|
58 #ifndef WS_THICKFRAME |
ed57c876700d
Date: Wed, 26 Nov 2003 01:52:02 +0800
Sam Lantinga <slouken@libsdl.org>
parents:
515
diff
changeset
|
59 #define WS_THICKFRAME 0 |
453
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
60 #endif |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
61 #ifndef SWP_NOCOPYBITS |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
62 #define SWP_NOCOPYBITS 0 |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
63 #endif |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
64 #ifndef PC_NOCOLLAPSE |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
65 #define PC_NOCOLLAPSE 0 |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
66 #endif |
0 | 67 |
68 /* Initialization/Query functions */ | |
69 static int DIB_VideoInit(_THIS, SDL_PixelFormat *vformat); | |
70 static SDL_Rect **DIB_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags); | |
71 SDL_Surface *DIB_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags); | |
72 static int DIB_SetColors(_THIS, int firstcolor, int ncolors, | |
73 SDL_Color *colors); | |
74 static void DIB_CheckGamma(_THIS); | |
338
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
75 void DIB_SwapGamma(_THIS); |
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
76 void DIB_QuitGamma(_THIS); |
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
77 int DIB_SetGammaRamp(_THIS, Uint16 *ramp); |
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
78 int DIB_GetGammaRamp(_THIS, Uint16 *ramp); |
0 | 79 static void DIB_VideoQuit(_THIS); |
80 | |
81 /* Hardware surface functions */ | |
82 static int DIB_AllocHWSurface(_THIS, SDL_Surface *surface); | |
83 static int DIB_LockHWSurface(_THIS, SDL_Surface *surface); | |
84 static void DIB_UnlockHWSurface(_THIS, SDL_Surface *surface); | |
85 static void DIB_FreeHWSurface(_THIS, SDL_Surface *surface); | |
86 | |
87 /* Windows message handling functions */ | |
88 static void DIB_RealizePalette(_THIS); | |
89 static void DIB_PaletteChanged(_THIS, HWND window); | |
90 static void DIB_WinPAINT(_THIS, HDC hdc); | |
91 | |
92 /* helper fn */ | |
93 static int DIB_SussScreenDepth(); | |
94 | |
95 /* DIB driver bootstrap functions */ | |
96 | |
97 static int DIB_Available(void) | |
98 { | |
99 return(1); | |
100 } | |
101 | |
102 static void DIB_DeleteDevice(SDL_VideoDevice *device) | |
103 { | |
104 if ( device ) { | |
105 if ( device->hidden ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
106 SDL_free(device->hidden); |
0 | 107 } |
108 if ( device->gl_data ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
109 SDL_free(device->gl_data); |
0 | 110 } |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
111 SDL_free(device); |
0 | 112 } |
113 } | |
114 | |
115 static SDL_VideoDevice *DIB_CreateDevice(int devindex) | |
116 { | |
117 SDL_VideoDevice *device; | |
118 | |
119 /* Initialize all variables that we clean on shutdown */ | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
120 device = (SDL_VideoDevice *)SDL_malloc(sizeof(SDL_VideoDevice)); |
0 | 121 if ( device ) { |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
122 SDL_memset(device, 0, (sizeof *device)); |
0 | 123 device->hidden = (struct SDL_PrivateVideoData *) |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
124 SDL_malloc((sizeof *device->hidden)); |
0 | 125 device->gl_data = (struct SDL_PrivateGLData *) |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
126 SDL_malloc((sizeof *device->gl_data)); |
0 | 127 } |
128 if ( (device == NULL) || (device->hidden == NULL) || | |
129 (device->gl_data == NULL) ) { | |
130 SDL_OutOfMemory(); | |
131 DIB_DeleteDevice(device); | |
132 return(NULL); | |
133 } | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
134 SDL_memset(device->hidden, 0, (sizeof *device->hidden)); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
135 SDL_memset(device->gl_data, 0, (sizeof *device->gl_data)); |
0 | 136 |
137 /* Set the function pointers */ | |
138 device->VideoInit = DIB_VideoInit; | |
139 device->ListModes = DIB_ListModes; | |
140 device->SetVideoMode = DIB_SetVideoMode; | |
141 device->UpdateMouse = WIN_UpdateMouse; | |
142 device->SetColors = DIB_SetColors; | |
143 device->UpdateRects = NULL; | |
144 device->VideoQuit = DIB_VideoQuit; | |
145 device->AllocHWSurface = DIB_AllocHWSurface; | |
146 device->CheckHWBlit = NULL; | |
147 device->FillHWRect = NULL; | |
148 device->SetHWColorKey = NULL; | |
149 device->SetHWAlpha = NULL; | |
150 device->LockHWSurface = DIB_LockHWSurface; | |
151 device->UnlockHWSurface = DIB_UnlockHWSurface; | |
152 device->FlipHWSurface = NULL; | |
153 device->FreeHWSurface = DIB_FreeHWSurface; | |
154 device->SetGammaRamp = DIB_SetGammaRamp; | |
155 device->GetGammaRamp = DIB_GetGammaRamp; | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
156 #if SDL_VIDEO_OPENGL |
453
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
157 device->GL_LoadLibrary = WIN_GL_LoadLibrary; |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
158 device->GL_GetProcAddress = WIN_GL_GetProcAddress; |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
159 device->GL_GetAttribute = WIN_GL_GetAttribute; |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
160 device->GL_MakeCurrent = WIN_GL_MakeCurrent; |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
161 device->GL_SwapBuffers = WIN_GL_SwapBuffers; |
0 | 162 #endif |
163 device->SetCaption = WIN_SetWMCaption; | |
164 device->SetIcon = WIN_SetWMIcon; | |
165 device->IconifyWindow = WIN_IconifyWindow; | |
166 device->GrabInput = WIN_GrabInput; | |
167 device->GetWMInfo = WIN_GetWMInfo; | |
168 device->FreeWMCursor = WIN_FreeWMCursor; | |
169 device->CreateWMCursor = WIN_CreateWMCursor; | |
170 device->ShowWMCursor = WIN_ShowWMCursor; | |
171 device->WarpWMCursor = WIN_WarpWMCursor; | |
172 device->CheckMouseMode = WIN_CheckMouseMode; | |
173 device->InitOSKeymap = DIB_InitOSKeymap; | |
174 device->PumpEvents = DIB_PumpEvents; | |
175 | |
176 /* Set up the windows message handling functions */ | |
177 WIN_RealizePalette = DIB_RealizePalette; | |
178 WIN_PaletteChanged = DIB_PaletteChanged; | |
179 WIN_WinPAINT = DIB_WinPAINT; | |
180 HandleMessage = DIB_HandleMessage; | |
181 | |
182 device->free = DIB_DeleteDevice; | |
183 | |
184 /* We're finally ready */ | |
185 return device; | |
186 } | |
187 | |
188 VideoBootStrap WINDIB_bootstrap = { | |
1152
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
189 "windib", "Win95/98/NT/2000/CE GDI", |
0 | 190 DIB_Available, DIB_CreateDevice |
191 }; | |
192 | |
193 #ifndef NO_CHANGEDISPLAYSETTINGS | |
194 | |
195 static int cmpmodes(const void *va, const void *vb) | |
196 { | |
197 SDL_Rect *a = *(SDL_Rect **)va; | |
198 SDL_Rect *b = *(SDL_Rect **)vb; | |
966
f72cc0c7305f
Video modes are sorted width first, then height
Sam Lantinga <slouken@libsdl.org>
parents:
833
diff
changeset
|
199 if ( a->w == b->w ) |
f72cc0c7305f
Video modes are sorted width first, then height
Sam Lantinga <slouken@libsdl.org>
parents:
833
diff
changeset
|
200 return b->h - a->h; |
f72cc0c7305f
Video modes are sorted width first, then height
Sam Lantinga <slouken@libsdl.org>
parents:
833
diff
changeset
|
201 else |
f72cc0c7305f
Video modes are sorted width first, then height
Sam Lantinga <slouken@libsdl.org>
parents:
833
diff
changeset
|
202 return b->w - a->w; |
0 | 203 } |
204 | |
205 static int DIB_AddMode(_THIS, int bpp, int w, int h) | |
206 { | |
207 SDL_Rect *mode; | |
208 int i, index; | |
209 int next_mode; | |
210 | |
211 /* Check to see if we already have this mode */ | |
212 if ( bpp < 8 ) { /* Not supported */ | |
213 return(0); | |
214 } | |
215 index = ((bpp+7)/8)-1; | |
216 for ( i=0; i<SDL_nummodes[index]; ++i ) { | |
217 mode = SDL_modelist[index][i]; | |
218 if ( (mode->w == w) && (mode->h == h) ) { | |
219 return(0); | |
220 } | |
221 } | |
222 | |
223 /* Set up the new video mode rectangle */ | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
224 mode = (SDL_Rect *)SDL_malloc(sizeof *mode); |
0 | 225 if ( mode == NULL ) { |
226 SDL_OutOfMemory(); | |
227 return(-1); | |
228 } | |
229 mode->x = 0; | |
230 mode->y = 0; | |
231 mode->w = w; | |
232 mode->h = h; | |
233 | |
234 /* Allocate the new list of modes, and fill in the new mode */ | |
235 next_mode = SDL_nummodes[index]; | |
236 SDL_modelist[index] = (SDL_Rect **) | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
237 SDL_realloc(SDL_modelist[index], (1+next_mode+1)*sizeof(SDL_Rect *)); |
0 | 238 if ( SDL_modelist[index] == NULL ) { |
239 SDL_OutOfMemory(); | |
240 SDL_nummodes[index] = 0; | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
241 SDL_free(mode); |
0 | 242 return(-1); |
243 } | |
244 SDL_modelist[index][next_mode] = mode; | |
245 SDL_modelist[index][next_mode+1] = NULL; | |
246 SDL_nummodes[index]++; | |
247 | |
248 return(0); | |
249 } | |
250 | |
251 #endif /* !NO_CHANGEDISPLAYSETTINGS */ | |
252 | |
253 static HPALETTE DIB_CreatePalette(int bpp) | |
254 { | |
255 /* RJR: March 28, 2000 | |
256 moved palette creation here from "DIB_VideoInit" */ | |
257 | |
258 HPALETTE handle = NULL; | |
259 | |
260 if ( bpp <= 8 ) | |
261 { | |
262 LOGPALETTE *palette; | |
263 HDC hdc; | |
264 int ncolors; | |
265 int i; | |
266 | |
267 ncolors = 1; | |
268 for ( i=0; i<bpp; ++i ) { | |
269 ncolors *= 2; | |
270 } | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
271 palette = (LOGPALETTE *)SDL_malloc(sizeof(*palette)+ |
0 | 272 ncolors*sizeof(PALETTEENTRY)); |
273 palette->palVersion = 0x300; | |
274 palette->palNumEntries = ncolors; | |
275 hdc = GetDC(SDL_Window); | |
276 GetSystemPaletteEntries(hdc, 0, ncolors, palette->palPalEntry); | |
277 ReleaseDC(SDL_Window, hdc); | |
278 handle = CreatePalette(palette); | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
279 SDL_free(palette); |
0 | 280 } |
281 | |
282 return handle; | |
283 } | |
284 | |
285 int DIB_VideoInit(_THIS, SDL_PixelFormat *vformat) | |
286 { | |
287 #ifndef NO_CHANGEDISPLAYSETTINGS | |
288 int i; | |
289 DEVMODE settings; | |
290 #endif | |
291 | |
292 /* Create the window */ | |
293 if ( DIB_CreateWindow(this) < 0 ) { | |
294 return(-1); | |
295 } | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
296 #if !SDL_AUDIO_DISABLED |
0 | 297 DX5_SoundFocus(SDL_Window); |
169
8039a5b760b9
Allow building SDL on Windows without audio support
Sam Lantinga <slouken@libsdl.org>
parents:
145
diff
changeset
|
298 #endif |
0 | 299 |
300 /* Determine the screen depth */ | |
301 vformat->BitsPerPixel = DIB_SussScreenDepth(); | |
302 switch (vformat->BitsPerPixel) { | |
303 case 15: | |
304 vformat->Rmask = 0x00007c00; | |
305 vformat->Gmask = 0x000003e0; | |
306 vformat->Bmask = 0x0000001f; | |
307 vformat->BitsPerPixel = 16; | |
308 break; | |
309 case 16: | |
310 vformat->Rmask = 0x0000f800; | |
311 vformat->Gmask = 0x000007e0; | |
312 vformat->Bmask = 0x0000001f; | |
313 break; | |
314 case 24: | |
315 case 32: | |
316 /* GDI defined as 8-8-8 */ | |
317 vformat->Rmask = 0x00ff0000; | |
318 vformat->Gmask = 0x0000ff00; | |
319 vformat->Bmask = 0x000000ff; | |
320 break; | |
321 default: | |
322 break; | |
323 } | |
324 | |
325 /* See if gamma is supported on this screen */ | |
326 DIB_CheckGamma(this); | |
327 | |
328 #ifndef NO_CHANGEDISPLAYSETTINGS | |
1295
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
329 /* Query for the desktop resolution */ |
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
330 EnumDisplaySettings(NULL, ENUM_CURRENT_SETTINGS, &SDL_desktop_mode); |
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
331 |
0 | 332 /* Query for the list of available video modes */ |
333 for ( i=0; EnumDisplaySettings(NULL, i, &settings); ++i ) { | |
334 DIB_AddMode(this, settings.dmBitsPerPel, | |
335 settings.dmPelsWidth, settings.dmPelsHeight); | |
336 } | |
337 /* Sort the mode lists */ | |
338 for ( i=0; i<NUM_MODELISTS; ++i ) { | |
339 if ( SDL_nummodes[i] > 0 ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
340 SDL_qsort(SDL_modelist[i], SDL_nummodes[i], sizeof *SDL_modelist[i], cmpmodes); |
0 | 341 } |
342 } | |
343 #endif /* !NO_CHANGEDISPLAYSETTINGS */ | |
344 | |
345 /* Grab an identity palette if we are in a palettized mode */ | |
346 if ( vformat->BitsPerPixel <= 8 ) { | |
347 /* RJR: March 28, 2000 | |
348 moved palette creation to "DIB_CreatePalette" */ | |
349 screen_pal = DIB_CreatePalette(vformat->BitsPerPixel); | |
350 } | |
351 | |
352 /* Fill in some window manager capabilities */ | |
353 this->info.wm_available = 1; | |
354 | |
355 /* We're done! */ | |
356 return(0); | |
357 } | |
358 | |
359 /* We support any format at any dimension */ | |
360 SDL_Rect **DIB_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags) | |
361 { | |
362 #ifdef NO_CHANGEDISPLAYSETTINGS | |
363 return((SDL_Rect **)-1); | |
364 #else | |
365 if ( (flags & SDL_FULLSCREEN) == SDL_FULLSCREEN ) { | |
366 return(SDL_modelist[((format->BitsPerPixel+7)/8)-1]); | |
367 } else { | |
368 return((SDL_Rect **)-1); | |
369 } | |
370 #endif | |
371 } | |
372 | |
373 | |
374 /* | |
375 Helper fn to work out which screen depth windows is currently using. | |
376 15 bit mode is considered 555 format, 16 bit is 565. | |
377 returns 0 for unknown mode. | |
378 (Derived from code in sept 1999 Windows Developer Journal | |
379 http://www.wdj.com/code/archive.html) | |
380 */ | |
381 static int DIB_SussScreenDepth() | |
382 { | |
383 #ifdef NO_GETDIBITS | |
384 int depth; | |
385 HDC hdc; | |
386 | |
387 hdc = GetDC(SDL_Window); | |
388 depth = GetDeviceCaps(hdc, PLANES) * GetDeviceCaps(hdc, BITSPIXEL); | |
389 ReleaseDC(SDL_Window, hdc); | |
390 return(depth); | |
391 #else | |
392 int dib_size; | |
393 LPBITMAPINFOHEADER dib_hdr; | |
394 HDC hdc; | |
395 HBITMAP hbm; | |
396 | |
397 /* Allocate enough space for a DIB header plus palette (for | |
398 * 8-bit modes) or bitfields (for 16- and 32-bit modes) | |
399 */ | |
400 dib_size = sizeof(BITMAPINFOHEADER) + 256 * sizeof (RGBQUAD); | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
401 dib_hdr = (LPBITMAPINFOHEADER) SDL_malloc(dib_size); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
402 SDL_memset(dib_hdr, 0, dib_size); |
0 | 403 dib_hdr->biSize = sizeof(BITMAPINFOHEADER); |
404 | |
405 /* Get a device-dependent bitmap that's compatible with the | |
406 screen. | |
407 */ | |
408 hdc = GetDC(NULL); | |
409 hbm = CreateCompatibleBitmap( hdc, 1, 1 ); | |
410 | |
411 /* Convert the DDB to a DIB. We need to call GetDIBits twice: | |
412 * the first call just fills in the BITMAPINFOHEADER; the | |
413 * second fills in the bitfields or palette. | |
414 */ | |
415 GetDIBits(hdc, hbm, 0, 1, NULL, (LPBITMAPINFO) dib_hdr, DIB_RGB_COLORS); | |
416 GetDIBits(hdc, hbm, 0, 1, NULL, (LPBITMAPINFO) dib_hdr, DIB_RGB_COLORS); | |
417 DeleteObject(hbm); | |
418 ReleaseDC(NULL, hdc); | |
419 | |
420 switch( dib_hdr->biBitCount ) | |
421 { | |
422 case 8: return 8; | |
423 case 24: return 24; | |
424 case 32: return 32; | |
425 case 16: | |
426 if( dib_hdr->biCompression == BI_BITFIELDS ) { | |
427 /* check the red mask */ | |
428 switch( ((DWORD*)((char*)dib_hdr + dib_hdr->biSize))[0] ) { | |
429 case 0xf800: return 16; /* 565 */ | |
430 case 0x7c00: return 15; /* 555 */ | |
431 } | |
432 } | |
433 } | |
434 return 0; /* poo. */ | |
435 #endif /* NO_GETDIBITS */ | |
436 } | |
437 | |
438 | |
439 /* Various screen update functions available */ | |
440 static void DIB_NormalUpdate(_THIS, int numrects, SDL_Rect *rects); | |
441 | |
442 SDL_Surface *DIB_SetVideoMode(_THIS, SDL_Surface *current, | |
443 int width, int height, int bpp, Uint32 flags) | |
444 { | |
445 SDL_Surface *video; | |
446 Uint32 prev_flags; | |
447 DWORD style; | |
448 const DWORD directstyle = | |
449 (WS_POPUP); | |
450 const DWORD windowstyle = | |
451 (WS_OVERLAPPED|WS_CAPTION|WS_SYSMENU|WS_MINIMIZEBOX); | |
452 const DWORD resizestyle = | |
453 (WS_THICKFRAME|WS_MAXIMIZEBOX); | |
454 int binfo_size; | |
455 BITMAPINFO *binfo; | |
456 HDC hdc; | |
457 RECT bounds; | |
458 int x, y; | |
459 Uint32 Rmask, Gmask, Bmask; | |
460 | |
461 /* Clean up any GL context that may be hanging around */ | |
462 if ( current->flags & SDL_OPENGL ) { | |
463 WIN_GL_ShutDown(this); | |
464 } | |
1291
31331c444ea2
Only save the window position if we're in windowed mode
Sam Lantinga <slouken@libsdl.org>
parents:
1290
diff
changeset
|
465 SDL_resizing = 1; |
0 | 466 |
467 /* Recalculate the bitmasks if necessary */ | |
468 if ( bpp == current->format->BitsPerPixel ) { | |
469 video = current; | |
470 } else { | |
471 switch (bpp) { | |
472 case 15: | |
473 case 16: | |
474 if ( DIB_SussScreenDepth() == 15 ) { | |
475 /* 5-5-5 */ | |
476 Rmask = 0x00007c00; | |
477 Gmask = 0x000003e0; | |
478 Bmask = 0x0000001f; | |
479 } else { | |
480 /* 5-6-5 */ | |
481 Rmask = 0x0000f800; | |
482 Gmask = 0x000007e0; | |
483 Bmask = 0x0000001f; | |
484 } | |
485 break; | |
486 case 24: | |
487 case 32: | |
488 /* GDI defined as 8-8-8 */ | |
489 Rmask = 0x00ff0000; | |
490 Gmask = 0x0000ff00; | |
491 Bmask = 0x000000ff; | |
492 break; | |
493 default: | |
494 Rmask = 0x00000000; | |
495 Gmask = 0x00000000; | |
496 Bmask = 0x00000000; | |
497 break; | |
498 } | |
499 video = SDL_CreateRGBSurface(SDL_SWSURFACE, | |
500 0, 0, bpp, Rmask, Gmask, Bmask, 0); | |
501 if ( video == NULL ) { | |
502 SDL_OutOfMemory(); | |
503 return(NULL); | |
504 } | |
505 } | |
506 | |
507 /* Fill in part of the video surface */ | |
508 prev_flags = video->flags; | |
509 video->flags = 0; /* Clear flags */ | |
510 video->w = width; | |
511 video->h = height; | |
512 video->pitch = SDL_CalculatePitch(video); | |
513 | |
1152
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
514 /* Small fix for WinCE/Win32 - when activating window |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
515 SDL_VideoSurface is equal to zero, so activating code |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
516 is not called properly for fullscreen windows because |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
517 macros WINDIB_FULLSCREEN uses SDL_VideoSurface |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
518 */ |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
519 SDL_VideoSurface = video; |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
520 |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
521 #if defined(_WIN32_WCE) |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
522 if ( flags & SDL_FULLSCREEN ) |
514
1080bfc4aa96
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
453
diff
changeset
|
523 video->flags |= SDL_FULLSCREEN; |
1080bfc4aa96
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
453
diff
changeset
|
524 #endif |
1152
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
525 |
0 | 526 #ifndef NO_CHANGEDISPLAYSETTINGS |
527 /* Set fullscreen mode if appropriate */ | |
528 if ( (flags & SDL_FULLSCREEN) == SDL_FULLSCREEN ) { | |
529 DEVMODE settings; | |
1295
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
530 BOOL changed; |
0 | 531 |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
532 SDL_memset(&settings, 0, sizeof(DEVMODE)); |
0 | 533 settings.dmSize = sizeof(DEVMODE); |
534 settings.dmBitsPerPel = video->format->BitsPerPixel; | |
535 settings.dmPelsWidth = width; | |
536 settings.dmPelsHeight = height; | |
537 settings.dmFields = DM_PELSWIDTH | DM_PELSHEIGHT | DM_BITSPERPEL; | |
1330
450721ad5436
It's now possible to build SDL without any C runtime at all on Windows,
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
538 if ( width <= (int)SDL_desktop_mode.dmPelsWidth && |
450721ad5436
It's now possible to build SDL without any C runtime at all on Windows,
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
539 height <= (int)SDL_desktop_mode.dmPelsHeight ) { |
1295
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
540 settings.dmDisplayFrequency = SDL_desktop_mode.dmDisplayFrequency; |
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
541 settings.dmFields |= DM_DISPLAYFREQUENCY; |
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
542 } |
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
543 changed = (ChangeDisplaySettings(&settings, CDS_FULLSCREEN) == DISP_CHANGE_SUCCESSFUL); |
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
544 if ( ! changed && (settings.dmFields & DM_DISPLAYFREQUENCY) ) { |
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
545 settings.dmFields &= ~DM_DISPLAYFREQUENCY; |
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
546 changed = (ChangeDisplaySettings(&settings, CDS_FULLSCREEN) == DISP_CHANGE_SUCCESSFUL); |
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
547 } |
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
548 if ( changed ) { |
0 | 549 video->flags |= SDL_FULLSCREEN; |
304
ec53caed9fb2
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
550 SDL_fullscreen_mode = settings; |
0 | 551 } |
552 } | |
553 #endif /* !NO_CHANGEDISPLAYSETTINGS */ | |
554 | |
45
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
555 /* Reset the palette and create a new one if necessary */ |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
556 if ( screen_pal != NULL ) { |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
557 /* RJR: March 28, 2000 |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
558 delete identity palette if switching from a palettized mode */ |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
559 DeleteObject(screen_pal); |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
560 screen_pal = NULL; |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
561 } |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
562 if ( bpp <= 8 ) |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
563 { |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
564 /* RJR: March 28, 2000 |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
565 create identity palette switching to a palettized mode */ |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
566 screen_pal = DIB_CreatePalette(bpp); |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
567 } |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
568 |
0 | 569 style = GetWindowLong(SDL_Window, GWL_STYLE); |
570 style &= ~(resizestyle|WS_MAXIMIZE); | |
571 if ( (video->flags & SDL_FULLSCREEN) == SDL_FULLSCREEN ) { | |
572 style &= ~windowstyle; | |
573 style |= directstyle; | |
574 } else { | |
575 #ifndef NO_CHANGEDISPLAYSETTINGS | |
576 if ( (prev_flags & SDL_FULLSCREEN) == SDL_FULLSCREEN ) { | |
577 ChangeDisplaySettings(NULL, 0); | |
578 } | |
579 #endif | |
580 if ( flags & SDL_NOFRAME ) { | |
581 style &= ~windowstyle; | |
582 style |= directstyle; | |
583 video->flags |= SDL_NOFRAME; | |
584 } else { | |
585 style &= ~directstyle; | |
586 style |= windowstyle; | |
587 if ( flags & SDL_RESIZABLE ) { | |
588 style |= resizestyle; | |
589 video->flags |= SDL_RESIZABLE; | |
590 } | |
591 } | |
453
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
592 #if WS_MAXIMIZE |
0 | 593 if (IsZoomed(SDL_Window)) style |= WS_MAXIMIZE; |
36
13ee9f4834ea
Windows CE patches contributed by Rainer Loritz
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
594 #endif |
0 | 595 } |
145
29a638dc26db
Applied David MacCormack's patch to fix SDL_WINDOWID on Windows,
Sam Lantinga <slouken@libsdl.org>
parents:
112
diff
changeset
|
596 |
448
323c766f5a46
Fullscreen windows are always topmost under Windows
Sam Lantinga <slouken@libsdl.org>
parents:
442
diff
changeset
|
597 /* DJM: Don't piss of anyone who has setup his own window */ |
1280
f61f045343d3
Re-query the SDL_WINDOWID each time we initialize the video
Sam Lantinga <slouken@libsdl.org>
parents:
1251
diff
changeset
|
598 if ( !SDL_windowid ) |
448
323c766f5a46
Fullscreen windows are always topmost under Windows
Sam Lantinga <slouken@libsdl.org>
parents:
442
diff
changeset
|
599 SetWindowLong(SDL_Window, GWL_STYLE, style); |
0 | 600 |
601 /* Delete the old bitmap if necessary */ | |
602 if ( screen_bmp != NULL ) { | |
603 DeleteObject(screen_bmp); | |
604 } | |
605 if ( ! (flags & SDL_OPENGL) ) { | |
606 BOOL is16bitmode = (video->format->BytesPerPixel == 2); | |
607 | |
608 /* Suss out the bitmap info header */ | |
609 binfo_size = sizeof(*binfo); | |
610 if( is16bitmode ) { | |
611 /* 16bit modes, palette area used for rgb bitmasks */ | |
612 binfo_size += 3*sizeof(DWORD); | |
613 } else if ( video->format->palette ) { | |
614 binfo_size += video->format->palette->ncolors * | |
615 sizeof(RGBQUAD); | |
616 } | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
617 binfo = (BITMAPINFO *)SDL_malloc(binfo_size); |
0 | 618 if ( ! binfo ) { |
619 if ( video != current ) { | |
620 SDL_FreeSurface(video); | |
621 } | |
622 SDL_OutOfMemory(); | |
623 return(NULL); | |
624 } | |
625 | |
626 binfo->bmiHeader.biSize = sizeof(BITMAPINFOHEADER); | |
627 binfo->bmiHeader.biWidth = video->w; | |
628 binfo->bmiHeader.biHeight = -video->h; /* -ve for topdown bitmap */ | |
629 binfo->bmiHeader.biPlanes = 1; | |
630 binfo->bmiHeader.biSizeImage = video->h * video->pitch; | |
631 binfo->bmiHeader.biXPelsPerMeter = 0; | |
632 binfo->bmiHeader.biYPelsPerMeter = 0; | |
633 binfo->bmiHeader.biClrUsed = 0; | |
634 binfo->bmiHeader.biClrImportant = 0; | |
635 binfo->bmiHeader.biBitCount = video->format->BitsPerPixel; | |
636 | |
637 if ( is16bitmode ) { | |
638 /* BI_BITFIELDS tells CreateDIBSection about the rgb masks in the palette */ | |
639 binfo->bmiHeader.biCompression = BI_BITFIELDS; | |
640 ((Uint32*)binfo->bmiColors)[0] = video->format->Rmask; | |
641 ((Uint32*)binfo->bmiColors)[1] = video->format->Gmask; | |
642 ((Uint32*)binfo->bmiColors)[2] = video->format->Bmask; | |
643 } else { | |
644 binfo->bmiHeader.biCompression = BI_RGB; /* BI_BITFIELDS for 565 vs 555 */ | |
645 if ( video->format->palette ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
646 SDL_memset(binfo->bmiColors, 0, |
0 | 647 video->format->palette->ncolors*sizeof(RGBQUAD)); |
648 } | |
649 } | |
650 | |
651 /* Create the offscreen bitmap buffer */ | |
652 hdc = GetDC(SDL_Window); | |
653 screen_bmp = CreateDIBSection(hdc, binfo, DIB_RGB_COLORS, | |
654 (void **)(&video->pixels), NULL, 0); | |
655 ReleaseDC(SDL_Window, hdc); | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
656 SDL_free(binfo); |
0 | 657 if ( screen_bmp == NULL ) { |
658 if ( video != current ) { | |
659 SDL_FreeSurface(video); | |
660 } | |
661 SDL_SetError("Couldn't create DIB section"); | |
662 return(NULL); | |
663 } | |
664 this->UpdateRects = DIB_NormalUpdate; | |
665 | |
666 /* Set video surface flags */ | |
667 if ( bpp <= 8 ) { | |
668 /* BitBlt() maps colors for us */ | |
669 video->flags |= SDL_HWPALETTE; | |
670 } | |
671 } | |
672 | |
673 /* Resize the window */ | |
1290
c4a5a772c5d9
The event code was fine, and calculated the SDL_windowX/Y correctly.
Sam Lantinga <slouken@libsdl.org>
parents:
1288
diff
changeset
|
674 if ( !SDL_windowid && !IsZoomed(SDL_Window) ) { |
448
323c766f5a46
Fullscreen windows are always topmost under Windows
Sam Lantinga <slouken@libsdl.org>
parents:
442
diff
changeset
|
675 HWND top; |
0 | 676 UINT swp_flags; |
1290
c4a5a772c5d9
The event code was fine, and calculated the SDL_windowX/Y correctly.
Sam Lantinga <slouken@libsdl.org>
parents:
1288
diff
changeset
|
677 const char *window = NULL; |
c4a5a772c5d9
The event code was fine, and calculated the SDL_windowX/Y correctly.
Sam Lantinga <slouken@libsdl.org>
parents:
1288
diff
changeset
|
678 const char *center = NULL; |
833
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
679 |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
680 if ( !SDL_windowX && !SDL_windowY ) { |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
681 window = SDL_getenv("SDL_VIDEO_WINDOW_POS"); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
682 center = SDL_getenv("SDL_VIDEO_CENTERED"); |
833
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
683 if ( window ) { |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
684 if ( SDL_sscanf(window, "%d,%d", &x, &y) == 2 ) { |
833
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
685 SDL_windowX = x; |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
686 SDL_windowY = y; |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
687 } |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
688 if ( SDL_strcmp(window, "center") == 0 ) { |
833
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
689 center = window; |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
690 } |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
691 } |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
692 } |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
693 swp_flags = (SWP_NOCOPYBITS | SWP_SHOWWINDOW); |
0 | 694 |
833
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
695 bounds.left = SDL_windowX; |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
696 bounds.top = SDL_windowY; |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
697 bounds.right = SDL_windowX+video->w; |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
698 bounds.bottom = SDL_windowY+video->h; |
453
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
699 AdjustWindowRectEx(&bounds, GetWindowLong(SDL_Window, GWL_STYLE), FALSE, 0); |
0 | 700 width = bounds.right-bounds.left; |
701 height = bounds.bottom-bounds.top; | |
833
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
702 if ( (flags & SDL_FULLSCREEN) ) { |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
703 x = (GetSystemMetrics(SM_CXSCREEN)-width)/2; |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
704 y = (GetSystemMetrics(SM_CYSCREEN)-height)/2; |
971
96671ebc50a4
Date: Mon, 25 Oct 2004 17:30:06 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
966
diff
changeset
|
705 } else if ( center ) { |
96671ebc50a4
Date: Mon, 25 Oct 2004 17:30:06 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
966
diff
changeset
|
706 x = (GetSystemMetrics(SM_CXSCREEN)-width)/2; |
96671ebc50a4
Date: Mon, 25 Oct 2004 17:30:06 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
966
diff
changeset
|
707 y = (GetSystemMetrics(SM_CYSCREEN)-height)/2; |
833
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
708 } else if ( SDL_windowX || SDL_windowY || window ) { |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
709 x = bounds.left; |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
710 y = bounds.top; |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
711 } else { |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
712 x = y = -1; |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
713 swp_flags |= SWP_NOMOVE; |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
714 } |
448
323c766f5a46
Fullscreen windows are always topmost under Windows
Sam Lantinga <slouken@libsdl.org>
parents:
442
diff
changeset
|
715 if ( flags & SDL_FULLSCREEN ) { |
323c766f5a46
Fullscreen windows are always topmost under Windows
Sam Lantinga <slouken@libsdl.org>
parents:
442
diff
changeset
|
716 top = HWND_TOPMOST; |
323c766f5a46
Fullscreen windows are always topmost under Windows
Sam Lantinga <slouken@libsdl.org>
parents:
442
diff
changeset
|
717 } else { |
323c766f5a46
Fullscreen windows are always topmost under Windows
Sam Lantinga <slouken@libsdl.org>
parents:
442
diff
changeset
|
718 top = HWND_NOTOPMOST; |
323c766f5a46
Fullscreen windows are always topmost under Windows
Sam Lantinga <slouken@libsdl.org>
parents:
442
diff
changeset
|
719 } |
323c766f5a46
Fullscreen windows are always topmost under Windows
Sam Lantinga <slouken@libsdl.org>
parents:
442
diff
changeset
|
720 SetWindowPos(SDL_Window, top, x, y, width, height, swp_flags); |
1291
31331c444ea2
Only save the window position if we're in windowed mode
Sam Lantinga <slouken@libsdl.org>
parents:
1290
diff
changeset
|
721 if ( !(flags & SDL_FULLSCREEN) ) { |
31331c444ea2
Only save the window position if we're in windowed mode
Sam Lantinga <slouken@libsdl.org>
parents:
1290
diff
changeset
|
722 SDL_windowX = SDL_bounds.left; |
31331c444ea2
Only save the window position if we're in windowed mode
Sam Lantinga <slouken@libsdl.org>
parents:
1290
diff
changeset
|
723 SDL_windowY = SDL_bounds.top; |
31331c444ea2
Only save the window position if we're in windowed mode
Sam Lantinga <slouken@libsdl.org>
parents:
1290
diff
changeset
|
724 } |
0 | 725 SetForegroundWindow(SDL_Window); |
726 } | |
1291
31331c444ea2
Only save the window position if we're in windowed mode
Sam Lantinga <slouken@libsdl.org>
parents:
1290
diff
changeset
|
727 SDL_resizing = 0; |
0 | 728 |
729 /* Set up for OpenGL */ | |
730 if ( flags & SDL_OPENGL ) { | |
731 if ( WIN_GL_SetupWindow(this) < 0 ) { | |
732 return(NULL); | |
733 } | |
734 video->flags |= SDL_OPENGL; | |
735 } | |
36
13ee9f4834ea
Windows CE patches contributed by Rainer Loritz
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
736 |
0 | 737 /* We're live! */ |
738 return(video); | |
739 } | |
740 | |
741 /* We don't actually allow hardware surfaces in the DIB driver */ | |
742 static int DIB_AllocHWSurface(_THIS, SDL_Surface *surface) | |
743 { | |
744 return(-1); | |
745 } | |
746 static void DIB_FreeHWSurface(_THIS, SDL_Surface *surface) | |
747 { | |
748 return; | |
749 } | |
750 static int DIB_LockHWSurface(_THIS, SDL_Surface *surface) | |
751 { | |
752 return(0); | |
753 } | |
754 static void DIB_UnlockHWSurface(_THIS, SDL_Surface *surface) | |
755 { | |
756 return; | |
757 } | |
758 | |
759 static void DIB_NormalUpdate(_THIS, int numrects, SDL_Rect *rects) | |
760 { | |
761 HDC hdc, mdc; | |
762 int i; | |
763 | |
764 hdc = GetDC(SDL_Window); | |
765 if ( screen_pal ) { | |
766 SelectPalette(hdc, screen_pal, FALSE); | |
767 } | |
768 mdc = CreateCompatibleDC(hdc); | |
769 SelectObject(mdc, screen_bmp); | |
770 for ( i=0; i<numrects; ++i ) { | |
771 BitBlt(hdc, rects[i].x, rects[i].y, rects[i].w, rects[i].h, | |
772 mdc, rects[i].x, rects[i].y, SRCCOPY); | |
773 } | |
774 DeleteDC(mdc); | |
775 ReleaseDC(SDL_Window, hdc); | |
776 } | |
777 | |
1251
86d0d01290ea
Updated Windows CE/PocketPC support...adds GAPI driver, landscape mode,
Ryan C. Gordon <icculus@icculus.org>
parents:
1152
diff
changeset
|
778 |
0 | 779 int DIB_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors) |
780 { | |
1292
59c7a470a51e
Fixed palette bug on non-WinCE
Sam Lantinga <slouken@libsdl.org>
parents:
1291
diff
changeset
|
781 #if !defined(_WIN32_WCE) || (_WIN32_WCE >= 400) |
59c7a470a51e
Fixed palette bug on non-WinCE
Sam Lantinga <slouken@libsdl.org>
parents:
1291
diff
changeset
|
782 HDC hdc, mdc; |
0 | 783 RGBQUAD *pal; |
1292
59c7a470a51e
Fixed palette bug on non-WinCE
Sam Lantinga <slouken@libsdl.org>
parents:
1291
diff
changeset
|
784 #else |
1251
86d0d01290ea
Updated Windows CE/PocketPC support...adds GAPI driver, landscape mode,
Ryan C. Gordon <icculus@icculus.org>
parents:
1152
diff
changeset
|
785 HDC hdc; |
36
13ee9f4834ea
Windows CE patches contributed by Rainer Loritz
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
786 #endif |
1292
59c7a470a51e
Fixed palette bug on non-WinCE
Sam Lantinga <slouken@libsdl.org>
parents:
1291
diff
changeset
|
787 int i; |
0 | 788 |
789 /* Update the display palette */ | |
790 hdc = GetDC(SDL_Window); | |
791 if ( screen_pal ) { | |
792 PALETTEENTRY *entries; | |
793 | |
1330
450721ad5436
It's now possible to build SDL without any C runtime at all on Windows,
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
794 entries = SDL_stack_alloc(PALETTEENTRY, ncolors); |
0 | 795 for ( i=0; i<ncolors; ++i ) { |
796 entries[i].peRed = colors[i].r; | |
797 entries[i].peGreen = colors[i].g; | |
798 entries[i].peBlue = colors[i].b; | |
799 entries[i].peFlags = PC_NOCOLLAPSE; | |
800 } | |
801 SetPaletteEntries(screen_pal, firstcolor, ncolors, entries); | |
802 SelectPalette(hdc, screen_pal, FALSE); | |
803 RealizePalette(hdc); | |
1330
450721ad5436
It's now possible to build SDL without any C runtime at all on Windows,
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
804 SDL_stack_free(entries); |
0 | 805 } |
806 | |
1292
59c7a470a51e
Fixed palette bug on non-WinCE
Sam Lantinga <slouken@libsdl.org>
parents:
1291
diff
changeset
|
807 #if !defined(_WIN32_WCE) || (_WIN32_WCE >= 400) |
0 | 808 /* Copy palette colors into DIB palette */ |
1330
450721ad5436
It's now possible to build SDL without any C runtime at all on Windows,
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
809 pal = SDL_stack_alloc(RGBQUAD, ncolors); |
0 | 810 for ( i=0; i<ncolors; ++i ) { |
811 pal[i].rgbRed = colors[i].r; | |
812 pal[i].rgbGreen = colors[i].g; | |
813 pal[i].rgbBlue = colors[i].b; | |
814 pal[i].rgbReserved = 0; | |
815 } | |
816 | |
817 /* Set the DIB palette and update the display */ | |
818 mdc = CreateCompatibleDC(hdc); | |
819 SelectObject(mdc, screen_bmp); | |
820 SetDIBColorTable(mdc, firstcolor, ncolors, pal); | |
821 BitBlt(hdc, 0, 0, this->screen->w, this->screen->h, | |
822 mdc, 0, 0, SRCCOPY); | |
823 DeleteDC(mdc); | |
1330
450721ad5436
It's now possible to build SDL without any C runtime at all on Windows,
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
824 SDL_stack_free(pal); |
36
13ee9f4834ea
Windows CE patches contributed by Rainer Loritz
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
825 #endif |
0 | 826 ReleaseDC(SDL_Window, hdc); |
827 return(1); | |
828 } | |
829 | |
1251
86d0d01290ea
Updated Windows CE/PocketPC support...adds GAPI driver, landscape mode,
Ryan C. Gordon <icculus@icculus.org>
parents:
1152
diff
changeset
|
830 |
0 | 831 static void DIB_CheckGamma(_THIS) |
832 { | |
833 #ifndef NO_GAMMA_SUPPORT | |
834 HDC hdc; | |
835 WORD ramp[3*256]; | |
836 | |
837 /* If we fail to get gamma, disable gamma control */ | |
838 hdc = GetDC(SDL_Window); | |
839 if ( ! GetDeviceGammaRamp(hdc, ramp) ) { | |
840 this->GetGammaRamp = NULL; | |
841 this->SetGammaRamp = NULL; | |
842 } | |
843 ReleaseDC(SDL_Window, hdc); | |
844 #endif /* !NO_GAMMA_SUPPORT */ | |
845 } | |
338
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
846 void DIB_SwapGamma(_THIS) |
0 | 847 { |
848 #ifndef NO_GAMMA_SUPPORT | |
849 HDC hdc; | |
850 | |
851 if ( gamma_saved ) { | |
852 hdc = GetDC(SDL_Window); | |
853 if ( SDL_GetAppState() & SDL_APPINPUTFOCUS ) { | |
854 /* About to leave active state, restore gamma */ | |
855 SetDeviceGammaRamp(hdc, gamma_saved); | |
856 } else { | |
857 /* About to enter active state, set game gamma */ | |
858 GetDeviceGammaRamp(hdc, gamma_saved); | |
859 SetDeviceGammaRamp(hdc, this->gamma); | |
860 } | |
861 ReleaseDC(SDL_Window, hdc); | |
862 } | |
863 #endif /* !NO_GAMMA_SUPPORT */ | |
864 } | |
338
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
865 void DIB_QuitGamma(_THIS) |
0 | 866 { |
867 #ifndef NO_GAMMA_SUPPORT | |
868 if ( gamma_saved ) { | |
869 /* Restore the original gamma if necessary */ | |
870 if ( SDL_GetAppState() & SDL_APPINPUTFOCUS ) { | |
871 HDC hdc; | |
872 | |
873 hdc = GetDC(SDL_Window); | |
874 SetDeviceGammaRamp(hdc, gamma_saved); | |
875 ReleaseDC(SDL_Window, hdc); | |
876 } | |
877 | |
878 /* Free the saved gamma memory */ | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
879 SDL_free(gamma_saved); |
0 | 880 gamma_saved = 0; |
881 } | |
882 #endif /* !NO_GAMMA_SUPPORT */ | |
883 } | |
884 | |
338
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
885 int DIB_SetGammaRamp(_THIS, Uint16 *ramp) |
0 | 886 { |
338
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
887 #ifdef NO_GAMMA_SUPPORT |
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
888 SDL_SetError("SDL compiled without gamma ramp support"); |
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
889 return -1; |
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
890 #else |
0 | 891 HDC hdc; |
892 BOOL succeeded; | |
893 | |
894 /* Set the ramp for the display */ | |
895 if ( ! gamma_saved ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
896 gamma_saved = (WORD *)SDL_malloc(3*256*sizeof(*gamma_saved)); |
0 | 897 if ( ! gamma_saved ) { |
898 SDL_OutOfMemory(); | |
899 return -1; | |
900 } | |
901 hdc = GetDC(SDL_Window); | |
902 GetDeviceGammaRamp(hdc, gamma_saved); | |
903 ReleaseDC(SDL_Window, hdc); | |
904 } | |
905 if ( SDL_GetAppState() & SDL_APPINPUTFOCUS ) { | |
906 hdc = GetDC(SDL_Window); | |
907 succeeded = SetDeviceGammaRamp(hdc, ramp); | |
908 ReleaseDC(SDL_Window, hdc); | |
909 } else { | |
910 succeeded = TRUE; | |
911 } | |
912 return succeeded ? 0 : -1; | |
338
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
913 #endif /* !NO_GAMMA_SUPPORT */ |
0 | 914 } |
915 | |
338
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
916 int DIB_GetGammaRamp(_THIS, Uint16 *ramp) |
0 | 917 { |
338
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
918 #ifdef NO_GAMMA_SUPPORT |
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
919 SDL_SetError("SDL compiled without gamma ramp support"); |
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
920 return -1; |
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
921 #else |
0 | 922 HDC hdc; |
923 BOOL succeeded; | |
924 | |
925 /* Get the ramp from the display */ | |
926 hdc = GetDC(SDL_Window); | |
927 succeeded = GetDeviceGammaRamp(hdc, ramp); | |
928 ReleaseDC(SDL_Window, hdc); | |
929 return succeeded ? 0 : -1; | |
338
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
930 #endif /* !NO_GAMMA_SUPPORT */ |
0 | 931 } |
932 | |
442
b37ce4813ad4
Flush message queue when shutting down video mode on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
376
diff
changeset
|
933 static void FlushMessageQueue() |
b37ce4813ad4
Flush message queue when shutting down video mode on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
376
diff
changeset
|
934 { |
b37ce4813ad4
Flush message queue when shutting down video mode on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
376
diff
changeset
|
935 MSG msg; |
b37ce4813ad4
Flush message queue when shutting down video mode on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
376
diff
changeset
|
936 while ( PeekMessage(&msg, NULL, 0, 0, PM_REMOVE) ) { |
b37ce4813ad4
Flush message queue when shutting down video mode on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
376
diff
changeset
|
937 if ( msg.message == WM_QUIT ) break; |
b37ce4813ad4
Flush message queue when shutting down video mode on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
376
diff
changeset
|
938 TranslateMessage( &msg ); |
b37ce4813ad4
Flush message queue when shutting down video mode on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
376
diff
changeset
|
939 DispatchMessage( &msg ); |
b37ce4813ad4
Flush message queue when shutting down video mode on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
376
diff
changeset
|
940 } |
b37ce4813ad4
Flush message queue when shutting down video mode on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
376
diff
changeset
|
941 } |
b37ce4813ad4
Flush message queue when shutting down video mode on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
376
diff
changeset
|
942 |
0 | 943 void DIB_VideoQuit(_THIS) |
944 { | |
945 /* Destroy the window and everything associated with it */ | |
946 if ( SDL_Window ) { | |
947 /* Delete the screen bitmap (also frees screen->pixels) */ | |
948 if ( this->screen ) { | |
949 #ifndef NO_CHANGEDISPLAYSETTINGS | |
950 if ( this->screen->flags & SDL_FULLSCREEN ) { | |
951 ChangeDisplaySettings(NULL, 0); | |
376
a5f60a847a89
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
374
diff
changeset
|
952 ShowWindow(SDL_Window, SW_HIDE); |
0 | 953 } |
954 #endif | |
955 if ( this->screen->flags & SDL_OPENGL ) { | |
956 WIN_GL_ShutDown(this); | |
957 } | |
958 this->screen->pixels = NULL; | |
959 } | |
960 if ( screen_bmp ) { | |
961 DeleteObject(screen_bmp); | |
962 screen_bmp = NULL; | |
963 } | |
964 if ( screen_icn ) { | |
965 DestroyIcon(screen_icn); | |
966 screen_icn = NULL; | |
967 } | |
968 DIB_QuitGamma(this); | |
969 DIB_DestroyWindow(this); | |
442
b37ce4813ad4
Flush message queue when shutting down video mode on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
376
diff
changeset
|
970 FlushMessageQueue(); |
0 | 971 |
972 SDL_Window = NULL; | |
1152
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
973 |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
974 #if defined(_WIN32_WCE) |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
975 |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
976 // Unload wince aygshell library to prevent leak |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
977 if( aygshell ) |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
978 { |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
979 FreeLibrary(aygshell); |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
980 aygshell = NULL; |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
981 } |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
982 #endif |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
983 |
0 | 984 } |
985 } | |
986 | |
987 /* Exported for the windows message loop only */ | |
988 static void DIB_FocusPalette(_THIS, int foreground) | |
989 { | |
990 if ( screen_pal != NULL ) { | |
991 HDC hdc; | |
992 | |
993 hdc = GetDC(SDL_Window); | |
994 SelectPalette(hdc, screen_pal, FALSE); | |
995 if ( RealizePalette(hdc) ) | |
996 InvalidateRect(SDL_Window, NULL, FALSE); | |
997 ReleaseDC(SDL_Window, hdc); | |
998 } | |
999 } | |
1000 static void DIB_RealizePalette(_THIS) | |
1001 { | |
1002 DIB_FocusPalette(this, 1); | |
1003 } | |
1004 static void DIB_PaletteChanged(_THIS, HWND window) | |
1005 { | |
1006 if ( window != SDL_Window ) { | |
1007 DIB_FocusPalette(this, 0); | |
1008 } | |
1009 } | |
1010 | |
1011 /* Exported for the windows message loop only */ | |
1012 static void DIB_WinPAINT(_THIS, HDC hdc) | |
1013 { | |
1014 HDC mdc; | |
1015 | |
1016 if ( screen_pal ) { | |
1017 SelectPalette(hdc, screen_pal, FALSE); | |
1018 } | |
1019 mdc = CreateCompatibleDC(hdc); | |
1020 SelectObject(mdc, screen_bmp); | |
1021 BitBlt(hdc, 0, 0, SDL_VideoSurface->w, SDL_VideoSurface->h, | |
1022 mdc, 0, 0, SRCCOPY); | |
1023 DeleteDC(mdc); | |
1024 } | |
1025 | |
1026 /* Stub in case DirectX isn't available */ | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
1027 #if !SDL_AUDIO_DRIVER_DSOUND |
0 | 1028 void DX5_SoundFocus(HWND hwnd) |
1029 { | |
1030 return; | |
1031 } | |
1032 #endif |