]> git.xonotic.org Git - xonotic/darkplaces.git/blob - vid_glx.c
sanity check the visual obtained
[xonotic/darkplaces.git] / vid_glx.c
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18 */
19
20 #include <signal.h>
21
22 #include <dlfcn.h>
23
24 #include <X11/Xlib.h>
25 #include <X11/Xutil.h>
26 #include <X11/Xatom.h>
27 #include <X11/XKBlib.h> // TODO possibly ifdef this out on non-supporting systems... Solaris (as always)?
28 #include <GL/glx.h>
29
30 #include "quakedef.h"
31 #include "dpsoftrast.h"
32
33 #include <X11/keysym.h>
34 #include <X11/cursorfont.h>
35 #include <X11/xpm.h>
36
37 #include <X11/extensions/XShm.h>
38 #if !defined(__APPLE__) && !defined(__MACH__) && !defined(SUNOS)
39 #include <X11/extensions/xf86dga.h>
40 #endif
41 #include <X11/extensions/xf86vmode.h>
42
43 #include <sys/ipc.h>
44 #include <sys/shm.h>
45 #include <X11/extensions/XShm.h>
46
47 // get the Uchar type
48 #include "utf8lib.h"
49 #include "image.h"
50
51 #include "nexuiz.xpm"
52 #include "darkplaces.xpm"
53
54 // Tell startup code that we have a client
55 int cl_available = true;
56
57 // note: if we used the XRandR extension we could support refresh rates
58 qboolean vid_supportrefreshrate = false;
59
60 //GLX prototypes
61 XVisualInfo *(GLAPIENTRY *qglXChooseVisual)(Display *dpy, int screen, int *attribList);
62 GLXContext (GLAPIENTRY *qglXCreateContext)(Display *dpy, XVisualInfo *vis, GLXContext shareList, Bool direct);
63 void (GLAPIENTRY *qglXDestroyContext)(Display *dpy, GLXContext ctx);
64 Bool (GLAPIENTRY *qglXMakeCurrent)(Display *dpy, GLXDrawable drawable, GLXContext ctx);
65 void (GLAPIENTRY *qglXSwapBuffers)(Display *dpy, GLXDrawable drawable);
66 const char *(GLAPIENTRY *qglXQueryExtensionsString)(Display *dpy, int screen);
67
68 //GLX_ARB_get_proc_address
69 void *(GLAPIENTRY *qglXGetProcAddressARB)(const GLubyte *procName);
70
71 static dllfunction_t getprocaddressfuncs[] =
72 {
73         {"glXGetProcAddressARB", (void **) &qglXGetProcAddressARB},
74         {NULL, NULL}
75 };
76
77 //GLX_SGI_swap_control
78 GLint (GLAPIENTRY *qglXSwapIntervalSGI)(GLint interval);
79
80 static dllfunction_t swapcontrolfuncs[] =
81 {
82         {"glXSwapIntervalSGI", (void **) &qglXSwapIntervalSGI},
83         {NULL, NULL}
84 };
85
86 static Display *vidx11_display = NULL;
87 static int vidx11_screen;
88 static Window win, root;
89 static GLXContext ctx = NULL;
90 static GC vidx11_gc = NULL;
91 static XImage *vidx11_ximage[2] = { NULL, NULL };
92 static int vidx11_ximage_pos;
93 static XShmSegmentInfo vidx11_shminfo[2];
94 static int vidx11_shmevent = -1;
95 static int vidx11_shmwait = 0; // number of frames outstanding
96
97 Atom wm_delete_window_atom;
98 Atom net_wm_state_atom;
99 Atom net_wm_state_hidden_atom;
100 Atom net_wm_state_fullscreen_atom;
101 Atom net_wm_icon;
102 Atom cardinal;
103
104 #define KEY_MASK (KeyPressMask | KeyReleaseMask)
105 #define MOUSE_MASK (ButtonPressMask | ButtonReleaseMask | \
106                     PointerMotionMask | ButtonMotionMask)
107 #define X_MASK (KEY_MASK | MOUSE_MASK | VisibilityChangeMask | \
108                 StructureNotifyMask | FocusChangeMask | EnterWindowMask | \
109                 LeaveWindowMask)
110
111
112 static qboolean mouse_avail = true;
113 static qboolean vid_usingmousegrab = false;
114 static qboolean vid_usingmouse = false;
115 static qboolean vid_usinghidecursor = false;
116 static qboolean vid_usingvsync = false;
117 static qboolean vid_usevsync = false;
118 static qboolean vid_x11_hardwaregammasupported = false;
119 static qboolean vid_x11_dgasupported = false;
120 static int vid_x11_gammarampsize = 0;
121
122 #if !defined(__APPLE__) && !defined(SUNOS)
123 cvar_t vid_dgamouse = {CVAR_SAVE, "vid_dgamouse", "0", "make use of DGA mouse input"};
124 static qboolean vid_usingdgamouse = false;
125 #endif
126 cvar_t vid_netwmfullscreen = {CVAR_SAVE, "vid_netwmfullscreen", "0", "make use _NET_WM_STATE_FULLSCREEN; turn this off if fullscreen does not work for you"};
127
128 qboolean vidmode_ext = false;
129
130 static int win_x, win_y;
131
132 static XF86VidModeModeInfo init_vidmode, game_vidmode;
133 static qboolean vid_isfullscreen = false;
134 static qboolean vid_isvidmodefullscreen = false;
135 static qboolean vid_isnetwmfullscreen = false;
136 static qboolean vid_isoverrideredirect = false;
137
138 static Visual *vidx11_visual;
139 static Colormap vidx11_colormap;
140
141 /*-----------------------------------------------------------------------*/
142 //
143
144 long keysym2ucs(KeySym keysym);
145 void DP_Xutf8LookupString(XKeyEvent * ev,
146                          Uchar *uch,
147                          KeySym * keysym_return,
148                          Status * status_return)
149 {
150         int rc;
151         KeySym keysym;
152         int codepoint;
153         char buffer[64];
154         int nbytes = sizeof(buffer);
155
156         rc = XLookupString(ev, buffer, nbytes, &keysym, NULL);
157
158         if (rc > 0) {
159                 codepoint = buffer[0] & 0xFF;
160         } else {
161                 codepoint = keysym2ucs(keysym);
162         }
163
164         if (codepoint < 0) {
165                 if (keysym == None) {
166                         *status_return = XLookupNone;
167                 } else {
168                         *status_return = XLookupKeySym;
169                         *keysym_return = keysym;
170                 }
171                 *uch = 0;
172                 return;
173         }
174
175         *uch = codepoint;
176
177         if (keysym != None) {
178                 *keysym_return = keysym;
179                 *status_return = XLookupBoth;
180         } else {
181                 *status_return = XLookupChars;
182         }
183 }
184 static int XLateKey(XKeyEvent *ev, Uchar *ascii)
185 {
186         int key = 0;
187         //char buf[64];
188         KeySym keysym, shifted;
189         Status status;
190
191         keysym = XLookupKeysym (ev, 0);
192         DP_Xutf8LookupString(ev, ascii, &shifted, &status);
193
194         switch(keysym)
195         {
196                 case XK_KP_Page_Up:      key = K_KP_PGUP; break;
197                 case XK_Page_Up:         key = K_PGUP; break;
198
199                 case XK_KP_Page_Down: key = K_KP_PGDN; break;
200                 case XK_Page_Down:       key = K_PGDN; break;
201
202                 case XK_KP_Home: key = K_KP_HOME; break;
203                 case XK_Home:    key = K_HOME; break;
204
205                 case XK_KP_End:  key = K_KP_END; break;
206                 case XK_End:     key = K_END; break;
207
208                 case XK_KP_Left: key = K_KP_LEFTARROW; break;
209                 case XK_Left:    key = K_LEFTARROW; break;
210
211                 case XK_KP_Right: key = K_KP_RIGHTARROW; break;
212                 case XK_Right:  key = K_RIGHTARROW;             break;
213
214                 case XK_KP_Down: key = K_KP_DOWNARROW; break;
215                 case XK_Down:    key = K_DOWNARROW; break;
216
217                 case XK_KP_Up:   key = K_KP_UPARROW; break;
218                 case XK_Up:              key = K_UPARROW;        break;
219
220                 case XK_Escape: key = K_ESCAPE;         break;
221
222                 case XK_KP_Enter: key = K_KP_ENTER;     break;
223                 case XK_Return: key = K_ENTER;           break;
224
225                 case XK_Tab:            key = K_TAB;                     break;
226
227                 case XK_F1:              key = K_F1;                            break;
228
229                 case XK_F2:              key = K_F2;                            break;
230
231                 case XK_F3:              key = K_F3;                            break;
232
233                 case XK_F4:              key = K_F4;                            break;
234
235                 case XK_F5:              key = K_F5;                            break;
236
237                 case XK_F6:              key = K_F6;                            break;
238
239                 case XK_F7:              key = K_F7;                            break;
240
241                 case XK_F8:              key = K_F8;                            break;
242
243                 case XK_F9:              key = K_F9;                            break;
244
245                 case XK_F10:            key = K_F10;                     break;
246
247                 case XK_F11:            key = K_F11;                     break;
248
249                 case XK_F12:            key = K_F12;                     break;
250
251                 case XK_BackSpace: key = K_BACKSPACE; break;
252
253                 case XK_KP_Delete: key = K_KP_DEL; break;
254                 case XK_Delete: key = K_DEL; break;
255
256                 case XK_Pause:  key = K_PAUSE;           break;
257
258                 case XK_Shift_L:
259                 case XK_Shift_R:        key = K_SHIFT;          break;
260
261                 case XK_Execute:
262                 case XK_Control_L:
263                 case XK_Control_R:      key = K_CTRL;            break;
264
265                 case XK_Alt_L:
266                 case XK_Meta_L:
267                 case XK_ISO_Level3_Shift:
268                 case XK_Alt_R:
269                 case XK_Meta_R: key = K_ALT;                    break;
270
271                 case XK_KP_Begin: key = K_KP_5; break;
272
273                 case XK_Insert:key = K_INS; break;
274                 case XK_KP_Insert: key = K_KP_INS; break;
275
276                 case XK_KP_Multiply: key = K_KP_MULTIPLY; break;
277                 case XK_KP_Add:  key = K_KP_PLUS; break;
278                 case XK_KP_Subtract: key = K_KP_MINUS; break;
279                 case XK_KP_Divide: key = K_KP_SLASH; break;
280
281                 case XK_section:        key = '~'; break;
282
283                 default:
284                         if (keysym < 32)
285                                 break;
286
287                         if (keysym >= 'A' && keysym <= 'Z')
288                                 key = keysym - 'A' + 'a';
289                         else
290                                 key = keysym;
291
292                         break;
293         }
294
295         return key;
296 }
297
298 static Cursor CreateNullCursor(Display *display, Window root)
299 {
300         Pixmap cursormask;
301         XGCValues xgc;
302         GC gc;
303         XColor dummycolour;
304         Cursor cursor;
305
306         cursormask = XCreatePixmap(display, root, 1, 1, 1);
307         xgc.function = GXclear;
308         gc =  XCreateGC(display, cursormask, GCFunction, &xgc);
309         XFillRectangle(display, cursormask, gc, 0, 0, 1, 1);
310         dummycolour.pixel = 0;
311         dummycolour.red = 0;
312         dummycolour.flags = 04;
313         cursor = XCreatePixmapCursor(display, cursormask, cursormask, &dummycolour,&dummycolour, 0,0);
314         XFreePixmap(display,cursormask);
315         XFreeGC(display,gc);
316         return cursor;
317 }
318
319 void VID_SetMouse(qboolean fullscreengrab, qboolean relative, qboolean hidecursor)
320 {
321         static int originalmouseparms_num;
322         static int originalmouseparms_denom;
323         static int originalmouseparms_threshold;
324         static qboolean restore_spi;
325
326 #if !defined(__APPLE__) && !defined(SUNOS)
327         qboolean usedgamouse;
328 #endif
329
330         if (!vidx11_display || !win)
331                 return;
332
333         if (relative)
334                 fullscreengrab = true;
335
336         if (!mouse_avail)
337                 fullscreengrab = relative = hidecursor = false;
338
339 #if !defined(__APPLE__) && !defined(SUNOS)
340         usedgamouse = relative && vid_dgamouse.integer;
341         if (!vid_x11_dgasupported)
342                 usedgamouse = false;
343         if (fullscreengrab && vid_usingmouse && (vid_usingdgamouse != usedgamouse))
344                 VID_SetMouse(false, false, false); // ungrab first!
345 #endif
346
347         if (vid_usingmousegrab != fullscreengrab)
348         {
349                 vid_usingmousegrab = fullscreengrab;
350                 cl_ignoremousemoves = 2;
351                 if (fullscreengrab)
352                 {
353                         XGrabPointer(vidx11_display, win,  True, 0, GrabModeAsync, GrabModeAsync, win, None, CurrentTime);
354                         if (vid_grabkeyboard.integer || vid_isoverrideredirect)
355                                 XGrabKeyboard(vidx11_display, win, False, GrabModeAsync, GrabModeAsync, CurrentTime);
356                 }
357                 else
358                 {
359                         XUngrabPointer(vidx11_display, CurrentTime);
360                         XUngrabKeyboard(vidx11_display, CurrentTime);
361                 }
362         }
363
364         if (relative)
365         {
366                 if (!vid_usingmouse)
367                 {
368                         XWindowAttributes attribs_1;
369                         XSetWindowAttributes attribs_2;
370
371                         XGetWindowAttributes(vidx11_display, win, &attribs_1);
372                         attribs_2.event_mask = attribs_1.your_event_mask | KEY_MASK | MOUSE_MASK;
373                         XChangeWindowAttributes(vidx11_display, win, CWEventMask, &attribs_2);
374
375 #if !defined(__APPLE__) && !defined(SUNOS)
376                         vid_usingdgamouse = usedgamouse;
377                         if (usedgamouse)
378                         {
379                                 XF86DGADirectVideo(vidx11_display, DefaultScreen(vidx11_display), XF86DGADirectMouse);
380                                 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, 0, 0);
381                         }
382                         else
383 #endif
384                                 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, vid.width / 2, vid.height / 2);
385
386 // COMMANDLINEOPTION: X11 Input: -noforcemparms disables setting of mouse parameters (not used with DGA, windows only)
387 #if !defined(__APPLE__) && !defined(SUNOS)
388                         if (!COM_CheckParm ("-noforcemparms") && !usedgamouse)
389 #else
390                         if (!COM_CheckParm ("-noforcemparms"))
391 #endif
392                         {
393                                 XGetPointerControl(vidx11_display, &originalmouseparms_num, &originalmouseparms_denom, &originalmouseparms_threshold);
394                                 XChangePointerControl (vidx11_display, true, false, 1, 1, -1); // TODO maybe change threshold here, or remove this comment
395                                 restore_spi = true;
396                         }
397                         else
398                                 restore_spi = false;
399
400                         cl_ignoremousemoves = 2;
401                         vid_usingmouse = true;
402                 }
403         }
404         else
405         {
406                 if (vid_usingmouse)
407                 {
408 #if !defined(__APPLE__) && !defined(SUNOS)
409                         if (vid_usingdgamouse)
410                                 XF86DGADirectVideo(vidx11_display, DefaultScreen(vidx11_display), 0);
411                         vid_usingdgamouse = false;
412 #endif
413                         cl_ignoremousemoves = 2;
414
415                         if (restore_spi)
416                                 XChangePointerControl (vidx11_display, true, true, originalmouseparms_num, originalmouseparms_denom, originalmouseparms_threshold);
417                         restore_spi = false;
418
419                         vid_usingmouse = false;
420                 }
421         }
422
423         if (vid_usinghidecursor != hidecursor)
424         {
425                 vid_usinghidecursor = hidecursor;
426                 if (hidecursor)
427                         XDefineCursor(vidx11_display, win, CreateNullCursor(vidx11_display, win));
428                 else
429                         XUndefineCursor(vidx11_display, win);
430         }
431 }
432
433 static keynum_t buttonremap[18] =
434 {
435         K_MOUSE1,
436         K_MOUSE3,
437         K_MOUSE2,
438         K_MWHEELUP,
439         K_MWHEELDOWN,
440         K_MOUSE4,
441         K_MOUSE5,
442         K_MOUSE6,
443         K_MOUSE7,
444         K_MOUSE8,
445         K_MOUSE9,
446         K_MOUSE10,
447         K_MOUSE11,
448         K_MOUSE12,
449         K_MOUSE13,
450         K_MOUSE14,
451         K_MOUSE15,
452         K_MOUSE16,
453 };
454
455 static qboolean BuildXImages(int w, int h)
456 {
457         int i;
458         if(DefaultDepth(vidx11_display, vidx11_screen) != 32 && DefaultDepth(vidx11_display, vidx11_screen) != 24)
459         {
460                 Con_Printf("Sorry, we only support 24bpp and 32bpp modes\n");
461                 VID_Shutdown();
462                 return false;
463         }
464         // match to dpsoftrast's specs
465         if(vidx11_visual->red_mask != 0x00FF0000)
466         {
467                 Con_Printf("Sorry, we only support BGR visuals\n");
468                 VID_Shutdown();
469                 return false;
470         }
471         if(vidx11_visual->green_mask != 0x0000FF00)
472         {
473                 Con_Printf("Sorry, we only support BGR visuals\n");
474                 VID_Shutdown();
475                 return false;
476         }
477         if(vidx11_visual->blue_mask != 0x000000FF)
478         {
479                 Con_Printf("Sorry, we only support BGR visuals\n");
480                 VID_Shutdown();
481                 return false;
482         }
483         if(vidx11_shmevent >= 0)
484         {
485                 for(i = 0; i < 2; ++i)
486                 {
487                         vidx11_shminfo[i].shmid = -1;
488                         vidx11_ximage[i] = XShmCreateImage(vidx11_display, vidx11_visual, DefaultDepth(vidx11_display, vidx11_screen), ZPixmap, NULL, &vidx11_shminfo[i], w, h);
489                         if(!vidx11_ximage[i])
490                         {
491                                 Con_Printf("Failed to get an XImage segment\n");
492                                 VID_Shutdown();
493                                 return false;
494                         }
495                         if(vidx11_ximage[i]->bytes_per_line != w * 4)
496                         {
497                                 Con_Printf("Sorry, we only support linear pixel layout\n");
498                                 VID_Shutdown();
499                                 return false;
500                         }
501                         vidx11_shminfo[i].shmid = shmget(IPC_PRIVATE, vidx11_ximage[i]->bytes_per_line * vidx11_ximage[i]->height, IPC_CREAT|0777);
502                         if(vidx11_shminfo[i].shmid < 0)
503                         {
504                                 Con_Printf("Failed to get a shm segment\n");
505                                 VID_Shutdown();
506                                 return false;
507                         }
508                         vidx11_shminfo[i].shmaddr = vidx11_ximage[i]->data = shmat(vidx11_shminfo[i].shmid, NULL, 0);
509                         if(!vidx11_shminfo[i].shmaddr)
510                         {
511                                 Con_Printf("Failed to get a shm segment addresst\n");
512                                 VID_Shutdown();
513                                 return false;
514                         }
515                         vidx11_shminfo[i].readOnly = True;
516                         XShmAttach(vidx11_display, &vidx11_shminfo[i]);
517                 }
518         }
519         else
520         {
521                 for(i = 0; i < 2; ++i)
522                 {
523                         char *p = calloc(4, w * h);
524                         vidx11_shminfo[i].shmid = -1;
525                         vidx11_ximage[i] = XCreateImage(vidx11_display, vidx11_visual, DefaultDepth(vidx11_display, vidx11_screen), ZPixmap, 0, (char*)p, w, h, 8, 0);
526                         if(!vidx11_ximage[i])
527                         {
528                                 Con_Printf("Failed to get an XImage segment\n");
529                                 VID_Shutdown();
530                                 return false;
531                         }
532                         if(vidx11_ximage[i]->bytes_per_line != w * 4)
533                         {
534                                 Con_Printf("Sorry, we only support linear pixel layout\n");
535                                 VID_Shutdown();
536                                 return false;
537                         }
538                 }
539         }
540         return true;
541 }
542 static void DestroyXImages(void)
543 {
544         int i;
545         for(i = 0; i < 2; ++i)
546         {
547                 if(vidx11_shminfo[i].shmid >= 0)
548                 {
549                         XShmDetach(vidx11_display, &vidx11_shminfo[i]);
550                         XDestroyImage(vidx11_ximage[i]);
551                         vidx11_ximage[i] = NULL;
552                         shmdt(vidx11_shminfo[i].shmaddr);
553                         shmctl(vidx11_shminfo[i].shmid, IPC_RMID, 0);
554                         vidx11_shminfo[i].shmid = -1;
555                 }
556                 if(vidx11_ximage[i])
557                         XDestroyImage(vidx11_ximage[i]);
558                 vidx11_ximage[i] = 0;
559         }
560 }
561
562 static int in_mouse_x_save = 0, in_mouse_y_save = 0;
563 static void HandleEvents(void)
564 {
565         XEvent event;
566         int key;
567         Uchar unicode;
568         qboolean dowarp = false;
569
570         if (!vidx11_display)
571                 return;
572
573         in_mouse_x += in_mouse_x_save;
574         in_mouse_y += in_mouse_y_save;
575         in_mouse_x_save = 0;
576         in_mouse_y_save = 0;
577
578         while (XPending(vidx11_display))
579         {
580                 XNextEvent(vidx11_display, &event);
581
582                 switch (event.type)
583                 {
584                 case KeyPress:
585                         // key pressed
586                         key = XLateKey (&event.xkey, &unicode);
587                         Key_Event(key, unicode, true);
588                         break;
589
590                 case KeyRelease:
591                         // key released
592                         key = XLateKey (&event.xkey, &unicode);
593                         Key_Event(key, unicode, false);
594                         break;
595
596                 case MotionNotify:
597                         // mouse moved
598                         if (vid_usingmouse)
599                         {
600 #if !defined(__APPLE__) && !defined(SUNOS)
601                                 if (vid_usingdgamouse)
602                                 {
603                                         in_mouse_x += event.xmotion.x_root;
604                                         in_mouse_y += event.xmotion.y_root;
605                                 }
606                                 else
607 #endif
608                                 {
609                                         if (!event.xmotion.send_event)
610                                         {
611                                                 in_mouse_x += event.xmotion.x - in_windowmouse_x;
612                                                 in_mouse_y += event.xmotion.y - in_windowmouse_y;
613                                                 //if (abs(vid.width/2 - event.xmotion.x) + abs(vid.height/2 - event.xmotion.y))
614                                                 if (vid_stick_mouse.integer || abs(vid.width/2 - event.xmotion.x) > vid.width / 4 || abs(vid.height/2 - event.xmotion.y) > vid.height / 4)
615                                                         dowarp = true;
616                                         }
617                                 }
618                         }
619                         in_windowmouse_x = event.xmotion.x;
620                         in_windowmouse_y = event.xmotion.y;
621                         break;
622
623                 case ButtonPress:
624                         // mouse button pressed
625                         if (event.xbutton.button <= 18)
626                                 Key_Event(buttonremap[event.xbutton.button - 1], 0, true);
627                         else
628                                 Con_Printf("HandleEvents: ButtonPress gave value %d, 1-18 expected\n", event.xbutton.button);
629                         break;
630
631                 case ButtonRelease:
632                         // mouse button released
633                         if (event.xbutton.button <= 18)
634                                 Key_Event(buttonremap[event.xbutton.button - 1], 0, false);
635                         else
636                                 Con_Printf("HandleEvents: ButtonRelease gave value %d, 1-18 expected\n", event.xbutton.button);
637                         break;
638
639                 case CreateNotify:
640                         // window created
641                         win_x = event.xcreatewindow.x;
642                         win_y = event.xcreatewindow.y;
643                         break;
644
645                 case ConfigureNotify:
646                         // window changed size/location
647                         win_x = event.xconfigure.x;
648                         win_y = event.xconfigure.y;
649                         if((vid_resizable.integer < 2 || vid_isnetwmfullscreen) && (vid.width != event.xconfigure.width || vid.height != event.xconfigure.height))
650                         {
651                                 vid.width = event.xconfigure.width;
652                                 vid.height = event.xconfigure.height;
653                                 if(vid_isnetwmfullscreen)
654                                         Con_Printf("NetWM fullscreen: actually using resolution %dx%d\n", vid.width, vid.height);
655                                 else
656                                         Con_DPrintf("Updating to ConfigureNotify resolution %dx%d\n", vid.width, vid.height);
657
658                                 DPSOFTRAST_Flush();
659
660                                 if(vid.softdepthpixels)
661                                         free(vid.softdepthpixels);
662
663                                 DestroyXImages();
664                                 XSync(vidx11_display, False);
665                                 if(!BuildXImages(vid.width, vid.height))
666                                         return;
667                                 XSync(vidx11_display, False);
668
669                                 vid.softpixels = (unsigned int *) vidx11_ximage[vidx11_ximage_pos]->data;
670                                 vid.softdepthpixels = (unsigned int *)calloc(4, vid.width * vid.height);
671                         }
672                         break;
673                 case DestroyNotify:
674                         // window has been destroyed
675                         Sys_Quit(0);
676                         break;
677                 case ClientMessage:
678                         // window manager messages
679                         if ((event.xclient.format == 32) && ((unsigned int)event.xclient.data.l[0] == wm_delete_window_atom))
680                                 Sys_Quit(0);
681                         break;
682                 case MapNotify:
683                         if (vid_isoverrideredirect)
684                                 break;
685                         // window restored
686                         vid_hidden = false;
687                         VID_RestoreSystemGamma();
688
689                         if(vid_isvidmodefullscreen)
690                         {
691                                 // set our video mode
692                                 XF86VidModeSwitchToMode(vidx11_display, vidx11_screen, &game_vidmode);
693
694                                 // Move the viewport to top left
695                                 XF86VidModeSetViewPort(vidx11_display, vidx11_screen, 0, 0);
696                         }
697
698                         if(vid_isnetwmfullscreen)
699                         {
700                                 // make sure it's fullscreen
701                                 XEvent event;
702                                 event.type = ClientMessage;
703                                 event.xclient.serial = 0;
704                                 event.xclient.send_event = True;
705                                 event.xclient.message_type = net_wm_state_atom;
706                                 event.xclient.window = win;
707                                 event.xclient.format = 32;
708                                 event.xclient.data.l[0] = 1;
709                                 event.xclient.data.l[1] = net_wm_state_fullscreen_atom;
710                                 event.xclient.data.l[2] = 0;
711                                 event.xclient.data.l[3] = 1;
712                                 event.xclient.data.l[4] = 0;
713                                 XSendEvent(vidx11_display, root, False, SubstructureRedirectMask | SubstructureNotifyMask, &event);
714                         }
715
716                         dowarp = true;
717
718                         break;
719                 case UnmapNotify:
720                         if (vid_isoverrideredirect)
721                                 break;
722                         // window iconified/rolledup/whatever
723                         vid_hidden = true;
724                         VID_RestoreSystemGamma();
725
726                         if(vid_isvidmodefullscreen)
727                                 XF86VidModeSwitchToMode(vidx11_display, vidx11_screen, &init_vidmode);
728
729                         break;
730                 case FocusIn:
731                         if (vid_isoverrideredirect)
732                                 break;
733                         // window is now the input focus
734                         vid_activewindow = true;
735                         break;
736                 case FocusOut:
737                         if (vid_isoverrideredirect)
738                                 break;
739
740                         if(vid_isnetwmfullscreen && event.xfocus.mode == NotifyNormal)
741                         {
742                                 // iconify netwm fullscreen window when it loses focus
743                                 // when the user selects it in the taskbar, the window manager will map it again and send MapNotify
744                                 XEvent event;
745                                 event.type = ClientMessage;
746                                 event.xclient.serial = 0;
747                                 event.xclient.send_event = True;
748                                 event.xclient.message_type = net_wm_state_atom;
749                                 event.xclient.window = win;
750                                 event.xclient.format = 32;
751                                 event.xclient.data.l[0] = 1;
752                                 event.xclient.data.l[1] = net_wm_state_hidden_atom;
753                                 event.xclient.data.l[2] = 0;
754                                 event.xclient.data.l[3] = 1;
755                                 event.xclient.data.l[4] = 0;
756                                 XSendEvent(vidx11_display, root, False, SubstructureRedirectMask | SubstructureNotifyMask, &event);
757                         }
758
759                         // window is no longer the input focus
760                         vid_activewindow = false;
761                         VID_RestoreSystemGamma();
762
763                         break;
764                 case EnterNotify:
765                         // mouse entered window
766                         break;
767                 case LeaveNotify:
768                         // mouse left window
769                         break;
770                 default:
771                         if(vidx11_shmevent >= 0 && event.type == vidx11_shmevent)
772                                 --vidx11_shmwait;
773                         break;
774                 }
775         }
776
777         if (dowarp)
778         {
779                 /* move the mouse to the window center again */
780                 // we'll catch the warp motion by its send_event flag, updating the
781                 // stored mouse position without adding any delta motion
782                 XEvent event;
783                 event.type = MotionNotify;
784                 event.xmotion.display = vidx11_display;
785                 event.xmotion.window = win;
786                 event.xmotion.x = vid.width / 2;
787                 event.xmotion.y = vid.height / 2;
788                 XSendEvent(vidx11_display, win, False, PointerMotionMask, &event);
789                 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, vid.width / 2, vid.height / 2);
790         }
791 }
792
793 static void *prjobj = NULL;
794
795 static void GL_CloseLibrary(void)
796 {
797         if (prjobj)
798                 dlclose(prjobj);
799         prjobj = NULL;
800         gl_driver[0] = 0;
801         qglXGetProcAddressARB = NULL;
802         gl_extensions = "";
803         gl_platform = "";
804         gl_platformextensions = "";
805 }
806
807 static int GL_OpenLibrary(const char *name)
808 {
809         Con_Printf("Loading OpenGL driver %s\n", name);
810         GL_CloseLibrary();
811         if (!(prjobj = dlopen(name, RTLD_LAZY | RTLD_GLOBAL)))
812         {
813                 Con_Printf("Unable to open symbol list for %s\n", name);
814                 return false;
815         }
816         strlcpy(gl_driver, name, sizeof(gl_driver));
817         return true;
818 }
819
820 void *GL_GetProcAddress(const char *name)
821 {
822         void *p = NULL;
823         if (qglXGetProcAddressARB != NULL)
824                 p = (void *) qglXGetProcAddressARB((GLubyte *)name);
825         if (p == NULL)
826                 p = (void *) dlsym(prjobj, name);
827         return p;
828 }
829
830 void VID_Shutdown(void)
831 {
832         if (!ctx || !vidx11_display)
833                 return;
834
835         VID_SetMouse(false, false, false);
836         VID_RestoreSystemGamma();
837
838         // FIXME: glXDestroyContext here?
839         if (vid_isvidmodefullscreen)
840                 XF86VidModeSwitchToMode(vidx11_display, vidx11_screen, &init_vidmode);
841
842         if(vidx11_gc)
843                 XFreeGC(vidx11_display, vidx11_gc);
844         vidx11_gc = NULL;
845
846         DestroyXImages();
847         vidx11_shmevent = -1;
848         vid.softpixels = NULL;
849
850         if (vid.softdepthpixels)
851                 free(vid.softdepthpixels);
852
853         if (win)
854                 XDestroyWindow(vidx11_display, win);
855         XCloseDisplay(vidx11_display);
856
857         vid_hidden = true;
858         vid_isfullscreen = false;
859         vid_isnetwmfullscreen = false;
860         vid_isvidmodefullscreen = false;
861         vid_isoverrideredirect = false;
862         vidx11_display = NULL;
863         win = 0;
864         ctx = NULL;
865
866         GL_CloseLibrary();
867         Key_ClearStates ();
868 }
869
870 void signal_handler(int sig)
871 {
872         Con_Printf("Received signal %d, exiting...\n", sig);
873         VID_RestoreSystemGamma();
874         Sys_Quit(1);
875 }
876
877 void InitSig(void)
878 {
879         signal(SIGHUP, signal_handler);
880         signal(SIGINT, signal_handler);
881         signal(SIGQUIT, signal_handler);
882         signal(SIGILL, signal_handler);
883         signal(SIGTRAP, signal_handler);
884         signal(SIGIOT, signal_handler);
885         signal(SIGBUS, signal_handler);
886         signal(SIGFPE, signal_handler);
887         signal(SIGSEGV, signal_handler);
888         signal(SIGTERM, signal_handler);
889 }
890
891 void VID_Finish (void)
892 {
893         vid_usevsync = vid_vsync.integer && !cls.timedemo && qglXSwapIntervalSGI;
894         switch(vid.renderpath)
895         {
896                 case RENDERPATH_SOFT:
897                         vidx11_ximage_pos = !vidx11_ximage_pos;
898                         vid.softpixels = (unsigned int *) vidx11_ximage[vidx11_ximage_pos]->data;
899                         DPSOFTRAST_SetRenderTargets(vid.width, vid.height, vid.softdepthpixels, vid.softpixels, NULL, NULL, NULL);
900
901                         if(vidx11_shmevent >= 0) {
902                                 // save mouse motion so we can deal with it later
903                                 in_mouse_x = 0;
904                                 in_mouse_y = 0;
905                                 while(vidx11_shmwait)
906                                         HandleEvents();
907                                 in_mouse_x_save += in_mouse_x;
908                                 in_mouse_y_save += in_mouse_y;
909                                 in_mouse_x = 0;
910                                 in_mouse_y = 0;
911
912                                 ++vidx11_shmwait;
913                                 XShmPutImage(vidx11_display, win, vidx11_gc, vidx11_ximage[!vidx11_ximage_pos], 0, 0, 0, 0, vid.width, vid.height, True);
914                         } else {
915                                 XPutImage(vidx11_display, win, vidx11_gc, vidx11_ximage[!vidx11_ximage_pos], 0, 0, 0, 0, vid.width, vid.height);
916                         }
917                         break;
918
919                 case RENDERPATH_GL11:
920                 case RENDERPATH_GL13:
921                 case RENDERPATH_GL20:
922                 case RENDERPATH_GLES2:
923                         if (vid_usingvsync != vid_usevsync)
924                         {
925                                 vid_usingvsync = vid_usevsync;
926                                 if (qglXSwapIntervalSGI (vid_usevsync))
927                                         Con_Print("glXSwapIntervalSGI didn't accept the vid_vsync change, it will take effect on next vid_restart (GLX_SGI_swap_control does not allow turning off vsync)\n");
928                         }
929
930                         if (!vid_hidden)
931                         {
932                                 CHECKGLERROR
933                                 if (r_speeds.integer == 2 || gl_finish.integer)
934                                         GL_Finish();
935                                 qglXSwapBuffers(vidx11_display, win);CHECKGLERROR
936                         }
937                         break;
938
939                 case RENDERPATH_D3D9:
940                 case RENDERPATH_D3D10:
941                 case RENDERPATH_D3D11:
942                         break;
943         }
944
945         if (vid_x11_hardwaregammasupported)
946                 VID_UpdateGamma(false, vid_x11_gammarampsize);
947 }
948
949 int VID_SetGamma(unsigned short *ramps, int rampsize)
950 {
951         return XF86VidModeSetGammaRamp(vidx11_display, vidx11_screen, rampsize, ramps, ramps + rampsize, ramps + rampsize*2);
952 }
953
954 int VID_GetGamma(unsigned short *ramps, int rampsize)
955 {
956         return XF86VidModeGetGammaRamp(vidx11_display, vidx11_screen, rampsize, ramps, ramps + rampsize, ramps + rampsize*2);
957 }
958
959 void VID_Init(void)
960 {
961 #if !defined(__APPLE__) && !defined(SUNOS)
962         Cvar_RegisterVariable (&vid_dgamouse);
963 #endif
964         Cvar_RegisterVariable (&vid_netwmfullscreen);
965         InitSig(); // trap evil signals
966 // COMMANDLINEOPTION: Input: -nomouse disables mouse support (see also vid_mouse cvar)
967         if (COM_CheckParm ("-nomouse"))
968                 mouse_avail = false;
969         vidx11_shminfo[0].shmid = -1;
970         vidx11_shminfo[1].shmid = -1;
971 }
972
973 void VID_BuildGLXAttrib(int *attrib, qboolean stencil, qboolean stereobuffer, int samples)
974 {
975         *attrib++ = GLX_RGBA;
976         *attrib++ = GLX_RED_SIZE;*attrib++ = stencil ? 8 : 5;
977         *attrib++ = GLX_GREEN_SIZE;*attrib++ = stencil ? 8 : 5;
978         *attrib++ = GLX_BLUE_SIZE;*attrib++ = stencil ? 8 : 5;
979         *attrib++ = GLX_DOUBLEBUFFER;
980         *attrib++ = GLX_DEPTH_SIZE;*attrib++ = stencil ? 24 : 16;
981         // if stencil is enabled, ask for alpha too
982         if (stencil)
983         {
984                 *attrib++ = GLX_STENCIL_SIZE;*attrib++ = 8;
985                 *attrib++ = GLX_ALPHA_SIZE;*attrib++ = 8;
986         }
987         if (stereobuffer)
988                 *attrib++ = GLX_STEREO;
989         if (samples > 1)
990         {
991                 *attrib++ = GLX_SAMPLE_BUFFERS_ARB;
992                 *attrib++ = 1;
993                 *attrib++ = GLX_SAMPLES_ARB;
994                 *attrib++ = samples;
995         }
996         *attrib++ = None;
997 }
998
999 qboolean VID_InitModeSoft(viddef_mode_t *mode)
1000 {
1001         int i, j;
1002         XSetWindowAttributes attr;
1003         XClassHint *clshints;
1004         XWMHints *wmhints;
1005         XSizeHints *szhints;
1006         unsigned long mask;
1007         int MajorVersion, MinorVersion;
1008         char *xpm;
1009         char **idata;
1010         unsigned char *data;
1011         XGCValues gcval;
1012         const char *dpyname;
1013
1014         vid_isfullscreen = false;
1015         vid_isnetwmfullscreen = false;
1016         vid_isvidmodefullscreen = false;
1017         vid_isoverrideredirect = false;
1018
1019         if (!(vidx11_display = XOpenDisplay(NULL)))
1020         {
1021                 Con_Print("Couldn't open the X display\n");
1022                 return false;
1023         }
1024         dpyname = XDisplayName(NULL);
1025
1026         // LordHavoc: making the close button on a window do the right thing
1027         // seems to involve this mess, sigh...
1028         wm_delete_window_atom = XInternAtom(vidx11_display, "WM_DELETE_WINDOW", false);
1029         net_wm_state_atom = XInternAtom(vidx11_display, "_NET_WM_STATE", false);
1030         net_wm_state_fullscreen_atom = XInternAtom(vidx11_display, "_NET_WM_STATE_FULLSCREEN", false);
1031         net_wm_state_hidden_atom = XInternAtom(vidx11_display, "_NET_WM_STATE_HIDDEN", false);
1032         net_wm_icon = XInternAtom(vidx11_display, "_NET_WM_ICON", false);
1033         cardinal = XInternAtom(vidx11_display, "CARDINAL", false);
1034
1035         // make autorepeat send keypress/keypress/.../keyrelease instead of intervening keyrelease
1036         XkbSetDetectableAutoRepeat(vidx11_display, true, NULL);
1037
1038         vidx11_screen = DefaultScreen(vidx11_display);
1039         root = RootWindow(vidx11_display, vidx11_screen);
1040
1041         // Get video mode list
1042         MajorVersion = MinorVersion = 0;
1043         if (!XF86VidModeQueryVersion(vidx11_display, &MajorVersion, &MinorVersion))
1044                 vidmode_ext = false;
1045         else
1046         {
1047                 Con_DPrintf("Using XFree86-VidModeExtension Version %d.%d\n", MajorVersion, MinorVersion);
1048                 vidmode_ext = true;
1049         }
1050
1051         if (mode->fullscreen)
1052         {
1053                 if(vid_netwmfullscreen.integer)
1054                 {
1055                         // TODO detect WM support
1056                         vid_isnetwmfullscreen = true;
1057                         vid_isfullscreen = true;
1058                         // width and height will be filled in later
1059                         Con_DPrintf("Using NetWM fullscreen mode\n");
1060                 }
1061
1062                 if(!vid_isfullscreen && vidmode_ext)
1063                 {
1064                         int best_fit, best_dist, dist, x, y;
1065
1066                         // Are we going fullscreen?  If so, let's change video mode
1067                         XF86VidModeModeLine *current_vidmode;
1068                         XF86VidModeModeInfo **vidmodes;
1069                         int num_vidmodes;
1070
1071                         // This nice hack comes from the SDL source code
1072                         current_vidmode = (XF86VidModeModeLine*)((char*)&init_vidmode + sizeof(init_vidmode.dotclock));
1073                         XF86VidModeGetModeLine(vidx11_display, vidx11_screen, (int*)&init_vidmode.dotclock, current_vidmode);
1074
1075                         XF86VidModeGetAllModeLines(vidx11_display, vidx11_screen, &num_vidmodes, &vidmodes);
1076                         best_dist = 0;
1077                         best_fit = -1;
1078
1079                         for (i = 0; i < num_vidmodes; i++)
1080                         {
1081                                 if (mode->width > vidmodes[i]->hdisplay || mode->height > vidmodes[i]->vdisplay)
1082                                         continue;
1083
1084                                 x = mode->width - vidmodes[i]->hdisplay;
1085                                 y = mode->height - vidmodes[i]->vdisplay;
1086                                 dist = (x * x) + (y * y);
1087                                 if (best_fit == -1 || dist < best_dist)
1088                                 {
1089                                         best_dist = dist;
1090                                         best_fit = i;
1091                                 }
1092                         }
1093
1094                         if (best_fit != -1)
1095                         {
1096                                 // LordHavoc: changed from ActualWidth/ActualHeight =,
1097                                 // to width/height =, so the window will take the full area of
1098                                 // the mode chosen
1099                                 mode->width = vidmodes[best_fit]->hdisplay;
1100                                 mode->height = vidmodes[best_fit]->vdisplay;
1101
1102                                 // change to the mode
1103                                 XF86VidModeSwitchToMode(vidx11_display, vidx11_screen, vidmodes[best_fit]);
1104                                 memcpy(&game_vidmode, vidmodes[best_fit], sizeof(game_vidmode));
1105                                 vid_isvidmodefullscreen = true;
1106                                 vid_isfullscreen = true;
1107
1108                                 // Move the viewport to top left
1109                                 XF86VidModeSetViewPort(vidx11_display, vidx11_screen, 0, 0);
1110                                 Con_DPrintf("Using XVidMode fullscreen mode at %dx%d\n", mode->width, mode->height);
1111                         }
1112
1113                         free(vidmodes);
1114                 }
1115
1116                 if(!vid_isfullscreen)
1117                 {
1118                         // sorry, no FS available
1119                         // use the full desktop resolution
1120                         vid_isfullscreen = true;
1121                         // width and height will be filled in later
1122                         mode->width = DisplayWidth(vidx11_display, vidx11_screen);
1123                         mode->height = DisplayHeight(vidx11_display, vidx11_screen);
1124                         Con_DPrintf("Using X11 fullscreen mode at %dx%d\n", mode->width, mode->height);
1125                 }
1126         }
1127
1128         // LordHavoc: save the visual for use in gamma ramp settings later
1129         vidx11_visual = DefaultVisual(vidx11_display, vidx11_screen);
1130
1131         /* window attributes */
1132         attr.background_pixel = 0;
1133         attr.border_pixel = 0;
1134         // LordHavoc: save the colormap for later, too
1135         vidx11_colormap = attr.colormap = XCreateColormap(vidx11_display, root, vidx11_visual, AllocNone);
1136         attr.event_mask = X_MASK;
1137
1138         if (mode->fullscreen)
1139         {
1140                 if(vid_isnetwmfullscreen)
1141                 {
1142                         mask = CWBackPixel | CWColormap | CWSaveUnder | CWBackingStore | CWEventMask;
1143                         attr.backing_store = NotUseful;
1144                         attr.save_under = False;
1145                 }
1146                 else
1147                 {
1148                         mask = CWBackPixel | CWColormap | CWSaveUnder | CWBackingStore | CWEventMask | CWOverrideRedirect;
1149                         attr.override_redirect = True;
1150                         attr.backing_store = NotUseful;
1151                         attr.save_under = False;
1152                         vid_isoverrideredirect = true; // so it knows to grab
1153                 }
1154         }
1155         else
1156         {
1157                 mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
1158         }
1159
1160         win = XCreateWindow(vidx11_display, root, 0, 0, mode->width, mode->height, 0, CopyFromParent, InputOutput, vidx11_visual, mask, &attr);
1161
1162         data = loadimagepixelsbgra("darkplaces-icon", false, false, false, NULL);
1163         if(data)
1164         {
1165                 // use _NET_WM_ICON too
1166                 static long netwm_icon[MAX_NETWM_ICON];
1167                 int pos = 0;
1168                 int i = 1;
1169
1170                 while(data)
1171                 {
1172                         if(pos + 2 * image_width * image_height < MAX_NETWM_ICON)
1173                         {
1174                                 netwm_icon[pos++] = image_width;
1175                                 netwm_icon[pos++] = image_height;
1176                                 for(i = 0; i < image_height; ++i)
1177                                         for(j = 0; j < image_width; ++j)
1178                                                 netwm_icon[pos++] = BuffLittleLong(&data[(i*image_width+j)*4]);
1179                         }
1180                         else
1181                         {
1182                                 Con_Printf("Skipping NETWM icon #%d because there is no space left\n", i);
1183                         }
1184                         ++i;
1185                         Mem_Free(data);
1186                         data = loadimagepixelsbgra(va("darkplaces-icon%d", i), false, false, false, NULL);
1187                 }
1188                 XChangeProperty(vidx11_display, win, net_wm_icon, cardinal, 32, PropModeReplace, (const unsigned char *) netwm_icon, pos);
1189         }
1190
1191         // fallthrough for old window managers
1192         xpm = (char *) FS_LoadFile("darkplaces-icon.xpm", tempmempool, false, NULL);
1193         idata = NULL;
1194         if(xpm)
1195                 idata = XPM_DecodeString(xpm);
1196         if(!idata)
1197                 idata = ENGINE_ICON;
1198
1199         wmhints = XAllocWMHints();
1200         if(XpmCreatePixmapFromData(vidx11_display, win,
1201                 idata,
1202                 &wmhints->icon_pixmap, &wmhints->icon_mask, NULL) == XpmSuccess)
1203                 wmhints->flags |= IconPixmapHint | IconMaskHint;
1204
1205         if(xpm)
1206                 Mem_Free(xpm);
1207
1208         clshints = XAllocClassHint();
1209         clshints->res_name = strdup(gamename);
1210         clshints->res_class = strdup("DarkPlaces");
1211
1212         szhints = XAllocSizeHints();
1213         if(vid_resizable.integer == 0 && !vid_isnetwmfullscreen)
1214         {
1215                 szhints->min_width = szhints->max_width = mode->width;
1216                 szhints->min_height = szhints->max_height = mode->height;
1217                 szhints->flags |= PMinSize | PMaxSize;
1218         }
1219
1220         XmbSetWMProperties(vidx11_display, win, gamename, gamename, (char **) com_argv, com_argc, szhints, wmhints, clshints);
1221         // strdup() allocates using malloc(), should be freed with free()
1222         free(clshints->res_name);
1223         free(clshints->res_class);
1224         XFree(clshints);
1225         XFree(wmhints);
1226         XFree(szhints);
1227
1228         //XStoreName(vidx11_display, win, gamename);
1229         XMapWindow(vidx11_display, win);
1230
1231         XSetWMProtocols(vidx11_display, win, &wm_delete_window_atom, 1);
1232
1233         if (vid_isoverrideredirect)
1234         {
1235                 XMoveWindow(vidx11_display, win, 0, 0);
1236                 XRaiseWindow(vidx11_display, win);
1237                 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, 0, 0);
1238                 XFlush(vidx11_display);
1239         }
1240
1241         if(vid_isvidmodefullscreen)
1242         {
1243                 // Move the viewport to top left
1244                 XF86VidModeSetViewPort(vidx11_display, vidx11_screen, 0, 0);
1245         }
1246
1247         //XSync(vidx11_display, False);
1248
1249         // COMMANDLINEOPTION: Unix GLX: -noshm disables XShm extensioon
1250         if(dpyname && dpyname[0] == ':' && dpyname[1] && (dpyname[2] < '0' || dpyname[2] > '9') && !COM_CheckParm("-noshm") && XShmQueryExtension(vidx11_display))
1251         {
1252                 Con_Printf("Using XShm\n");
1253                 vidx11_shmevent = XShmGetEventBase(vidx11_display) + ShmCompletion;
1254         }
1255         else
1256         {
1257                 Con_Printf("Not using XShm\n");
1258                 vidx11_shmevent = -1;
1259         }
1260         BuildXImages(mode->width, mode->height);
1261
1262         vidx11_ximage_pos = 0;
1263         vid.softpixels = (unsigned int *) vidx11_ximage[vidx11_ximage_pos]->data;
1264         vidx11_shmwait = 0;
1265         vid.softdepthpixels = (unsigned int *)calloc(1, mode->width * mode->height * 4);
1266
1267         memset(&gcval, 0, sizeof(gcval));
1268         vidx11_gc = XCreateGC(vidx11_display, win, 0, &gcval);
1269
1270         if (DPSOFTRAST_Init(mode->width, mode->height, vid_soft_threads.integer, vid_soft_interlace.integer, (unsigned int *)vid.softpixels, (unsigned int *)vid.softdepthpixels) < 0)
1271         {
1272                 Con_Printf("Failed to initialize software rasterizer\n");
1273                 VID_Shutdown();
1274                 return false;
1275         }
1276
1277         XSync(vidx11_display, False);
1278
1279         vid_usingmousegrab = false;
1280         vid_usingmouse = false;
1281         vid_usinghidecursor = false;
1282         vid_usingvsync = false;
1283         vid_hidden = false;
1284         vid_activewindow = true;
1285         vid_x11_hardwaregammasupported = XF86VidModeGetGammaRampSize(vidx11_display, vidx11_screen, &vid_x11_gammarampsize) != 0;
1286 #if !defined(__APPLE__) && !defined(SUNOS)
1287         vid_x11_dgasupported = XF86DGAQueryVersion(vidx11_display, &MajorVersion, &MinorVersion);
1288         if (!vid_x11_dgasupported)
1289                 Con_Print( "Failed to detect XF86DGA Mouse extension\n" );
1290 #endif
1291
1292         VID_Soft_SharedSetup();
1293
1294         return true;
1295 }
1296 qboolean VID_InitModeGL(viddef_mode_t *mode)
1297 {
1298         int i, j;
1299         int attrib[32];
1300         XSetWindowAttributes attr;
1301         XClassHint *clshints;
1302         XWMHints *wmhints;
1303         XSizeHints *szhints;
1304         unsigned long mask;
1305         XVisualInfo *visinfo;
1306         int MajorVersion, MinorVersion;
1307         const char *drivername;
1308         char *xpm;
1309         char **idata;
1310         unsigned char *data;
1311
1312         vid_isfullscreen = false;
1313         vid_isnetwmfullscreen = false;
1314         vid_isvidmodefullscreen = false;
1315         vid_isoverrideredirect = false;
1316
1317 #if defined(__APPLE__) && defined(__MACH__)
1318         drivername = "/usr/X11R6/lib/libGL.1.dylib";
1319 #else
1320         drivername = "libGL.so.1";
1321 #endif
1322 // COMMANDLINEOPTION: Linux GLX: -gl_driver <drivername> selects a GL driver library, default is libGL.so.1, useful only for using fxmesa or similar, if you don't know what this is for, you don't need it
1323 // COMMANDLINEOPTION: BSD GLX: -gl_driver <drivername> selects a GL driver library, default is libGL.so.1, useful only for using fxmesa or similar, if you don't know what this is for, you don't need it
1324 // LordHavoc: although this works on MacOSX, it's useless there (as there is only one system libGL)
1325         i = COM_CheckParm("-gl_driver");
1326         if (i && i < com_argc - 1)
1327                 drivername = com_argv[i + 1];
1328         if (!GL_OpenLibrary(drivername))
1329         {
1330                 Con_Printf("Unable to load GL driver \"%s\"\n", drivername);
1331                 return false;
1332         }
1333
1334         if (!(vidx11_display = XOpenDisplay(NULL)))
1335         {
1336                 Con_Print("Couldn't open the X display\n");
1337                 return false;
1338         }
1339
1340         // LordHavoc: making the close button on a window do the right thing
1341         // seems to involve this mess, sigh...
1342         wm_delete_window_atom = XInternAtom(vidx11_display, "WM_DELETE_WINDOW", false);
1343         net_wm_state_atom = XInternAtom(vidx11_display, "_NET_WM_STATE", false);
1344         net_wm_state_fullscreen_atom = XInternAtom(vidx11_display, "_NET_WM_STATE_FULLSCREEN", false);
1345         net_wm_state_hidden_atom = XInternAtom(vidx11_display, "_NET_WM_STATE_HIDDEN", false);
1346         net_wm_icon = XInternAtom(vidx11_display, "_NET_WM_ICON", false);
1347         cardinal = XInternAtom(vidx11_display, "CARDINAL", false);
1348
1349         // make autorepeat send keypress/keypress/.../keyrelease instead of intervening keyrelease
1350         XkbSetDetectableAutoRepeat(vidx11_display, true, NULL);
1351
1352         vidx11_screen = DefaultScreen(vidx11_display);
1353         root = RootWindow(vidx11_display, vidx11_screen);
1354
1355         // Get video mode list
1356         MajorVersion = MinorVersion = 0;
1357         if (!XF86VidModeQueryVersion(vidx11_display, &MajorVersion, &MinorVersion))
1358                 vidmode_ext = false;
1359         else
1360         {
1361                 Con_DPrintf("Using XFree86-VidModeExtension Version %d.%d\n", MajorVersion, MinorVersion);
1362                 vidmode_ext = true;
1363         }
1364
1365         if ((qglXChooseVisual = (XVisualInfo *(GLAPIENTRY *)(Display *dpy, int screen, int *attribList))GL_GetProcAddress("glXChooseVisual")) == NULL
1366          || (qglXCreateContext = (GLXContext (GLAPIENTRY *)(Display *dpy, XVisualInfo *vis, GLXContext shareList, Bool direct))GL_GetProcAddress("glXCreateContext")) == NULL
1367          || (qglXDestroyContext = (void (GLAPIENTRY *)(Display *dpy, GLXContext ctx))GL_GetProcAddress("glXDestroyContext")) == NULL
1368          || (qglXMakeCurrent = (Bool (GLAPIENTRY *)(Display *dpy, GLXDrawable drawable, GLXContext ctx))GL_GetProcAddress("glXMakeCurrent")) == NULL
1369          || (qglXSwapBuffers = (void (GLAPIENTRY *)(Display *dpy, GLXDrawable drawable))GL_GetProcAddress("glXSwapBuffers")) == NULL
1370          || (qglXQueryExtensionsString = (const char *(GLAPIENTRY *)(Display *dpy, int screen))GL_GetProcAddress("glXQueryExtensionsString")) == NULL)
1371         {
1372                 Con_Printf("glX functions not found in %s\n", gl_driver);
1373                 return false;
1374         }
1375
1376         VID_BuildGLXAttrib(attrib, mode->bitsperpixel == 32, mode->stereobuffer, mode->samples);
1377         visinfo = qglXChooseVisual(vidx11_display, vidx11_screen, attrib);
1378         if (!visinfo)
1379         {
1380                 Con_Print("Couldn't get an RGB, Double-buffered, Depth visual\n");
1381                 return false;
1382         }
1383
1384         if (mode->fullscreen)
1385         {
1386                 if(vid_netwmfullscreen.integer)
1387                 {
1388                         // TODO detect WM support
1389                         vid_isnetwmfullscreen = true;
1390                         vid_isfullscreen = true;
1391                         // width and height will be filled in later
1392                         Con_DPrintf("Using NetWM fullscreen mode\n");
1393                 }
1394
1395                 if(!vid_isfullscreen && vidmode_ext)
1396                 {
1397                         int best_fit, best_dist, dist, x, y;
1398
1399                         // Are we going fullscreen?  If so, let's change video mode
1400                         XF86VidModeModeLine *current_vidmode;
1401                         XF86VidModeModeInfo **vidmodes;
1402                         int num_vidmodes;
1403
1404                         // This nice hack comes from the SDL source code
1405                         current_vidmode = (XF86VidModeModeLine*)((char*)&init_vidmode + sizeof(init_vidmode.dotclock));
1406                         XF86VidModeGetModeLine(vidx11_display, vidx11_screen, (int*)&init_vidmode.dotclock, current_vidmode);
1407
1408                         XF86VidModeGetAllModeLines(vidx11_display, vidx11_screen, &num_vidmodes, &vidmodes);
1409                         best_dist = 0;
1410                         best_fit = -1;
1411
1412                         for (i = 0; i < num_vidmodes; i++)
1413                         {
1414                                 if (mode->width > vidmodes[i]->hdisplay || mode->height > vidmodes[i]->vdisplay)
1415                                         continue;
1416
1417                                 x = mode->width - vidmodes[i]->hdisplay;
1418                                 y = mode->height - vidmodes[i]->vdisplay;
1419                                 dist = (x * x) + (y * y);
1420                                 if (best_fit == -1 || dist < best_dist)
1421                                 {
1422                                         best_dist = dist;
1423                                         best_fit = i;
1424                                 }
1425                         }
1426
1427                         if (best_fit != -1)
1428                         {
1429                                 // LordHavoc: changed from ActualWidth/ActualHeight =,
1430                                 // to width/height =, so the window will take the full area of
1431                                 // the mode chosen
1432                                 mode->width = vidmodes[best_fit]->hdisplay;
1433                                 mode->height = vidmodes[best_fit]->vdisplay;
1434
1435                                 // change to the mode
1436                                 XF86VidModeSwitchToMode(vidx11_display, vidx11_screen, vidmodes[best_fit]);
1437                                 memcpy(&game_vidmode, vidmodes[best_fit], sizeof(game_vidmode));
1438                                 vid_isvidmodefullscreen = true;
1439                                 vid_isfullscreen = true;
1440
1441                                 // Move the viewport to top left
1442                                 XF86VidModeSetViewPort(vidx11_display, vidx11_screen, 0, 0);
1443                                 Con_DPrintf("Using XVidMode fullscreen mode at %dx%d\n", mode->width, mode->height);
1444                         }
1445
1446                         free(vidmodes);
1447                 }
1448
1449                 if(!vid_isfullscreen)
1450                 {
1451                         // sorry, no FS available
1452                         // use the full desktop resolution
1453                         vid_isfullscreen = true;
1454                         // width and height will be filled in later
1455                         mode->width = DisplayWidth(vidx11_display, vidx11_screen);
1456                         mode->height = DisplayHeight(vidx11_display, vidx11_screen);
1457                         Con_DPrintf("Using X11 fullscreen mode at %dx%d\n", mode->width, mode->height);
1458                 }
1459         }
1460
1461         // LordHavoc: save the visual for use in gamma ramp settings later
1462         vidx11_visual = visinfo->visual;
1463
1464         /* window attributes */
1465         attr.background_pixel = 0;
1466         attr.border_pixel = 0;
1467         // LordHavoc: save the colormap for later, too
1468         vidx11_colormap = attr.colormap = XCreateColormap(vidx11_display, root, visinfo->visual, AllocNone);
1469         attr.event_mask = X_MASK;
1470
1471         if (mode->fullscreen)
1472         {
1473                 if(vid_isnetwmfullscreen)
1474                 {
1475                         mask = CWBackPixel | CWColormap | CWSaveUnder | CWBackingStore | CWEventMask;
1476                         attr.backing_store = NotUseful;
1477                         attr.save_under = False;
1478                 }
1479                 else
1480                 {
1481                         mask = CWBackPixel | CWColormap | CWSaveUnder | CWBackingStore | CWEventMask | CWOverrideRedirect;
1482                         attr.override_redirect = True;
1483                         attr.backing_store = NotUseful;
1484                         attr.save_under = False;
1485                         vid_isoverrideredirect = true; // so it knows to grab
1486                 }
1487         }
1488         else
1489         {
1490                 mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
1491         }
1492
1493         win = XCreateWindow(vidx11_display, root, 0, 0, mode->width, mode->height, 0, visinfo->depth, InputOutput, visinfo->visual, mask, &attr);
1494
1495         data = loadimagepixelsbgra("darkplaces-icon", false, false, false, NULL);
1496         if(data)
1497         {
1498                 // use _NET_WM_ICON too
1499                 static long netwm_icon[MAX_NETWM_ICON];
1500                 int pos = 0;
1501                 int i = 1;
1502
1503                 while(data)
1504                 {
1505                         if(pos + 2 * image_width * image_height < MAX_NETWM_ICON)
1506                         {
1507                                 netwm_icon[pos++] = image_width;
1508                                 netwm_icon[pos++] = image_height;
1509                                 for(i = 0; i < image_height; ++i)
1510                                         for(j = 0; j < image_width; ++j)
1511                                                 netwm_icon[pos++] = BuffLittleLong(&data[(i*image_width+j)*4]);
1512                         }
1513                         else
1514                         {
1515                                 Con_Printf("Skipping NETWM icon #%d because there is no space left\n", i);
1516                         }
1517                         ++i;
1518                         Mem_Free(data);
1519                         data = loadimagepixelsbgra(va("darkplaces-icon%d", i), false, false, false, NULL);
1520                 }
1521                 XChangeProperty(vidx11_display, win, net_wm_icon, cardinal, 32, PropModeReplace, (const unsigned char *) netwm_icon, pos);
1522         }
1523
1524         // fallthrough for old window managers
1525         xpm = (char *) FS_LoadFile("darkplaces-icon.xpm", tempmempool, false, NULL);
1526         idata = NULL;
1527         if(xpm)
1528                 idata = XPM_DecodeString(xpm);
1529         if(!idata)
1530                 idata = ENGINE_ICON;
1531
1532         wmhints = XAllocWMHints();
1533         if(XpmCreatePixmapFromData(vidx11_display, win,
1534                 idata,
1535                 &wmhints->icon_pixmap, &wmhints->icon_mask, NULL) == XpmSuccess)
1536                 wmhints->flags |= IconPixmapHint | IconMaskHint;
1537
1538         if(xpm)
1539                 Mem_Free(xpm);
1540
1541         clshints = XAllocClassHint();
1542         clshints->res_name = strdup(gamename);
1543         clshints->res_class = strdup("DarkPlaces");
1544
1545         szhints = XAllocSizeHints();
1546         if(vid_resizable.integer == 0 && !vid_isnetwmfullscreen)
1547         {
1548                 szhints->min_width = szhints->max_width = mode->width;
1549                 szhints->min_height = szhints->max_height = mode->height;
1550                 szhints->flags |= PMinSize | PMaxSize;
1551         }
1552
1553         XmbSetWMProperties(vidx11_display, win, gamename, gamename, (char **) com_argv, com_argc, szhints, wmhints, clshints);
1554         // strdup() allocates using malloc(), should be freed with free()
1555         free(clshints->res_name);
1556         free(clshints->res_class);
1557         XFree(clshints);
1558         XFree(wmhints);
1559         XFree(szhints);
1560
1561         //XStoreName(vidx11_display, win, gamename);
1562         XMapWindow(vidx11_display, win);
1563
1564         XSetWMProtocols(vidx11_display, win, &wm_delete_window_atom, 1);
1565
1566         if (vid_isoverrideredirect)
1567         {
1568                 XMoveWindow(vidx11_display, win, 0, 0);
1569                 XRaiseWindow(vidx11_display, win);
1570                 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, 0, 0);
1571                 XFlush(vidx11_display);
1572         }
1573
1574         if(vid_isvidmodefullscreen)
1575         {
1576                 // Move the viewport to top left
1577                 XF86VidModeSetViewPort(vidx11_display, vidx11_screen, 0, 0);
1578         }
1579
1580         //XSync(vidx11_display, False);
1581
1582         ctx = qglXCreateContext(vidx11_display, visinfo, NULL, True);
1583         XFree(visinfo); // glXChooseVisual man page says to use XFree to free visinfo
1584         if (!ctx)
1585         {
1586                 Con_Printf ("glXCreateContext failed\n");
1587                 return false;
1588         }
1589
1590         if (!qglXMakeCurrent(vidx11_display, win, ctx))
1591         {
1592                 Con_Printf ("glXMakeCurrent failed\n");
1593                 return false;
1594         }
1595
1596         XSync(vidx11_display, False);
1597
1598         if ((qglGetString = (const GLubyte* (GLAPIENTRY *)(GLenum name))GL_GetProcAddress("glGetString")) == NULL)
1599         {
1600                 Con_Printf ("glGetString not found in %s\n", gl_driver);
1601                 return false;
1602         }
1603
1604         gl_extensions = (const char *)qglGetString(GL_EXTENSIONS);
1605         gl_platform = "GLX";
1606         gl_platformextensions = qglXQueryExtensionsString(vidx11_display, vidx11_screen);
1607
1608 // COMMANDLINEOPTION: Linux GLX: -nogetprocaddress disables GLX_ARB_get_proc_address (not required, more formal method of getting extension functions)
1609 // COMMANDLINEOPTION: BSD GLX: -nogetprocaddress disables GLX_ARB_get_proc_address (not required, more formal method of getting extension functions)
1610 // COMMANDLINEOPTION: MacOSX GLX: -nogetprocaddress disables GLX_ARB_get_proc_address (not required, more formal method of getting extension functions)
1611         GL_CheckExtension("GLX_ARB_get_proc_address", getprocaddressfuncs, "-nogetprocaddress", false);
1612 // COMMANDLINEOPTION: Linux GLX: -novideosync disables GLX_SGI_swap_control
1613 // COMMANDLINEOPTION: BSD GLX: -novideosync disables GLX_SGI_swap_control
1614 // COMMANDLINEOPTION: MacOSX GLX: -novideosync disables GLX_SGI_swap_control
1615         GL_CheckExtension("GLX_SGI_swap_control", swapcontrolfuncs, "-novideosync", false);
1616
1617         vid_usingmousegrab = false;
1618         vid_usingmouse = false;
1619         vid_usinghidecursor = false;
1620         vid_usingvsync = false;
1621         vid_hidden = false;
1622         vid_activewindow = true;
1623         vid_x11_hardwaregammasupported = XF86VidModeGetGammaRampSize(vidx11_display, vidx11_screen, &vid_x11_gammarampsize) != 0;
1624 #if !defined(__APPLE__) && !defined(SUNOS)
1625         vid_x11_dgasupported = XF86DGAQueryVersion(vidx11_display, &MajorVersion, &MinorVersion);
1626         if (!vid_x11_dgasupported)
1627                 Con_Print( "Failed to detect XF86DGA Mouse extension\n" );
1628 #endif
1629
1630         GL_Init();
1631         return true;
1632 }
1633
1634 qboolean VID_InitMode(viddef_mode_t *mode)
1635 {
1636 #ifdef SSE_POSSIBLE
1637         if (vid_soft.integer)
1638                 return VID_InitModeSoft(mode);
1639         else
1640 #endif
1641                 return VID_InitModeGL(mode);
1642 }
1643
1644 void Sys_SendKeyEvents(void)
1645 {
1646         static qboolean sound_active = true;
1647
1648         // enable/disable sound on focus gain/loss
1649         if ((!vid_hidden && vid_activewindow) || !snd_mutewhenidle.integer)
1650         {
1651                 if (!sound_active)
1652                 {
1653                         S_UnblockSound ();
1654                         sound_active = true;
1655                 }
1656         }
1657         else
1658         {
1659                 if (sound_active)
1660                 {
1661                         S_BlockSound ();
1662                         sound_active = false;
1663                 }
1664         }
1665
1666         HandleEvents();
1667 }
1668
1669 void IN_Move (void)
1670 {
1671 }
1672
1673 size_t VID_ListModes(vid_mode_t *modes, size_t maxcount)
1674 {
1675         if(vidmode_ext)
1676         {
1677                 int i, bpp;
1678                 size_t k;
1679                 XF86VidModeModeInfo **vidmodes;
1680                 int num_vidmodes;
1681
1682                 XF86VidModeGetAllModeLines(vidx11_display, vidx11_screen, &num_vidmodes, &vidmodes);
1683                 k = 0;
1684                 for (i = 0; i < num_vidmodes; i++)
1685                 {
1686                         if(k >= maxcount)
1687                                 break;
1688                         // we don't get bpp info, so let's just assume all of 8, 15, 16, 24, 32 work
1689                         for(bpp = 8; bpp <= 32; bpp = ((bpp == 8) ? 15 : (bpp & 0xF8) + 8))
1690                         {
1691                                 if(k >= maxcount)
1692                                         break;
1693                                 modes[k].width = vidmodes[i]->hdisplay;
1694                                 modes[k].height = vidmodes[i]->vdisplay;
1695                                 modes[k].bpp = 8;
1696                                 if(vidmodes[i]->dotclock && vidmodes[i]->htotal && vidmodes[i]->vtotal)
1697                                         modes[k].refreshrate = vidmodes[i]->dotclock / vidmodes[i]->htotal / vidmodes[i]->vtotal;
1698                                 else
1699                                         modes[k].refreshrate = 60;
1700                                 modes[k].pixelheight_num = 1;
1701                                 modes[k].pixelheight_denom = 1; // xvidmode does not provide this
1702                                 ++k;
1703                         }
1704                 }
1705                 // manpage of XF86VidModeGetAllModeLines says it should be freed by the caller
1706                 XFree(vidmodes);
1707                 return k;
1708         }
1709         return 0; // FIXME implement this
1710 }