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.
21 #include <sys/ioctl.h>
34 #include <X11/keysym.h>
35 #include <X11/cursorfont.h>
37 #include <X11/extensions/XShm.h>
38 #include <X11/extensions/xf86dga.h>
39 #include <X11/extensions/xf86vmode.h>
41 static Display *vidx11_display = NULL;
44 static GLXContext ctx = NULL;
46 #define KEY_MASK (KeyPressMask | KeyReleaseMask)
47 #define MOUSE_MASK (ButtonPressMask | ButtonReleaseMask | \
48 PointerMotionMask | ButtonMotionMask )
49 #define X_MASK (KEY_MASK | MOUSE_MASK | VisibilityChangeMask | StructureNotifyMask )
52 viddef_t vid; // global video state
54 static qboolean mouse_avail = true;
55 static qboolean mouse_active = false, usingmouse = false;
56 static float mouse_x, mouse_y;
57 static int p_mouse_x, p_mouse_y;
59 cvar_t vid_dga = {CVAR_SAVE, "vid_dga", "1"};
60 cvar_t vid_dga_mouseaccel = {0, "vid_dga_mouseaccel", "1"};
62 qboolean vidmode_ext = false;
64 static int win_x, win_y;
66 static int scr_width, scr_height;
68 static XF86VidModeModeInfo **vidmodes;
69 static int num_vidmodes;
70 static qboolean vidmode_active = false;
72 static Visual *vidx11_visual;
73 static Colormap vidx11_colormap;
75 /*-----------------------------------------------------------------------*/
77 const char *gl_vendor;
78 const char *gl_renderer;
79 const char *gl_version;
80 const char *gl_extensions;
82 /*-----------------------------------------------------------------------*/
84 XLateKey(XKeyEvent *ev)
89 keysym = XLookupKeysym(ev, 0);
93 case XK_KP_Page_Up: key = KP_PGUP; break;
94 case XK_Page_Up: key = K_PGUP; break;
96 case XK_KP_Page_Down: key = KP_PGDN; break;
97 case XK_Page_Down: key = K_PGDN; break;
99 case XK_KP_Home: key = KP_HOME; break;
100 case XK_Home: key = K_HOME; break;
102 case XK_KP_End: key = KP_END; break;
103 case XK_End: key = K_END; break;
105 case XK_KP_Left: key = KP_LEFTARROW; break;
106 case XK_Left: key = K_LEFTARROW; break;
108 case XK_KP_Right: key = KP_RIGHTARROW; break;
109 case XK_Right: key = K_RIGHTARROW; break;
111 case XK_KP_Down: key = KP_DOWNARROW; break;
112 case XK_Down: key = K_DOWNARROW; break;
114 case XK_KP_Up: key = KP_UPARROW; break;
115 case XK_Up: key = K_UPARROW; break;
117 case XK_Escape: key = K_ESCAPE; break;
119 case XK_KP_Enter: key = KP_ENTER; break;
120 case XK_Return: key = K_ENTER; break;
122 case XK_Tab: key = K_TAB; break;
124 case XK_F1: key = K_F1; break;
125 case XK_F2: key = K_F2; break;
126 case XK_F3: key = K_F3; break;
127 case XK_F4: key = K_F4; break;
128 case XK_F5: key = K_F5; break;
129 case XK_F6: key = K_F6; break;
130 case XK_F7: key = K_F7; break;
131 case XK_F8: key = K_F8; break;
132 case XK_F9: key = K_F9; break;
133 case XK_F10: key = K_F10; break;
134 case XK_F11: key = K_F11; break;
135 case XK_F12: key = K_F12; break;
137 case XK_BackSpace: key = K_BACKSPACE; break;
139 case XK_KP_Delete: key = KP_DEL; break;
140 case XK_Delete: key = K_DEL; break;
142 case XK_Pause: key = K_PAUSE; break;
145 case XK_Shift_R: key = K_SHIFT; break;
149 case XK_Control_R: key = K_CTRL; break;
155 case XK_Meta_R: key = K_ALT; break;
157 case XK_Caps_Lock: key = K_CAPSLOCK; break;
158 case XK_KP_Begin: key = KP_5; break;
160 case XK_Insert: key = K_INS; break;
161 case XK_KP_Insert: key = KP_INS; break;
163 case XK_KP_Multiply: key = KP_MULTIPLY; break;
164 case XK_KP_Add: key = KP_PLUS; break;
165 case XK_KP_Subtract: key = KP_MINUS; break;
166 case XK_KP_Divide: key = KP_DIVIDE; break;
168 /* For Sun keyboards */
169 case XK_F27: key = K_HOME; break;
170 case XK_F29: key = K_PGUP; break;
171 case XK_F33: key = K_END; break;
172 case XK_F35: key = K_PGDN; break;
179 if ((key >= 'A') && (key <= 'Z'))
180 key = key + ('a' - 'A');
188 static Cursor CreateNullCursor(Display *display, Window root)
196 cursormask = XCreatePixmap(display, root, 1, 1, 1);
197 xgc.function = GXclear;
198 gc = XCreateGC(display, cursormask, GCFunction, &xgc);
199 XFillRectangle(display, cursormask, gc, 0, 0, 1, 1);
200 dummycolour.pixel = 0;
202 dummycolour.flags = 04;
203 cursor = XCreatePixmapCursor(display, cursormask, cursormask, &dummycolour,&dummycolour, 0,0);
204 XFreePixmap(display,cursormask);
209 static void install_grabs(void)
211 XWindowAttributes attribs_1;
212 XSetWindowAttributes attribs_2;
214 XGetWindowAttributes(vidx11_display, win, &attribs_1);
215 attribs_2.event_mask = attribs_1.your_event_mask | KEY_MASK | MOUSE_MASK;
216 XChangeWindowAttributes(vidx11_display, win, CWEventMask, &attribs_2);
219 XDefineCursor(vidx11_display, win, CreateNullCursor(vidx11_display, win));
221 XGrabPointer(vidx11_display, win, True, 0, GrabModeAsync, GrabModeAsync, win, None, CurrentTime);
225 int MajorVersion, MinorVersion;
227 if (!XF86DGAQueryVersion(vidx11_display, &MajorVersion, &MinorVersion))
229 // unable to query, probalby not supported
230 Con_Printf( "Failed to detect XF86DGA Mouse\n" );
236 XF86DGADirectVideo(vidx11_display, DefaultScreen(vidx11_display), XF86DGADirectMouse);
237 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, 0, 0);
241 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, scr_width / 2, scr_height / 2);
243 XGrabKeyboard(vidx11_display, win, False, GrabModeAsync, GrabModeAsync, CurrentTime);
246 mouse_x = mouse_y = 0;
249 static void uninstall_grabs(void)
251 if (!vidx11_display || !win)
254 if (vid_dga.integer == 1)
255 XF86DGADirectVideo(vidx11_display, DefaultScreen(vidx11_display), 0);
257 XUngrabPointer(vidx11_display, CurrentTime);
258 XUngrabKeyboard(vidx11_display, CurrentTime);
261 XUndefineCursor(vidx11_display, win);
263 mouse_active = false;
266 static void HandleEvents(void)
269 qboolean dowarp = false;
274 while (XPending(vidx11_display))
276 XNextEvent(vidx11_display, &event);
282 Key_Event(XLateKey(&event.xkey), event.type == KeyPress);
288 if (vid_dga.integer == 1)
290 mouse_x += event.xmotion.x_root * vid_dga_mouseaccel.value;
291 mouse_y += event.xmotion.y_root * vid_dga_mouseaccel.value;
296 if (!event.xmotion.send_event)
298 mouse_x += event.xmotion.x - p_mouse_x;
299 mouse_y += event.xmotion.y - p_mouse_y;
300 if (abs(scr_width/2 - event.xmotion.x) > scr_width / 4 || abs(scr_height/2 - event.xmotion.y) > scr_height / 4)
303 p_mouse_x = event.xmotion.x;
304 p_mouse_y = event.xmotion.y;
308 ui_mouseupdate(event.xmotion.x, event.xmotion.y);
312 switch(event.xbutton.button)
315 Key_Event(K_MOUSE1, true);
318 Key_Event(K_MOUSE3, true);
321 Key_Event(K_MOUSE2, true);
324 Key_Event(K_MWHEELUP, true);
327 Key_Event(K_MWHEELDOWN, true);
330 Con_Printf("HandleEvents: ButtonPress gave value %d, 1-5 expected\n", event.xbutton.button);
336 switch(event.xbutton.button)
339 Key_Event(K_MOUSE1, false);
342 Key_Event(K_MOUSE3, false);
345 Key_Event(K_MOUSE2, false);
348 Key_Event(K_MWHEELUP, false);
351 Key_Event(K_MWHEELDOWN, false);
354 Con_Printf("HandleEvents: ButtonRelease gave value %d, 1-5 expected\n", event.xbutton.button);
360 win_x = event.xcreatewindow.x;
361 win_y = event.xcreatewindow.y;
364 case ConfigureNotify :
365 win_x = event.xconfigure.x;
366 win_y = event.xconfigure.y;
373 /* move the mouse to the window center again */
374 p_mouse_x = scr_width / 2;
375 p_mouse_y = scr_height / 2;
376 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, p_mouse_x, p_mouse_y);
381 static void IN_DeactivateMouse( void )
383 if (!mouse_avail || !vidx11_display || !win)
389 mouse_active = false;
393 static void IN_ActivateMouse( void )
395 if (!mouse_avail || !vidx11_display || !win)
400 mouse_x = mouse_y = 0; // don't spazz
407 void VID_Shutdown(void)
409 if (!ctx || !vidx11_display)
417 XF86VidModeSwitchToMode(vidx11_display, scrnum, vidmodes[0]);
419 XDestroyWindow(vidx11_display, win);
420 XCloseDisplay(vidx11_display);
422 vidmode_active = false;
423 vidx11_display = NULL;
428 void signal_handler(int sig)
430 printf("Received signal %d, exiting...\n", sig);
437 signal(SIGHUP, signal_handler);
438 signal(SIGINT, signal_handler);
439 signal(SIGQUIT, signal_handler);
440 signal(SIGILL, signal_handler);
441 signal(SIGTRAP, signal_handler);
442 signal(SIGIOT, signal_handler);
443 signal(SIGBUS, signal_handler);
444 signal(SIGFPE, signal_handler);
445 signal(SIGSEGV, signal_handler);
446 signal(SIGTERM, signal_handler);
454 void VID_GetWindowSize (int *x, int *y, int *width, int *height)
458 *height = scr_height;
461 void VID_Finish (void)
464 if (r_render.integer)
467 glXSwapBuffers(vidx11_display, win);
470 // handle the mouse state when windowed if that's changed
472 if (vid_mouse.integer && key_dest == key_game)
489 IN_DeactivateMouse ();
494 // LordHavoc: ported from SDL 1.2.2, this was far more difficult to port from
495 // SDL than to simply use the XFree gamma ramp extension, but that affects the
496 // whole screen even when the game window is inactive, this only affects the
497 // screen while the window is active, very desirable behavior :)
498 int VID_SetGamma(float prescale, float gamma, float scale, float base)
500 // LordHavoc: FIXME: finish this code, we need to allocate colors before we can store them
505 unsigned int Rmask, Gmask, Bmask, Rloss, Gloss, Bloss, Rshift, Gshift, Bshift, mask;
507 unsigned short ramp[256];
509 if (COM_CheckParm("-nogamma"))
512 if (vidx11_visual->class != DirectColor)
514 Con_Printf("X11 Visual class is %d, can only do gamma on %d\n", vidx11_visual->class, DirectColor);
518 Rmask = vidx11_visual->red_mask;
519 Gmask = vidx11_visual->green_mask;
520 Bmask = vidx11_visual->blue_mask;
526 for (;!(mask & 1);mask >>= 1)
528 for (;(mask & 1);mask >>= 1)
535 for (;!(mask & 1);mask >>= 1)
537 for (;(mask & 1);mask >>= 1)
544 for (;!(mask & 1);mask >>= 1)
546 for (;(mask & 1);mask >>= 1)
550 BuildGammaTable16(prescale, gamma, scale, base, ramp);
552 // convert gamma ramp to palette (yes this seems odd)
553 ncolors = vidx11_visual->map_entries;
554 for (i = 0;i < ncolors;i++)
556 c = (256 * i / ncolors);
557 xcmap[i].pixel = ((c >> Rloss) << Rshift) | ((c >> Gloss) << Gshift) | ((c >> Bloss) << Bshift);
558 xcmap[i].red = ramp[c];
559 xcmap[i].green = ramp[c];
560 xcmap[i].blue = ramp[c];
561 xcmap[i].flags = (DoRed|DoGreen|DoBlue);
563 XStoreColors(vidx11_display, vidx11_colormap, xcmap, ncolors);
564 XSync(vidx11_display, false);
565 // FIXME: should this check for BadAccess/BadColor/BadValue errors produced by XStoreColors before setting this true?
573 // LordHavoc: FIXME: finish this code, we need to allocate colors before we can store them
583 GLX_X_VISUAL_TYPE, GLX_DIRECT_COLOR,
587 int nogammaattrib[] =
597 int width = 640, height = 480;
598 XSetWindowAttributes attr;
601 XVisualInfo *visinfo;
602 qboolean fullscreen = true;
603 int MajorVersion, MinorVersion;
605 Cvar_RegisterVariable (&vid_dga);
606 Cvar_RegisterVariable (&vid_dga_mouseaccel);
608 // interpret command-line params
610 // set vid parameters
611 if ((i = COM_CheckParm("-window")) != 0)
614 if ((i = COM_CheckParm("-width")) != 0)
615 width = atoi(com_argv[i+1]);
617 if ((i = COM_CheckParm("-height")) != 0)
618 height = atoi(com_argv[i+1]);
620 if ((i = COM_CheckParm("-conwidth")) != 0)
621 vid.conwidth = atoi(com_argv[i+1]);
625 vid.conwidth &= 0xfff8; // make it a multiple of eight
627 if (vid.conwidth < 320)
630 // pick a conheight that matches with correct aspect
631 vid.conheight = vid.conwidth*3 / 4;
633 if ((i = COM_CheckParm("-conheight")) != 0)
634 vid.conheight = atoi(com_argv[i+1]);
635 if (vid.conheight < 200)
638 if (!(vidx11_display = XOpenDisplay(NULL)))
640 fprintf(stderr, "Error couldn't open the X display\n");
644 scrnum = DefaultScreen(vidx11_display);
645 root = RootWindow(vidx11_display, scrnum);
647 // Get video mode list
648 MajorVersion = MinorVersion = 0;
649 if (!XF86VidModeQueryVersion(vidx11_display, &MajorVersion, &MinorVersion))
653 Con_Printf("Using XFree86-VidModeExtension Version %d.%d\n", MajorVersion, MinorVersion);
658 // LordHavoc: FIXME: finish this code, we need to allocate colors before we can store them
660 if (!COM_CheckParm("-nogamma"))
661 visinfo = glXChooseVisual(vidx11_display, scrnum, gammaattrib);
665 visinfo = glXChooseVisual(vidx11_display, scrnum, nogammaattrib);
668 fprintf(stderr, "qkHack: Error couldn't get an RGB, Double-buffered, Depth visual\n");
675 int best_fit, best_dist, dist, x, y;
677 XF86VidModeGetAllModeLines(vidx11_display, scrnum, &num_vidmodes, &vidmodes);
679 // Are we going fullscreen? If so, let's change video mode
685 for (i = 0; i < num_vidmodes; i++)
687 if (width > vidmodes[i]->hdisplay || height > vidmodes[i]->vdisplay)
690 x = width - vidmodes[i]->hdisplay;
691 y = height - vidmodes[i]->vdisplay;
692 dist = (x * x) + (y * y);
693 if (dist < best_dist)
702 // LordHavoc: changed from ActualWidth/ActualHeight =,
703 // to width/height =, so the window will take the full area of
705 width = vidmodes[best_fit]->hdisplay;
706 height = vidmodes[best_fit]->vdisplay;
708 // change to the mode
709 XF86VidModeSwitchToMode(vidx11_display, scrnum, vidmodes[best_fit]);
710 vidmode_active = true;
712 // Move the viewport to top left
713 XF86VidModeSetViewPort(vidx11_display, scrnum, 0, 0);
720 // LordHavoc: save the visual for use in gamma ramp settings later
721 vidx11_visual = visinfo->visual;
723 /* window attributes */
724 attr.background_pixel = 0;
725 attr.border_pixel = 0;
726 // LordHavoc: save the colormap for later, too
727 vidx11_colormap = attr.colormap = XCreateColormap(vidx11_display, root, visinfo->visual, AllocNone);
728 attr.event_mask = X_MASK;
731 mask = CWBackPixel | CWColormap | CWSaveUnder | CWBackingStore | CWEventMask | CWOverrideRedirect;
732 attr.override_redirect = True;
733 attr.backing_store = NotUseful;
734 attr.save_under = False;
737 mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
739 win = XCreateWindow(vidx11_display, root, 0, 0, width, height, 0, visinfo->depth, InputOutput, visinfo->visual, mask, &attr);
740 XStoreName(vidx11_display, win, gamename);
741 XMapWindow(vidx11_display, win);
745 XMoveWindow(vidx11_display, win, 0, 0);
746 XRaiseWindow(vidx11_display, win);
747 XWarpPointer(vidx11_display, None, win, 0, 0, 0, 0, 0, 0);
748 XFlush(vidx11_display);
749 // Move the viewport to top left
750 XF86VidModeSetViewPort(vidx11_display, scrnum, 0, 0);
753 XFlush(vidx11_display);
755 ctx = glXCreateContext(vidx11_display, visinfo, NULL, True);
757 glXMakeCurrent(vidx11_display, win, ctx);
762 if (vid.conheight > height)
763 vid.conheight = height;
764 if (vid.conwidth > width)
765 vid.conwidth = width;
767 InitSig(); // trap evil signals
771 Con_SafePrintf ("Video mode %dx%d initialized.\n", width, height);
774 void Sys_SendKeyEvents(void)
781 if (COM_CheckParm ("-nomouse"))
785 void IN_Shutdown(void)
794 void IN_Commands (void)
798 void IN_Move (usercmd_t *cmd)
801 IN_Mouse(cmd, mouse_x, mouse_y);