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.
20 //#include <termios.h>
21 //#include <sys/ioctl.h>
22 //#include <sys/stat.h>
31 #include <X11/Xutil.h>
34 #include <X11/keysym.h>
35 #include <X11/cursorfont.h>
37 #include <X11/extensions/XShm.h>
38 #if !defined(__APPLE__) && !defined(__MACH__)
39 #include <X11/extensions/xf86dga.h>
41 #include <X11/extensions/xf86vmode.h>
45 // Tell startup code that we have a client
46 int cl_available = true;
49 XVisualInfo *(GLAPIENTRY *qglXChooseVisual)(Display *dpy, int screen, int *attribList);
50 GLXContext (GLAPIENTRY *qglXCreateContext)(Display *dpy, XVisualInfo *vis, GLXContext shareList, Bool direct);
51 void (GLAPIENTRY *qglXDestroyContext)(Display *dpy, GLXContext ctx);
52 Bool (GLAPIENTRY *qglXMakeCurrent)(Display *dpy, GLXDrawable drawable, GLXContext ctx);
53 void (GLAPIENTRY *qglXSwapBuffers)(Display *dpy, GLXDrawable drawable);
54 const char *(GLAPIENTRY *qglXQueryExtensionsString)(Display *dpy, int screen);
56 //GLX_ARB_get_proc_address
57 void *(GLAPIENTRY *qglXGetProcAddressARB)(const GLubyte *procName);
59 static dllfunction_t getprocaddressfuncs[] =
61 {"glXGetProcAddressARB", (void **) &qglXGetProcAddressARB},
66 GLint (GLAPIENTRY *qglXGetVideoSyncSGI)(GLuint *count);
67 GLint (GLAPIENTRY *qglXWaitVideoSyncSGI)(GLint divisor, GLint remainder, GLuint *count);
69 static dllfunction_t videosyncfuncs[] =
71 {"glXGetVideoSyncSGI", (void **) &qglXGetVideoSyncSGI},
72 {"glXWaitVideoSyncSGI", (void **) &qglXWaitVideoSyncSGI},
76 static Display *vidx11_display = NULL;
77 static int vidx11_screen;
79 static GLXContext ctx = NULL;
81 Atom wm_delete_window_atom;
83 #define KEY_MASK (KeyPressMask | KeyReleaseMask)
84 #define MOUSE_MASK (ButtonPressMask | ButtonReleaseMask | \
85 PointerMotionMask | ButtonMotionMask)
86 #define X_MASK (KEY_MASK | MOUSE_MASK | VisibilityChangeMask | \
87 StructureNotifyMask | FocusChangeMask | EnterWindowMask | \
91 static qboolean mouse_avail = true;
92 static qboolean mouse_active = false, usingmouse = false;
93 static float mouse_x, mouse_y;
94 static int p_mouse_x, p_mouse_y;
97 cvar_t vid_dga = {CVAR_SAVE, "vid_dga", "1"};
98 cvar_t vid_dga_mouseaccel = {0, "vid_dga_mouseaccel", "1"};
101 qboolean vidmode_ext = false;
103 static int win_x, win_y;
105 static int scr_width, scr_height;
107 static XF86VidModeModeInfo **vidmodes;
108 static int num_vidmodes;
109 static qboolean vidmode_active = false;
111 static Visual *vidx11_visual;
112 static Colormap vidx11_colormap;
114 /*-----------------------------------------------------------------------*/
116 static int XLateKey(XKeyEvent *ev, char *ascii)
120 KeySym keysym, shifted;
122 keysym = XLookupKeysym (ev, 0);
123 XLookupString(ev, buf, sizeof buf, &shifted, 0);
128 case XK_KP_Page_Up: key = K_KP_PGUP; break;
129 case XK_Page_Up: key = K_PGUP; break;
131 case XK_KP_Page_Down: key = K_KP_PGDN; break;
132 case XK_Page_Down: key = K_PGDN; break;
134 case XK_KP_Home: key = K_KP_HOME; break;
135 case XK_Home: key = K_HOME; break;
137 case XK_KP_End: key = K_KP_END; break;
138 case XK_End: key = K_END; break;
140 case XK_KP_Left: key = K_KP_LEFTARROW; break;
141 case XK_Left: key = K_LEFTARROW; break;
143 case XK_KP_Right: key = K_KP_RIGHTARROW; break;
144 case XK_Right: key = K_RIGHTARROW; break;
146 case XK_KP_Down: key = K_KP_DOWNARROW; break;
147 case XK_Down: key = K_DOWNARROW; break;
149 case XK_KP_Up: key = K_KP_UPARROW; break;
150 case XK_Up: key = K_UPARROW; break;
152 case XK_Escape: key = K_ESCAPE; break;
154 case XK_KP_Enter: key = K_KP_ENTER; break;
155 case XK_Return: key = K_ENTER; break;
157 case XK_Tab: key = K_TAB; break;
159 case XK_F1: key = K_F1; break;
161 case XK_F2: key = K_F2; break;
163 case XK_F3: key = K_F3; break;
165 case XK_F4: key = K_F4; break;
167 case XK_F5: key = K_F5; break;
169 case XK_F6: key = K_F6; break;
171 case XK_F7: key = K_F7; break;
173 case XK_F8: key = K_F8; break;
175 case XK_F9: key = K_F9; break;
177 case XK_F10: key = K_F10; break;
179 case XK_F11: key = K_F11; break;
181 case XK_F12: key = K_F12; break;
183 case XK_BackSpace: key = K_BACKSPACE; break;
185 case XK_KP_Delete: key = K_KP_DEL; break;
186 case XK_Delete: key = K_DEL; break;
188 case XK_Pause: key = K_PAUSE; break;
191 case XK_Shift_R: key = K_SHIFT; break;
195 case XK_Control_R: key = K_CTRL; break;
200 case XK_Meta_R: key = K_ALT; break;
202 case XK_KP_Begin: key = K_KP_5; break;
204 case XK_Insert:key = K_INS; break;
205 case XK_KP_Insert: key = K_KP_INS; break;
207 case XK_KP_Multiply: key = '*'; break;
208 case XK_KP_Add: key = K_KP_PLUS; break;
209 case XK_KP_Subtract: key = K_KP_MINUS; break;
210 case XK_KP_Divide: key = K_KP_SLASH; break;
213 if (keysym < 32 && keysym > 126)
216 if (keysym >= 'A' && keysym <= 'Z')
217 key = keysym - 'A' + 'a';
227 static Cursor CreateNullCursor(Display *display, Window root)
235 cursormask = XCreatePixmap(display, root, 1, 1, 1);
236 xgc.function = GXclear;
237 gc = XCreateGC(display, cursormask, GCFunction, &xgc);
238 XFillRectangle(display, cursormask, gc, 0, 0, 1, 1);
239 dummycolour.pixel = 0;
241 dummycolour.flags = 04;
242 cursor = XCreatePixmapCursor(display, cursormask, cursormask, &dummycolour,&dummycolour, 0,0);
243 XFreePixmap(display,cursormask);
248 static void install_grabs(void)
250 XWindowAttributes attribs_1;
251 XSetWindowAttributes attribs_2;
253 XGetWindowAttributes(vidx11_display, win, &attribs_1);
254 attribs_2.event_mask = attribs_1.your_event_mask | KEY_MASK | MOUSE_MASK;
255 XChangeWindowAttributes(vidx11_display, win, CWEventMask, &attribs_2);
258 XDefineCursor(vidx11_display, win, CreateNullCursor(vidx11_display, win));
260 XGrabPointer(vidx11_display, win, True, 0, GrabModeAsync, GrabModeAsync, win, None, CurrentTime);
265 int MajorVersion, MinorVersion;
267 if (!XF86DGAQueryVersion(vidx11_display, &MajorVersion, &MinorVersion))
269 // unable to query, probalby not supported
270 Con_Printf( "Failed to detect XF86DGA Mouse\n" );
276 XF86DGADirectVideo(vidx11_display, DefaultScreen(vidx11_display), XF86DGADirectMouse);
277 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, 0, 0);
282 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, scr_width / 2, scr_height / 2);
284 XGrabKeyboard(vidx11_display, win, False, GrabModeAsync, GrabModeAsync, CurrentTime);
287 mouse_x = mouse_y = 0;
290 static void uninstall_grabs(void)
292 if (!vidx11_display || !win)
296 if (vid_dga.integer == 1)
297 XF86DGADirectVideo(vidx11_display, DefaultScreen(vidx11_display), 0);
300 XUngrabPointer(vidx11_display, CurrentTime);
301 XUngrabKeyboard(vidx11_display, CurrentTime);
304 XUndefineCursor(vidx11_display, win);
306 mouse_active = false;
309 static void HandleEvents(void)
314 qboolean dowarp = false;
319 while (XPending(vidx11_display))
321 XNextEvent(vidx11_display, &event);
327 key = XLateKey (&event.xkey, &ascii);
328 Key_Event(key, ascii, true);
333 key = XLateKey (&event.xkey, &ascii);
334 Key_Event(key, ascii, false);
342 if (vid_dga.integer == 1)
344 mouse_x += event.xmotion.x_root * vid_dga_mouseaccel.value;
345 mouse_y += event.xmotion.y_root * vid_dga_mouseaccel.value;
351 if (!event.xmotion.send_event)
353 mouse_x += event.xmotion.x - p_mouse_x;
354 mouse_y += event.xmotion.y - p_mouse_y;
355 if (abs(scr_width/2 - event.xmotion.x) > scr_width / 4 || abs(scr_height/2 - event.xmotion.y) > scr_height / 4)
358 p_mouse_x = event.xmotion.x;
359 p_mouse_y = event.xmotion.y;
363 // ui_mouseupdate(event.xmotion.x, event.xmotion.y);
367 // mouse button pressed
368 switch(event.xbutton.button)
371 Key_Event(K_MOUSE1, 0, true);
374 Key_Event(K_MOUSE3, 0, true);
377 Key_Event(K_MOUSE2, 0, true);
380 Key_Event(K_MWHEELUP, 0, true);
383 Key_Event(K_MWHEELDOWN, 0, true);
386 Key_Event(K_MOUSE4, 0, true);
389 Key_Event(K_MOUSE5, 0, true);
392 Key_Event(K_MOUSE6, 0, true);
395 Key_Event(K_MOUSE7, 0, true);
398 Key_Event(K_MOUSE8, 0, true);
401 Key_Event(K_MOUSE9, 0, true);
404 Key_Event(K_MOUSE10, 0, true);
407 Con_Printf("HandleEvents: ButtonPress gave value %d, 1-12 expected\n", event.xbutton.button);
413 // mouse button released
414 switch(event.xbutton.button)
417 Key_Event(K_MOUSE1, 0, false);
420 Key_Event(K_MOUSE3, 0, false);
423 Key_Event(K_MOUSE2, 0, false);
426 Key_Event(K_MWHEELUP, 0, false);
429 Key_Event(K_MWHEELDOWN, 0, false);
432 Key_Event(K_MOUSE4, 0, false);
435 Key_Event(K_MOUSE5, 0, false);
438 Key_Event(K_MOUSE6, 0, false);
441 Key_Event(K_MOUSE7, 0, false);
444 Key_Event(K_MOUSE8, 0, false);
447 Key_Event(K_MOUSE9, 0, false);
450 Key_Event(K_MOUSE10, 0, false);
453 Con_Printf("HandleEvents: ButtonRelease gave value %d, 1-12 expected\n", event.xbutton.button);
460 win_x = event.xcreatewindow.x;
461 win_y = event.xcreatewindow.y;
464 case ConfigureNotify:
465 // window changed size/location
466 win_x = event.xconfigure.x;
467 win_y = event.xconfigure.y;
470 // window has been destroyed
474 // window manager messages
475 if ((event.xclient.format == 32) && ((unsigned int)event.xclient.data.l[0] == wm_delete_window_atom))
481 vid_activewindow = false;
482 VID_RestoreSystemGamma();
485 // window iconified/rolledup/whatever
487 vid_activewindow = false;
488 VID_RestoreSystemGamma();
491 // window is now the input focus
492 vid_activewindow = true;
495 // window is no longer the input focus
496 vid_activewindow = false;
497 VID_RestoreSystemGamma();
500 // mouse entered window
510 /* move the mouse to the window center again */
511 p_mouse_x = scr_width / 2;
512 p_mouse_y = scr_height / 2;
513 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, p_mouse_x, p_mouse_y);
518 static void IN_DeactivateMouse( void )
520 if (!mouse_avail || !vidx11_display || !win)
526 mouse_active = false;
530 static void IN_ActivateMouse( void )
532 if (!mouse_avail || !vidx11_display || !win)
537 mouse_x = mouse_y = 0; // don't spazz
543 void VID_Shutdown(void)
545 if (!ctx || !vidx11_display)
552 VID_RestoreSystemGamma();
555 // FIXME: glXDestroyContext here?
557 XF86VidModeSwitchToMode(vidx11_display, vidx11_screen, vidmodes[0]);
559 XDestroyWindow(vidx11_display, win);
560 XCloseDisplay(vidx11_display);
562 vidmode_active = false;
563 vidx11_display = NULL;
571 void signal_handler(int sig)
573 printf("Received signal %d, exiting...\n", sig);
574 VID_RestoreSystemGamma();
581 signal(SIGHUP, signal_handler);
582 signal(SIGINT, signal_handler);
583 signal(SIGQUIT, signal_handler);
584 signal(SIGILL, signal_handler);
585 signal(SIGTRAP, signal_handler);
586 signal(SIGIOT, signal_handler);
587 signal(SIGBUS, signal_handler);
588 signal(SIGFPE, signal_handler);
589 signal(SIGSEGV, signal_handler);
590 signal(SIGTERM, signal_handler);
598 void VID_GetWindowSize (int *x, int *y, int *width, int *height)
602 *height = scr_height;
605 void VID_Finish (void)
608 if (r_render.integer)
611 qglXSwapBuffers(vidx11_display, win);
614 // handle the mouse state when windowed if that's changed
616 if (vid_mouse.integer && !key_consoleactive)
633 IN_DeactivateMouse ();
638 int VID_SetGamma(unsigned short *ramps)
640 return XF86VidModeSetGammaRamp(vidx11_display, vidx11_screen, 256, ramps, ramps + 256, ramps + 512);
643 int VID_GetGamma(unsigned short *ramps)
645 return XF86VidModeGetGammaRamp(vidx11_display, vidx11_screen, 256, ramps, ramps + 256, ramps + 512);
651 Cvar_RegisterVariable (&vid_dga);
652 Cvar_RegisterVariable (&vid_dga_mouseaccel);
654 InitSig(); // trap evil signals
655 if (COM_CheckParm ("-nomouse") || COM_CheckParm("-safe"))
659 void VID_BuildGLXAttrib(int *attrib, int stencil)
661 *attrib++ = GLX_RGBA;
662 *attrib++ = GLX_RED_SIZE;*attrib++ = 1;
663 *attrib++ = GLX_GREEN_SIZE;*attrib++ = 1;
664 *attrib++ = GLX_BLUE_SIZE;*attrib++ = 1;
665 *attrib++ = GLX_DOUBLEBUFFER;
666 *attrib++ = GLX_DEPTH_SIZE;*attrib++ = 1;
667 // if stencil is enabled, ask for alpha too
670 *attrib++ = GLX_STENCIL_SIZE;*attrib++ = 8;
671 *attrib++ = GLX_ALPHA_SIZE;*attrib++ = 1;
676 int VID_InitMode(int fullscreen, int width, int height, int bpp)
680 XSetWindowAttributes attr;
683 XVisualInfo *visinfo;
684 int MajorVersion, MinorVersion;
685 const char *drivername;
687 #if defined(__APPLE__) && defined(__MACH__)
688 drivername = "/usr/X11R6/lib/libGL.1.dylib";
690 drivername = "libGL.so.1";
692 i = COM_CheckParm("-gl_driver");
693 if (i && i < com_argc - 1)
694 drivername = com_argv[i + 1];
695 if (!GL_OpenLibrary(drivername))
697 Con_Printf("Unable to load GL driver \"%s\"\n", drivername);
701 if (!(vidx11_display = XOpenDisplay(NULL)))
703 Con_Printf("Couldn't open the X display\n");
707 vidx11_screen = DefaultScreen(vidx11_display);
708 root = RootWindow(vidx11_display, vidx11_screen);
710 // Get video mode list
711 MajorVersion = MinorVersion = 0;
712 if (!XF86VidModeQueryVersion(vidx11_display, &MajorVersion, &MinorVersion))
716 Con_DPrintf("Using XFree86-VidModeExtension Version %d.%d\n", MajorVersion, MinorVersion);
720 if ((qglXChooseVisual = GL_GetProcAddress("glXChooseVisual")) == NULL
721 || (qglXCreateContext = GL_GetProcAddress("glXCreateContext")) == NULL
722 || (qglXMakeCurrent = GL_GetProcAddress("glXMakeCurrent")) == NULL
723 || (qglXSwapBuffers = GL_GetProcAddress("glXSwapBuffers")) == NULL
724 || (qglXQueryExtensionsString = GL_GetProcAddress("glXQueryExtensionsString")) == NULL)
726 Con_Printf("glX functions not found in %s\n", gl_driver);
730 VID_BuildGLXAttrib(attrib, bpp == 32);
731 visinfo = qglXChooseVisual(vidx11_display, vidx11_screen, attrib);
734 Con_Printf("Couldn't get an RGB, Double-buffered, Depth visual\n");
740 int best_fit, best_dist, dist, x, y;
742 // Are we going fullscreen? If so, let's change video mode
745 XF86VidModeGetAllModeLines(vidx11_display, vidx11_screen, &num_vidmodes, &vidmodes);
749 for (i = 0; i < num_vidmodes; i++)
751 if (width > vidmodes[i]->hdisplay || height > vidmodes[i]->vdisplay)
754 x = width - vidmodes[i]->hdisplay;
755 y = height - vidmodes[i]->vdisplay;
756 dist = (x * x) + (y * y);
757 if (dist < best_dist)
766 // LordHavoc: changed from ActualWidth/ActualHeight =,
767 // to width/height =, so the window will take the full area of
769 width = vidmodes[best_fit]->hdisplay;
770 height = vidmodes[best_fit]->vdisplay;
772 // change to the mode
773 XF86VidModeSwitchToMode(vidx11_display, vidx11_screen, vidmodes[best_fit]);
774 vidmode_active = true;
776 // Move the viewport to top left
777 XF86VidModeSetViewPort(vidx11_display, vidx11_screen, 0, 0);
784 // LordHavoc: save the visual for use in gamma ramp settings later
785 vidx11_visual = visinfo->visual;
787 /* window attributes */
788 attr.background_pixel = 0;
789 attr.border_pixel = 0;
790 // LordHavoc: save the colormap for later, too
791 vidx11_colormap = attr.colormap = XCreateColormap(vidx11_display, root, visinfo->visual, AllocNone);
792 attr.event_mask = X_MASK;
795 mask = CWBackPixel | CWColormap | CWSaveUnder | CWBackingStore | CWEventMask | CWOverrideRedirect;
796 attr.override_redirect = True;
797 attr.backing_store = NotUseful;
798 attr.save_under = False;
801 mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
803 win = XCreateWindow(vidx11_display, root, 0, 0, width, height, 0, visinfo->depth, InputOutput, visinfo->visual, mask, &attr);
804 XStoreName(vidx11_display, win, gamename);
805 XMapWindow(vidx11_display, win);
807 // LordHavoc: making the close button on a window do the right thing
808 // seems to involve this mess, sigh...
809 wm_delete_window_atom = XInternAtom(vidx11_display, "WM_DELETE_WINDOW", false);
810 XSetWMProtocols(vidx11_display, win, &wm_delete_window_atom, 1);
814 XMoveWindow(vidx11_display, win, 0, 0);
815 XRaiseWindow(vidx11_display, win);
816 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, 0, 0);
817 XFlush(vidx11_display);
818 // Move the viewport to top left
819 XF86VidModeSetViewPort(vidx11_display, vidx11_screen, 0, 0);
822 //XSync(vidx11_display, False);
824 ctx = qglXCreateContext(vidx11_display, visinfo, NULL, True);
826 Sys_Error ("glXCreateContext failed\n");
828 if (!qglXMakeCurrent(vidx11_display, win, ctx))
829 Sys_Error ("glXMakeCurrent failed\n");
831 XSync(vidx11_display, False);
836 if ((qglGetString = GL_GetProcAddress("glGetString")) == NULL)
837 Sys_Error("glGetString not found in %s", gl_driver);
839 gl_renderer = qglGetString(GL_RENDERER);
840 gl_vendor = qglGetString(GL_VENDOR);
841 gl_version = qglGetString(GL_VERSION);
842 gl_extensions = qglGetString(GL_EXTENSIONS);
844 gl_platformextensions = qglXQueryExtensionsString(vidx11_display, vidx11_screen);
846 GL_CheckExtension("GLX_ARB_get_proc_address", getprocaddressfuncs, "-nogetprocaddress", false);
847 gl_videosyncavailable = GL_CheckExtension("GLX_SGI_video_sync", videosyncfuncs, "-novideosync", false);
851 vid_activewindow = true;
856 void Sys_SendKeyEvents(void)
866 void IN_Commands (void)
870 void IN_Move (usercmd_t *cmd)
873 IN_Mouse(cmd, mouse_x, mouse_y);
878 static void *prjobj = NULL;
880 int GL_OpenLibrary(const char *name)
882 Con_Printf("Loading OpenGL driver %s\n", name);
884 if (!(prjobj = dlopen(name, RTLD_LAZY)))
886 Con_Printf("Unable to open symbol list for %s\n", name);
889 strcpy(gl_driver, name);
893 void GL_CloseLibrary(void)
899 qglXGetProcAddressARB = NULL;
902 gl_platformextensions = "";
905 void *GL_GetProcAddress(const char *name)
908 if (qglXGetProcAddressARB != NULL)
909 p = (void *) qglXGetProcAddressARB(name);
911 p = (void *) dlsym(prjobj, name);