2 Copyright (C) 1996-1997 Id Software, Inc.
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.
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.
13 See the GNU General Public License for more details.
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.
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)?
31 #include "dpsoftrast.h"
33 #include <X11/keysym.h>
34 #include <X11/cursorfont.h>
37 #include <X11/extensions/XShm.h>
38 #if !defined(__APPLE__) && !defined(__MACH__) && !defined(SUNOS)
39 #include <X11/extensions/xf86dga.h>
41 #include <X11/extensions/xf86vmode.h>
45 #include <X11/extensions/XShm.h>
52 #include "darkplaces.xpm"
54 // Tell startup code that we have a client
55 int cl_available = true;
57 // note: if we used the XRandR extension we could support refresh rates
58 qboolean vid_supportrefreshrate = false;
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);
68 //GLX_ARB_get_proc_address
69 void *(GLAPIENTRY *qglXGetProcAddressARB)(const GLubyte *procName);
71 static dllfunction_t getprocaddressfuncs[] =
73 {"glXGetProcAddressARB", (void **) &qglXGetProcAddressARB},
77 //GLX_SGI_swap_control
78 GLint (GLAPIENTRY *qglXSwapIntervalSGI)(GLint interval);
80 static dllfunction_t swapcontrolfuncs[] =
82 {"glXSwapIntervalSGI", (void **) &qglXSwapIntervalSGI},
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 = 0;
93 static XShmSegmentInfo vidx11_shminfo[2];
94 static int vidx11_shmevent = -1;
95 static int vidx11_shmwait = 0; // number of frames outstanding
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;
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 | \
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;
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;
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"};
128 qboolean vidmode_ext = false;
130 static int win_x, win_y;
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;
138 static Visual *vidx11_visual;
139 static Colormap vidx11_colormap;
141 /*-----------------------------------------------------------------------*/
144 long keysym2ucs(KeySym keysym);
145 void DP_Xutf8LookupString(XKeyEvent * ev,
147 KeySym * keysym_return,
148 Status * status_return)
154 int nbytes = sizeof(buffer);
156 rc = XLookupString(ev, buffer, nbytes, &keysym, NULL);
159 codepoint = buffer[0] & 0xFF;
161 codepoint = keysym2ucs(keysym);
165 if (keysym == None) {
166 *status_return = XLookupNone;
168 *status_return = XLookupKeySym;
169 *keysym_return = keysym;
177 if (keysym != None) {
178 *keysym_return = keysym;
179 *status_return = XLookupBoth;
181 *status_return = XLookupChars;
184 static int XLateKey(XKeyEvent *ev, Uchar *ascii)
188 KeySym keysym, shifted;
191 keysym = XLookupKeysym (ev, 0);
192 DP_Xutf8LookupString(ev, ascii, &shifted, &status);
196 case XK_KP_Page_Up: key = K_KP_PGUP; break;
197 case XK_Page_Up: key = K_PGUP; break;
199 case XK_KP_Page_Down: key = K_KP_PGDN; break;
200 case XK_Page_Down: key = K_PGDN; break;
202 case XK_KP_Home: key = K_KP_HOME; break;
203 case XK_Home: key = K_HOME; break;
205 case XK_KP_End: key = K_KP_END; break;
206 case XK_End: key = K_END; break;
208 case XK_KP_Left: key = K_KP_LEFTARROW; break;
209 case XK_Left: key = K_LEFTARROW; break;
211 case XK_KP_Right: key = K_KP_RIGHTARROW; break;
212 case XK_Right: key = K_RIGHTARROW; break;
214 case XK_KP_Down: key = K_KP_DOWNARROW; break;
215 case XK_Down: key = K_DOWNARROW; break;
217 case XK_KP_Up: key = K_KP_UPARROW; break;
218 case XK_Up: key = K_UPARROW; break;
220 case XK_Escape: key = K_ESCAPE; break;
222 case XK_KP_Enter: key = K_KP_ENTER; break;
223 case XK_Return: key = K_ENTER; break;
225 case XK_Tab: key = K_TAB; break;
227 case XK_F1: key = K_F1; break;
229 case XK_F2: key = K_F2; break;
231 case XK_F3: key = K_F3; break;
233 case XK_F4: key = K_F4; break;
235 case XK_F5: key = K_F5; break;
237 case XK_F6: key = K_F6; break;
239 case XK_F7: key = K_F7; break;
241 case XK_F8: key = K_F8; break;
243 case XK_F9: key = K_F9; break;
245 case XK_F10: key = K_F10; break;
247 case XK_F11: key = K_F11; break;
249 case XK_F12: key = K_F12; break;
251 case XK_BackSpace: key = K_BACKSPACE; break;
253 case XK_KP_Delete: key = K_KP_DEL; break;
254 case XK_Delete: key = K_DEL; break;
256 case XK_Pause: key = K_PAUSE; break;
259 case XK_Shift_R: key = K_SHIFT; break;
263 case XK_Control_R: key = K_CTRL; break;
267 case XK_ISO_Level3_Shift:
269 case XK_Meta_R: key = K_ALT; break;
271 case XK_KP_Begin: key = K_KP_5; break;
273 case XK_Insert:key = K_INS; break;
274 case XK_KP_Insert: key = K_KP_INS; break;
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;
281 case XK_asciicircum: *ascii = key = '^'; break; // for some reason, XLookupString returns "" on this one for Grunt|2
283 case XK_section: *ascii = key = '~'; break;
289 if (keysym >= 'A' && keysym <= 'Z')
290 key = keysym - 'A' + 'a';
300 static Cursor CreateNullCursor(Display *display, Window root)
308 cursormask = XCreatePixmap(display, root, 1, 1, 1);
309 xgc.function = GXclear;
310 gc = XCreateGC(display, cursormask, GCFunction, &xgc);
311 XFillRectangle(display, cursormask, gc, 0, 0, 1, 1);
312 dummycolour.pixel = 0;
314 dummycolour.flags = 04;
315 cursor = XCreatePixmapCursor(display, cursormask, cursormask, &dummycolour,&dummycolour, 0,0);
316 XFreePixmap(display,cursormask);
321 void VID_SetMouse(qboolean fullscreengrab, qboolean relative, qboolean hidecursor)
323 static int originalmouseparms_num;
324 static int originalmouseparms_denom;
325 static int originalmouseparms_threshold;
326 static qboolean restore_spi;
328 #if !defined(__APPLE__) && !defined(SUNOS)
329 qboolean usedgamouse;
332 if (!vidx11_display || !win)
336 fullscreengrab = true;
339 fullscreengrab = relative = hidecursor = false;
341 #if !defined(__APPLE__) && !defined(SUNOS)
342 usedgamouse = relative && vid_dgamouse.integer;
343 if (!vid_x11_dgasupported)
345 if (fullscreengrab && vid_usingmouse && (vid_usingdgamouse != usedgamouse))
346 VID_SetMouse(false, false, false); // ungrab first!
349 if (vid_usingmousegrab != fullscreengrab)
351 vid_usingmousegrab = fullscreengrab;
352 cl_ignoremousemoves = 2;
355 XGrabPointer(vidx11_display, win, True, 0, GrabModeAsync, GrabModeAsync, win, None, CurrentTime);
356 if (vid_grabkeyboard.integer || vid_isoverrideredirect)
357 XGrabKeyboard(vidx11_display, win, False, GrabModeAsync, GrabModeAsync, CurrentTime);
361 XUngrabPointer(vidx11_display, CurrentTime);
362 XUngrabKeyboard(vidx11_display, CurrentTime);
370 XWindowAttributes attribs_1;
371 XSetWindowAttributes attribs_2;
373 XGetWindowAttributes(vidx11_display, win, &attribs_1);
374 attribs_2.event_mask = attribs_1.your_event_mask | KEY_MASK | MOUSE_MASK;
375 XChangeWindowAttributes(vidx11_display, win, CWEventMask, &attribs_2);
377 #if !defined(__APPLE__) && !defined(SUNOS)
378 vid_usingdgamouse = usedgamouse;
381 XF86DGADirectVideo(vidx11_display, DefaultScreen(vidx11_display), XF86DGADirectMouse);
382 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, 0, 0);
386 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, vid.width / 2, vid.height / 2);
388 // COMMANDLINEOPTION: X11 Input: -noforcemparms disables setting of mouse parameters (not used with DGA, windows only)
389 #if !defined(__APPLE__) && !defined(SUNOS)
390 if (!COM_CheckParm ("-noforcemparms") && !usedgamouse)
392 if (!COM_CheckParm ("-noforcemparms"))
395 XGetPointerControl(vidx11_display, &originalmouseparms_num, &originalmouseparms_denom, &originalmouseparms_threshold);
396 XChangePointerControl (vidx11_display, true, false, 1, 1, -1); // TODO maybe change threshold here, or remove this comment
402 cl_ignoremousemoves = 2;
403 vid_usingmouse = true;
410 #if !defined(__APPLE__) && !defined(SUNOS)
411 if (vid_usingdgamouse)
412 XF86DGADirectVideo(vidx11_display, DefaultScreen(vidx11_display), 0);
413 vid_usingdgamouse = false;
415 cl_ignoremousemoves = 2;
418 XChangePointerControl (vidx11_display, true, true, originalmouseparms_num, originalmouseparms_denom, originalmouseparms_threshold);
421 vid_usingmouse = false;
425 if (vid_usinghidecursor != hidecursor)
427 vid_usinghidecursor = hidecursor;
429 XDefineCursor(vidx11_display, win, CreateNullCursor(vidx11_display, win));
431 XUndefineCursor(vidx11_display, win);
435 static keynum_t buttonremap[18] =
457 static qboolean BuildXImages(int w, int h)
460 if(DefaultDepth(vidx11_display, vidx11_screen) != 32 && DefaultDepth(vidx11_display, vidx11_screen) != 24)
462 Con_Printf("Sorry, we only support 24bpp and 32bpp modes\n");
466 // match to dpsoftrast's specs
467 if(vidx11_visual->red_mask != 0x00FF0000)
469 Con_Printf("Sorry, we only support BGR visuals\n");
473 if(vidx11_visual->green_mask != 0x0000FF00)
475 Con_Printf("Sorry, we only support BGR visuals\n");
479 if(vidx11_visual->blue_mask != 0x000000FF)
481 Con_Printf("Sorry, we only support BGR visuals\n");
485 if(vidx11_shmevent >= 0)
487 for(i = 0; i < 2; ++i)
489 vidx11_shminfo[i].shmid = -1;
490 vidx11_ximage[i] = XShmCreateImage(vidx11_display, vidx11_visual, DefaultDepth(vidx11_display, vidx11_screen), ZPixmap, NULL, &vidx11_shminfo[i], w, h);
491 if(!vidx11_ximage[i])
493 Con_Printf("Failed to get an XImage segment\n");
497 if(vidx11_ximage[i]->bytes_per_line != w * 4)
499 Con_Printf("Sorry, we only support linear pixel layout\n");
503 vidx11_shminfo[i].shmid = shmget(IPC_PRIVATE, vidx11_ximage[i]->bytes_per_line * vidx11_ximage[i]->height, IPC_CREAT|0777);
504 if(vidx11_shminfo[i].shmid < 0)
506 Con_Printf("Failed to get a shm segment\n");
510 vidx11_shminfo[i].shmaddr = vidx11_ximage[i]->data = shmat(vidx11_shminfo[i].shmid, NULL, 0);
511 if(!vidx11_shminfo[i].shmaddr)
513 Con_Printf("Failed to get a shm segment addresst\n");
517 vidx11_shminfo[i].readOnly = True;
518 XShmAttach(vidx11_display, &vidx11_shminfo[i]);
523 for(i = 0; i < 1; ++i) // we only need one buffer if we don't use Xshm
525 char *p = calloc(4, w * h);
526 vidx11_shminfo[i].shmid = -1;
527 vidx11_ximage[i] = XCreateImage(vidx11_display, vidx11_visual, DefaultDepth(vidx11_display, vidx11_screen), ZPixmap, 0, (char*)p, w, h, 8, 0);
528 if(!vidx11_ximage[i])
530 Con_Printf("Failed to get an XImage segment\n");
534 if(vidx11_ximage[i]->bytes_per_line != w * 4)
536 Con_Printf("Sorry, we only support linear pixel layout\n");
544 static void DestroyXImages(void)
547 for(i = 0; i < 2; ++i)
549 if(vidx11_shminfo[i].shmid >= 0)
551 XShmDetach(vidx11_display, &vidx11_shminfo[i]);
552 XDestroyImage(vidx11_ximage[i]);
553 vidx11_ximage[i] = NULL;
554 shmdt(vidx11_shminfo[i].shmaddr);
555 shmctl(vidx11_shminfo[i].shmid, IPC_RMID, 0);
556 vidx11_shminfo[i].shmid = -1;
559 XDestroyImage(vidx11_ximage[i]);
560 vidx11_ximage[i] = 0;
564 static int in_mouse_x_save = 0, in_mouse_y_save = 0;
565 static void HandleEvents(void)
570 qboolean dowarp = false;
575 in_mouse_x += in_mouse_x_save;
576 in_mouse_y += in_mouse_y_save;
580 while (XPending(vidx11_display))
582 XNextEvent(vidx11_display, &event);
588 key = XLateKey (&event.xkey, &unicode);
589 Key_Event(key, unicode, true);
594 key = XLateKey (&event.xkey, &unicode);
595 Key_Event(key, unicode, false);
602 #if !defined(__APPLE__) && !defined(SUNOS)
603 if (vid_usingdgamouse)
605 in_mouse_x += event.xmotion.x_root;
606 in_mouse_y += event.xmotion.y_root;
611 if (!event.xmotion.send_event)
613 in_mouse_x += event.xmotion.x - in_windowmouse_x;
614 in_mouse_y += event.xmotion.y - in_windowmouse_y;
615 //if (abs(vid.width/2 - event.xmotion.x) + abs(vid.height/2 - event.xmotion.y))
616 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)
621 in_windowmouse_x = event.xmotion.x;
622 in_windowmouse_y = event.xmotion.y;
626 // mouse button pressed
627 if (event.xbutton.button <= 18)
628 Key_Event(buttonremap[event.xbutton.button - 1], 0, true);
630 Con_Printf("HandleEvents: ButtonPress gave value %d, 1-18 expected\n", event.xbutton.button);
634 // mouse button released
635 if (event.xbutton.button <= 18)
636 Key_Event(buttonremap[event.xbutton.button - 1], 0, false);
638 Con_Printf("HandleEvents: ButtonRelease gave value %d, 1-18 expected\n", event.xbutton.button);
643 win_x = event.xcreatewindow.x;
644 win_y = event.xcreatewindow.y;
647 case ConfigureNotify:
648 // window changed size/location
649 win_x = event.xconfigure.x;
650 win_y = event.xconfigure.y;
651 if((vid_resizable.integer < 2 || vid_isnetwmfullscreen) && (vid.width != event.xconfigure.width || vid.height != event.xconfigure.height))
653 vid.width = event.xconfigure.width;
654 vid.height = event.xconfigure.height;
655 if(vid_isnetwmfullscreen)
656 Con_Printf("NetWM fullscreen: actually using resolution %dx%d\n", vid.width, vid.height);
658 Con_DPrintf("Updating to ConfigureNotify resolution %dx%d\n", vid.width, vid.height);
662 if(vid.softdepthpixels)
663 free(vid.softdepthpixels);
666 XSync(vidx11_display, False);
667 if(!BuildXImages(vid.width, vid.height))
669 XSync(vidx11_display, False);
671 vid.softpixels = (unsigned int *) vidx11_ximage[vidx11_ximage_pos]->data;
672 vid.softdepthpixels = (unsigned int *)calloc(4, vid.width * vid.height);
676 // window has been destroyed
680 // window manager messages
681 if ((event.xclient.format == 32) && ((unsigned int)event.xclient.data.l[0] == wm_delete_window_atom))
685 if (vid_isoverrideredirect)
689 VID_RestoreSystemGamma();
691 if(vid_isvidmodefullscreen)
693 // set our video mode
694 XF86VidModeSwitchToMode(vidx11_display, vidx11_screen, &game_vidmode);
696 // Move the viewport to top left
697 XF86VidModeSetViewPort(vidx11_display, vidx11_screen, 0, 0);
700 if(vid_isnetwmfullscreen)
702 // make sure it's fullscreen
704 event.type = ClientMessage;
705 event.xclient.serial = 0;
706 event.xclient.send_event = True;
707 event.xclient.message_type = net_wm_state_atom;
708 event.xclient.window = win;
709 event.xclient.format = 32;
710 event.xclient.data.l[0] = 1;
711 event.xclient.data.l[1] = net_wm_state_fullscreen_atom;
712 event.xclient.data.l[2] = 0;
713 event.xclient.data.l[3] = 1;
714 event.xclient.data.l[4] = 0;
715 XSendEvent(vidx11_display, root, False, SubstructureRedirectMask | SubstructureNotifyMask, &event);
722 if (vid_isoverrideredirect)
724 // window iconified/rolledup/whatever
726 VID_RestoreSystemGamma();
728 if(vid_isvidmodefullscreen)
729 XF86VidModeSwitchToMode(vidx11_display, vidx11_screen, &init_vidmode);
733 if (vid_isoverrideredirect)
735 // window is now the input focus
736 vid_activewindow = true;
739 if (vid_isoverrideredirect)
742 if(vid_isnetwmfullscreen && event.xfocus.mode == NotifyNormal)
744 // iconify netwm fullscreen window when it loses focus
745 // when the user selects it in the taskbar, the window manager will map it again and send MapNotify
747 event.type = ClientMessage;
748 event.xclient.serial = 0;
749 event.xclient.send_event = True;
750 event.xclient.message_type = net_wm_state_atom;
751 event.xclient.window = win;
752 event.xclient.format = 32;
753 event.xclient.data.l[0] = 1;
754 event.xclient.data.l[1] = net_wm_state_hidden_atom;
755 event.xclient.data.l[2] = 0;
756 event.xclient.data.l[3] = 1;
757 event.xclient.data.l[4] = 0;
758 XSendEvent(vidx11_display, root, False, SubstructureRedirectMask | SubstructureNotifyMask, &event);
761 // window is no longer the input focus
762 vid_activewindow = false;
763 VID_RestoreSystemGamma();
767 // mouse entered window
773 if(vidx11_shmevent >= 0 && event.type == vidx11_shmevent)
781 /* move the mouse to the window center again */
782 // we'll catch the warp motion by its send_event flag, updating the
783 // stored mouse position without adding any delta motion
785 event.type = MotionNotify;
786 event.xmotion.display = vidx11_display;
787 event.xmotion.window = win;
788 event.xmotion.x = vid.width / 2;
789 event.xmotion.y = vid.height / 2;
790 XSendEvent(vidx11_display, win, False, PointerMotionMask, &event);
791 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, vid.width / 2, vid.height / 2);
795 static void *prjobj = NULL;
797 static void GL_CloseLibrary(void)
803 qglXGetProcAddressARB = NULL;
806 gl_platformextensions = "";
809 static int GL_OpenLibrary(const char *name)
811 Con_Printf("Loading OpenGL driver %s\n", name);
813 if (!(prjobj = dlopen(name, RTLD_LAZY | RTLD_GLOBAL)))
815 Con_Printf("Unable to open symbol list for %s\n", name);
818 strlcpy(gl_driver, name, sizeof(gl_driver));
822 void *GL_GetProcAddress(const char *name)
825 if (qglXGetProcAddressARB != NULL)
826 p = (void *) qglXGetProcAddressARB((GLubyte *)name);
828 p = (void *) dlsym(prjobj, name);
832 void VID_Shutdown(void)
837 VID_EnableJoystick(false);
838 VID_SetMouse(false, false, false);
839 VID_RestoreSystemGamma();
841 // FIXME: glXDestroyContext here?
842 if (vid_isvidmodefullscreen)
843 XF86VidModeSwitchToMode(vidx11_display, vidx11_screen, &init_vidmode);
846 XFreeGC(vidx11_display, vidx11_gc);
850 vidx11_shmevent = -1;
851 vid.softpixels = NULL;
853 if (vid.softdepthpixels)
854 free(vid.softdepthpixels);
855 vid.softdepthpixels = NULL;
858 XDestroyWindow(vidx11_display, win);
859 XCloseDisplay(vidx11_display);
862 vid_isfullscreen = false;
863 vid_isnetwmfullscreen = false;
864 vid_isvidmodefullscreen = false;
865 vid_isoverrideredirect = false;
866 vidx11_display = NULL;
874 void signal_handler(int sig)
876 Con_Printf("Received signal %d, exiting...\n", sig);
877 VID_RestoreSystemGamma();
883 signal(SIGHUP, signal_handler);
884 signal(SIGINT, signal_handler);
885 signal(SIGQUIT, signal_handler);
886 signal(SIGILL, signal_handler);
887 signal(SIGTRAP, signal_handler);
888 signal(SIGIOT, signal_handler);
889 signal(SIGBUS, signal_handler);
890 signal(SIGFPE, signal_handler);
891 signal(SIGSEGV, signal_handler);
892 signal(SIGTERM, signal_handler);
895 void VID_Finish (void)
897 vid_usevsync = vid_vsync.integer && !cls.timedemo && qglXSwapIntervalSGI;
898 switch(vid.renderpath)
900 case RENDERPATH_SOFT:
901 if(vidx11_shmevent >= 0) {
902 vidx11_ximage_pos = !vidx11_ximage_pos;
903 vid.softpixels = (unsigned int *) vidx11_ximage[vidx11_ximage_pos]->data;
904 DPSOFTRAST_SetRenderTargets(vid.width, vid.height, vid.softdepthpixels, vid.softpixels, NULL, NULL, NULL);
906 // save mouse motion so we can deal with it later
909 while(vidx11_shmwait)
911 in_mouse_x_save += in_mouse_x;
912 in_mouse_y_save += in_mouse_y;
917 XShmPutImage(vidx11_display, win, vidx11_gc, vidx11_ximage[!vidx11_ximage_pos], 0, 0, 0, 0, vid.width, vid.height, True);
919 // no buffer switching here, we just flush the renderer
921 XPutImage(vidx11_display, win, vidx11_gc, vidx11_ximage[vidx11_ximage_pos], 0, 0, 0, 0, vid.width, vid.height);
925 case RENDERPATH_GL11:
926 case RENDERPATH_GL13:
927 case RENDERPATH_GL20:
928 case RENDERPATH_GLES1:
929 case RENDERPATH_GLES2:
930 if (vid_usingvsync != vid_usevsync)
932 vid_usingvsync = vid_usevsync;
933 if (qglXSwapIntervalSGI (vid_usevsync))
934 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");
940 if (r_speeds.integer == 2 || gl_finish.integer)
942 qglXSwapBuffers(vidx11_display, win);CHECKGLERROR
946 case RENDERPATH_D3D9:
947 case RENDERPATH_D3D10:
948 case RENDERPATH_D3D11:
952 if (vid_x11_hardwaregammasupported)
953 VID_UpdateGamma(false, vid_x11_gammarampsize);
956 int VID_SetGamma(unsigned short *ramps, int rampsize)
958 return XF86VidModeSetGammaRamp(vidx11_display, vidx11_screen, rampsize, ramps, ramps + rampsize, ramps + rampsize*2);
961 int VID_GetGamma(unsigned short *ramps, int rampsize)
963 return XF86VidModeGetGammaRamp(vidx11_display, vidx11_screen, rampsize, ramps, ramps + rampsize, ramps + rampsize*2);
968 #if !defined(__APPLE__) && !defined(SUNOS)
969 Cvar_RegisterVariable (&vid_dgamouse);
971 Cvar_RegisterVariable (&vid_netwmfullscreen);
972 InitSig(); // trap evil signals
973 // COMMANDLINEOPTION: Input: -nomouse disables mouse support (see also vid_mouse cvar)
974 if (COM_CheckParm ("-nomouse"))
976 vidx11_shminfo[0].shmid = -1;
977 vidx11_shminfo[1].shmid = -1;
980 void VID_BuildGLXAttrib(int *attrib, qboolean stencil, qboolean stereobuffer, int samples)
982 *attrib++ = GLX_RGBA;
983 *attrib++ = GLX_RED_SIZE;*attrib++ = stencil ? 8 : 5;
984 *attrib++ = GLX_GREEN_SIZE;*attrib++ = stencil ? 8 : 5;
985 *attrib++ = GLX_BLUE_SIZE;*attrib++ = stencil ? 8 : 5;
986 *attrib++ = GLX_DOUBLEBUFFER;
987 *attrib++ = GLX_DEPTH_SIZE;*attrib++ = stencil ? 24 : 16;
988 // if stencil is enabled, ask for alpha too
991 *attrib++ = GLX_STENCIL_SIZE;*attrib++ = 8;
992 *attrib++ = GLX_ALPHA_SIZE;*attrib++ = 8;
995 *attrib++ = GLX_STEREO;
998 *attrib++ = GLX_SAMPLE_BUFFERS_ARB;
1000 *attrib++ = GLX_SAMPLES_ARB;
1001 *attrib++ = samples;
1006 qboolean VID_InitModeSoft(viddef_mode_t *mode)
1009 XSetWindowAttributes attr;
1010 XClassHint *clshints;
1012 XSizeHints *szhints;
1014 int MajorVersion, MinorVersion;
1017 unsigned char *data;
1019 const char *dpyname;
1021 vid_isfullscreen = false;
1022 vid_isnetwmfullscreen = false;
1023 vid_isvidmodefullscreen = false;
1024 vid_isoverrideredirect = false;
1026 if (!(vidx11_display = XOpenDisplay(NULL)))
1028 Con_Print("Couldn't open the X display\n");
1031 dpyname = XDisplayName(NULL);
1033 // LordHavoc: making the close button on a window do the right thing
1034 // seems to involve this mess, sigh...
1035 wm_delete_window_atom = XInternAtom(vidx11_display, "WM_DELETE_WINDOW", false);
1036 net_wm_state_atom = XInternAtom(vidx11_display, "_NET_WM_STATE", false);
1037 net_wm_state_fullscreen_atom = XInternAtom(vidx11_display, "_NET_WM_STATE_FULLSCREEN", false);
1038 net_wm_state_hidden_atom = XInternAtom(vidx11_display, "_NET_WM_STATE_HIDDEN", false);
1039 net_wm_icon = XInternAtom(vidx11_display, "_NET_WM_ICON", false);
1040 cardinal = XInternAtom(vidx11_display, "CARDINAL", false);
1042 // make autorepeat send keypress/keypress/.../keyrelease instead of intervening keyrelease
1043 XkbSetDetectableAutoRepeat(vidx11_display, true, NULL);
1045 vidx11_screen = DefaultScreen(vidx11_display);
1046 root = RootWindow(vidx11_display, vidx11_screen);
1048 // Get video mode list
1049 MajorVersion = MinorVersion = 0;
1050 if (!XF86VidModeQueryVersion(vidx11_display, &MajorVersion, &MinorVersion))
1051 vidmode_ext = false;
1054 Con_DPrintf("Using XFree86-VidModeExtension Version %d.%d\n", MajorVersion, MinorVersion);
1058 if (mode->fullscreen)
1060 if(vid_netwmfullscreen.integer)
1062 // TODO detect WM support
1063 vid_isnetwmfullscreen = true;
1064 vid_isfullscreen = true;
1065 // width and height will be filled in later
1066 Con_DPrintf("Using NetWM fullscreen mode\n");
1069 if(!vid_isfullscreen && vidmode_ext)
1071 int best_fit, best_dist, dist, x, y;
1073 // Are we going fullscreen? If so, let's change video mode
1074 XF86VidModeModeLine *current_vidmode;
1075 XF86VidModeModeInfo **vidmodes;
1078 // This nice hack comes from the SDL source code
1079 current_vidmode = (XF86VidModeModeLine*)((char*)&init_vidmode + sizeof(init_vidmode.dotclock));
1080 XF86VidModeGetModeLine(vidx11_display, vidx11_screen, (int*)&init_vidmode.dotclock, current_vidmode);
1082 XF86VidModeGetAllModeLines(vidx11_display, vidx11_screen, &num_vidmodes, &vidmodes);
1086 for (i = 0; i < num_vidmodes; i++)
1088 if (mode->width > vidmodes[i]->hdisplay || mode->height > vidmodes[i]->vdisplay)
1091 x = mode->width - vidmodes[i]->hdisplay;
1092 y = mode->height - vidmodes[i]->vdisplay;
1093 dist = (x * x) + (y * y);
1094 if (best_fit == -1 || dist < best_dist)
1103 // LordHavoc: changed from ActualWidth/ActualHeight =,
1104 // to width/height =, so the window will take the full area of
1106 mode->width = vidmodes[best_fit]->hdisplay;
1107 mode->height = vidmodes[best_fit]->vdisplay;
1109 // change to the mode
1110 XF86VidModeSwitchToMode(vidx11_display, vidx11_screen, vidmodes[best_fit]);
1111 memcpy(&game_vidmode, vidmodes[best_fit], sizeof(game_vidmode));
1112 vid_isvidmodefullscreen = true;
1113 vid_isfullscreen = true;
1115 // Move the viewport to top left
1116 XF86VidModeSetViewPort(vidx11_display, vidx11_screen, 0, 0);
1117 Con_DPrintf("Using XVidMode fullscreen mode at %dx%d\n", mode->width, mode->height);
1123 if(!vid_isfullscreen)
1125 // sorry, no FS available
1126 // use the full desktop resolution
1127 vid_isfullscreen = true;
1128 // width and height will be filled in later
1129 mode->width = DisplayWidth(vidx11_display, vidx11_screen);
1130 mode->height = DisplayHeight(vidx11_display, vidx11_screen);
1131 Con_DPrintf("Using X11 fullscreen mode at %dx%d\n", mode->width, mode->height);
1135 // LordHavoc: save the visual for use in gamma ramp settings later
1136 vidx11_visual = DefaultVisual(vidx11_display, vidx11_screen);
1138 /* window attributes */
1139 attr.background_pixel = 0;
1140 attr.border_pixel = 0;
1141 // LordHavoc: save the colormap for later, too
1142 vidx11_colormap = attr.colormap = XCreateColormap(vidx11_display, root, vidx11_visual, AllocNone);
1143 attr.event_mask = X_MASK;
1145 if (mode->fullscreen)
1147 if(vid_isnetwmfullscreen)
1149 mask = CWBackPixel | CWColormap | CWSaveUnder | CWBackingStore | CWEventMask;
1150 attr.backing_store = NotUseful;
1151 attr.save_under = False;
1155 mask = CWBackPixel | CWColormap | CWSaveUnder | CWBackingStore | CWEventMask | CWOverrideRedirect;
1156 attr.override_redirect = True;
1157 attr.backing_store = NotUseful;
1158 attr.save_under = False;
1159 vid_isoverrideredirect = true; // so it knows to grab
1164 mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
1167 win = XCreateWindow(vidx11_display, root, 0, 0, mode->width, mode->height, 0, CopyFromParent, InputOutput, vidx11_visual, mask, &attr);
1169 data = loadimagepixelsbgra("darkplaces-icon", false, false, false, NULL);
1172 // use _NET_WM_ICON too
1173 static long netwm_icon[MAX_NETWM_ICON];
1179 if(pos + 2 * image_width * image_height < MAX_NETWM_ICON)
1181 netwm_icon[pos++] = image_width;
1182 netwm_icon[pos++] = image_height;
1183 for(i = 0; i < image_height; ++i)
1184 for(j = 0; j < image_width; ++j)
1185 netwm_icon[pos++] = BuffLittleLong(&data[(i*image_width+j)*4]);
1189 Con_Printf("Skipping NETWM icon #%d because there is no space left\n", i);
1193 data = loadimagepixelsbgra(va("darkplaces-icon%d", i), false, false, false, NULL);
1195 XChangeProperty(vidx11_display, win, net_wm_icon, cardinal, 32, PropModeReplace, (const unsigned char *) netwm_icon, pos);
1198 // fallthrough for old window managers
1199 xpm = (char *) FS_LoadFile("darkplaces-icon.xpm", tempmempool, false, NULL);
1202 idata = XPM_DecodeString(xpm);
1204 idata = ENGINE_ICON;
1206 wmhints = XAllocWMHints();
1207 if(XpmCreatePixmapFromData(vidx11_display, win,
1209 &wmhints->icon_pixmap, &wmhints->icon_mask, NULL) == XpmSuccess)
1210 wmhints->flags |= IconPixmapHint | IconMaskHint;
1215 clshints = XAllocClassHint();
1216 clshints->res_name = strdup(gamename);
1217 clshints->res_class = strdup("DarkPlaces");
1219 szhints = XAllocSizeHints();
1220 if(vid_resizable.integer == 0 && !vid_isnetwmfullscreen)
1222 szhints->min_width = szhints->max_width = mode->width;
1223 szhints->min_height = szhints->max_height = mode->height;
1224 szhints->flags |= PMinSize | PMaxSize;
1227 XmbSetWMProperties(vidx11_display, win, gamename, gamename, (char **) com_argv, com_argc, szhints, wmhints, clshints);
1228 // strdup() allocates using malloc(), should be freed with free()
1229 free(clshints->res_name);
1230 free(clshints->res_class);
1235 //XStoreName(vidx11_display, win, gamename);
1236 XMapWindow(vidx11_display, win);
1238 XSetWMProtocols(vidx11_display, win, &wm_delete_window_atom, 1);
1240 if (vid_isoverrideredirect)
1242 XMoveWindow(vidx11_display, win, 0, 0);
1243 XRaiseWindow(vidx11_display, win);
1244 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, 0, 0);
1245 XFlush(vidx11_display);
1248 if(vid_isvidmodefullscreen)
1250 // Move the viewport to top left
1251 XF86VidModeSetViewPort(vidx11_display, vidx11_screen, 0, 0);
1254 //XSync(vidx11_display, False);
1256 // COMMANDLINEOPTION: Unix GLX: -noshm disables XShm extensioon
1257 if(dpyname && dpyname[0] == ':' && dpyname[1] && (dpyname[2] < '0' || dpyname[2] > '9') && !COM_CheckParm("-noshm") && XShmQueryExtension(vidx11_display))
1259 Con_Printf("Using XShm\n");
1260 vidx11_shmevent = XShmGetEventBase(vidx11_display) + ShmCompletion;
1264 Con_Printf("Not using XShm\n");
1265 vidx11_shmevent = -1;
1267 BuildXImages(mode->width, mode->height);
1269 vidx11_ximage_pos = 0;
1270 vid.softpixels = (unsigned int *) vidx11_ximage[vidx11_ximage_pos]->data;
1272 vid.softdepthpixels = (unsigned int *)calloc(1, mode->width * mode->height * 4);
1274 memset(&gcval, 0, sizeof(gcval));
1275 vidx11_gc = XCreateGC(vidx11_display, win, 0, &gcval);
1277 if (DPSOFTRAST_Init(mode->width, mode->height, vid_soft_threads.integer, vid_soft_interlace.integer, (unsigned int *)vid.softpixels, (unsigned int *)vid.softdepthpixels) < 0)
1279 Con_Printf("Failed to initialize software rasterizer\n");
1284 XSync(vidx11_display, False);
1286 vid_usingmousegrab = false;
1287 vid_usingmouse = false;
1288 vid_usinghidecursor = false;
1289 vid_usingvsync = false;
1291 vid_activewindow = true;
1292 vid_x11_hardwaregammasupported = XF86VidModeGetGammaRampSize(vidx11_display, vidx11_screen, &vid_x11_gammarampsize) != 0;
1293 #if !defined(__APPLE__) && !defined(SUNOS)
1294 vid_x11_dgasupported = XF86DGAQueryVersion(vidx11_display, &MajorVersion, &MinorVersion);
1295 if (!vid_x11_dgasupported)
1296 Con_Print( "Failed to detect XF86DGA Mouse extension\n" );
1299 VID_Soft_SharedSetup();
1303 qboolean VID_InitModeGL(viddef_mode_t *mode)
1307 XSetWindowAttributes attr;
1308 XClassHint *clshints;
1310 XSizeHints *szhints;
1312 XVisualInfo *visinfo;
1313 int MajorVersion, MinorVersion;
1314 const char *drivername;
1317 unsigned char *data;
1319 vid_isfullscreen = false;
1320 vid_isnetwmfullscreen = false;
1321 vid_isvidmodefullscreen = false;
1322 vid_isoverrideredirect = false;
1324 #if defined(__APPLE__) && defined(__MACH__)
1325 drivername = "/usr/X11R6/lib/libGL.1.dylib";
1327 drivername = "libGL.so.1";
1329 // 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
1330 // 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
1331 // LordHavoc: although this works on MacOSX, it's useless there (as there is only one system libGL)
1332 i = COM_CheckParm("-gl_driver");
1333 if (i && i < com_argc - 1)
1334 drivername = com_argv[i + 1];
1335 if (!GL_OpenLibrary(drivername))
1337 Con_Printf("Unable to load GL driver \"%s\"\n", drivername);
1341 if (!(vidx11_display = XOpenDisplay(NULL)))
1343 Con_Print("Couldn't open the X display\n");
1347 // LordHavoc: making the close button on a window do the right thing
1348 // seems to involve this mess, sigh...
1349 wm_delete_window_atom = XInternAtom(vidx11_display, "WM_DELETE_WINDOW", false);
1350 net_wm_state_atom = XInternAtom(vidx11_display, "_NET_WM_STATE", false);
1351 net_wm_state_fullscreen_atom = XInternAtom(vidx11_display, "_NET_WM_STATE_FULLSCREEN", false);
1352 net_wm_state_hidden_atom = XInternAtom(vidx11_display, "_NET_WM_STATE_HIDDEN", false);
1353 net_wm_icon = XInternAtom(vidx11_display, "_NET_WM_ICON", false);
1354 cardinal = XInternAtom(vidx11_display, "CARDINAL", false);
1356 // make autorepeat send keypress/keypress/.../keyrelease instead of intervening keyrelease
1357 XkbSetDetectableAutoRepeat(vidx11_display, true, NULL);
1359 vidx11_screen = DefaultScreen(vidx11_display);
1360 root = RootWindow(vidx11_display, vidx11_screen);
1362 // Get video mode list
1363 MajorVersion = MinorVersion = 0;
1364 if (!XF86VidModeQueryVersion(vidx11_display, &MajorVersion, &MinorVersion))
1365 vidmode_ext = false;
1368 Con_DPrintf("Using XFree86-VidModeExtension Version %d.%d\n", MajorVersion, MinorVersion);
1372 if ((qglXChooseVisual = (XVisualInfo *(GLAPIENTRY *)(Display *dpy, int screen, int *attribList))GL_GetProcAddress("glXChooseVisual")) == NULL
1373 || (qglXCreateContext = (GLXContext (GLAPIENTRY *)(Display *dpy, XVisualInfo *vis, GLXContext shareList, Bool direct))GL_GetProcAddress("glXCreateContext")) == NULL
1374 || (qglXDestroyContext = (void (GLAPIENTRY *)(Display *dpy, GLXContext ctx))GL_GetProcAddress("glXDestroyContext")) == NULL
1375 || (qglXMakeCurrent = (Bool (GLAPIENTRY *)(Display *dpy, GLXDrawable drawable, GLXContext ctx))GL_GetProcAddress("glXMakeCurrent")) == NULL
1376 || (qglXSwapBuffers = (void (GLAPIENTRY *)(Display *dpy, GLXDrawable drawable))GL_GetProcAddress("glXSwapBuffers")) == NULL
1377 || (qglXQueryExtensionsString = (const char *(GLAPIENTRY *)(Display *dpy, int screen))GL_GetProcAddress("glXQueryExtensionsString")) == NULL)
1379 Con_Printf("glX functions not found in %s\n", gl_driver);
1383 VID_BuildGLXAttrib(attrib, mode->bitsperpixel == 32, mode->stereobuffer, mode->samples);
1384 visinfo = qglXChooseVisual(vidx11_display, vidx11_screen, attrib);
1387 Con_Print("Couldn't get an RGB, Double-buffered, Depth visual\n");
1391 if (mode->fullscreen)
1393 if(vid_netwmfullscreen.integer)
1395 // TODO detect WM support
1396 vid_isnetwmfullscreen = true;
1397 vid_isfullscreen = true;
1398 // width and height will be filled in later
1399 Con_DPrintf("Using NetWM fullscreen mode\n");
1402 if(!vid_isfullscreen && vidmode_ext)
1404 int best_fit, best_dist, dist, x, y;
1406 // Are we going fullscreen? If so, let's change video mode
1407 XF86VidModeModeLine *current_vidmode;
1408 XF86VidModeModeInfo **vidmodes;
1411 // This nice hack comes from the SDL source code
1412 current_vidmode = (XF86VidModeModeLine*)((char*)&init_vidmode + sizeof(init_vidmode.dotclock));
1413 XF86VidModeGetModeLine(vidx11_display, vidx11_screen, (int*)&init_vidmode.dotclock, current_vidmode);
1415 XF86VidModeGetAllModeLines(vidx11_display, vidx11_screen, &num_vidmodes, &vidmodes);
1419 for (i = 0; i < num_vidmodes; i++)
1421 if (mode->width > vidmodes[i]->hdisplay || mode->height > vidmodes[i]->vdisplay)
1424 x = mode->width - vidmodes[i]->hdisplay;
1425 y = mode->height - vidmodes[i]->vdisplay;
1426 dist = (x * x) + (y * y);
1427 if (best_fit == -1 || dist < best_dist)
1436 // LordHavoc: changed from ActualWidth/ActualHeight =,
1437 // to width/height =, so the window will take the full area of
1439 mode->width = vidmodes[best_fit]->hdisplay;
1440 mode->height = vidmodes[best_fit]->vdisplay;
1442 // change to the mode
1443 XF86VidModeSwitchToMode(vidx11_display, vidx11_screen, vidmodes[best_fit]);
1444 memcpy(&game_vidmode, vidmodes[best_fit], sizeof(game_vidmode));
1445 vid_isvidmodefullscreen = true;
1446 vid_isfullscreen = true;
1448 // Move the viewport to top left
1449 XF86VidModeSetViewPort(vidx11_display, vidx11_screen, 0, 0);
1450 Con_DPrintf("Using XVidMode fullscreen mode at %dx%d\n", mode->width, mode->height);
1456 if(!vid_isfullscreen)
1458 // sorry, no FS available
1459 // use the full desktop resolution
1460 vid_isfullscreen = true;
1461 // width and height will be filled in later
1462 mode->width = DisplayWidth(vidx11_display, vidx11_screen);
1463 mode->height = DisplayHeight(vidx11_display, vidx11_screen);
1464 Con_DPrintf("Using X11 fullscreen mode at %dx%d\n", mode->width, mode->height);
1468 // LordHavoc: save the visual for use in gamma ramp settings later
1469 vidx11_visual = visinfo->visual;
1471 /* window attributes */
1472 attr.background_pixel = 0;
1473 attr.border_pixel = 0;
1474 // LordHavoc: save the colormap for later, too
1475 vidx11_colormap = attr.colormap = XCreateColormap(vidx11_display, root, visinfo->visual, AllocNone);
1476 attr.event_mask = X_MASK;
1478 if (mode->fullscreen)
1480 if(vid_isnetwmfullscreen)
1482 mask = CWBackPixel | CWColormap | CWSaveUnder | CWBackingStore | CWEventMask;
1483 attr.backing_store = NotUseful;
1484 attr.save_under = False;
1488 mask = CWBackPixel | CWColormap | CWSaveUnder | CWBackingStore | CWEventMask | CWOverrideRedirect;
1489 attr.override_redirect = True;
1490 attr.backing_store = NotUseful;
1491 attr.save_under = False;
1492 vid_isoverrideredirect = true; // so it knows to grab
1497 mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
1500 win = XCreateWindow(vidx11_display, root, 0, 0, mode->width, mode->height, 0, visinfo->depth, InputOutput, visinfo->visual, mask, &attr);
1502 data = loadimagepixelsbgra("darkplaces-icon", false, false, false, NULL);
1505 // use _NET_WM_ICON too
1506 static long netwm_icon[MAX_NETWM_ICON];
1512 if(pos + 2 * image_width * image_height < MAX_NETWM_ICON)
1514 netwm_icon[pos++] = image_width;
1515 netwm_icon[pos++] = image_height;
1516 for(i = 0; i < image_height; ++i)
1517 for(j = 0; j < image_width; ++j)
1518 netwm_icon[pos++] = BuffLittleLong(&data[(i*image_width+j)*4]);
1522 Con_Printf("Skipping NETWM icon #%d because there is no space left\n", i);
1526 data = loadimagepixelsbgra(va("darkplaces-icon%d", i), false, false, false, NULL);
1528 XChangeProperty(vidx11_display, win, net_wm_icon, cardinal, 32, PropModeReplace, (const unsigned char *) netwm_icon, pos);
1531 // fallthrough for old window managers
1532 xpm = (char *) FS_LoadFile("darkplaces-icon.xpm", tempmempool, false, NULL);
1535 idata = XPM_DecodeString(xpm);
1537 idata = ENGINE_ICON;
1539 wmhints = XAllocWMHints();
1540 if(XpmCreatePixmapFromData(vidx11_display, win,
1542 &wmhints->icon_pixmap, &wmhints->icon_mask, NULL) == XpmSuccess)
1543 wmhints->flags |= IconPixmapHint | IconMaskHint;
1548 clshints = XAllocClassHint();
1549 clshints->res_name = strdup(gamename);
1550 clshints->res_class = strdup("DarkPlaces");
1552 szhints = XAllocSizeHints();
1553 if(vid_resizable.integer == 0 && !vid_isnetwmfullscreen)
1555 szhints->min_width = szhints->max_width = mode->width;
1556 szhints->min_height = szhints->max_height = mode->height;
1557 szhints->flags |= PMinSize | PMaxSize;
1560 XmbSetWMProperties(vidx11_display, win, gamename, gamename, (char **) com_argv, com_argc, szhints, wmhints, clshints);
1561 // strdup() allocates using malloc(), should be freed with free()
1562 free(clshints->res_name);
1563 free(clshints->res_class);
1568 //XStoreName(vidx11_display, win, gamename);
1569 XMapWindow(vidx11_display, win);
1571 XSetWMProtocols(vidx11_display, win, &wm_delete_window_atom, 1);
1573 if (vid_isoverrideredirect)
1575 XMoveWindow(vidx11_display, win, 0, 0);
1576 XRaiseWindow(vidx11_display, win);
1577 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, 0, 0);
1578 XFlush(vidx11_display);
1581 if(vid_isvidmodefullscreen)
1583 // Move the viewport to top left
1584 XF86VidModeSetViewPort(vidx11_display, vidx11_screen, 0, 0);
1587 //XSync(vidx11_display, False);
1589 ctx = qglXCreateContext(vidx11_display, visinfo, NULL, True);
1590 XFree(visinfo); // glXChooseVisual man page says to use XFree to free visinfo
1593 Con_Printf ("glXCreateContext failed\n");
1597 if (!qglXMakeCurrent(vidx11_display, win, ctx))
1599 Con_Printf ("glXMakeCurrent failed\n");
1603 XSync(vidx11_display, False);
1605 if ((qglGetString = (const GLubyte* (GLAPIENTRY *)(GLenum name))GL_GetProcAddress("glGetString")) == NULL)
1607 Con_Printf ("glGetString not found in %s\n", gl_driver);
1611 gl_extensions = (const char *)qglGetString(GL_EXTENSIONS);
1612 gl_platform = "GLX";
1613 gl_platformextensions = qglXQueryExtensionsString(vidx11_display, vidx11_screen);
1615 // COMMANDLINEOPTION: Linux GLX: -nogetprocaddress disables GLX_ARB_get_proc_address (not required, more formal method of getting extension functions)
1616 // COMMANDLINEOPTION: BSD GLX: -nogetprocaddress disables GLX_ARB_get_proc_address (not required, more formal method of getting extension functions)
1617 // COMMANDLINEOPTION: MacOSX GLX: -nogetprocaddress disables GLX_ARB_get_proc_address (not required, more formal method of getting extension functions)
1618 GL_CheckExtension("GLX_ARB_get_proc_address", getprocaddressfuncs, "-nogetprocaddress", false);
1619 // COMMANDLINEOPTION: Linux GLX: -novideosync disables GLX_SGI_swap_control
1620 // COMMANDLINEOPTION: BSD GLX: -novideosync disables GLX_SGI_swap_control
1621 // COMMANDLINEOPTION: MacOSX GLX: -novideosync disables GLX_SGI_swap_control
1622 GL_CheckExtension("GLX_SGI_swap_control", swapcontrolfuncs, "-novideosync", false);
1624 vid_usingmousegrab = false;
1625 vid_usingmouse = false;
1626 vid_usinghidecursor = false;
1627 vid_usingvsync = false;
1629 vid_activewindow = true;
1630 vid_x11_hardwaregammasupported = XF86VidModeGetGammaRampSize(vidx11_display, vidx11_screen, &vid_x11_gammarampsize) != 0;
1631 #if !defined(__APPLE__) && !defined(SUNOS)
1632 vid_x11_dgasupported = XF86DGAQueryVersion(vidx11_display, &MajorVersion, &MinorVersion);
1633 if (!vid_x11_dgasupported)
1634 Con_Print( "Failed to detect XF86DGA Mouse extension\n" );
1641 qboolean VID_InitMode(viddef_mode_t *mode)
1644 if (vid_soft.integer)
1645 return VID_InitModeSoft(mode);
1648 return VID_InitModeGL(mode);
1651 void Sys_SendKeyEvents(void)
1653 static qboolean sound_active = true;
1655 // enable/disable sound on focus gain/loss
1656 if ((!vid_hidden && vid_activewindow) || !snd_mutewhenidle.integer)
1661 sound_active = true;
1669 sound_active = false;
1676 void VID_BuildJoyState(vid_joystate_t *joystate)
1678 VID_Shared_BuildJoyState_Begin(joystate);
1679 VID_Shared_BuildJoyState_Finish(joystate);
1682 void VID_EnableJoystick(qboolean enable)
1684 int index = joy_enable.integer > 0 ? joy_index.integer : -1;
1685 qboolean success = false;
1686 int sharedcount = 0;
1687 sharedcount = VID_Shared_SetJoystick(index);
1688 if (index >= 0 && index < sharedcount)
1691 // update cvar containing count of XInput joysticks
1692 if (joy_detected.integer != sharedcount)
1693 Cvar_SetValueQuick(&joy_detected, sharedcount);
1695 Cvar_SetValueQuick(&joy_active, success ? 1 : 0);
1700 vid_joystate_t joystate;
1701 VID_EnableJoystick(true);
1702 VID_BuildJoyState(&joystate);
1703 VID_ApplyJoyState(&joystate);
1706 size_t VID_ListModes(vid_mode_t *modes, size_t maxcount)
1712 XF86VidModeModeInfo **vidmodes;
1715 XF86VidModeGetAllModeLines(vidx11_display, vidx11_screen, &num_vidmodes, &vidmodes);
1717 for (i = 0; i < num_vidmodes; i++)
1721 // we don't get bpp info, so let's just assume all of 8, 15, 16, 24, 32 work
1722 for(bpp = 8; bpp <= 32; bpp = ((bpp == 8) ? 15 : (bpp & 0xF8) + 8))
1726 modes[k].width = vidmodes[i]->hdisplay;
1727 modes[k].height = vidmodes[i]->vdisplay;
1729 if(vidmodes[i]->dotclock && vidmodes[i]->htotal && vidmodes[i]->vtotal)
1730 modes[k].refreshrate = vidmodes[i]->dotclock / vidmodes[i]->htotal / vidmodes[i]->vtotal;
1732 modes[k].refreshrate = 60;
1733 modes[k].pixelheight_num = 1;
1734 modes[k].pixelheight_denom = 1; // xvidmode does not provide this
1738 // manpage of XF86VidModeGetAllModeLines says it should be freed by the caller
1742 return 0; // FIXME implement this