Mercurial > sdl-ios-xcode
annotate src/video/x11/SDL_x11video.c @ 449:8a687496061f
Added an environment variable SDL_VIDEO_X11_WMCLASS
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 19 Aug 2002 03:40:44 +0000 |
parents | 406b12a17b15 |
children | ffa4ca907c67 |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
297
f6ffac90895c
Updated copyright information for 2002
Sam Lantinga <slouken@libsdl.org>
parents:
270
diff
changeset
|
3 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga |
0 | 4 |
5 This library is free software; you can redistribute it and/or | |
6 modify it under the terms of the GNU Library General Public | |
7 License as published by the Free Software Foundation; either | |
8 version 2 of the License, or (at your option) any later version. | |
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 | |
13 Library General Public License for more details. | |
14 | |
15 You should have received a copy of the GNU Library General Public | |
16 License along with this library; if not, write to the Free | |
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 | |
19 Sam Lantinga | |
252
e8157fcb3114
Updated the source with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents:
236
diff
changeset
|
20 slouken@libsdl.org |
0 | 21 */ |
22 | |
23 #ifdef SAVE_RCSID | |
24 static char rcsid = | |
25 "@(#) $Id$"; | |
26 #endif | |
27 | |
28 /* X11 based SDL video driver implementation. | |
29 Note: This implementation does not currently need X11 thread locking, | |
30 since the event thread uses a separate X connection and any | |
31 additional locking necessary is handled internally. However, | |
32 if full locking is neccessary, take a look at XInitThreads(). | |
33 */ | |
34 | |
35 #include <stdlib.h> | |
36 #include <stdio.h> | |
37 #include <unistd.h> | |
38 #include <string.h> | |
39 #include <sys/ioctl.h> | |
40 #ifdef MTRR_SUPPORT | |
41 #include <asm/mtrr.h> | |
42 #include <sys/fcntl.h> | |
43 #endif | |
44 | |
45 #ifdef HAVE_ALLOCA_H | |
46 #include <alloca.h> | |
47 #endif | |
48 | |
49 #ifdef HAVE_ALLOCA | |
50 #define ALLOCA(n) ((void*)alloca(n)) | |
51 #define FREEA(p) | |
52 #else | |
53 #define ALLOCA(n) malloc(n) | |
54 #define FREEA(p) free(p) | |
55 #endif | |
56 | |
57 #include "SDL.h" | |
58 #include "SDL_error.h" | |
59 #include "SDL_timer.h" | |
60 #include "SDL_thread.h" | |
61 #include "SDL_video.h" | |
62 #include "SDL_mouse.h" | |
63 #include "SDL_endian.h" | |
64 #include "SDL_sysvideo.h" | |
65 #include "SDL_pixels_c.h" | |
66 #include "SDL_events_c.h" | |
67 #include "SDL_x11video.h" | |
68 #include "SDL_x11wm_c.h" | |
69 #include "SDL_x11mouse_c.h" | |
70 #include "SDL_x11events_c.h" | |
71 #include "SDL_x11modes_c.h" | |
72 #include "SDL_x11image_c.h" | |
73 #include "SDL_x11yuv_c.h" | |
74 #include "SDL_x11gl_c.h" | |
75 #include "SDL_x11gamma_c.h" | |
76 #include "blank_cursor.h" | |
77 | |
78 /* Initialization/Query functions */ | |
79 static int X11_VideoInit(_THIS, SDL_PixelFormat *vformat); | |
80 static SDL_Surface *X11_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags); | |
81 static int X11_ToggleFullScreen(_THIS, int on); | |
82 static void X11_UpdateMouse(_THIS); | |
83 static int X11_SetColors(_THIS, int firstcolor, int ncolors, | |
84 SDL_Color *colors); | |
85 static int X11_SetGammaRamp(_THIS, Uint16 *ramp); | |
86 static void X11_VideoQuit(_THIS); | |
87 | |
88 /* X11 driver bootstrap functions */ | |
89 | |
90 static int X11_Available(void) | |
91 { | |
92 Display *display; | |
93 | |
94 display = XOpenDisplay(NULL); | |
95 if ( display != NULL ) { | |
96 XCloseDisplay(display); | |
97 } | |
98 return(display != NULL); | |
99 } | |
100 | |
101 static void X11_DeleteDevice(SDL_VideoDevice *device) | |
102 { | |
103 if ( device ) { | |
104 if ( device->hidden ) { | |
105 free(device->hidden); | |
106 } | |
107 if ( device->gl_data ) { | |
108 free(device->gl_data); | |
109 } | |
110 free(device); | |
111 } | |
112 } | |
113 | |
114 static SDL_VideoDevice *X11_CreateDevice(int devindex) | |
115 { | |
116 SDL_VideoDevice *device; | |
117 | |
118 /* Initialize all variables that we clean on shutdown */ | |
119 device = (SDL_VideoDevice *)malloc(sizeof(SDL_VideoDevice)); | |
120 if ( device ) { | |
121 memset(device, 0, (sizeof *device)); | |
122 device->hidden = (struct SDL_PrivateVideoData *) | |
123 malloc((sizeof *device->hidden)); | |
124 device->gl_data = (struct SDL_PrivateGLData *) | |
125 malloc((sizeof *device->gl_data)); | |
126 } | |
127 if ( (device == NULL) || (device->hidden == NULL) || | |
128 (device->gl_data == NULL) ) { | |
129 SDL_OutOfMemory(); | |
130 X11_DeleteDevice(device); | |
131 return(0); | |
132 } | |
133 memset(device->hidden, 0, (sizeof *device->hidden)); | |
134 memset(device->gl_data, 0, (sizeof *device->gl_data)); | |
135 | |
136 /* Set the driver flags */ | |
137 device->handles_any_size = 1; | |
138 | |
139 /* Set the function pointers */ | |
140 device->VideoInit = X11_VideoInit; | |
141 device->ListModes = X11_ListModes; | |
142 device->SetVideoMode = X11_SetVideoMode; | |
143 device->ToggleFullScreen = X11_ToggleFullScreen; | |
144 device->UpdateMouse = X11_UpdateMouse; | |
145 #ifdef XFREE86_XV | |
146 device->CreateYUVOverlay = X11_CreateYUVOverlay; | |
147 #endif | |
148 device->SetColors = X11_SetColors; | |
149 device->UpdateRects = NULL; | |
150 device->VideoQuit = X11_VideoQuit; | |
151 device->AllocHWSurface = X11_AllocHWSurface; | |
152 device->CheckHWBlit = NULL; | |
153 device->FillHWRect = NULL; | |
154 device->SetHWColorKey = NULL; | |
155 device->SetHWAlpha = NULL; | |
156 device->LockHWSurface = X11_LockHWSurface; | |
157 device->UnlockHWSurface = X11_UnlockHWSurface; | |
158 device->FlipHWSurface = X11_FlipHWSurface; | |
159 device->FreeHWSurface = X11_FreeHWSurface; | |
160 device->SetGamma = X11_SetVidModeGamma; | |
161 device->GetGamma = X11_GetVidModeGamma; | |
162 device->SetGammaRamp = X11_SetGammaRamp; | |
163 device->GetGammaRamp = NULL; | |
164 #ifdef HAVE_OPENGL | |
165 device->GL_LoadLibrary = X11_GL_LoadLibrary; | |
166 device->GL_GetProcAddress = X11_GL_GetProcAddress; | |
167 device->GL_GetAttribute = X11_GL_GetAttribute; | |
168 device->GL_MakeCurrent = X11_GL_MakeCurrent; | |
169 device->GL_SwapBuffers = X11_GL_SwapBuffers; | |
170 #endif | |
171 device->SetCaption = X11_SetCaption; | |
172 device->SetIcon = X11_SetIcon; | |
173 device->IconifyWindow = X11_IconifyWindow; | |
174 device->GrabInput = X11_GrabInput; | |
175 device->GetWMInfo = X11_GetWMInfo; | |
176 device->FreeWMCursor = X11_FreeWMCursor; | |
177 device->CreateWMCursor = X11_CreateWMCursor; | |
178 device->ShowWMCursor = X11_ShowWMCursor; | |
179 device->WarpWMCursor = X11_WarpWMCursor; | |
180 device->CheckMouseMode = X11_CheckMouseMode; | |
181 device->InitOSKeymap = X11_InitOSKeymap; | |
182 device->PumpEvents = X11_PumpEvents; | |
183 | |
184 device->free = X11_DeleteDevice; | |
185 | |
186 return device; | |
187 } | |
188 | |
189 VideoBootStrap X11_bootstrap = { | |
190 "x11", "X Window System", | |
191 X11_Available, X11_CreateDevice | |
192 }; | |
193 | |
194 /* Shared memory information */ | |
195 extern int XShmQueryExtension(Display *dpy); /* Not in X11 headers */ | |
196 | |
197 /* Normal X11 error handler routine */ | |
198 static int (*X_handler)(Display *, XErrorEvent *) = NULL; | |
199 static int x_errhandler(Display *d, XErrorEvent *e) | |
200 { | |
201 #ifdef XFREE86_VM | |
202 extern int vm_error; | |
203 #endif | |
204 #ifdef XFREE86_DGAMOUSE | |
205 extern int dga_error; | |
206 #endif | |
207 | |
208 #ifdef XFREE86_VM | |
209 /* VidMode errors are non-fatal. :) */ | |
210 /* Are the errors offset by one from the error base? | |
211 e.g. the error base is 143, the code is 148, and the | |
212 actual error is XF86VidModeExtensionDisabled (4) ? | |
213 */ | |
214 if ( (vm_error >= 0) && | |
215 (((e->error_code == BadRequest)&&(e->request_code == vm_error)) || | |
216 ((e->error_code > vm_error) && | |
217 (e->error_code <= (vm_error+XF86VidModeNumberErrors)))) ) { | |
218 #ifdef XFREE86_DEBUG | |
219 { char errmsg[1024]; | |
220 XGetErrorText(d, e->error_code, errmsg, sizeof(errmsg)); | |
221 printf("VidMode error: %s\n", errmsg); | |
222 } | |
223 #endif | |
224 return(0); | |
225 } | |
226 #endif /* XFREE86_VM */ | |
227 | |
228 #ifdef XFREE86_DGAMOUSE | |
229 /* DGA errors can be non-fatal. :) */ | |
230 if ( (dga_error >= 0) && | |
231 ((e->error_code > dga_error) && | |
232 (e->error_code <= (dga_error+XF86DGANumberErrors))) ) { | |
233 #ifdef XFREE86_DEBUG | |
234 { char errmsg[1024]; | |
235 XGetErrorText(d, e->error_code, errmsg, sizeof(errmsg)); | |
236 printf("DGA error: %s\n", errmsg); | |
237 } | |
238 #endif | |
239 return(0); | |
240 } | |
241 #endif /* XFREE86_DGAMOUSE */ | |
242 | |
243 return(X_handler(d,e)); | |
244 } | |
245 | |
246 /* X11 I/O error handler routine */ | |
247 static int (*XIO_handler)(Display *) = NULL; | |
248 static int xio_errhandler(Display *d) | |
249 { | |
250 /* Ack! Lost X11 connection! */ | |
251 | |
252 /* We will crash if we try to clean up our display */ | |
253 if ( current_video->hidden->Ximage ) { | |
254 SDL_VideoSurface->pixels = NULL; | |
255 } | |
256 current_video->hidden->X11_Display = NULL; | |
257 | |
258 /* Continue with the standard X11 error handler */ | |
259 return(XIO_handler(d)); | |
260 } | |
261 | |
262 /* Create auxiliary (toplevel) windows with the current visual */ | |
263 static void create_aux_windows(_THIS) | |
264 { | |
265 XSetWindowAttributes xattr; | |
266 XWMHints *hints; | |
267 XTextProperty titleprop, iconprop; | |
268 int def_vis = (SDL_Visual == DefaultVisual(SDL_Display, SDL_Screen)); | |
269 | |
270 /* Don't create any extra windows if we are being managed */ | |
271 if ( SDL_windowid ) { | |
272 FSwindow = 0; | |
273 WMwindow = strtol(SDL_windowid, NULL, 0); | |
274 return; | |
275 } | |
276 | |
277 if(FSwindow) | |
278 XDestroyWindow(SDL_Display, FSwindow); | |
279 | |
280 xattr.override_redirect = True; | |
281 xattr.background_pixel = def_vis ? BlackPixel(SDL_Display, SDL_Screen) : 0; | |
282 xattr.border_pixel = 0; | |
283 xattr.colormap = SDL_XColorMap; | |
284 | |
285 FSwindow = XCreateWindow(SDL_Display, SDL_Root, 0, 0, 32, 32, 0, | |
286 this->hidden->depth, InputOutput, SDL_Visual, | |
287 CWOverrideRedirect | CWBackPixel | CWBorderPixel | |
288 | CWColormap, | |
289 &xattr); | |
290 | |
291 XSelectInput(SDL_Display, FSwindow, StructureNotifyMask); | |
292 | |
293 /* Tell KDE to keep the fullscreen window on top */ | |
294 { | |
295 XEvent ev; | |
296 long mask; | |
297 | |
298 memset(&ev, 0, sizeof(ev)); | |
299 ev.xclient.type = ClientMessage; | |
300 ev.xclient.window = SDL_Root; | |
301 ev.xclient.message_type = XInternAtom(SDL_Display, | |
302 "KWM_KEEP_ON_TOP", False); | |
303 ev.xclient.format = 32; | |
304 ev.xclient.data.l[0] = FSwindow; | |
305 ev.xclient.data.l[1] = CurrentTime; | |
306 mask = SubstructureRedirectMask; | |
307 XSendEvent(SDL_Display, SDL_Root, False, mask, &ev); | |
308 } | |
309 | |
310 hints = NULL; | |
311 titleprop.value = iconprop.value = NULL; | |
312 if(WMwindow) { | |
313 /* All window attributes must survive the recreation */ | |
314 hints = XGetWMHints(SDL_Display, WMwindow); | |
315 XGetWMName(SDL_Display, WMwindow, &titleprop); | |
316 XGetWMIconName(SDL_Display, WMwindow, &iconprop); | |
317 XDestroyWindow(SDL_Display, WMwindow); | |
318 } | |
319 | |
320 /* Create the window for windowed management */ | |
321 /* (reusing the xattr structure above) */ | |
322 WMwindow = XCreateWindow(SDL_Display, SDL_Root, 0, 0, 32, 32, 0, | |
323 this->hidden->depth, InputOutput, SDL_Visual, | |
324 CWBackPixel | CWBorderPixel | CWColormap, | |
325 &xattr); | |
326 | |
327 /* Set the input hints so we get keyboard input */ | |
328 if(!hints) { | |
329 hints = XAllocWMHints(); | |
330 hints->input = True; | |
331 hints->flags = InputHint; | |
332 } | |
333 XSetWMHints(SDL_Display, WMwindow, hints); | |
334 XFree(hints); | |
335 if(titleprop.value) { | |
336 XSetWMName(SDL_Display, WMwindow, &titleprop); | |
337 XFree(titleprop.value); | |
338 } | |
339 if(iconprop.value) { | |
340 XSetWMIconName(SDL_Display, WMwindow, &iconprop); | |
341 XFree(iconprop.value); | |
342 } | |
343 | |
344 XSelectInput(SDL_Display, WMwindow, | |
345 FocusChangeMask | KeyPressMask | KeyReleaseMask | |
346 | PropertyChangeMask | StructureNotifyMask | KeymapStateMask); | |
347 | |
348 /* Set the class hints so we can get an icon (AfterStep) */ | |
349 { | |
350 XClassHint *classhints; | |
351 classhints = XAllocClassHint(); | |
352 if(classhints != NULL) { | |
449
8a687496061f
Added an environment variable SDL_VIDEO_X11_WMCLASS
Sam Lantinga <slouken@libsdl.org>
parents:
444
diff
changeset
|
353 char *classname = getenv("SDL_VIDEO_X11_WMCLASS"); |
8a687496061f
Added an environment variable SDL_VIDEO_X11_WMCLASS
Sam Lantinga <slouken@libsdl.org>
parents:
444
diff
changeset
|
354 if ( ! classname ) { |
8a687496061f
Added an environment variable SDL_VIDEO_X11_WMCLASS
Sam Lantinga <slouken@libsdl.org>
parents:
444
diff
changeset
|
355 classname = "SDL_App"; |
8a687496061f
Added an environment variable SDL_VIDEO_X11_WMCLASS
Sam Lantinga <slouken@libsdl.org>
parents:
444
diff
changeset
|
356 } |
8a687496061f
Added an environment variable SDL_VIDEO_X11_WMCLASS
Sam Lantinga <slouken@libsdl.org>
parents:
444
diff
changeset
|
357 classhints->res_name = classname; |
8a687496061f
Added an environment variable SDL_VIDEO_X11_WMCLASS
Sam Lantinga <slouken@libsdl.org>
parents:
444
diff
changeset
|
358 classhints->res_class = classname; |
0 | 359 XSetClassHint(SDL_Display, WMwindow, classhints); |
360 XFree(classhints); | |
361 } | |
362 } | |
363 | |
364 /* Allow the window to be deleted by the window manager */ | |
365 WM_DELETE_WINDOW = XInternAtom(SDL_Display, "WM_DELETE_WINDOW", False); | |
366 XSetWMProtocols(SDL_Display, WMwindow, &WM_DELETE_WINDOW, 1); | |
367 } | |
368 | |
369 static int X11_VideoInit(_THIS, SDL_PixelFormat *vformat) | |
370 { | |
371 char *display; | |
372 int i; | |
373 | |
374 /* Open the X11 display */ | |
375 display = NULL; /* Get it from DISPLAY environment variable */ | |
376 | |
377 if ( (strncmp(XDisplayName(display), ":", 1) == 0) || | |
378 (strncmp(XDisplayName(display), "unix:", 5) == 0) ) { | |
379 local_X11 = 1; | |
380 } else { | |
381 local_X11 = 0; | |
382 } | |
383 SDL_Display = XOpenDisplay(display); | |
384 if ( SDL_Display == NULL ) { | |
385 SDL_SetError("Couldn't open X11 display"); | |
386 return(-1); | |
387 } | |
388 #ifdef X11_DEBUG | |
389 XSynchronize(SDL_Display, True); | |
390 #endif | |
391 | |
392 /* Create an alternate X display for graphics updates -- allows us | |
393 to do graphics updates in a separate thread from event handling. | |
394 Thread-safe X11 doesn't seem to exist. | |
395 */ | |
396 GFX_Display = XOpenDisplay(display); | |
397 if ( GFX_Display == NULL ) { | |
398 SDL_SetError("Couldn't open X11 display"); | |
399 return(-1); | |
400 } | |
401 | |
402 /* Set the normal X error handler */ | |
403 X_handler = XSetErrorHandler(x_errhandler); | |
404 | |
405 /* Set the error handler if we lose the X display */ | |
406 XIO_handler = XSetIOErrorHandler(xio_errhandler); | |
407 | |
408 /* use default screen (from $DISPLAY) */ | |
409 SDL_Screen = DefaultScreen(SDL_Display); | |
410 | |
270
37fa1484f71b
From: "Mattias Engdeg�rd" <f91-men@nada.kth.se>
Sam Lantinga <slouken@libsdl.org>
parents:
252
diff
changeset
|
411 use_mitshm = 0; |
0 | 412 #ifndef NO_SHARED_MEMORY |
413 /* Check for MIT shared memory extension */ | |
414 if ( local_X11 ) { | |
415 use_mitshm = XShmQueryExtension(SDL_Display); | |
416 } | |
417 #endif /* NO_SHARED_MEMORY */ | |
418 | |
419 /* Get the available video modes */ | |
420 if(X11_GetVideoModes(this) < 0) | |
421 return -1; | |
422 | |
423 /* Determine the default screen depth: | |
424 Use the default visual (or at least one with the same depth) */ | |
425 SDL_DisplayColormap = DefaultColormap(SDL_Display, SDL_Screen); | |
426 for(i = 0; i < this->hidden->nvisuals; i++) | |
427 if(this->hidden->visuals[i].depth == DefaultDepth(SDL_Display, | |
428 SDL_Screen)) | |
429 break; | |
430 if(i == this->hidden->nvisuals) { | |
431 /* default visual was useless, take the deepest one instead */ | |
432 i = 0; | |
433 } | |
434 SDL_Visual = this->hidden->visuals[i].visual; | |
435 if ( SDL_Visual == DefaultVisual(SDL_Display, SDL_Screen) ) { | |
436 SDL_XColorMap = SDL_DisplayColormap; | |
437 } else { | |
438 SDL_XColorMap = XCreateColormap(SDL_Display, SDL_Root, | |
439 SDL_Visual, AllocNone); | |
440 } | |
441 this->hidden->depth = this->hidden->visuals[i].depth; | |
442 vformat->BitsPerPixel = this->hidden->visuals[i].bpp; | |
443 if ( vformat->BitsPerPixel > 8 ) { | |
444 vformat->Rmask = SDL_Visual->red_mask; | |
445 vformat->Gmask = SDL_Visual->green_mask; | |
446 vformat->Bmask = SDL_Visual->blue_mask; | |
447 } | |
448 X11_SaveVidModeGamma(this); | |
449 | |
450 /* See if we have been passed a window to use */ | |
451 SDL_windowid = getenv("SDL_WINDOWID"); | |
452 | |
453 /* Create the fullscreen and managed windows */ | |
454 create_aux_windows(this); | |
455 | |
456 /* Create the blank cursor */ | |
457 SDL_BlankCursor = this->CreateWMCursor(this, blank_cdata, blank_cmask, | |
458 BLANK_CWIDTH, BLANK_CHEIGHT, | |
459 BLANK_CHOTX, BLANK_CHOTY); | |
460 | |
461 /* Fill in some window manager capabilities */ | |
462 this->info.wm_available = 1; | |
463 | |
464 /* We're done! */ | |
465 XFlush(SDL_Display); | |
466 return(0); | |
467 } | |
468 | |
469 static void X11_DestroyWindow(_THIS, SDL_Surface *screen) | |
470 { | |
471 /* Clean up OpenGL */ | |
472 if ( screen ) { | |
473 screen->flags &= ~(SDL_OPENGL|SDL_OPENGLBLIT); | |
474 } | |
475 X11_GL_Shutdown(this); | |
476 | |
477 if ( ! SDL_windowid ) { | |
478 /* Hide the managed window */ | |
479 if ( WMwindow ) { | |
480 XUnmapWindow(SDL_Display, WMwindow); | |
481 } | |
482 if ( screen && (screen->flags & SDL_FULLSCREEN) ) { | |
483 screen->flags &= ~SDL_FULLSCREEN; | |
484 X11_LeaveFullScreen(this); | |
485 } | |
486 | |
487 /* Destroy the output window */ | |
488 if ( SDL_Window ) { | |
489 XDestroyWindow(SDL_Display, SDL_Window); | |
490 } | |
491 | |
492 /* Free the colormap entries */ | |
493 if ( SDL_XPixels ) { | |
494 int numcolors; | |
495 unsigned long pixel; | |
496 numcolors = SDL_Visual->map_entries; | |
497 for ( pixel=0; pixel<numcolors; ++pixel ) { | |
498 while ( SDL_XPixels[pixel] > 0 ) { | |
499 XFreeColors(GFX_Display, | |
500 SDL_DisplayColormap,&pixel,1,0); | |
501 --SDL_XPixels[pixel]; | |
502 } | |
503 } | |
504 free(SDL_XPixels); | |
505 SDL_XPixels = NULL; | |
506 } | |
507 | |
508 /* Free the graphics context */ | |
509 if ( SDL_GC ) { | |
510 XFreeGC(SDL_Display, SDL_GC); | |
511 SDL_GC = 0; | |
512 } | |
513 } | |
514 } | |
515 | |
516 static void X11_SetSizeHints(_THIS, int w, int h, Uint32 flags) | |
517 { | |
518 XSizeHints *hints; | |
519 | |
520 hints = XAllocSizeHints(); | |
521 if ( hints ) { | |
522 if ( flags & SDL_RESIZABLE ) { | |
523 hints->min_width = 32; | |
524 hints->min_height = 32; | |
525 hints->max_height = 4096; | |
526 hints->max_width = 4096; | |
527 } else { | |
528 hints->min_width = hints->max_width = w; | |
529 hints->min_height = hints->max_height = h; | |
530 } | |
531 hints->flags = PMaxSize | PMinSize; | |
532 if ( flags & SDL_FULLSCREEN ) { | |
533 hints->x = 0; | |
534 hints->y = 0; | |
535 hints->flags |= USPosition; | |
536 } else | |
537 /* Center it, if desired */ | |
538 if ( getenv("SDL_VIDEO_CENTERED") ) { | |
539 int display_w, display_h; | |
540 | |
541 display_w = DisplayWidth(SDL_Display, SDL_Screen); | |
542 display_h = DisplayHeight(SDL_Display, SDL_Screen); | |
543 hints->x = (display_w - w)/2; | |
544 hints->y = (display_h - h)/2; | |
545 hints->flags |= USPosition; | |
546 XMoveWindow(SDL_Display, WMwindow, hints->x, hints->y); | |
547 | |
548 /* Flush the resize event so we don't catch it later */ | |
549 XSync(SDL_Display, True); | |
550 } | |
551 XSetWMNormalHints(SDL_Display, WMwindow, hints); | |
552 XFree(hints); | |
553 } | |
554 | |
555 /* Respect the window caption style */ | |
556 if ( flags & SDL_NOFRAME ) { | |
557 SDL_bool set; | |
558 Atom WM_HINTS; | |
559 | |
560 /* We haven't modified the window manager hints yet */ | |
561 set = SDL_FALSE; | |
562 | |
563 /* First try to set MWM hints */ | |
564 WM_HINTS = XInternAtom(SDL_Display, "_MOTIF_WM_HINTS", True); | |
565 if ( WM_HINTS != None ) { | |
566 /* Hints used by Motif compliant window managers */ | |
567 struct { | |
568 unsigned long flags; | |
569 unsigned long functions; | |
570 unsigned long decorations; | |
571 long input_mode; | |
572 unsigned long status; | |
573 } MWMHints = { (1L << 1), 0, 0, 0, 0 }; | |
574 | |
575 XChangeProperty(SDL_Display, WMwindow, | |
576 WM_HINTS, WM_HINTS, 32, | |
577 PropModeReplace, | |
578 (unsigned char *)&MWMHints, | |
579 sizeof(MWMHints)/sizeof(long)); | |
580 set = SDL_TRUE; | |
581 } | |
582 /* Now try to set KWM hints */ | |
583 WM_HINTS = XInternAtom(SDL_Display, "KWM_WIN_DECORATION", True); | |
584 if ( WM_HINTS != None ) { | |
585 long KWMHints = 0; | |
586 | |
587 XChangeProperty(SDL_Display, WMwindow, | |
588 WM_HINTS, WM_HINTS, 32, | |
589 PropModeReplace, | |
590 (unsigned char *)&KWMHints, | |
591 sizeof(KWMHints)/sizeof(long)); | |
592 set = SDL_TRUE; | |
593 } | |
594 /* Now try to set GNOME hints */ | |
595 WM_HINTS = XInternAtom(SDL_Display, "_WIN_HINTS", True); | |
596 if ( WM_HINTS != None ) { | |
597 long GNOMEHints = 0; | |
598 | |
599 XChangeProperty(SDL_Display, WMwindow, | |
600 WM_HINTS, WM_HINTS, 32, | |
601 PropModeReplace, | |
602 (unsigned char *)&GNOMEHints, | |
603 sizeof(GNOMEHints)/sizeof(long)); | |
604 set = SDL_TRUE; | |
605 } | |
606 /* Finally set the transient hints if necessary */ | |
607 if ( ! set ) { | |
608 XSetTransientForHint(SDL_Display, WMwindow, SDL_Root); | |
609 } | |
610 } else { | |
611 SDL_bool set; | |
612 Atom WM_HINTS; | |
613 | |
614 /* We haven't modified the window manager hints yet */ | |
615 set = SDL_FALSE; | |
616 | |
617 /* First try to unset MWM hints */ | |
618 WM_HINTS = XInternAtom(SDL_Display, "_MOTIF_WM_HINTS", True); | |
619 if ( WM_HINTS != None ) { | |
620 XDeleteProperty(SDL_Display, WMwindow, WM_HINTS); | |
621 set = SDL_TRUE; | |
622 } | |
623 /* Now try to unset KWM hints */ | |
624 WM_HINTS = XInternAtom(SDL_Display, "KWM_WIN_DECORATION", True); | |
625 if ( WM_HINTS != None ) { | |
626 XDeleteProperty(SDL_Display, WMwindow, WM_HINTS); | |
627 set = SDL_TRUE; | |
628 } | |
629 /* Now try to unset GNOME hints */ | |
630 WM_HINTS = XInternAtom(SDL_Display, "_WIN_HINTS", True); | |
631 if ( WM_HINTS != None ) { | |
632 XDeleteProperty(SDL_Display, WMwindow, WM_HINTS); | |
633 set = SDL_TRUE; | |
634 } | |
635 /* Finally unset the transient hints if necessary */ | |
636 if ( ! set ) { | |
637 /* NOTE: Does this work? */ | |
638 XSetTransientForHint(SDL_Display, WMwindow, None); | |
639 } | |
640 } | |
641 } | |
642 | |
643 static int X11_CreateWindow(_THIS, SDL_Surface *screen, | |
644 int w, int h, int bpp, Uint32 flags) | |
645 { | |
646 int i, depth; | |
647 Visual *vis; | |
648 int vis_change; | |
649 | |
650 /* If a window is already present, destroy it and start fresh */ | |
651 if ( SDL_Window ) { | |
652 X11_DestroyWindow(this, screen); | |
653 } | |
654 | |
655 /* See if we have been given a window id */ | |
656 if ( SDL_windowid ) { | |
657 SDL_Window = strtol(SDL_windowid, NULL, 0); | |
658 } else { | |
659 SDL_Window = 0; | |
660 } | |
661 | |
662 /* find out which visual we are going to use */ | |
663 if ( flags & SDL_OPENGL ) { | |
664 XVisualInfo *vi; | |
665 | |
666 vi = X11_GL_GetVisual(this); | |
667 if( !vi ) { | |
668 return -1; | |
669 } | |
670 vis = vi->visual; | |
671 depth = vi->depth; | |
672 } else if ( SDL_windowid ) { | |
673 XWindowAttributes a; | |
674 | |
675 XGetWindowAttributes(SDL_Display, SDL_Window, &a); | |
676 vis = a.visual; | |
677 depth = a.depth; | |
678 } else { | |
679 for ( i = 0; i < this->hidden->nvisuals; i++ ) { | |
680 if ( this->hidden->visuals[i].bpp == bpp ) | |
681 break; | |
682 } | |
683 if ( i == this->hidden->nvisuals ) { | |
684 SDL_SetError("No matching visual for requested depth"); | |
685 return -1; /* should never happen */ | |
686 } | |
687 vis = this->hidden->visuals[i].visual; | |
688 depth = this->hidden->visuals[i].depth; | |
689 } | |
690 #ifdef X11_DEBUG | |
691 printf("Choosing %s visual at %d bpp - %d colormap entries\n", vis->class == PseudoColor ? "PseudoColor" : (vis->class == TrueColor ? "TrueColor" : (vis->class == DirectColor ? "DirectColor" : "Unknown")), depth, vis->map_entries); | |
692 #endif | |
693 vis_change = (vis != SDL_Visual); | |
694 SDL_Visual = vis; | |
695 this->hidden->depth = depth; | |
696 | |
697 /* Allocate the new pixel format for this video mode */ | |
698 if ( ! SDL_ReallocFormat(screen, bpp, | |
699 vis->red_mask, vis->green_mask, vis->blue_mask, 0) ) | |
700 return -1; | |
701 | |
702 /* Create the appropriate colormap */ | |
703 if ( SDL_XColorMap != SDL_DisplayColormap ) { | |
704 XFreeColormap(SDL_Display, SDL_XColorMap); | |
705 } | |
706 if ( SDL_Visual->class == PseudoColor ) { | |
707 int ncolors; | |
708 | |
709 /* Allocate the pixel flags */ | |
710 ncolors = SDL_Visual->map_entries; | |
711 SDL_XPixels = malloc(ncolors * sizeof(int)); | |
712 if(SDL_XPixels == NULL) { | |
713 SDL_OutOfMemory(); | |
714 return -1; | |
715 } | |
716 memset(SDL_XPixels, 0, ncolors * sizeof(*SDL_XPixels)); | |
717 | |
718 /* always allocate a private colormap on non-default visuals */ | |
719 if ( SDL_Visual != DefaultVisual(SDL_Display, SDL_Screen) ) { | |
720 flags |= SDL_HWPALETTE; | |
721 } | |
722 if ( flags & SDL_HWPALETTE ) { | |
723 screen->flags |= SDL_HWPALETTE; | |
724 SDL_XColorMap = XCreateColormap(SDL_Display, SDL_Root, | |
725 SDL_Visual, AllocAll); | |
726 } else { | |
727 SDL_XColorMap = SDL_DisplayColormap; | |
728 } | |
729 } else if ( SDL_Visual->class == DirectColor ) { | |
730 | |
731 /* Create a colormap which we can manipulate for gamma */ | |
732 SDL_XColorMap = XCreateColormap(SDL_Display, SDL_Root, | |
733 SDL_Visual, AllocAll); | |
734 XSync(SDL_Display, False); | |
735 | |
736 /* Initialize the colormap to the identity mapping */ | |
737 SDL_GetGammaRamp(0, 0, 0); | |
738 this->screen = screen; | |
739 X11_SetGammaRamp(this, this->gamma); | |
740 this->screen = NULL; | |
741 } else { | |
742 /* Create a read-only colormap for our window */ | |
743 SDL_XColorMap = XCreateColormap(SDL_Display, SDL_Root, | |
744 SDL_Visual, AllocNone); | |
745 } | |
746 | |
747 /* Recreate the auxiliary windows, if needed (required for GL) */ | |
748 if ( vis_change ) | |
749 create_aux_windows(this); | |
750 | |
751 if(screen->flags & SDL_HWPALETTE) { | |
752 /* Since the full-screen window might have got a nonzero background | |
753 colour (0 is white on some displays), we should reset the | |
754 background to 0 here since that is what the user expects | |
755 with a private colormap */ | |
756 XSetWindowBackground(SDL_Display, FSwindow, 0); | |
757 XClearWindow(SDL_Display, FSwindow); | |
758 } | |
759 | |
760 /* resize the (possibly new) window manager window */ | |
761 if( !SDL_windowid ) { | |
762 X11_SetSizeHints(this, w, h, flags); | |
763 current_w = w; | |
764 current_h = h; | |
765 XResizeWindow(SDL_Display, WMwindow, w, h); | |
766 } | |
767 | |
768 /* Create (or use) the X11 display window */ | |
769 if ( !SDL_windowid ) { | |
770 if ( flags & SDL_OPENGL ) { | |
771 if ( X11_GL_CreateWindow(this, w, h) < 0 ) { | |
772 return(-1); | |
773 } | |
774 } else { | |
775 XSetWindowAttributes swa; | |
776 | |
777 swa.background_pixel = 0; | |
778 swa.border_pixel = 0; | |
779 swa.colormap = SDL_XColorMap; | |
780 SDL_Window = XCreateWindow(SDL_Display, WMwindow, | |
781 0, 0, w, h, 0, depth, | |
782 InputOutput, SDL_Visual, | |
783 CWBackPixel | CWBorderPixel | |
784 | CWColormap, &swa); | |
785 } | |
786 /* Only manage our input if we own the window */ | |
787 XSelectInput(SDL_Display, SDL_Window, | |
788 ( EnterWindowMask | LeaveWindowMask | |
789 | ButtonPressMask | ButtonReleaseMask | |
790 | PointerMotionMask | ExposureMask )); | |
791 } | |
792 | |
793 /* Create the graphics context here, once we have a window */ | |
794 if ( flags & SDL_OPENGL ) { | |
795 if ( X11_GL_CreateContext(this) < 0 ) { | |
796 return(-1); | |
797 } else { | |
798 screen->flags |= SDL_OPENGL; | |
799 } | |
800 } else { | |
801 XGCValues gcv; | |
802 | |
803 gcv.graphics_exposures = False; | |
804 SDL_GC = XCreateGC(SDL_Display, SDL_Window, | |
805 GCGraphicsExposures, &gcv); | |
806 if ( ! SDL_GC ) { | |
807 SDL_SetError("Couldn't create graphics context"); | |
808 return(-1); | |
809 } | |
810 } | |
811 | |
812 /* Set our colormaps when not setting a GL mode */ | |
813 if ( ! (flags & SDL_OPENGL) ) { | |
814 XSetWindowColormap(SDL_Display, SDL_Window, SDL_XColorMap); | |
815 if( !SDL_windowid ) { | |
816 XSetWindowColormap(SDL_Display, FSwindow, SDL_XColorMap); | |
817 XSetWindowColormap(SDL_Display, WMwindow, SDL_XColorMap); | |
818 } | |
819 } | |
820 | |
821 #if 0 /* This is an experiment - are the graphics faster now? - nope. */ | |
822 if ( getenv("SDL_VIDEO_X11_BACKINGSTORE") ) | |
823 #endif | |
824 /* Cache the window in the server, when possible */ | |
825 { | |
826 Screen *xscreen; | |
827 XSetWindowAttributes a; | |
828 | |
829 xscreen = ScreenOfDisplay(SDL_Display, SDL_Screen); | |
830 a.backing_store = DoesBackingStore(xscreen); | |
831 if ( a.backing_store != NotUseful ) { | |
832 XChangeWindowAttributes(SDL_Display, SDL_Window, | |
833 CWBackingStore, &a); | |
834 } | |
835 } | |
836 | |
837 /* Update the internal keyboard state */ | |
838 X11_SetKeyboardState(SDL_Display, NULL); | |
839 | |
444
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
840 /* When the window is first mapped, ignore non-modifier keys */ |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
841 { |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
842 Uint8 *keys = SDL_GetKeyState(NULL); |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
843 for ( i = 0; i < SDLK_LAST; ++i ) { |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
844 switch (i) { |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
845 case SDLK_NUMLOCK: |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
846 case SDLK_CAPSLOCK: |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
847 case SDLK_LCTRL: |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
848 case SDLK_RCTRL: |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
849 case SDLK_LSHIFT: |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
850 case SDLK_RSHIFT: |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
851 case SDLK_LALT: |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
852 case SDLK_RALT: |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
853 case SDLK_LMETA: |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
854 case SDLK_RMETA: |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
855 case SDLK_MODE: |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
856 break; |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
857 default: |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
858 keys[i] = SDL_RELEASED; |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
859 break; |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
860 } |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
861 } |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
862 } |
406b12a17b15
Only modifier key state is noted when X11 window opens
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
863 |
0 | 864 /* Map them both and go fullscreen, if requested */ |
865 if ( ! SDL_windowid ) { | |
866 XMapWindow(SDL_Display, SDL_Window); | |
867 XMapWindow(SDL_Display, WMwindow); | |
160 | 868 X11_WaitMapped(this, WMwindow); |
0 | 869 if ( flags & SDL_FULLSCREEN ) { |
870 screen->flags |= SDL_FULLSCREEN; | |
871 X11_EnterFullScreen(this); | |
872 } else { | |
873 screen->flags &= ~SDL_FULLSCREEN; | |
874 } | |
875 } | |
876 return(0); | |
877 } | |
878 | |
879 static int X11_ResizeWindow(_THIS, | |
880 SDL_Surface *screen, int w, int h, Uint32 flags) | |
881 { | |
882 if ( ! SDL_windowid ) { | |
883 /* Resize the window manager window */ | |
884 X11_SetSizeHints(this, w, h, flags); | |
885 current_w = w; | |
886 current_h = h; | |
887 XResizeWindow(SDL_Display, WMwindow, w, h); | |
888 | |
889 /* Resize the fullscreen and display windows */ | |
890 if ( flags & SDL_FULLSCREEN ) { | |
891 if ( screen->flags & SDL_FULLSCREEN ) { | |
892 X11_ResizeFullScreen(this); | |
893 } else { | |
894 screen->flags |= SDL_FULLSCREEN; | |
895 X11_EnterFullScreen(this); | |
896 } | |
897 } else { | |
898 if ( screen->flags & SDL_FULLSCREEN ) { | |
899 screen->flags &= ~SDL_FULLSCREEN; | |
900 X11_LeaveFullScreen(this); | |
901 } | |
902 } | |
903 XResizeWindow(SDL_Display, SDL_Window, w, h); | |
904 } | |
905 return(0); | |
906 } | |
907 | |
908 SDL_Surface *X11_SetVideoMode(_THIS, SDL_Surface *current, | |
909 int width, int height, int bpp, Uint32 flags) | |
910 { | |
911 Uint32 saved_flags; | |
912 | |
913 /* Lock the event thread, in multi-threading environments */ | |
914 SDL_Lock_EventThread(); | |
915 | |
916 /* Check the combination of flags we were passed */ | |
917 if ( flags & SDL_FULLSCREEN ) { | |
918 /* Clear fullscreen flag if not supported */ | |
919 if ( SDL_windowid ) { | |
920 flags &= ~SDL_FULLSCREEN; | |
921 } | |
922 } | |
923 | |
924 /* Flush any delayed updates */ | |
925 XSync(GFX_Display, False); | |
926 | |
927 /* Set up the X11 window */ | |
928 saved_flags = current->flags; | |
929 if (SDL_Window && (saved_flags&SDL_OPENGL) == (flags&SDL_OPENGL) | |
930 && bpp == current->format->BitsPerPixel) { | |
931 if (X11_ResizeWindow(this, current, width, height, flags) < 0) { | |
932 current = NULL; | |
933 goto done; | |
934 } | |
935 } else { | |
936 if (X11_CreateWindow(this,current,width,height,bpp,flags) < 0) { | |
937 current = NULL; | |
938 goto done; | |
939 } | |
940 } | |
941 | |
942 /* Set up the new mode framebuffer */ | |
943 if ( ((current->w != width) || (current->h != height)) || | |
944 ((saved_flags&SDL_OPENGL) != (flags&SDL_OPENGL)) ) { | |
945 current->w = width; | |
946 current->h = height; | |
947 current->pitch = SDL_CalculatePitch(current); | |
948 X11_ResizeImage(this, current, flags); | |
949 } | |
950 current->flags |= (flags&(SDL_RESIZABLE|SDL_NOFRAME)); | |
951 | |
952 done: | |
953 /* Release the event thread */ | |
954 XSync(SDL_Display, False); | |
955 SDL_Unlock_EventThread(); | |
956 | |
957 /* We're done! */ | |
958 return(current); | |
959 } | |
960 | |
961 static int X11_ToggleFullScreen(_THIS, int on) | |
962 { | |
963 Uint32 event_thread; | |
964 | |
965 /* Don't switch if we don't own the window */ | |
966 if ( SDL_windowid ) { | |
967 return(0); | |
968 } | |
969 | |
970 /* Don't lock if we are the event thread */ | |
971 event_thread = SDL_EventThreadID(); | |
972 if ( event_thread && (SDL_ThreadID() == event_thread) ) { | |
973 event_thread = 0; | |
974 } | |
975 if ( event_thread ) { | |
976 SDL_Lock_EventThread(); | |
977 } | |
978 if ( on ) { | |
979 this->screen->flags |= SDL_FULLSCREEN; | |
980 X11_EnterFullScreen(this); | |
981 } else { | |
982 this->screen->flags &= ~SDL_FULLSCREEN; | |
983 X11_LeaveFullScreen(this); | |
984 } | |
985 X11_RefreshDisplay(this); | |
986 if ( event_thread ) { | |
987 SDL_Unlock_EventThread(); | |
988 } | |
989 SDL_ResetKeyboard(); | |
990 return(1); | |
991 } | |
992 | |
993 /* Update the current mouse state and position */ | |
994 static void X11_UpdateMouse(_THIS) | |
995 { | |
996 Window u1; int u2; | |
997 Window current_win; | |
998 int x, y; | |
999 unsigned int mask; | |
1000 | |
1001 /* Lock the event thread, in multi-threading environments */ | |
1002 SDL_Lock_EventThread(); | |
1003 if ( XQueryPointer(SDL_Display, SDL_Window, &u1, ¤t_win, | |
1004 &u2, &u2, &x, &y, &mask) ) { | |
1005 if ( (x >= 0) && (x < SDL_VideoSurface->w) && | |
1006 (y >= 0) && (y < SDL_VideoSurface->h) ) { | |
1007 SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS); | |
1008 SDL_PrivateMouseMotion(0, 0, x, y); | |
1009 } else { | |
1010 SDL_PrivateAppActive(0, SDL_APPMOUSEFOCUS); | |
1011 } | |
1012 } | |
1013 SDL_Unlock_EventThread(); | |
1014 } | |
1015 | |
1016 /* simple colour distance metric. Supposed to be better than a plain | |
1017 Euclidian distance anyway. */ | |
1018 #define COLOUR_FACTOR 3 | |
1019 #define LIGHT_FACTOR 1 | |
1020 #define COLOUR_DIST(r1, g1, b1, r2, g2, b2) \ | |
1021 (COLOUR_FACTOR * (abs(r1 - r2) + abs(g1 - g2) + abs(b1 - b2)) \ | |
1022 + LIGHT_FACTOR * abs(r1 + g1 + b1 - (r2 + g2 + b2))) | |
1023 | |
1024 static void allocate_nearest(_THIS, SDL_Color *colors, | |
1025 SDL_Color *want, int nwant) | |
1026 { | |
1027 /* | |
1028 * There is no way to know which ones to choose from, so we retrieve | |
1029 * the entire colormap and try the nearest possible, until we find one | |
1030 * that is shared. | |
1031 */ | |
1032 XColor all[256]; | |
1033 int i; | |
1034 for(i = 0; i < 256; i++) | |
1035 all[i].pixel = i; | |
1036 /* | |
1037 * XQueryColors sets the flags in the XColor struct, so we use | |
1038 * that to keep track of which colours are available | |
1039 */ | |
1040 XQueryColors(GFX_Display, SDL_XColorMap, all, 256); | |
1041 | |
1042 for(i = 0; i < nwant; i++) { | |
1043 XColor *c; | |
1044 int j; | |
1045 int best = 0; | |
1046 int mindist = 0x7fffffff; | |
1047 int ri = want[i].r; | |
1048 int gi = want[i].g; | |
1049 int bi = want[i].b; | |
1050 for(j = 0; j < 256; j++) { | |
1051 int rj, gj, bj, d2; | |
1052 if(!all[j].flags) | |
1053 continue; /* unavailable colour cell */ | |
1054 rj = all[j].red >> 8; | |
1055 gj = all[j].green >> 8; | |
1056 bj = all[j].blue >> 8; | |
1057 d2 = COLOUR_DIST(ri, gi, bi, rj, gj, bj); | |
1058 if(d2 < mindist) { | |
1059 mindist = d2; | |
1060 best = j; | |
1061 } | |
1062 } | |
1063 if(SDL_XPixels[best]) | |
1064 continue; /* already allocated, waste no more time */ | |
1065 c = all + best; | |
1066 if(XAllocColor(GFX_Display, SDL_XColorMap, c)) { | |
1067 /* got it */ | |
236
3f09f52ac2cc
Fixed X11 icon color allocation (thanks Mattias!)
Sam Lantinga <slouken@libsdl.org>
parents:
160
diff
changeset
|
1068 colors[c->pixel].r = c->red >> 8; |
3f09f52ac2cc
Fixed X11 icon color allocation (thanks Mattias!)
Sam Lantinga <slouken@libsdl.org>
parents:
160
diff
changeset
|
1069 colors[c->pixel].g = c->green >> 8; |
3f09f52ac2cc
Fixed X11 icon color allocation (thanks Mattias!)
Sam Lantinga <slouken@libsdl.org>
parents:
160
diff
changeset
|
1070 colors[c->pixel].b = c->blue >> 8; |
3f09f52ac2cc
Fixed X11 icon color allocation (thanks Mattias!)
Sam Lantinga <slouken@libsdl.org>
parents:
160
diff
changeset
|
1071 ++SDL_XPixels[c->pixel]; |
0 | 1072 } else { |
1073 /* | |
1074 * The colour couldn't be allocated, probably being | |
1075 * owned as a r/w cell by another client. Flag it as | |
1076 * unavailable and try again. The termination of the | |
1077 * loop is guaranteed since at least black and white | |
1078 * are always there. | |
1079 */ | |
1080 c->flags = 0; | |
1081 i--; | |
1082 } | |
1083 } | |
1084 } | |
1085 | |
1086 int X11_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors) | |
1087 { | |
1088 int nrej = 0; | |
1089 | |
1090 /* Check to make sure we have a colormap allocated */ | |
1091 if ( SDL_XPixels == NULL ) { | |
1092 return(0); | |
1093 } | |
1094 if ( (this->screen->flags & SDL_HWPALETTE) == SDL_HWPALETTE ) { | |
1095 /* private writable colormap: just set the colours we need */ | |
1096 XColor *xcmap; | |
1097 int i; | |
1098 xcmap = ALLOCA(ncolors*sizeof(*xcmap)); | |
1099 if(xcmap == NULL) | |
1100 return 0; | |
1101 for ( i=0; i<ncolors; ++i ) { | |
1102 xcmap[i].pixel = i + firstcolor; | |
1103 xcmap[i].red = (colors[i].r<<8)|colors[i].r; | |
1104 xcmap[i].green = (colors[i].g<<8)|colors[i].g; | |
1105 xcmap[i].blue = (colors[i].b<<8)|colors[i].b; | |
1106 xcmap[i].flags = (DoRed|DoGreen|DoBlue); | |
1107 } | |
1108 XStoreColors(GFX_Display, SDL_XColorMap, xcmap, ncolors); | |
1109 XSync(GFX_Display, False); | |
1110 FREEA(xcmap); | |
1111 } else { | |
1112 /* | |
1113 * Shared colormap: We only allocate read-only cells, which | |
1114 * increases the likelyhood of colour sharing with other | |
1115 * clients. The pixel values will almost certainly be | |
1116 * different from the requested ones, so the user has to | |
1117 * walk the colormap and see which index got what colour. | |
1118 * | |
1119 * We can work directly with the logical palette since it | |
1120 * has already been set when we get here. | |
1121 */ | |
1122 SDL_Color *want, *reject; | |
1123 unsigned long *freelist; | |
1124 int i; | |
1125 int nfree = 0; | |
1126 int nc = this->screen->format->palette->ncolors; | |
1127 colors = this->screen->format->palette->colors; | |
1128 freelist = ALLOCA(nc * sizeof(*freelist)); | |
1129 /* make sure multiple allocations of the same cell are freed */ | |
1130 for(i = 0; i < ncolors; i++) { | |
1131 int pixel = firstcolor + i; | |
1132 while(SDL_XPixels[pixel]) { | |
1133 freelist[nfree++] = pixel; | |
1134 --SDL_XPixels[pixel]; | |
1135 } | |
1136 } | |
1137 XFreeColors(GFX_Display, SDL_XColorMap, freelist, nfree, 0); | |
1138 FREEA(freelist); | |
1139 | |
1140 want = ALLOCA(ncolors * sizeof(SDL_Color)); | |
1141 reject = ALLOCA(ncolors * sizeof(SDL_Color)); | |
1142 memcpy(want, colors + firstcolor, ncolors * sizeof(SDL_Color)); | |
1143 /* make sure the user isn't fooled by her own wishes | |
1144 (black is safe, always available in the default colormap) */ | |
1145 memset(colors + firstcolor, 0, ncolors * sizeof(SDL_Color)); | |
1146 | |
1147 /* now try to allocate the colours */ | |
1148 for(i = 0; i < ncolors; i++) { | |
1149 XColor col; | |
1150 col.red = want[i].r << 8; | |
1151 col.green = want[i].g << 8; | |
1152 col.blue = want[i].b << 8; | |
1153 col.flags = DoRed | DoGreen | DoBlue; | |
1154 if(XAllocColor(GFX_Display, SDL_XColorMap, &col)) { | |
1155 /* We got the colour, or at least the nearest | |
1156 the hardware could get. */ | |
1157 colors[col.pixel].r = col.red >> 8; | |
1158 colors[col.pixel].g = col.green >> 8; | |
1159 colors[col.pixel].b = col.blue >> 8; | |
1160 ++SDL_XPixels[col.pixel]; | |
1161 } else { | |
1162 /* | |
1163 * no more free cells, add it to the list | |
1164 * of rejected colours | |
1165 */ | |
1166 reject[nrej++] = want[i]; | |
1167 } | |
1168 } | |
1169 if(nrej) | |
1170 allocate_nearest(this, colors, reject, nrej); | |
1171 FREEA(reject); | |
1172 FREEA(want); | |
1173 } | |
1174 return nrej == 0; | |
1175 } | |
1176 | |
1177 int X11_SetGammaRamp(_THIS, Uint16 *ramp) | |
1178 { | |
1179 int i, ncolors; | |
1180 XColor xcmap[256]; | |
1181 | |
1182 /* See if actually setting the gamma is supported */ | |
1183 if ( SDL_Visual->class != DirectColor ) { | |
1184 SDL_SetError("Gamma correction not supported on this visual"); | |
1185 return(-1); | |
1186 } | |
1187 | |
1188 /* Calculate the appropriate palette for the given gamma ramp */ | |
1189 ncolors = SDL_Visual->map_entries; | |
1190 for ( i=0; i<ncolors; ++i ) { | |
1191 Uint8 c = (256 * i / ncolors); | |
1192 xcmap[i].pixel = SDL_MapRGB(this->screen->format, c, c, c); | |
1193 xcmap[i].red = ramp[0*256+c]; | |
1194 xcmap[i].green = ramp[1*256+c]; | |
1195 xcmap[i].blue = ramp[2*256+c]; | |
1196 xcmap[i].flags = (DoRed|DoGreen|DoBlue); | |
1197 } | |
1198 XStoreColors(GFX_Display, SDL_XColorMap, xcmap, ncolors); | |
1199 XSync(GFX_Display, False); | |
1200 return(0); | |
1201 } | |
1202 | |
1203 /* Note: If we are terminated, this could be called in the middle of | |
1204 another SDL video routine -- notably UpdateRects. | |
1205 */ | |
1206 void X11_VideoQuit(_THIS) | |
1207 { | |
1208 /* Shutdown everything that's still up */ | |
1209 /* The event thread should be done, so we can touch SDL_Display */ | |
1210 if ( SDL_Display != NULL ) { | |
1211 /* Flush any delayed updates */ | |
1212 XSync(GFX_Display, False); | |
1213 | |
1214 /* Start shutting down the windows */ | |
1215 X11_DestroyImage(this, this->screen); | |
1216 X11_DestroyWindow(this, this->screen); | |
1217 X11_FreeVideoModes(this); | |
1218 if ( SDL_XColorMap != SDL_DisplayColormap ) { | |
1219 XFreeColormap(SDL_Display, SDL_XColorMap); | |
1220 } | |
1221 if ( SDL_iconcolors ) { | |
1222 unsigned long pixel; | |
236
3f09f52ac2cc
Fixed X11 icon color allocation (thanks Mattias!)
Sam Lantinga <slouken@libsdl.org>
parents:
160
diff
changeset
|
1223 Colormap dcmap = DefaultColormap(SDL_Display, |
3f09f52ac2cc
Fixed X11 icon color allocation (thanks Mattias!)
Sam Lantinga <slouken@libsdl.org>
parents:
160
diff
changeset
|
1224 SDL_Screen); |
3f09f52ac2cc
Fixed X11 icon color allocation (thanks Mattias!)
Sam Lantinga <slouken@libsdl.org>
parents:
160
diff
changeset
|
1225 for(pixel = 0; pixel < 256; ++pixel) { |
3f09f52ac2cc
Fixed X11 icon color allocation (thanks Mattias!)
Sam Lantinga <slouken@libsdl.org>
parents:
160
diff
changeset
|
1226 while(SDL_iconcolors[pixel] > 0) { |
3f09f52ac2cc
Fixed X11 icon color allocation (thanks Mattias!)
Sam Lantinga <slouken@libsdl.org>
parents:
160
diff
changeset
|
1227 XFreeColors(GFX_Display, |
3f09f52ac2cc
Fixed X11 icon color allocation (thanks Mattias!)
Sam Lantinga <slouken@libsdl.org>
parents:
160
diff
changeset
|
1228 dcmap, &pixel, 1, 0); |
0 | 1229 --SDL_iconcolors[pixel]; |
1230 } | |
1231 } | |
1232 free(SDL_iconcolors); | |
1233 SDL_iconcolors = NULL; | |
1234 } | |
1235 /* Restore gamma settings if they've changed */ | |
1236 if ( SDL_GetAppState() & SDL_APPACTIVE ) { | |
1237 X11_SwapVidModeGamma(this); | |
1238 } | |
1239 | |
1240 /* Free that blank cursor */ | |
1241 if ( SDL_BlankCursor != NULL ) { | |
1242 this->FreeWMCursor(this, SDL_BlankCursor); | |
1243 SDL_BlankCursor = NULL; | |
1244 } | |
1245 | |
1246 /* Close the X11 graphics connection */ | |
1247 if ( GFX_Display != NULL ) { | |
1248 XCloseDisplay(GFX_Display); | |
1249 GFX_Display = NULL; | |
1250 } | |
1251 | |
1252 /* Close the X11 display connection */ | |
1253 XCloseDisplay(SDL_Display); | |
1254 SDL_Display = NULL; | |
1255 | |
1256 /* Reset the X11 error handlers */ | |
1257 if ( XIO_handler ) { | |
1258 XSetIOErrorHandler(XIO_handler); | |
1259 } | |
1260 if ( X_handler ) { | |
1261 XSetErrorHandler(X_handler); | |
1262 } | |
1263 | |
1264 /* Unload GL library after X11 shuts down */ | |
1265 X11_GL_UnloadLibrary(this); | |
1266 } | |
1267 if ( this->screen && (this->screen->flags & SDL_HWSURFACE) ) { | |
1268 /* Direct screen access, no memory buffer */ | |
1269 this->screen->pixels = NULL; | |
1270 } | |
1271 } | |
1272 |