Mercurial > sdl-ios-xcode
annotate src/video/windib/SDL_dibvideo.c @ 4079:fda6e33893b7 SDL-1.2
Always advertise hardware palette, since Windows will remap colors for us.
We do grab the system colors if the application requested fullscreen or a
real hardware palette.
This allows gamma fading, etc. to work, and is what previous versions did.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 16 Jul 2007 05:08:20 +0000 |
parents | 0207ca19fd8f |
children | 51486c979189 |
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 |
0 | 27 /* Not yet in the mingw32 cross-compile headers */ |
28 #ifndef CDS_FULLSCREEN | |
29 #define CDS_FULLSCREEN 4 | |
30 #endif | |
31 | |
32 #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
|
33 #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
|
34 #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
|
35 #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
|
36 #include "../../events/SDL_events_c.h" |
0 | 37 #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
|
38 #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
|
39 #include "../wincommon/SDL_sysmouse_c.h" |
0 | 40 #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
|
41 #include "../wincommon/SDL_wingl_c.h" |
0 | 42 |
43 #ifdef _WIN32_WCE | |
44 #define NO_GETDIBITS | |
45 #define NO_GAMMA_SUPPORT | |
1465
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
46 #if _WIN32_WCE < 420 |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
47 #define NO_CHANGEDISPLAYSETTINGS |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
48 #else |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
49 #define ChangeDisplaySettings(lpDevMode, dwFlags) ChangeDisplaySettingsEx(NULL, (lpDevMode), 0, (dwFlags), 0) |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
50 #endif |
0 | 51 #endif |
453
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
52 #ifndef WS_MAXIMIZE |
766
ed57c876700d
Date: Wed, 26 Nov 2003 01:52:02 +0800
Sam Lantinga <slouken@libsdl.org>
parents:
515
diff
changeset
|
53 #define WS_MAXIMIZE 0 |
ed57c876700d
Date: Wed, 26 Nov 2003 01:52:02 +0800
Sam Lantinga <slouken@libsdl.org>
parents:
515
diff
changeset
|
54 #endif |
ed57c876700d
Date: Wed, 26 Nov 2003 01:52:02 +0800
Sam Lantinga <slouken@libsdl.org>
parents:
515
diff
changeset
|
55 #ifndef WS_THICKFRAME |
ed57c876700d
Date: Wed, 26 Nov 2003 01:52:02 +0800
Sam Lantinga <slouken@libsdl.org>
parents:
515
diff
changeset
|
56 #define WS_THICKFRAME 0 |
453
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
57 #endif |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
58 #ifndef SWP_NOCOPYBITS |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
59 #define SWP_NOCOPYBITS 0 |
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 PC_NOCOLLAPSE |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
62 #define PC_NOCOLLAPSE 0 |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
63 #endif |
0 | 64 |
1465
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
65 #ifdef _WIN32_WCE |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
66 // defined and used in SDL_sysevents.c |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
67 extern HINSTANCE aygshell; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
68 #endif |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
69 |
0 | 70 /* Initialization/Query functions */ |
71 static int DIB_VideoInit(_THIS, SDL_PixelFormat *vformat); | |
72 static SDL_Rect **DIB_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags); | |
73 SDL_Surface *DIB_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags); | |
74 static int DIB_SetColors(_THIS, int firstcolor, int ncolors, | |
75 SDL_Color *colors); | |
76 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
|
77 void DIB_SwapGamma(_THIS); |
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
78 void DIB_QuitGamma(_THIS); |
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
79 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
|
80 int DIB_GetGammaRamp(_THIS, Uint16 *ramp); |
0 | 81 static void DIB_VideoQuit(_THIS); |
82 | |
83 /* Hardware surface functions */ | |
84 static int DIB_AllocHWSurface(_THIS, SDL_Surface *surface); | |
85 static int DIB_LockHWSurface(_THIS, SDL_Surface *surface); | |
86 static void DIB_UnlockHWSurface(_THIS, SDL_Surface *surface); | |
87 static void DIB_FreeHWSurface(_THIS, SDL_Surface *surface); | |
88 | |
89 /* Windows message handling functions */ | |
3992 | 90 static void DIB_GrabStaticColors(HWND window); |
91 static void DIB_ReleaseStaticColors(HWND window); | |
92 static void DIB_Activate(_THIS, BOOL active, BOOL minimized); | |
0 | 93 static void DIB_RealizePalette(_THIS); |
94 static void DIB_PaletteChanged(_THIS, HWND window); | |
95 static void DIB_WinPAINT(_THIS, HDC hdc); | |
96 | |
97 /* helper fn */ | |
98 static int DIB_SussScreenDepth(); | |
99 | |
100 /* DIB driver bootstrap functions */ | |
101 | |
102 static int DIB_Available(void) | |
103 { | |
104 return(1); | |
105 } | |
106 | |
107 static void DIB_DeleteDevice(SDL_VideoDevice *device) | |
108 { | |
109 if ( device ) { | |
110 if ( device->hidden ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
111 SDL_free(device->hidden); |
0 | 112 } |
113 if ( device->gl_data ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
114 SDL_free(device->gl_data); |
0 | 115 } |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
116 SDL_free(device); |
0 | 117 } |
118 } | |
119 | |
120 static SDL_VideoDevice *DIB_CreateDevice(int devindex) | |
121 { | |
122 SDL_VideoDevice *device; | |
123 | |
124 /* 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
|
125 device = (SDL_VideoDevice *)SDL_malloc(sizeof(SDL_VideoDevice)); |
0 | 126 if ( device ) { |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
127 SDL_memset(device, 0, (sizeof *device)); |
0 | 128 device->hidden = (struct SDL_PrivateVideoData *) |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
129 SDL_malloc((sizeof *device->hidden)); |
0 | 130 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
|
131 SDL_malloc((sizeof *device->gl_data)); |
0 | 132 } |
133 if ( (device == NULL) || (device->hidden == NULL) || | |
134 (device->gl_data == NULL) ) { | |
135 SDL_OutOfMemory(); | |
136 DIB_DeleteDevice(device); | |
137 return(NULL); | |
138 } | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
139 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
|
140 SDL_memset(device->gl_data, 0, (sizeof *device->gl_data)); |
0 | 141 |
142 /* Set the function pointers */ | |
143 device->VideoInit = DIB_VideoInit; | |
144 device->ListModes = DIB_ListModes; | |
145 device->SetVideoMode = DIB_SetVideoMode; | |
146 device->UpdateMouse = WIN_UpdateMouse; | |
147 device->SetColors = DIB_SetColors; | |
148 device->UpdateRects = NULL; | |
149 device->VideoQuit = DIB_VideoQuit; | |
150 device->AllocHWSurface = DIB_AllocHWSurface; | |
151 device->CheckHWBlit = NULL; | |
152 device->FillHWRect = NULL; | |
153 device->SetHWColorKey = NULL; | |
154 device->SetHWAlpha = NULL; | |
155 device->LockHWSurface = DIB_LockHWSurface; | |
156 device->UnlockHWSurface = DIB_UnlockHWSurface; | |
157 device->FlipHWSurface = NULL; | |
158 device->FreeHWSurface = DIB_FreeHWSurface; | |
159 device->SetGammaRamp = DIB_SetGammaRamp; | |
160 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
|
161 #if SDL_VIDEO_OPENGL |
453
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
162 device->GL_LoadLibrary = WIN_GL_LoadLibrary; |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
163 device->GL_GetProcAddress = WIN_GL_GetProcAddress; |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
164 device->GL_GetAttribute = WIN_GL_GetAttribute; |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
165 device->GL_MakeCurrent = WIN_GL_MakeCurrent; |
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
166 device->GL_SwapBuffers = WIN_GL_SwapBuffers; |
0 | 167 #endif |
168 device->SetCaption = WIN_SetWMCaption; | |
169 device->SetIcon = WIN_SetWMIcon; | |
170 device->IconifyWindow = WIN_IconifyWindow; | |
171 device->GrabInput = WIN_GrabInput; | |
172 device->GetWMInfo = WIN_GetWMInfo; | |
173 device->FreeWMCursor = WIN_FreeWMCursor; | |
174 device->CreateWMCursor = WIN_CreateWMCursor; | |
175 device->ShowWMCursor = WIN_ShowWMCursor; | |
176 device->WarpWMCursor = WIN_WarpWMCursor; | |
177 device->CheckMouseMode = WIN_CheckMouseMode; | |
178 device->InitOSKeymap = DIB_InitOSKeymap; | |
179 device->PumpEvents = DIB_PumpEvents; | |
180 | |
181 /* Set up the windows message handling functions */ | |
3992 | 182 WIN_Activate = DIB_Activate; |
0 | 183 WIN_RealizePalette = DIB_RealizePalette; |
184 WIN_PaletteChanged = DIB_PaletteChanged; | |
185 WIN_WinPAINT = DIB_WinPAINT; | |
186 HandleMessage = DIB_HandleMessage; | |
187 | |
188 device->free = DIB_DeleteDevice; | |
189 | |
190 /* We're finally ready */ | |
191 return device; | |
192 } | |
193 | |
194 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
|
195 "windib", "Win95/98/NT/2000/CE GDI", |
0 | 196 DIB_Available, DIB_CreateDevice |
197 }; | |
198 | |
199 static int cmpmodes(const void *va, const void *vb) | |
200 { | |
201 SDL_Rect *a = *(SDL_Rect **)va; | |
202 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
|
203 if ( a->w == b->w ) |
f72cc0c7305f
Video modes are sorted width first, then height
Sam Lantinga <slouken@libsdl.org>
parents:
833
diff
changeset
|
204 return b->h - a->h; |
f72cc0c7305f
Video modes are sorted width first, then height
Sam Lantinga <slouken@libsdl.org>
parents:
833
diff
changeset
|
205 else |
f72cc0c7305f
Video modes are sorted width first, then height
Sam Lantinga <slouken@libsdl.org>
parents:
833
diff
changeset
|
206 return b->w - a->w; |
0 | 207 } |
208 | |
209 static int DIB_AddMode(_THIS, int bpp, int w, int h) | |
210 { | |
211 SDL_Rect *mode; | |
212 int i, index; | |
213 int next_mode; | |
214 | |
215 /* Check to see if we already have this mode */ | |
216 if ( bpp < 8 ) { /* Not supported */ | |
217 return(0); | |
218 } | |
219 index = ((bpp+7)/8)-1; | |
220 for ( i=0; i<SDL_nummodes[index]; ++i ) { | |
221 mode = SDL_modelist[index][i]; | |
222 if ( (mode->w == w) && (mode->h == h) ) { | |
223 return(0); | |
224 } | |
225 } | |
226 | |
227 /* 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
|
228 mode = (SDL_Rect *)SDL_malloc(sizeof *mode); |
0 | 229 if ( mode == NULL ) { |
230 SDL_OutOfMemory(); | |
231 return(-1); | |
232 } | |
233 mode->x = 0; | |
234 mode->y = 0; | |
235 mode->w = w; | |
236 mode->h = h; | |
237 | |
238 /* Allocate the new list of modes, and fill in the new mode */ | |
239 next_mode = SDL_nummodes[index]; | |
240 SDL_modelist[index] = (SDL_Rect **) | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
241 SDL_realloc(SDL_modelist[index], (1+next_mode+1)*sizeof(SDL_Rect *)); |
0 | 242 if ( SDL_modelist[index] == NULL ) { |
243 SDL_OutOfMemory(); | |
244 SDL_nummodes[index] = 0; | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
245 SDL_free(mode); |
0 | 246 return(-1); |
247 } | |
248 SDL_modelist[index][next_mode] = mode; | |
249 SDL_modelist[index][next_mode+1] = NULL; | |
250 SDL_nummodes[index]++; | |
251 | |
252 return(0); | |
253 } | |
254 | |
3992 | 255 static void DIB_CreatePalette(_THIS, int bpp) |
0 | 256 { |
257 /* RJR: March 28, 2000 | |
258 moved palette creation here from "DIB_VideoInit" */ | |
259 | |
3992 | 260 LOGPALETTE *palette; |
261 HDC hdc; | |
262 int ncolors; | |
0 | 263 |
3992 | 264 ncolors = (1 << bpp); |
265 palette = (LOGPALETTE *)SDL_malloc(sizeof(*palette)+ | |
266 ncolors*sizeof(PALETTEENTRY)); | |
267 palette->palVersion = 0x300; | |
268 palette->palNumEntries = ncolors; | |
269 hdc = GetDC(SDL_Window); | |
270 GetSystemPaletteEntries(hdc, 0, ncolors, palette->palPalEntry); | |
271 ReleaseDC(SDL_Window, hdc); | |
272 screen_pal = CreatePalette(palette); | |
273 screen_logpal = palette; | |
0 | 274 } |
275 | |
276 int DIB_VideoInit(_THIS, SDL_PixelFormat *vformat) | |
277 { | |
3981
b0d021cf41b6
windib target can now control screensaver with SDL_VIDEO_ALLOW_SCREENSAVER.
Ryan C. Gordon <icculus@icculus.org>
parents:
3976
diff
changeset
|
278 const char *env = NULL; |
0 | 279 #ifndef NO_CHANGEDISPLAYSETTINGS |
280 int i; | |
281 DEVMODE settings; | |
282 #endif | |
283 | |
284 /* Create the window */ | |
285 if ( DIB_CreateWindow(this) < 0 ) { | |
286 return(-1); | |
287 } | |
1523 | 288 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
289 #if !SDL_AUDIO_DISABLED |
0 | 290 DX5_SoundFocus(SDL_Window); |
169
8039a5b760b9
Allow building SDL on Windows without audio support
Sam Lantinga <slouken@libsdl.org>
parents:
145
diff
changeset
|
291 #endif |
0 | 292 |
293 /* Determine the screen depth */ | |
294 vformat->BitsPerPixel = DIB_SussScreenDepth(); | |
295 switch (vformat->BitsPerPixel) { | |
296 case 15: | |
297 vformat->Rmask = 0x00007c00; | |
298 vformat->Gmask = 0x000003e0; | |
299 vformat->Bmask = 0x0000001f; | |
300 vformat->BitsPerPixel = 16; | |
301 break; | |
302 case 16: | |
303 vformat->Rmask = 0x0000f800; | |
304 vformat->Gmask = 0x000007e0; | |
305 vformat->Bmask = 0x0000001f; | |
306 break; | |
307 case 24: | |
308 case 32: | |
309 /* GDI defined as 8-8-8 */ | |
310 vformat->Rmask = 0x00ff0000; | |
311 vformat->Gmask = 0x0000ff00; | |
312 vformat->Bmask = 0x000000ff; | |
313 break; | |
314 default: | |
315 break; | |
316 } | |
317 | |
318 /* See if gamma is supported on this screen */ | |
319 DIB_CheckGamma(this); | |
320 | |
321 #ifndef NO_CHANGEDISPLAYSETTINGS | |
1465
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
322 |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
323 settings.dmSize = sizeof(DEVMODE); |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
324 settings.dmDriverExtra = 0; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
325 #ifdef _WIN32_WCE |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
326 settings.dmFields = DM_DISPLAYQUERYORIENTATION; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
327 this->hidden->supportRotation = ChangeDisplaySettingsEx(NULL, &settings, NULL, CDS_TEST, NULL) == DISP_CHANGE_SUCCESSFUL; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
328 #endif |
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); |
1545
8d9bb0cf2c2a
Added current_w and current_h to the SDL_VideoInfo structure, which is set to the desktop resolution during video intialization, and then set to the current resolution when a video mode is set.
Sam Lantinga <slouken@libsdl.org>
parents:
1523
diff
changeset
|
331 this->info.current_w = SDL_desktop_mode.dmPelsWidth; |
8d9bb0cf2c2a
Added current_w and current_h to the SDL_VideoInfo structure, which is set to the desktop resolution during video intialization, and then set to the current resolution when a video mode is set.
Sam Lantinga <slouken@libsdl.org>
parents:
1523
diff
changeset
|
332 this->info.current_h = SDL_desktop_mode.dmPelsHeight; |
1295
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
333 |
0 | 334 /* Query for the list of available video modes */ |
335 for ( i=0; EnumDisplaySettings(NULL, i, &settings); ++i ) { | |
336 DIB_AddMode(this, settings.dmBitsPerPel, | |
337 settings.dmPelsWidth, settings.dmPelsHeight); | |
1465
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
338 #ifdef _WIN32_WCE |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
339 if( this->hidden->supportRotation ) |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
340 DIB_AddMode(this, settings.dmBitsPerPel, |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
341 settings.dmPelsHeight, settings.dmPelsWidth); |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
342 #endif |
0 | 343 } |
344 /* Sort the mode lists */ | |
345 for ( i=0; i<NUM_MODELISTS; ++i ) { | |
346 if ( SDL_nummodes[i] > 0 ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
347 SDL_qsort(SDL_modelist[i], SDL_nummodes[i], sizeof *SDL_modelist[i], cmpmodes); |
0 | 348 } |
349 } | |
1465
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
350 #else |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
351 // WinCE and fullscreen mode: |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
352 // We use only vformat->BitsPerPixel that allow SDL to |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
353 // emulate other bpp (8, 32) and use triple buffer, |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
354 // because SDL surface conversion is much faster than the WinCE one. |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
355 // Although it should be tested on devices with graphics accelerator. |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
356 |
1771 | 357 DIB_AddMode(this, vformat->BitsPerPixel, |
1465
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
358 GetDeviceCaps(GetDC(NULL), HORZRES), |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
359 GetDeviceCaps(GetDC(NULL), VERTRES)); |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
360 |
0 | 361 #endif /* !NO_CHANGEDISPLAYSETTINGS */ |
362 | |
363 /* Grab an identity palette if we are in a palettized mode */ | |
364 if ( vformat->BitsPerPixel <= 8 ) { | |
365 /* RJR: March 28, 2000 | |
366 moved palette creation to "DIB_CreatePalette" */ | |
3992 | 367 DIB_CreatePalette(this, vformat->BitsPerPixel); |
0 | 368 } |
369 | |
370 /* Fill in some window manager capabilities */ | |
371 this->info.wm_available = 1; | |
372 | |
1465
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
373 #ifdef _WIN32_WCE |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
374 this->hidden->origRotation = -1; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
375 #endif |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
376 |
3981
b0d021cf41b6
windib target can now control screensaver with SDL_VIDEO_ALLOW_SCREENSAVER.
Ryan C. Gordon <icculus@icculus.org>
parents:
3976
diff
changeset
|
377 /* Allow environment override of screensaver disable. */ |
b0d021cf41b6
windib target can now control screensaver with SDL_VIDEO_ALLOW_SCREENSAVER.
Ryan C. Gordon <icculus@icculus.org>
parents:
3976
diff
changeset
|
378 env = SDL_getenv("SDL_VIDEO_ALLOW_SCREENSAVER"); |
b0d021cf41b6
windib target can now control screensaver with SDL_VIDEO_ALLOW_SCREENSAVER.
Ryan C. Gordon <icculus@icculus.org>
parents:
3976
diff
changeset
|
379 this->hidden->allow_screensaver = ( (env && SDL_atoi(env)) ? 1 : 0 ); |
b0d021cf41b6
windib target can now control screensaver with SDL_VIDEO_ALLOW_SCREENSAVER.
Ryan C. Gordon <icculus@icculus.org>
parents:
3976
diff
changeset
|
380 |
0 | 381 /* We're done! */ |
382 return(0); | |
383 } | |
384 | |
385 /* We support any format at any dimension */ | |
386 SDL_Rect **DIB_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags) | |
387 { | |
388 if ( (flags & SDL_FULLSCREEN) == SDL_FULLSCREEN ) { | |
389 return(SDL_modelist[((format->BitsPerPixel+7)/8)-1]); | |
390 } else { | |
391 return((SDL_Rect **)-1); | |
392 } | |
393 } | |
394 | |
395 | |
396 /* | |
397 Helper fn to work out which screen depth windows is currently using. | |
398 15 bit mode is considered 555 format, 16 bit is 565. | |
399 returns 0 for unknown mode. | |
400 (Derived from code in sept 1999 Windows Developer Journal | |
401 http://www.wdj.com/code/archive.html) | |
402 */ | |
403 static int DIB_SussScreenDepth() | |
404 { | |
405 #ifdef NO_GETDIBITS | |
406 int depth; | |
407 HDC hdc; | |
408 | |
409 hdc = GetDC(SDL_Window); | |
410 depth = GetDeviceCaps(hdc, PLANES) * GetDeviceCaps(hdc, BITSPIXEL); | |
411 ReleaseDC(SDL_Window, hdc); | |
412 return(depth); | |
413 #else | |
1881 | 414 int depth; |
0 | 415 int dib_size; |
416 LPBITMAPINFOHEADER dib_hdr; | |
417 HDC hdc; | |
418 HBITMAP hbm; | |
419 | |
420 /* Allocate enough space for a DIB header plus palette (for | |
421 * 8-bit modes) or bitfields (for 16- and 32-bit modes) | |
422 */ | |
423 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
|
424 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
|
425 SDL_memset(dib_hdr, 0, dib_size); |
0 | 426 dib_hdr->biSize = sizeof(BITMAPINFOHEADER); |
427 | |
428 /* Get a device-dependent bitmap that's compatible with the | |
429 screen. | |
430 */ | |
431 hdc = GetDC(NULL); | |
432 hbm = CreateCompatibleBitmap( hdc, 1, 1 ); | |
433 | |
434 /* Convert the DDB to a DIB. We need to call GetDIBits twice: | |
435 * the first call just fills in the BITMAPINFOHEADER; the | |
436 * second fills in the bitfields or palette. | |
437 */ | |
438 GetDIBits(hdc, hbm, 0, 1, NULL, (LPBITMAPINFO) dib_hdr, DIB_RGB_COLORS); | |
439 GetDIBits(hdc, hbm, 0, 1, NULL, (LPBITMAPINFO) dib_hdr, DIB_RGB_COLORS); | |
440 DeleteObject(hbm); | |
441 ReleaseDC(NULL, hdc); | |
442 | |
1881 | 443 depth = 0; |
0 | 444 switch( dib_hdr->biBitCount ) |
445 { | |
1881 | 446 case 8: depth = 8; break; |
447 case 24: depth = 24; break; | |
448 case 32: depth = 32; break; | |
0 | 449 case 16: |
450 if( dib_hdr->biCompression == BI_BITFIELDS ) { | |
451 /* check the red mask */ | |
452 switch( ((DWORD*)((char*)dib_hdr + dib_hdr->biSize))[0] ) { | |
1881 | 453 case 0xf800: depth = 16; break; /* 565 */ |
454 case 0x7c00: depth = 15; break; /* 555 */ | |
0 | 455 } |
456 } | |
457 } | |
1881 | 458 SDL_free(dib_hdr); |
459 return depth; | |
0 | 460 #endif /* NO_GETDIBITS */ |
461 } | |
462 | |
463 | |
464 /* Various screen update functions available */ | |
465 static void DIB_NormalUpdate(_THIS, int numrects, SDL_Rect *rects); | |
466 | |
467 SDL_Surface *DIB_SetVideoMode(_THIS, SDL_Surface *current, | |
468 int width, int height, int bpp, Uint32 flags) | |
469 { | |
470 SDL_Surface *video; | |
471 Uint32 prev_flags; | |
472 DWORD style; | |
473 const DWORD directstyle = | |
474 (WS_POPUP); | |
475 const DWORD windowstyle = | |
476 (WS_OVERLAPPED|WS_CAPTION|WS_SYSMENU|WS_MINIMIZEBOX); | |
477 const DWORD resizestyle = | |
478 (WS_THICKFRAME|WS_MAXIMIZEBOX); | |
479 int binfo_size; | |
480 BITMAPINFO *binfo; | |
481 HDC hdc; | |
482 RECT bounds; | |
483 int x, y; | |
484 Uint32 Rmask, Gmask, Bmask; | |
485 | |
486 /* Clean up any GL context that may be hanging around */ | |
487 if ( current->flags & SDL_OPENGL ) { | |
488 WIN_GL_ShutDown(this); | |
489 } | |
1291
31331c444ea2
Only save the window position if we're in windowed mode
Sam Lantinga <slouken@libsdl.org>
parents:
1290
diff
changeset
|
490 SDL_resizing = 1; |
0 | 491 |
492 /* Recalculate the bitmasks if necessary */ | |
493 if ( bpp == current->format->BitsPerPixel ) { | |
494 video = current; | |
495 } else { | |
496 switch (bpp) { | |
497 case 15: | |
498 case 16: | |
499 if ( DIB_SussScreenDepth() == 15 ) { | |
500 /* 5-5-5 */ | |
501 Rmask = 0x00007c00; | |
502 Gmask = 0x000003e0; | |
503 Bmask = 0x0000001f; | |
504 } else { | |
505 /* 5-6-5 */ | |
506 Rmask = 0x0000f800; | |
507 Gmask = 0x000007e0; | |
508 Bmask = 0x0000001f; | |
509 } | |
510 break; | |
511 case 24: | |
512 case 32: | |
513 /* GDI defined as 8-8-8 */ | |
514 Rmask = 0x00ff0000; | |
515 Gmask = 0x0000ff00; | |
516 Bmask = 0x000000ff; | |
517 break; | |
518 default: | |
519 Rmask = 0x00000000; | |
520 Gmask = 0x00000000; | |
521 Bmask = 0x00000000; | |
522 break; | |
523 } | |
524 video = SDL_CreateRGBSurface(SDL_SWSURFACE, | |
525 0, 0, bpp, Rmask, Gmask, Bmask, 0); | |
526 if ( video == NULL ) { | |
527 SDL_OutOfMemory(); | |
528 return(NULL); | |
529 } | |
530 } | |
531 | |
532 /* Fill in part of the video surface */ | |
533 prev_flags = video->flags; | |
534 video->flags = 0; /* Clear flags */ | |
535 video->w = width; | |
536 video->h = height; | |
537 video->pitch = SDL_CalculatePitch(video); | |
538 | |
1152
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
539 /* 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
|
540 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
|
541 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
|
542 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
|
543 */ |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
544 SDL_VideoSurface = video; |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
545 |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
546 #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
|
547 if ( flags & SDL_FULLSCREEN ) |
514
1080bfc4aa96
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
453
diff
changeset
|
548 video->flags |= SDL_FULLSCREEN; |
1080bfc4aa96
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
453
diff
changeset
|
549 #endif |
1152
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
550 |
0 | 551 #ifndef NO_CHANGEDISPLAYSETTINGS |
552 /* Set fullscreen mode if appropriate */ | |
553 if ( (flags & SDL_FULLSCREEN) == SDL_FULLSCREEN ) { | |
554 DEVMODE settings; | |
1295
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
555 BOOL changed; |
0 | 556 |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
557 SDL_memset(&settings, 0, sizeof(DEVMODE)); |
0 | 558 settings.dmSize = sizeof(DEVMODE); |
1465
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
559 |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
560 #ifdef _WIN32_WCE |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
561 // try to rotate screen to fit requested resolution |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
562 if( this->hidden->supportRotation ) |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
563 { |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
564 DWORD rotation; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
565 |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
566 // ask current mode |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
567 settings.dmFields = DM_DISPLAYORIENTATION; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
568 ChangeDisplaySettingsEx(NULL, &settings, NULL, CDS_TEST, NULL); |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
569 rotation = settings.dmDisplayOrientation; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
570 |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
571 if( (width > GetDeviceCaps(GetDC(NULL), HORZRES)) |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
572 && (height < GetDeviceCaps(GetDC(NULL), VERTRES))) |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
573 { |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
574 switch( rotation ) |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
575 { |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
576 case DMDO_0: |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
577 settings.dmDisplayOrientation = DMDO_90; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
578 break; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
579 case DMDO_270: |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
580 settings.dmDisplayOrientation = DMDO_180; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
581 break; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
582 } |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
583 if( settings.dmDisplayOrientation != rotation ) |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
584 { |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
585 // go to landscape |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
586 this->hidden->origRotation = rotation; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
587 ChangeDisplaySettingsEx(NULL,&settings,NULL,CDS_RESET,NULL); |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
588 } |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
589 } |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
590 if( (width < GetDeviceCaps(GetDC(NULL), HORZRES)) |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
591 && (height > GetDeviceCaps(GetDC(NULL), VERTRES))) |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
592 { |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
593 switch( rotation ) |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
594 { |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
595 case DMDO_90: |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
596 settings.dmDisplayOrientation = DMDO_0; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
597 break; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
598 case DMDO_180: |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
599 settings.dmDisplayOrientation = DMDO_270; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
600 break; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
601 } |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
602 if( settings.dmDisplayOrientation != rotation ) |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
603 { |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
604 // go to portrait |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
605 this->hidden->origRotation = rotation; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
606 ChangeDisplaySettingsEx(NULL,&settings,NULL,CDS_RESET,NULL); |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
607 } |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
608 } |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
609 |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
610 } |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
611 #endif |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
612 |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
613 #ifndef _WIN32_WCE |
0 | 614 settings.dmBitsPerPel = video->format->BitsPerPixel; |
615 settings.dmPelsWidth = width; | |
616 settings.dmPelsHeight = height; | |
617 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
|
618 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
|
619 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
|
620 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
|
621 settings.dmFields |= DM_DISPLAYFREQUENCY; |
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
622 } |
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
623 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
|
624 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
|
625 settings.dmFields &= ~DM_DISPLAYFREQUENCY; |
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
626 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
|
627 } |
1465
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
628 #else |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
629 changed = 1; |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
630 #endif |
1295
c3e36ac8a94c
Date: Sun, 6 Mar 2005 17:06:20 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1292
diff
changeset
|
631 if ( changed ) { |
0 | 632 video->flags |= SDL_FULLSCREEN; |
304
ec53caed9fb2
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
633 SDL_fullscreen_mode = settings; |
0 | 634 } |
1465
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
635 |
0 | 636 } |
637 #endif /* !NO_CHANGEDISPLAYSETTINGS */ | |
638 | |
45
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
639 /* Reset the palette and create a new one if necessary */ |
4079
fda6e33893b7
Always advertise hardware palette, since Windows will remap colors for us.
Sam Lantinga <slouken@libsdl.org>
parents:
4075
diff
changeset
|
640 if ( grab_palette ) { |
fda6e33893b7
Always advertise hardware palette, since Windows will remap colors for us.
Sam Lantinga <slouken@libsdl.org>
parents:
4075
diff
changeset
|
641 DIB_ReleaseStaticColors(SDL_Window); |
fda6e33893b7
Always advertise hardware palette, since Windows will remap colors for us.
Sam Lantinga <slouken@libsdl.org>
parents:
4075
diff
changeset
|
642 grab_palette = FALSE; |
fda6e33893b7
Always advertise hardware palette, since Windows will remap colors for us.
Sam Lantinga <slouken@libsdl.org>
parents:
4075
diff
changeset
|
643 } |
45
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
644 if ( screen_pal != NULL ) { |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
645 /* RJR: March 28, 2000 |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
646 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
|
647 DeleteObject(screen_pal); |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
648 screen_pal = NULL; |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
649 } |
3992 | 650 if ( screen_logpal != NULL ) { |
651 SDL_free(screen_logpal); | |
652 screen_logpal = NULL; | |
653 } | |
4079
fda6e33893b7
Always advertise hardware palette, since Windows will remap colors for us.
Sam Lantinga <slouken@libsdl.org>
parents:
4075
diff
changeset
|
654 |
45
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
655 if ( bpp <= 8 ) |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
656 { |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
657 /* RJR: March 28, 2000 |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
658 create identity palette switching to a palettized mode */ |
3992 | 659 DIB_CreatePalette(this, bpp); |
45
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
660 } |
60a6e045808e
Fix palette creation in windowed mode at 8 bpp
Sam Lantinga <slouken@lokigames.com>
parents:
36
diff
changeset
|
661 |
1480 | 662 style = GetWindowLong(SDL_Window, GWL_STYLE); |
0 | 663 style &= ~(resizestyle|WS_MAXIMIZE); |
664 if ( (video->flags & SDL_FULLSCREEN) == SDL_FULLSCREEN ) { | |
665 style &= ~windowstyle; | |
666 style |= directstyle; | |
667 } else { | |
668 #ifndef NO_CHANGEDISPLAYSETTINGS | |
669 if ( (prev_flags & SDL_FULLSCREEN) == SDL_FULLSCREEN ) { | |
670 ChangeDisplaySettings(NULL, 0); | |
671 } | |
672 #endif | |
673 if ( flags & SDL_NOFRAME ) { | |
674 style &= ~windowstyle; | |
675 style |= directstyle; | |
676 video->flags |= SDL_NOFRAME; | |
677 } else { | |
678 style &= ~directstyle; | |
679 style |= windowstyle; | |
680 if ( flags & SDL_RESIZABLE ) { | |
681 style |= resizestyle; | |
682 video->flags |= SDL_RESIZABLE; | |
683 } | |
684 } | |
453
a6fa62b1be09
Updated for embedded Visual C++ 4.0
Sam Lantinga <slouken@libsdl.org>
parents:
448
diff
changeset
|
685 #if WS_MAXIMIZE |
0 | 686 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
|
687 #endif |
0 | 688 } |
145
29a638dc26db
Applied David MacCormack's patch to fix SDL_WINDOWID on Windows,
Sam Lantinga <slouken@libsdl.org>
parents:
112
diff
changeset
|
689 |
448
323c766f5a46
Fullscreen windows are always topmost under Windows
Sam Lantinga <slouken@libsdl.org>
parents:
442
diff
changeset
|
690 /* 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
|
691 if ( !SDL_windowid ) |
1480 | 692 SetWindowLong(SDL_Window, GWL_STYLE, style); |
0 | 693 |
694 /* Delete the old bitmap if necessary */ | |
695 if ( screen_bmp != NULL ) { | |
696 DeleteObject(screen_bmp); | |
697 } | |
698 if ( ! (flags & SDL_OPENGL) ) { | |
699 BOOL is16bitmode = (video->format->BytesPerPixel == 2); | |
700 | |
701 /* Suss out the bitmap info header */ | |
702 binfo_size = sizeof(*binfo); | |
703 if( is16bitmode ) { | |
704 /* 16bit modes, palette area used for rgb bitmasks */ | |
705 binfo_size += 3*sizeof(DWORD); | |
706 } else if ( video->format->palette ) { | |
707 binfo_size += video->format->palette->ncolors * | |
708 sizeof(RGBQUAD); | |
709 } | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
710 binfo = (BITMAPINFO *)SDL_malloc(binfo_size); |
0 | 711 if ( ! binfo ) { |
712 if ( video != current ) { | |
713 SDL_FreeSurface(video); | |
714 } | |
715 SDL_OutOfMemory(); | |
716 return(NULL); | |
717 } | |
718 | |
719 binfo->bmiHeader.biSize = sizeof(BITMAPINFOHEADER); | |
720 binfo->bmiHeader.biWidth = video->w; | |
721 binfo->bmiHeader.biHeight = -video->h; /* -ve for topdown bitmap */ | |
722 binfo->bmiHeader.biPlanes = 1; | |
723 binfo->bmiHeader.biSizeImage = video->h * video->pitch; | |
724 binfo->bmiHeader.biXPelsPerMeter = 0; | |
725 binfo->bmiHeader.biYPelsPerMeter = 0; | |
726 binfo->bmiHeader.biClrUsed = 0; | |
727 binfo->bmiHeader.biClrImportant = 0; | |
728 binfo->bmiHeader.biBitCount = video->format->BitsPerPixel; | |
729 | |
730 if ( is16bitmode ) { | |
731 /* BI_BITFIELDS tells CreateDIBSection about the rgb masks in the palette */ | |
732 binfo->bmiHeader.biCompression = BI_BITFIELDS; | |
733 ((Uint32*)binfo->bmiColors)[0] = video->format->Rmask; | |
734 ((Uint32*)binfo->bmiColors)[1] = video->format->Gmask; | |
735 ((Uint32*)binfo->bmiColors)[2] = video->format->Bmask; | |
736 } else { | |
737 binfo->bmiHeader.biCompression = BI_RGB; /* BI_BITFIELDS for 565 vs 555 */ | |
738 if ( video->format->palette ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
739 SDL_memset(binfo->bmiColors, 0, |
0 | 740 video->format->palette->ncolors*sizeof(RGBQUAD)); |
741 } | |
742 } | |
743 | |
744 /* Create the offscreen bitmap buffer */ | |
745 hdc = GetDC(SDL_Window); | |
746 screen_bmp = CreateDIBSection(hdc, binfo, DIB_RGB_COLORS, | |
747 (void **)(&video->pixels), NULL, 0); | |
748 ReleaseDC(SDL_Window, hdc); | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
749 SDL_free(binfo); |
0 | 750 if ( screen_bmp == NULL ) { |
751 if ( video != current ) { | |
752 SDL_FreeSurface(video); | |
753 } | |
754 SDL_SetError("Couldn't create DIB section"); | |
755 return(NULL); | |
756 } | |
757 this->UpdateRects = DIB_NormalUpdate; | |
758 | |
759 /* Set video surface flags */ | |
4079
fda6e33893b7
Always advertise hardware palette, since Windows will remap colors for us.
Sam Lantinga <slouken@libsdl.org>
parents:
4075
diff
changeset
|
760 if ( screen_pal && (flags & (SDL_FULLSCREEN|SDL_HWPALETTE)) ) { |
fda6e33893b7
Always advertise hardware palette, since Windows will remap colors for us.
Sam Lantinga <slouken@libsdl.org>
parents:
4075
diff
changeset
|
761 grab_palette = TRUE; |
0 | 762 } |
4079
fda6e33893b7
Always advertise hardware palette, since Windows will remap colors for us.
Sam Lantinga <slouken@libsdl.org>
parents:
4075
diff
changeset
|
763 /* BitBlt() maps colors for us */ |
fda6e33893b7
Always advertise hardware palette, since Windows will remap colors for us.
Sam Lantinga <slouken@libsdl.org>
parents:
4075
diff
changeset
|
764 video->flags |= SDL_HWPALETTE; |
0 | 765 } |
1465
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
766 #ifndef _WIN32_WCE |
0 | 767 /* 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
|
768 if ( !SDL_windowid && !IsZoomed(SDL_Window) ) { |
1465
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
769 #else |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
770 if ( !SDL_windowid ) { |
8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Sam Lantinga <slouken@libsdl.org>
parents:
1433
diff
changeset
|
771 #endif |
448
323c766f5a46
Fullscreen windows are always topmost under Windows
Sam Lantinga <slouken@libsdl.org>
parents:
442
diff
changeset
|
772 HWND top; |
0 | 773 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
|
774 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
|
775 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
|
776 |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
777 if ( !SDL_windowX && !SDL_windowY ) { |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
778 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
|
779 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
|
780 if ( window ) { |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
781 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
|
782 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
|
783 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
|
784 } |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
785 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
|
786 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
|
787 } |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
788 } |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
789 } |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
790 swp_flags = (SWP_NOCOPYBITS | SWP_SHOWWINDOW); |
0 | 791 |
833
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
792 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
|
793 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
|
794 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
|
795 bounds.bottom = SDL_windowY+video->h; |
3868 | 796 #ifndef _WIN32_WCE |
1882 | 797 AdjustWindowRectEx(&bounds, GetWindowLong(SDL_Window, GWL_STYLE), (GetMenu(SDL_Window) != NULL), 0); |
3868 | 798 #else |
799 // The bMenu parameter must be FALSE; menu bars are not supported | |
800 AdjustWindowRectEx(&bounds, GetWindowLong(SDL_Window, GWL_STYLE), 0, 0); | |
801 #endif | |
0 | 802 width = bounds.right-bounds.left; |
803 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
|
804 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
|
805 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
|
806 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
|
807 } else if ( center ) { |
96671ebc50a4
Date: Mon, 25 Oct 2004 17:30:06 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
966
diff
changeset
|
808 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
|
809 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
|
810 } 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
|
811 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
|
812 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
|
813 } else { |
31fa08b36380
Added support for SDL_VIDEO_WINDOW_POS and SDL_VIDEO_CENTERED on Windows
Sam Lantinga <slouken@libsdl.org>
parents:
766
diff
changeset
|
814 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
|
815 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
|
816 } |
448
323c766f5a46
Fullscreen windows are always topmost under Windows
Sam Lantinga <slouken@libsdl.org>
parents:
442
diff
changeset
|
817 if ( flags & SDL_FULLSCREEN ) { |
323c766f5a46
Fullscreen windows are always topmost under Windows
Sam Lantinga <slouken@libsdl.org>
parents:
442
diff
changeset
|
818 top = HWND_TOPMOST; |
323c766f5a46
Fullscreen windows are always topmost under Windows
Sam Lantinga <slouken@libsdl.org>
parents:
442
diff
changeset
|
819 } else { |
323c766f5a46
Fullscreen windows are always topmost under Windows
Sam Lantinga <slouken@libsdl.org>
parents:
442
diff
changeset
|
820 top = HWND_NOTOPMOST; |
323c766f5a46
Fullscreen windows are always topmost under Windows
Sam Lantinga <slouken@libsdl.org>
parents:
442
diff
changeset
|
821 } |
323c766f5a46
Fullscreen windows are always topmost under Windows
Sam Lantinga <slouken@libsdl.org>
parents:
442
diff
changeset
|
822 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
|
823 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
|
824 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
|
825 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
|
826 } |
0 | 827 SetForegroundWindow(SDL_Window); |
828 } | |
1291
31331c444ea2
Only save the window position if we're in windowed mode
Sam Lantinga <slouken@libsdl.org>
parents:
1290
diff
changeset
|
829 SDL_resizing = 0; |
0 | 830 |
831 /* Set up for OpenGL */ | |
832 if ( flags & SDL_OPENGL ) { | |
833 if ( WIN_GL_SetupWindow(this) < 0 ) { | |
834 return(NULL); | |
835 } | |
836 video->flags |= SDL_OPENGL; | |
837 } | |
36
13ee9f4834ea
Windows CE patches contributed by Rainer Loritz
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
838 |
1523 | 839 /* JC 14 Mar 2006 |
840 Flush the message loop or this can cause big problems later | |
841 Especially if the user decides to use dialog boxes or assert()! | |
842 */ | |
843 WIN_FlushMessageQueue(); | |
844 | |
0 | 845 /* We're live! */ |
846 return(video); | |
847 } | |
848 | |
849 /* We don't actually allow hardware surfaces in the DIB driver */ | |
850 static int DIB_AllocHWSurface(_THIS, SDL_Surface *surface) | |
851 { | |
852 return(-1); | |
853 } | |
854 static void DIB_FreeHWSurface(_THIS, SDL_Surface *surface) | |
855 { | |
856 return; | |
857 } | |
858 static int DIB_LockHWSurface(_THIS, SDL_Surface *surface) | |
859 { | |
860 return(0); | |
861 } | |
862 static void DIB_UnlockHWSurface(_THIS, SDL_Surface *surface) | |
863 { | |
864 return; | |
865 } | |
866 | |
867 static void DIB_NormalUpdate(_THIS, int numrects, SDL_Rect *rects) | |
868 { | |
869 HDC hdc, mdc; | |
870 int i; | |
871 | |
872 hdc = GetDC(SDL_Window); | |
873 if ( screen_pal ) { | |
874 SelectPalette(hdc, screen_pal, FALSE); | |
875 } | |
876 mdc = CreateCompatibleDC(hdc); | |
877 SelectObject(mdc, screen_bmp); | |
878 for ( i=0; i<numrects; ++i ) { | |
879 BitBlt(hdc, rects[i].x, rects[i].y, rects[i].w, rects[i].h, | |
880 mdc, rects[i].x, rects[i].y, SRCCOPY); | |
881 } | |
882 DeleteDC(mdc); | |
883 ReleaseDC(SDL_Window, hdc); | |
884 } | |
885 | |
3992 | 886 static int FindPaletteIndex(LOGPALETTE *pal, BYTE r, BYTE g, BYTE b) |
887 { | |
888 PALETTEENTRY *entry; | |
889 int i; | |
890 int nentries = pal->palNumEntries; | |
891 | |
892 for ( i = 0; i < nentries; ++i ) { | |
893 entry = &pal->palPalEntry[i]; | |
894 if ( entry->peRed == r && entry->peGreen == g && entry->peBlue == b ) { | |
895 return i; | |
896 } | |
897 } | |
898 return -1; | |
899 } | |
900 | |
901 static BOOL CheckPaletteEntry(LOGPALETTE *pal, int index, BYTE r, BYTE g, BYTE b) | |
902 { | |
903 PALETTEENTRY *entry; | |
904 BOOL moved = 0; | |
905 | |
906 entry = &pal->palPalEntry[index]; | |
907 if ( entry->peRed != r || entry->peGreen != g || entry->peBlue != b ) { | |
908 int found = FindPaletteIndex(pal, r, g, b); | |
909 if ( found >= 0 ) { | |
910 pal->palPalEntry[found] = *entry; | |
911 } | |
912 entry->peRed = r; | |
913 entry->peGreen = g; | |
914 entry->peBlue = b; | |
915 moved = 1; | |
916 } | |
917 entry->peFlags = 0; | |
918 | |
919 return moved; | |
920 } | |
1251
86d0d01290ea
Updated Windows CE/PocketPC support...adds GAPI driver, landscape mode,
Ryan C. Gordon <icculus@icculus.org>
parents:
1152
diff
changeset
|
921 |
0 | 922 int DIB_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors) |
923 { | |
1292
59c7a470a51e
Fixed palette bug on non-WinCE
Sam Lantinga <slouken@libsdl.org>
parents:
1291
diff
changeset
|
924 #if !defined(_WIN32_WCE) || (_WIN32_WCE >= 400) |
59c7a470a51e
Fixed palette bug on non-WinCE
Sam Lantinga <slouken@libsdl.org>
parents:
1291
diff
changeset
|
925 HDC hdc, mdc; |
0 | 926 RGBQUAD *pal; |
1292
59c7a470a51e
Fixed palette bug on non-WinCE
Sam Lantinga <slouken@libsdl.org>
parents:
1291
diff
changeset
|
927 #else |
1251
86d0d01290ea
Updated Windows CE/PocketPC support...adds GAPI driver, landscape mode,
Ryan C. Gordon <icculus@icculus.org>
parents:
1152
diff
changeset
|
928 HDC hdc; |
36
13ee9f4834ea
Windows CE patches contributed by Rainer Loritz
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
929 #endif |
1292
59c7a470a51e
Fixed palette bug on non-WinCE
Sam Lantinga <slouken@libsdl.org>
parents:
1291
diff
changeset
|
930 int i; |
3992 | 931 int moved_entries = 0; |
0 | 932 |
933 /* Update the display palette */ | |
934 hdc = GetDC(SDL_Window); | |
935 if ( screen_pal ) { | |
3992 | 936 PALETTEENTRY *entry; |
0 | 937 |
938 for ( i=0; i<ncolors; ++i ) { | |
3992 | 939 entry = &screen_logpal->palPalEntry[firstcolor+i]; |
940 entry->peRed = colors[i].r; | |
941 entry->peGreen = colors[i].g; | |
942 entry->peBlue = colors[i].b; | |
943 entry->peFlags = PC_NOCOLLAPSE; | |
944 } | |
4075
0207ca19fd8f
Fixed building on Windows CE
Sam Lantinga <slouken@libsdl.org>
parents:
3992
diff
changeset
|
945 #ifdef SYSPAL_NOSTATIC |
3992 | 946 /* Check to make sure black and white are in position */ |
947 if ( GetSystemPaletteUse(hdc) != SYSPAL_NOSTATIC256 ) { | |
948 moved_entries += CheckPaletteEntry(screen_logpal, 0, 0x00, 0x00, 0x00); | |
949 moved_entries += CheckPaletteEntry(screen_logpal, screen_logpal->palNumEntries-1, 0xff, 0xff, 0xff); | |
0 | 950 } |
3992 | 951 /* FIXME: |
952 If we don't have full access to the palette, what we | |
953 really want to do is find the 236 most diverse colors | |
954 in the desired palette, set those entries (10-245) and | |
955 then map everything into the new system palette. | |
956 */ | |
4075
0207ca19fd8f
Fixed building on Windows CE
Sam Lantinga <slouken@libsdl.org>
parents:
3992
diff
changeset
|
957 #endif |
3992 | 958 |
4075
0207ca19fd8f
Fixed building on Windows CE
Sam Lantinga <slouken@libsdl.org>
parents:
3992
diff
changeset
|
959 #ifndef _WIN32_WCE |
3992 | 960 /* Copy the entries into the system palette */ |
961 UnrealizeObject(screen_pal); | |
4075
0207ca19fd8f
Fixed building on Windows CE
Sam Lantinga <slouken@libsdl.org>
parents:
3992
diff
changeset
|
962 #endif |
3992 | 963 SetPaletteEntries(screen_pal, 0, screen_logpal->palNumEntries, screen_logpal->palPalEntry); |
0 | 964 SelectPalette(hdc, screen_pal, FALSE); |
965 RealizePalette(hdc); | |
966 } | |
967 | |
1292
59c7a470a51e
Fixed palette bug on non-WinCE
Sam Lantinga <slouken@libsdl.org>
parents:
1291
diff
changeset
|
968 #if !defined(_WIN32_WCE) || (_WIN32_WCE >= 400) |
0 | 969 /* 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
|
970 pal = SDL_stack_alloc(RGBQUAD, ncolors); |
0 | 971 for ( i=0; i<ncolors; ++i ) { |
972 pal[i].rgbRed = colors[i].r; | |
973 pal[i].rgbGreen = colors[i].g; | |
974 pal[i].rgbBlue = colors[i].b; | |
975 pal[i].rgbReserved = 0; | |
976 } | |
977 | |
978 /* Set the DIB palette and update the display */ | |
979 mdc = CreateCompatibleDC(hdc); | |
980 SelectObject(mdc, screen_bmp); | |
981 SetDIBColorTable(mdc, firstcolor, ncolors, pal); | |
4079
fda6e33893b7
Always advertise hardware palette, since Windows will remap colors for us.
Sam Lantinga <slouken@libsdl.org>
parents:
4075
diff
changeset
|
982 if ( moved_entries || !grab_palette ) { |
3992 | 983 BitBlt(hdc, 0, 0, this->screen->w, this->screen->h, |
984 mdc, 0, 0, SRCCOPY); | |
985 } | |
0 | 986 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
|
987 SDL_stack_free(pal); |
36
13ee9f4834ea
Windows CE patches contributed by Rainer Loritz
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
988 #endif |
0 | 989 ReleaseDC(SDL_Window, hdc); |
990 return(1); | |
991 } | |
992 | |
1251
86d0d01290ea
Updated Windows CE/PocketPC support...adds GAPI driver, landscape mode,
Ryan C. Gordon <icculus@icculus.org>
parents:
1152
diff
changeset
|
993 |
0 | 994 static void DIB_CheckGamma(_THIS) |
995 { | |
996 #ifndef NO_GAMMA_SUPPORT | |
997 HDC hdc; | |
998 WORD ramp[3*256]; | |
999 | |
1000 /* If we fail to get gamma, disable gamma control */ | |
1001 hdc = GetDC(SDL_Window); | |
1002 if ( ! GetDeviceGammaRamp(hdc, ramp) ) { | |
1003 this->GetGammaRamp = NULL; | |
1004 this->SetGammaRamp = NULL; | |
1005 } | |
1006 ReleaseDC(SDL_Window, hdc); | |
1007 #endif /* !NO_GAMMA_SUPPORT */ | |
1008 } | |
338
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
1009 void DIB_SwapGamma(_THIS) |
0 | 1010 { |
1011 #ifndef NO_GAMMA_SUPPORT | |
1012 HDC hdc; | |
1013 | |
1014 if ( gamma_saved ) { | |
1015 hdc = GetDC(SDL_Window); | |
1016 if ( SDL_GetAppState() & SDL_APPINPUTFOCUS ) { | |
1017 /* About to leave active state, restore gamma */ | |
1018 SetDeviceGammaRamp(hdc, gamma_saved); | |
1019 } else { | |
1020 /* About to enter active state, set game gamma */ | |
1021 GetDeviceGammaRamp(hdc, gamma_saved); | |
1022 SetDeviceGammaRamp(hdc, this->gamma); | |
1023 } | |
1024 ReleaseDC(SDL_Window, hdc); | |
1025 } | |
1026 #endif /* !NO_GAMMA_SUPPORT */ | |
1027 } | |
338
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
1028 void DIB_QuitGamma(_THIS) |
0 | 1029 { |
1030 #ifndef NO_GAMMA_SUPPORT | |
1031 if ( gamma_saved ) { | |
1032 /* Restore the original gamma if necessary */ | |
1033 if ( SDL_GetAppState() & SDL_APPINPUTFOCUS ) { | |
1034 HDC hdc; | |
1035 | |
1036 hdc = GetDC(SDL_Window); | |
1037 SetDeviceGammaRamp(hdc, gamma_saved); | |
1038 ReleaseDC(SDL_Window, hdc); | |
1039 } | |
1040 | |
1041 /* Free the saved gamma memory */ | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1042 SDL_free(gamma_saved); |
0 | 1043 gamma_saved = 0; |
1044 } | |
1045 #endif /* !NO_GAMMA_SUPPORT */ | |
1046 } | |
1047 | |
338
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
1048 int DIB_SetGammaRamp(_THIS, Uint16 *ramp) |
0 | 1049 { |
338
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
1050 #ifdef NO_GAMMA_SUPPORT |
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
1051 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
|
1052 return -1; |
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
1053 #else |
0 | 1054 HDC hdc; |
1055 BOOL succeeded; | |
1056 | |
1057 /* Set the ramp for the display */ | |
1058 if ( ! gamma_saved ) { | |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1330
diff
changeset
|
1059 gamma_saved = (WORD *)SDL_malloc(3*256*sizeof(*gamma_saved)); |
0 | 1060 if ( ! gamma_saved ) { |
1061 SDL_OutOfMemory(); | |
1062 return -1; | |
1063 } | |
1064 hdc = GetDC(SDL_Window); | |
1065 GetDeviceGammaRamp(hdc, gamma_saved); | |
1066 ReleaseDC(SDL_Window, hdc); | |
1067 } | |
1068 if ( SDL_GetAppState() & SDL_APPINPUTFOCUS ) { | |
1069 hdc = GetDC(SDL_Window); | |
1070 succeeded = SetDeviceGammaRamp(hdc, ramp); | |
1071 ReleaseDC(SDL_Window, hdc); | |
1072 } else { | |
1073 succeeded = TRUE; | |
1074 } | |
1075 return succeeded ? 0 : -1; | |
338
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
1076 #endif /* !NO_GAMMA_SUPPORT */ |
0 | 1077 } |
1078 | |
338
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
1079 int DIB_GetGammaRamp(_THIS, Uint16 *ramp) |
0 | 1080 { |
338
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
1081 #ifdef NO_GAMMA_SUPPORT |
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
1082 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
|
1083 return -1; |
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
1084 #else |
0 | 1085 HDC hdc; |
1086 BOOL succeeded; | |
1087 | |
1088 /* Get the ramp from the display */ | |
1089 hdc = GetDC(SDL_Window); | |
1090 succeeded = GetDeviceGammaRamp(hdc, ramp); | |
1091 ReleaseDC(SDL_Window, hdc); | |
1092 return succeeded ? 0 : -1; | |
338
518ffd98a8f6
Fixed gamma ramps in DirectX windowed and OpenGL modes
Sam Lantinga <slouken@libsdl.org>
parents:
304
diff
changeset
|
1093 #endif /* !NO_GAMMA_SUPPORT */ |
0 | 1094 } |
1095 | |
1096 void DIB_VideoQuit(_THIS) | |
1097 { | |
1881 | 1098 int i, j; |
1099 | |
0 | 1100 /* Destroy the window and everything associated with it */ |
1101 if ( SDL_Window ) { | |
1102 /* Delete the screen bitmap (also frees screen->pixels) */ | |
1103 if ( this->screen ) { | |
4079
fda6e33893b7
Always advertise hardware palette, since Windows will remap colors for us.
Sam Lantinga <slouken@libsdl.org>
parents:
4075
diff
changeset
|
1104 if ( grab_palette ) { |
3992 | 1105 DIB_ReleaseStaticColors(SDL_Window); |
1106 } | |
0 | 1107 #ifndef NO_CHANGEDISPLAYSETTINGS |
1108 if ( this->screen->flags & SDL_FULLSCREEN ) { | |
1109 ChangeDisplaySettings(NULL, 0); | |
376
a5f60a847a89
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
374
diff
changeset
|
1110 ShowWindow(SDL_Window, SW_HIDE); |
0 | 1111 } |
1112 #endif | |
1113 if ( this->screen->flags & SDL_OPENGL ) { | |
1114 WIN_GL_ShutDown(this); | |
1115 } | |
1116 this->screen->pixels = NULL; | |
1117 } | |
3992 | 1118 if ( screen_pal != NULL ) { |
1119 DeleteObject(screen_pal); | |
1120 screen_pal = NULL; | |
1121 } | |
1122 if ( screen_logpal != NULL ) { | |
1123 SDL_free(screen_logpal); | |
1124 screen_logpal = NULL; | |
1125 } | |
0 | 1126 if ( screen_bmp ) { |
1127 DeleteObject(screen_bmp); | |
1128 screen_bmp = NULL; | |
1129 } | |
1130 if ( screen_icn ) { | |
1131 DestroyIcon(screen_icn); | |
1132 screen_icn = NULL; | |
1133 } | |
1134 DIB_QuitGamma(this); | |
1135 DIB_DestroyWindow(this); | |
1136 | |
1137 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
|
1138 |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
1139 #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
|
1140 |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
1141 // 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
|
1142 if( aygshell ) |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
1143 { |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
1144 FreeLibrary(aygshell); |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
1145 aygshell = NULL; |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
1146 } |
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
1147 #endif |
1881 | 1148 } |
1152
51a8702d8ecd
Updates to PocketPC (WinCE) support, thanks to Dmitry Yakimov at
Ryan C. Gordon <icculus@icculus.org>
parents:
1145
diff
changeset
|
1149 |
1881 | 1150 for ( i=0; i < SDL_arraysize(SDL_modelist); ++i ) { |
1151 if ( !SDL_modelist[i] ) { | |
1152 continue; | |
1153 } | |
1154 for ( j=0; SDL_modelist[i][j]; ++j ) { | |
1155 SDL_free(SDL_modelist[i][j]); | |
1156 } | |
1157 SDL_free(SDL_modelist[i]); | |
1158 SDL_modelist[i] = NULL; | |
1159 SDL_nummodes[i] = 0; | |
0 | 1160 } |
1161 } | |
1162 | |
1163 /* Exported for the windows message loop only */ | |
3992 | 1164 static void DIB_GrabStaticColors(HWND window) |
1165 { | |
4075
0207ca19fd8f
Fixed building on Windows CE
Sam Lantinga <slouken@libsdl.org>
parents:
3992
diff
changeset
|
1166 #ifdef SYSPAL_NOSTATIC |
3992 | 1167 HDC hdc; |
1168 | |
1169 hdc = GetDC(window); | |
1170 SetSystemPaletteUse(hdc, SYSPAL_NOSTATIC256); | |
1171 if ( GetSystemPaletteUse(hdc) != SYSPAL_NOSTATIC256 ) { | |
1172 SetSystemPaletteUse(hdc, SYSPAL_NOSTATIC); | |
1173 } | |
1174 ReleaseDC(window, hdc); | |
4075
0207ca19fd8f
Fixed building on Windows CE
Sam Lantinga <slouken@libsdl.org>
parents:
3992
diff
changeset
|
1175 #endif |
3992 | 1176 } |
1177 static void DIB_ReleaseStaticColors(HWND window) | |
1178 { | |
4075
0207ca19fd8f
Fixed building on Windows CE
Sam Lantinga <slouken@libsdl.org>
parents:
3992
diff
changeset
|
1179 #ifdef SYSPAL_NOSTATIC |
3992 | 1180 HDC hdc; |
1181 | |
1182 hdc = GetDC(window); | |
1183 SetSystemPaletteUse(hdc, SYSPAL_STATIC); | |
1184 ReleaseDC(window, hdc); | |
4075
0207ca19fd8f
Fixed building on Windows CE
Sam Lantinga <slouken@libsdl.org>
parents:
3992
diff
changeset
|
1185 #endif |
3992 | 1186 } |
1187 static void DIB_Activate(_THIS, BOOL active, BOOL minimized) | |
1188 { | |
4079
fda6e33893b7
Always advertise hardware palette, since Windows will remap colors for us.
Sam Lantinga <slouken@libsdl.org>
parents:
4075
diff
changeset
|
1189 if ( grab_palette ) { |
3992 | 1190 if ( !active ) { |
1191 DIB_ReleaseStaticColors(SDL_Window); | |
1192 DIB_RealizePalette(this); | |
1193 } else if ( !minimized ) { | |
1194 DIB_GrabStaticColors(SDL_Window); | |
1195 DIB_RealizePalette(this); | |
1196 } | |
1197 } | |
1198 } | |
1199 static void DIB_RealizePalette(_THIS) | |
0 | 1200 { |
1201 if ( screen_pal != NULL ) { | |
1202 HDC hdc; | |
1203 | |
1204 hdc = GetDC(SDL_Window); | |
4075
0207ca19fd8f
Fixed building on Windows CE
Sam Lantinga <slouken@libsdl.org>
parents:
3992
diff
changeset
|
1205 #ifndef _WIN32_WCE |
3992 | 1206 UnrealizeObject(screen_pal); |
4075
0207ca19fd8f
Fixed building on Windows CE
Sam Lantinga <slouken@libsdl.org>
parents:
3992
diff
changeset
|
1207 #endif |
0 | 1208 SelectPalette(hdc, screen_pal, FALSE); |
3992 | 1209 if ( RealizePalette(hdc) ) { |
0 | 1210 InvalidateRect(SDL_Window, NULL, FALSE); |
3992 | 1211 } |
0 | 1212 ReleaseDC(SDL_Window, hdc); |
1213 } | |
1214 } | |
1215 static void DIB_PaletteChanged(_THIS, HWND window) | |
1216 { | |
1217 if ( window != SDL_Window ) { | |
3992 | 1218 DIB_RealizePalette(this); |
0 | 1219 } |
1220 } | |
1221 | |
1222 /* Exported for the windows message loop only */ | |
1223 static void DIB_WinPAINT(_THIS, HDC hdc) | |
1224 { | |
1225 HDC mdc; | |
1226 | |
1227 if ( screen_pal ) { | |
1228 SelectPalette(hdc, screen_pal, FALSE); | |
1229 } | |
1230 mdc = CreateCompatibleDC(hdc); | |
1231 SelectObject(mdc, screen_bmp); | |
1232 BitBlt(hdc, 0, 0, SDL_VideoSurface->w, SDL_VideoSurface->h, | |
1233 mdc, 0, 0, SRCCOPY); | |
1234 DeleteDC(mdc); | |
1235 } | |
1236 | |
1237 /* 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
|
1238 #if !SDL_AUDIO_DRIVER_DSOUND |
0 | 1239 void DX5_SoundFocus(HWND hwnd) |
1240 { | |
1241 return; | |
1242 } | |
1243 #endif |