2001-04-15 04:18:22 +00:00
|
|
|
/*
|
|
|
|
context_x11.c
|
|
|
|
|
|
|
|
general x11 context layer
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
Copyright (C) 2000 Zephaniah E. Hull <warp@whitestar.soark.net>
|
2001-05-20 00:56:09 +00:00
|
|
|
Copyright (C) 2000, 2001 Jeff Teunissen <deek@quakeforge.net>
|
2001-04-15 04:18:22 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2003-01-15 15:31:36 +00:00
|
|
|
|
|
|
|
static __attribute__ ((unused)) const char rcsid[] =
|
|
|
|
"$Id$";
|
|
|
|
|
2002-08-21 00:04:35 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
2001-04-15 04:18:22 +00:00
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2001-08-23 23:34:38 +00:00
|
|
|
#ifdef HAVE_EXECINFO_H
|
|
|
|
# include <execinfo.h>
|
|
|
|
#endif
|
|
|
|
|
2001-11-07 06:59:10 +00:00
|
|
|
#include <stdlib.h>
|
2001-04-15 04:18:22 +00:00
|
|
|
#include <sys/ipc.h>
|
|
|
|
#include <sys/shm.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <X11/keysym.h>
|
|
|
|
#include <X11/extensions/XShm.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_VIDMODE
|
|
|
|
# include <X11/extensions/xf86vmode.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "QF/console.h"
|
|
|
|
#include "QF/cvar.h"
|
|
|
|
#include "QF/input.h"
|
|
|
|
#include "QF/qargs.h"
|
|
|
|
#include "QF/qtypes.h"
|
|
|
|
#include "QF/sys.h"
|
|
|
|
#include "QF/va.h"
|
|
|
|
#include "QF/vid.h"
|
|
|
|
|
2001-11-07 06:59:10 +00:00
|
|
|
#include "context_x11.h"
|
|
|
|
#include "dga_check.h"
|
|
|
|
|
2001-04-15 04:18:22 +00:00
|
|
|
static void (*event_handlers[LASTEvent]) (XEvent *);
|
|
|
|
qboolean oktodraw = false;
|
|
|
|
int x_shmeventtype;
|
|
|
|
|
|
|
|
static int x_disp_ref_count = 0;
|
|
|
|
|
|
|
|
Display *x_disp = NULL;
|
|
|
|
int x_screen;
|
|
|
|
Window x_root = None;
|
|
|
|
XVisualInfo *x_visinfo;
|
|
|
|
Visual *x_vis;
|
|
|
|
Window x_win;
|
|
|
|
Cursor nullcursor = None;
|
2002-01-08 20:07:19 +00:00
|
|
|
Time x_time;
|
2001-04-15 04:18:22 +00:00
|
|
|
|
2003-02-13 18:24:30 +00:00
|
|
|
qboolean x_have_focus = false;
|
|
|
|
|
2003-02-25 17:19:47 +00:00
|
|
|
#define X_MASK (VisibilityChangeMask | StructureNotifyMask | ExposureMask | FocusChangeMask | EnterWindowMask)
|
2001-09-18 04:53:01 +00:00
|
|
|
#define MOUSE_MASK (ButtonPressMask | ButtonReleaseMask | PointerMotionMask)
|
2001-04-15 04:18:22 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_VIDMODE
|
|
|
|
static XF86VidModeModeInfo **vidmodes;
|
2002-04-25 20:53:15 +00:00
|
|
|
static int nummodes;
|
|
|
|
static int original_mode = 0;
|
|
|
|
static vec3_t x_gamma = {-1, -1, -1};
|
|
|
|
static qboolean vidmode_avail = false;
|
2001-04-15 04:18:22 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static qboolean vidmode_active = false;
|
|
|
|
|
|
|
|
qboolean vid_fullscreen_active;
|
2001-05-17 06:55:47 +00:00
|
|
|
static qboolean vid_context_created = false;
|
2001-09-10 16:53:33 +00:00
|
|
|
static int window_x, window_y, window_saved;
|
2001-04-15 04:18:22 +00:00
|
|
|
|
2003-01-16 21:44:42 +00:00
|
|
|
static int xss_timeout;
|
|
|
|
static int xss_interval;
|
|
|
|
static int xss_blanking;
|
|
|
|
static int xss_exposures;
|
|
|
|
|
2002-08-21 00:04:35 +00:00
|
|
|
|
2001-04-15 04:18:22 +00:00
|
|
|
qboolean
|
|
|
|
X11_AddEvent (int event, void (*event_handler) (XEvent *))
|
|
|
|
{
|
|
|
|
if (event >= LASTEvent) {
|
2001-10-18 16:42:14 +00:00
|
|
|
Sys_Printf ("event: %d, LASTEvent: %d\n", event, LASTEvent);
|
2001-04-15 04:18:22 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (event_handlers[event])
|
|
|
|
return false;
|
|
|
|
|
|
|
|
event_handlers[event] = event_handler;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
qboolean
|
|
|
|
X11_RemoveEvent (int event, void (*event_handler) (XEvent *))
|
|
|
|
{
|
|
|
|
if (event >= LASTEvent)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (event_handlers[event] != event_handler)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
event_handlers[event] = NULL;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2001-09-18 09:30:59 +00:00
|
|
|
X11_ProcessEventProxy(XEvent *x_event)
|
|
|
|
{
|
|
|
|
if (x_event->type >= LASTEvent) {
|
|
|
|
if (x_event->type == x_shmeventtype)
|
|
|
|
oktodraw = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (event_handlers[x_event->type])
|
|
|
|
event_handlers[x_event->type] (x_event);
|
|
|
|
}
|
|
|
|
|
2001-04-15 04:18:22 +00:00
|
|
|
void
|
|
|
|
X11_ProcessEvent (void)
|
|
|
|
{
|
|
|
|
XEvent x_event;
|
|
|
|
|
|
|
|
XNextEvent (x_disp, &x_event);
|
2002-01-08 20:07:19 +00:00
|
|
|
X11_ProcessEventProxy (&x_event);
|
2001-04-15 04:18:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
X11_ProcessEvents (void)
|
|
|
|
{
|
2002-08-21 00:04:35 +00:00
|
|
|
// Get events from X server.
|
2001-04-15 04:18:22 +00:00
|
|
|
while (XPending (x_disp)) {
|
|
|
|
X11_ProcessEvent ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
X11_OpenDisplay (void)
|
|
|
|
{
|
|
|
|
if (!x_disp) {
|
|
|
|
x_disp = XOpenDisplay (NULL);
|
|
|
|
if (!x_disp) {
|
2002-05-14 06:12:29 +00:00
|
|
|
Sys_Error ("X11_OpenDisplay: Could not open display [%s]",
|
2001-04-15 04:18:22 +00:00
|
|
|
XDisplayName (NULL));
|
|
|
|
}
|
|
|
|
|
|
|
|
x_screen = DefaultScreen (x_disp);
|
|
|
|
x_root = RootWindow (x_disp, x_screen);
|
|
|
|
|
|
|
|
// for debugging only
|
|
|
|
XSynchronize (x_disp, True);
|
|
|
|
|
|
|
|
x_disp_ref_count = 1;
|
|
|
|
} else {
|
|
|
|
x_disp_ref_count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
X11_CloseDisplay (void)
|
|
|
|
{
|
2002-04-26 20:25:01 +00:00
|
|
|
X11_RestoreGamma ();
|
|
|
|
|
2001-04-15 04:18:22 +00:00
|
|
|
if (nullcursor != None) {
|
|
|
|
XFreeCursor (x_disp, nullcursor);
|
|
|
|
nullcursor = None;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!--x_disp_ref_count) {
|
|
|
|
XCloseDisplay (x_disp);
|
|
|
|
x_disp = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
X11_CreateNullCursor
|
|
|
|
|
|
|
|
Create an empty cursor (in other words, make it disappear)
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
X11_CreateNullCursor (void)
|
|
|
|
{
|
|
|
|
Pixmap cursormask;
|
|
|
|
XGCValues xgc;
|
|
|
|
GC gc;
|
|
|
|
XColor dummycolour;
|
|
|
|
|
|
|
|
if (nullcursor != None)
|
|
|
|
return;
|
|
|
|
|
|
|
|
cursormask = XCreatePixmap (x_disp, x_root, 1, 1, 1);
|
|
|
|
xgc.function = GXclear;
|
|
|
|
|
|
|
|
gc = XCreateGC (x_disp, cursormask, GCFunction, &xgc);
|
|
|
|
|
|
|
|
XFillRectangle (x_disp, cursormask, gc, 0, 0, 1, 1);
|
|
|
|
|
|
|
|
dummycolour.pixel = 0;
|
|
|
|
dummycolour.red = 0;
|
|
|
|
dummycolour.flags = 04;
|
|
|
|
nullcursor = XCreatePixmapCursor (x_disp, cursormask, cursormask,
|
|
|
|
&dummycolour, &dummycolour, 0, 0);
|
|
|
|
XFreePixmap (x_disp, cursormask);
|
|
|
|
XFreeGC (x_disp, gc);
|
|
|
|
XDefineCursor (x_disp, x_win, nullcursor);
|
|
|
|
}
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2001-11-07 06:59:10 +00:00
|
|
|
X11_ForceMove (int x, int y)
|
|
|
|
{
|
|
|
|
int nx, ny;
|
|
|
|
|
|
|
|
if (!vid_context_created)
|
|
|
|
return;
|
|
|
|
|
|
|
|
XMoveWindow (x_disp, x_win, x, y);
|
|
|
|
XFlush(x_disp);
|
|
|
|
while (1) {
|
|
|
|
XEvent ev;
|
2002-04-26 20:25:01 +00:00
|
|
|
XMaskEvent (x_disp,StructureNotifyMask,&ev);
|
|
|
|
if (ev.type == ConfigureNotify) {
|
|
|
|
nx = ev.xconfigure.x;
|
|
|
|
ny = ev.xconfigure.y;
|
|
|
|
X11_ProcessEventProxy (&ev);
|
2001-11-07 06:59:10 +00:00
|
|
|
break;
|
|
|
|
}
|
2002-04-26 20:25:01 +00:00
|
|
|
X11_ProcessEventProxy (&ev);
|
2001-11-07 06:59:10 +00:00
|
|
|
}
|
2002-08-21 00:04:35 +00:00
|
|
|
// X11_GetWindowCoords (&nx, &ny);
|
2001-11-07 06:59:10 +00:00
|
|
|
nx -= x;
|
|
|
|
ny -= y;
|
|
|
|
if (nx == 0 || ny == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
x -= nx;
|
|
|
|
y -= ny;
|
2001-09-18 04:53:01 +00:00
|
|
|
|
|
|
|
#if 0 // hopefully this isn't needed! enable if it is.
|
2003-03-17 05:39:10 +00:00
|
|
|
if (x < 1 - scr_width)
|
2002-04-26 20:25:01 +00:00
|
|
|
x = 0;
|
2003-03-17 05:39:10 +00:00
|
|
|
if (y < 1 - scr_height)
|
2002-04-26 20:25:01 +00:00
|
|
|
y = 0;
|
2001-09-18 04:53:01 +00:00
|
|
|
#endif
|
|
|
|
|
2001-11-07 06:59:10 +00:00
|
|
|
XMoveWindow (x_disp, x_win, x, y);
|
|
|
|
XSync (x_disp, false);
|
2002-08-21 00:04:35 +00:00
|
|
|
// this is the best we can do.
|
2001-11-07 06:59:10 +00:00
|
|
|
while (1) {
|
|
|
|
XEvent ev;
|
2002-04-26 20:25:01 +00:00
|
|
|
XMaskEvent (x_disp, StructureNotifyMask, &ev);
|
|
|
|
if (ev.type == ConfigureNotify) {
|
|
|
|
X11_ProcessEventProxy (&ev);
|
2001-11-07 06:59:10 +00:00
|
|
|
break;
|
|
|
|
}
|
2002-04-26 20:25:01 +00:00
|
|
|
X11_ProcessEventProxy (&ev);
|
2001-11-07 06:59:10 +00:00
|
|
|
}
|
2001-09-18 04:53:01 +00:00
|
|
|
}
|
|
|
|
|
2001-04-15 04:18:22 +00:00
|
|
|
void
|
|
|
|
X11_SetVidMode (int width, int height)
|
|
|
|
{
|
|
|
|
const char *str = getenv ("MESA_GLX_FX");
|
|
|
|
|
2001-05-17 20:57:29 +00:00
|
|
|
if (vidmode_active)
|
|
|
|
return;
|
|
|
|
|
2001-04-15 04:18:22 +00:00
|
|
|
if (str && (tolower (*str) == 'f')) {
|
|
|
|
Cvar_Set (vid_fullscreen, "1");
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_VIDMODE
|
2002-06-10 22:30:30 +00:00
|
|
|
{
|
|
|
|
static int initialized = 0;
|
2001-04-15 04:18:22 +00:00
|
|
|
|
2002-06-10 22:30:30 +00:00
|
|
|
if (!vidmode_avail)
|
|
|
|
vidmode_avail = VID_CheckVMode (x_disp, NULL, NULL);
|
2002-04-25 20:53:15 +00:00
|
|
|
|
2002-06-10 22:30:30 +00:00
|
|
|
if (!initialized && vidmode_avail) {
|
|
|
|
vec3_t *temp;
|
2002-05-17 03:17:33 +00:00
|
|
|
|
2002-06-10 22:30:30 +00:00
|
|
|
initialized = 1;
|
2002-05-17 03:17:33 +00:00
|
|
|
|
2002-04-25 20:28:15 +00:00
|
|
|
vid_gamma_avail = true;
|
2001-04-15 04:18:22 +00:00
|
|
|
|
2002-06-10 22:30:30 +00:00
|
|
|
temp = X11_GetGamma ();
|
|
|
|
if (temp && temp[0] > 0) {
|
|
|
|
x_gamma[0] = (*temp)[0];
|
|
|
|
x_gamma[1] = (*temp)[1];
|
|
|
|
x_gamma[2] = (*temp)[2];
|
|
|
|
vid_gamma_avail = true;
|
|
|
|
free (temp);
|
|
|
|
}
|
2001-04-15 04:18:22 +00:00
|
|
|
|
2002-06-10 22:30:30 +00:00
|
|
|
}
|
2001-04-15 04:18:22 +00:00
|
|
|
|
2002-06-10 22:30:30 +00:00
|
|
|
if (vid_fullscreen->int_val && vidmode_avail) {
|
|
|
|
int i, dotclock;
|
|
|
|
int best_mode = 0;
|
|
|
|
qboolean found_mode = false;
|
|
|
|
XF86VidModeModeLine orig_data;
|
|
|
|
|
2002-08-21 00:04:35 +00:00
|
|
|
XF86VidModeGetAllModeLines (x_disp, x_screen, &nummodes,
|
|
|
|
&vidmodes);
|
2002-06-10 22:30:30 +00:00
|
|
|
XF86VidModeGetModeLine (x_disp, x_screen, &dotclock, &orig_data);
|
|
|
|
|
|
|
|
for (i = 0; i < nummodes; i++) {
|
|
|
|
if ((vidmodes[i]->hdisplay == orig_data.hdisplay) &&
|
|
|
|
(vidmodes[i]->vdisplay == orig_data.vdisplay)) {
|
|
|
|
original_mode = i;
|
|
|
|
break;
|
|
|
|
}
|
2001-04-15 04:18:22 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:30:30 +00:00
|
|
|
for (i = 0; i < nummodes; i++) {
|
2003-03-17 05:39:10 +00:00
|
|
|
if ((vidmodes[i]->hdisplay == scr_width) &&
|
|
|
|
(vidmodes[i]->vdisplay == scr_height)) {
|
2002-06-10 22:30:30 +00:00
|
|
|
found_mode = true;
|
|
|
|
best_mode = i;
|
|
|
|
break;
|
|
|
|
}
|
2001-04-15 04:18:22 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:30:30 +00:00
|
|
|
if (found_mode) {
|
2003-03-17 05:39:10 +00:00
|
|
|
Con_DPrintf ("VID: Chose video mode: %dx%d\n", scr_width,
|
|
|
|
scr_height);
|
2002-06-10 22:30:30 +00:00
|
|
|
|
2002-08-21 00:04:35 +00:00
|
|
|
XF86VidModeSwitchToMode (x_disp, x_screen,
|
|
|
|
vidmodes[best_mode]);
|
2002-06-10 22:30:30 +00:00
|
|
|
X11_ForceViewPort ();
|
|
|
|
vidmode_active = true;
|
2003-01-16 21:44:42 +00:00
|
|
|
X11_SetScreenSaver ();
|
2002-06-10 22:30:30 +00:00
|
|
|
} else {
|
2002-08-21 00:04:35 +00:00
|
|
|
Con_Printf ("VID: Mode %dx%d can't go fullscreen.\n",
|
2003-03-17 05:39:10 +00:00
|
|
|
scr_width, scr_height);
|
2002-06-10 22:30:30 +00:00
|
|
|
vidmode_avail = vidmode_active = false;
|
|
|
|
}
|
2001-04-15 04:18:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2002-08-21 00:04:35 +00:00
|
|
|
X11_UpdateFullscreen (cvar_t *fullscreen)
|
2001-05-17 09:56:43 +00:00
|
|
|
{
|
2001-11-07 06:59:10 +00:00
|
|
|
if (!vid_context_created)
|
2001-05-17 09:56:43 +00:00
|
|
|
return;
|
2001-09-08 05:43:52 +00:00
|
|
|
|
2001-05-20 00:56:09 +00:00
|
|
|
if (!fullscreen->int_val) {
|
|
|
|
X11_RestoreVidMode ();
|
2001-09-18 04:53:01 +00:00
|
|
|
if (window_saved) {
|
2002-04-26 20:25:01 +00:00
|
|
|
X11_ForceMove (window_x, window_y);
|
2001-09-18 04:53:01 +00:00
|
|
|
window_saved = 0;
|
|
|
|
}
|
2003-02-25 06:04:42 +00:00
|
|
|
IN_UpdateGrab (in_grab);
|
2001-09-18 04:53:01 +00:00
|
|
|
return;
|
2001-05-17 09:56:43 +00:00
|
|
|
} else {
|
2003-02-25 06:04:42 +00:00
|
|
|
IN_UpdateGrab (in_grab);
|
2002-04-26 20:25:01 +00:00
|
|
|
|
2001-09-10 16:53:33 +00:00
|
|
|
if (X11_GetWindowCoords (&window_x, &window_y))
|
|
|
|
window_saved = 1;
|
2002-04-25 20:28:15 +00:00
|
|
|
|
2001-09-08 05:43:52 +00:00
|
|
|
X11_SetVidMode (scr_width, scr_height);
|
2002-04-26 20:25:01 +00:00
|
|
|
|
2003-02-25 06:04:42 +00:00
|
|
|
IN_UpdateGrab (in_grab); // FIXME: why are there two of these?
|
2002-04-26 20:25:01 +00:00
|
|
|
|
2001-09-18 04:53:01 +00:00
|
|
|
if (!vidmode_active) {
|
|
|
|
window_saved = 0;
|
|
|
|
return;
|
2001-05-18 17:11:30 +00:00
|
|
|
}
|
2002-04-26 20:25:01 +00:00
|
|
|
|
|
|
|
X11_ForceMove (0, 0);
|
2003-03-17 05:39:10 +00:00
|
|
|
XWarpPointer (x_disp, None, x_win, 0, 0, 0, 0, scr_width / 2,
|
|
|
|
scr_height / 2);
|
2002-08-21 00:04:35 +00:00
|
|
|
// Done in X11_SetVidMode but moved the window since then
|
2003-02-13 19:03:48 +00:00
|
|
|
X11_ForceViewPort ();
|
2001-05-17 09:56:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-04-15 04:18:22 +00:00
|
|
|
void
|
|
|
|
X11_Init_Cvars (void)
|
|
|
|
{
|
2001-05-17 09:56:43 +00:00
|
|
|
vid_fullscreen = Cvar_Get ("vid_fullscreen", "0", CVAR_ARCHIVE,
|
|
|
|
&X11_UpdateFullscreen,
|
2001-04-15 04:18:22 +00:00
|
|
|
"Toggles fullscreen game mode");
|
|
|
|
vid_system_gamma = Cvar_Get ("vid_system_gamma", "1", CVAR_ARCHIVE, NULL,
|
|
|
|
"Use system gamma control if available");
|
|
|
|
}
|
2001-09-18 04:53:01 +00:00
|
|
|
|
2001-04-15 04:18:22 +00:00
|
|
|
void
|
|
|
|
X11_CreateWindow (int width, int height)
|
|
|
|
{
|
2002-04-26 20:25:01 +00:00
|
|
|
XSetWindowAttributes attr;
|
|
|
|
XClassHint *ClassHint;
|
|
|
|
XSizeHints *SizeHints;
|
|
|
|
char *resname;
|
|
|
|
unsigned long mask;
|
2001-04-15 04:18:22 +00:00
|
|
|
|
2002-08-21 00:04:35 +00:00
|
|
|
// window attributes
|
2001-04-15 04:18:22 +00:00
|
|
|
attr.background_pixel = 0;
|
2002-10-11 21:32:17 +00:00
|
|
|
attr.border_pixel = 0;
|
2001-04-15 04:18:22 +00:00
|
|
|
attr.colormap = XCreateColormap (x_disp, x_root, x_vis, AllocNone);
|
|
|
|
attr.event_mask = X_MASK;
|
2002-10-11 21:32:17 +00:00
|
|
|
mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
|
2001-04-15 04:18:22 +00:00
|
|
|
|
2001-11-07 06:59:10 +00:00
|
|
|
x_win = XCreateWindow (x_disp, x_root, 0, 0, width, height, 0,
|
|
|
|
x_visinfo->depth, InputOutput, x_vis, mask, &attr);
|
2001-04-15 04:18:22 +00:00
|
|
|
|
|
|
|
// Set window size hints
|
|
|
|
SizeHints = XAllocSizeHints ();
|
|
|
|
if (SizeHints) {
|
|
|
|
SizeHints->flags = (PMinSize | PMaxSize);
|
|
|
|
SizeHints->min_width = width;
|
|
|
|
SizeHints->min_height = height;
|
|
|
|
SizeHints->max_width = width;
|
|
|
|
SizeHints->max_height = height;
|
|
|
|
XSetWMNormalHints (x_disp, x_win, SizeHints);
|
|
|
|
|
|
|
|
XFree (SizeHints);
|
|
|
|
}
|
|
|
|
// Set window title
|
|
|
|
X11_SetCaption (va ("%s %s", PROGRAM, VERSION));
|
|
|
|
|
|
|
|
// Set icon name
|
|
|
|
XSetIconName (x_disp, x_win, PROGRAM);
|
|
|
|
|
|
|
|
// Set window class
|
|
|
|
ClassHint = XAllocClassHint ();
|
|
|
|
if (ClassHint) {
|
|
|
|
resname = strrchr (com_argv[0], '/');
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
ClassHint->res_name = (char *)(resname ? resname + 1 : com_argv[0]);
|
|
|
|
ClassHint->res_class = (char *)PACKAGE;
|
2001-04-15 04:18:22 +00:00
|
|
|
XSetClassHint (x_disp, x_win, ClassHint);
|
|
|
|
XFree (ClassHint);
|
|
|
|
}
|
2002-04-26 20:25:01 +00:00
|
|
|
|
2001-09-18 09:30:59 +00:00
|
|
|
XMapWindow (x_disp, x_win);
|
2001-05-17 06:55:47 +00:00
|
|
|
|
2001-09-18 04:53:01 +00:00
|
|
|
while (1) {
|
2002-04-26 20:25:01 +00:00
|
|
|
XEvent ev;
|
|
|
|
|
|
|
|
XMaskEvent (x_disp, StructureNotifyMask, &ev);
|
|
|
|
if (ev.type == MapNotify) {
|
|
|
|
X11_ProcessEventProxy (&ev);
|
2001-09-18 09:30:59 +00:00
|
|
|
break;
|
|
|
|
}
|
2002-04-26 20:25:01 +00:00
|
|
|
X11_ProcessEventProxy (&ev);
|
2001-04-15 04:18:22 +00:00
|
|
|
}
|
2002-04-26 20:25:01 +00:00
|
|
|
|
2001-09-18 04:53:01 +00:00
|
|
|
vid_context_created = true;
|
|
|
|
if (vid_fullscreen->int_val) {
|
2002-04-26 20:25:01 +00:00
|
|
|
X11_UpdateFullscreen (vid_fullscreen);
|
2001-04-15 04:18:22 +00:00
|
|
|
}
|
2001-09-18 09:30:59 +00:00
|
|
|
XRaiseWindow (x_disp, x_win);
|
2001-04-15 04:18:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
X11_RestoreVidMode (void)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_VIDMODE
|
|
|
|
if (vidmode_active) {
|
2003-01-16 21:44:42 +00:00
|
|
|
X11_RestoreScreenSaver ();
|
2001-04-15 04:18:22 +00:00
|
|
|
XF86VidModeSwitchToMode (x_disp, x_screen, vidmodes[original_mode]);
|
|
|
|
XFree (vidmodes);
|
2002-04-26 20:25:01 +00:00
|
|
|
vidmode_active = false;
|
2001-04-15 04:18:22 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-07-15 07:04:17 +00:00
|
|
|
X11_SetCaption (const char *text)
|
2001-04-15 04:18:22 +00:00
|
|
|
{
|
|
|
|
if (x_disp && x_win && text)
|
|
|
|
XStoreName (x_disp, x_win, text);
|
|
|
|
}
|
|
|
|
|
2001-09-10 16:53:33 +00:00
|
|
|
qboolean
|
|
|
|
X11_GetWindowCoords (int *ax, int *ay)
|
2001-04-15 04:18:22 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_VIDMODE
|
2002-04-26 20:25:01 +00:00
|
|
|
Window theroot, scrap;
|
|
|
|
int x, y;
|
|
|
|
unsigned int width, height, bdwidth, depth;
|
|
|
|
|
|
|
|
XSync (x_disp, false);
|
2001-09-10 16:53:33 +00:00
|
|
|
if ((XGetGeometry (x_disp, x_win, &theroot, &x, &y, &width, &height,
|
|
|
|
&bdwidth, &depth) == False)) {
|
|
|
|
Con_Printf ("XGetWindowAttributes failed in X11_GetWindowCoords.\n");
|
2001-09-10 17:02:35 +00:00
|
|
|
return false;
|
2001-05-17 06:55:47 +00:00
|
|
|
} else {
|
2001-09-10 16:53:33 +00:00
|
|
|
XTranslateCoordinates (x_disp,x_win,theroot, -bdwidth, -bdwidth,
|
|
|
|
ax, ay, &scrap);
|
|
|
|
Con_DPrintf ("Window coords = %dx%d (%d,%d)\n", *ax, *ay,
|
|
|
|
width, height);
|
2001-09-10 17:02:35 +00:00
|
|
|
return true;
|
2001-04-15 04:18:22 +00:00
|
|
|
}
|
|
|
|
#endif
|
2001-09-10 16:53:33 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
X11_ForceViewPort (void)
|
|
|
|
{
|
2001-10-06 22:57:54 +00:00
|
|
|
#ifdef HAVE_VIDMODE
|
2001-09-10 16:53:33 +00:00
|
|
|
int ax, ay;
|
|
|
|
|
|
|
|
if (!vidmode_avail || !vid_context_created)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!X11_GetWindowCoords (&ax, &ay)) {
|
2002-08-21 00:04:35 +00:00
|
|
|
// "icky kludge code"
|
2001-09-18 04:53:01 +00:00
|
|
|
Con_Printf ("VID: Falling back on warp kludge to set viewport.\n");
|
2001-09-10 16:53:33 +00:00
|
|
|
XWarpPointer (x_disp, None, x_win, 0, 0, 0, 0, scr_width, scr_height);
|
|
|
|
XWarpPointer (x_disp, None, x_win, 0, 0, 0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
XF86VidModeSetViewPort (x_disp, x_screen, ax, ay);
|
2001-10-06 22:57:54 +00:00
|
|
|
#endif
|
2001-04-15 04:18:22 +00:00
|
|
|
}
|
|
|
|
|
2002-04-25 20:53:15 +00:00
|
|
|
vec3_t *
|
2001-04-15 04:18:22 +00:00
|
|
|
X11_GetGamma (void)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_VIDMODE
|
|
|
|
# ifdef X_XF86VidModeGetGamma
|
|
|
|
XF86VidModeGamma xgamma;
|
2002-04-25 20:53:15 +00:00
|
|
|
vec3_t *temp;
|
|
|
|
|
2002-05-17 03:17:33 +00:00
|
|
|
if (vid_gamma_avail && vid_system_gamma->int_val) {
|
2001-04-15 04:18:22 +00:00
|
|
|
if (XF86VidModeGetGamma (x_disp, x_screen, &xgamma)) {
|
2002-04-25 20:53:15 +00:00
|
|
|
if ((temp = malloc (sizeof (vec3_t)))) {
|
|
|
|
(*temp)[0] = xgamma.red;
|
|
|
|
(*temp)[1] = xgamma.green;
|
|
|
|
(*temp)[2] = xgamma.blue;
|
|
|
|
return temp;
|
|
|
|
}
|
|
|
|
return NULL;
|
2001-04-15 04:18:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
#endif
|
2002-05-17 03:17:33 +00:00
|
|
|
vid_gamma_avail = false;
|
2002-04-25 20:53:15 +00:00
|
|
|
return NULL;
|
2001-04-15 04:18:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
qboolean
|
|
|
|
X11_SetGamma (double gamma)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_VIDMODE
|
|
|
|
# ifdef X_XF86VidModeSetGamma
|
|
|
|
XF86VidModeGamma xgamma;
|
|
|
|
|
2003-02-13 18:24:30 +00:00
|
|
|
if (vid_gamma_avail && vid_system_gamma->int_val && x_have_focus) {
|
2001-04-15 04:18:22 +00:00
|
|
|
xgamma.red = xgamma.green = xgamma.blue = (float) gamma;
|
|
|
|
if (XF86VidModeSetGamma (x_disp, x_screen, &xgamma))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
return false;
|
|
|
|
}
|
2001-05-17 20:57:29 +00:00
|
|
|
|
2001-05-20 00:56:09 +00:00
|
|
|
void
|
|
|
|
X11_RestoreGamma (void)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_VIDMODE
|
|
|
|
# ifdef X_XF86VidModeSetGamma
|
|
|
|
XF86VidModeGamma xgamma;
|
|
|
|
|
2002-04-28 09:03:50 +00:00
|
|
|
if (vid_gamma_avail && x_gamma[0] > 0) {
|
2002-04-25 20:53:15 +00:00
|
|
|
xgamma.red = x_gamma[0];
|
|
|
|
xgamma.green = x_gamma[1];
|
|
|
|
xgamma.blue = x_gamma[2];
|
2001-05-20 00:56:09 +00:00
|
|
|
XF86VidModeSetGamma (x_disp, x_screen, &xgamma);
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
}
|
2003-01-16 21:44:42 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
X11_SetScreenSaver (void)
|
|
|
|
{
|
|
|
|
XGetScreenSaver (x_disp, &xss_timeout, &xss_interval, &xss_blanking,
|
|
|
|
&xss_exposures);
|
|
|
|
XSetScreenSaver (x_disp, 0, xss_interval, xss_blanking, xss_exposures);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
X11_RestoreScreenSaver (void)
|
|
|
|
{
|
|
|
|
XSetScreenSaver (x_disp, xss_timeout, xss_interval, xss_blanking,
|
|
|
|
xss_exposures);
|
|
|
|
}
|