mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 14:42:06 +00:00
in_x11.so, and actually check in the plugin code..
vid_x works, aside from a few, err, qwirks, in the input focus handling..
This commit is contained in:
parent
0e8ba8d814
commit
dd7d064733
8 changed files with 694 additions and 336 deletions
|
@ -64,7 +64,11 @@ ifeq ($(HAS_SVGA),yes)
|
||||||
IN_SVGALIB_LIB := in_svgalib.so
|
IN_SVGALIB_LIB := in_svgalib.so
|
||||||
endif
|
endif
|
||||||
|
|
||||||
lib_targets = $(SOUND_LIB) $(CD_LIB) $(COMMON_LIB)
|
ifeq ($(HAS_X11),yes)
|
||||||
|
IN_X11_LIB := in_x11.so
|
||||||
|
endif
|
||||||
|
|
||||||
|
lib_targets = $(SOUND_LIB) $(CD_LIB) $(COMMON_LIB) $(IN_SVGALIB_LIB) $(IN_X11_LIB)
|
||||||
targets = $(lib_targets)
|
targets = $(lib_targets)
|
||||||
CLEAN_TARGETS = $(patsubst %,clean-%, $(targets))
|
CLEAN_TARGETS = $(patsubst %,clean-%, $(targets))
|
||||||
.PHONY: $(targets) $(CLEAN_TARGETS)
|
.PHONY: $(targets) $(CLEAN_TARGETS)
|
||||||
|
@ -164,20 +168,31 @@ $(TARGET_DIR)/sound_lib.a: $(SOUND_LIB_OBJS)
|
||||||
|
|
||||||
# Input lib targets..
|
# Input lib targets..
|
||||||
|
|
||||||
|
in_input_DIR:
|
||||||
|
@DIR=input_libs; $(MAKE_SURE_DIR)
|
||||||
|
|
||||||
ifneq ($(IN_SVGALIB_LIB),)
|
ifneq ($(IN_SVGALIB_LIB),)
|
||||||
|
|
||||||
IN_SVGALIB_OBJS = $(BUILD_DIR)/input_libs/in_svgalib.@OBJEXT@
|
IN_SVGALIB_OBJS = $(BUILD_DIR)/input_libs/in_svgalib.@OBJEXT@
|
||||||
|
|
||||||
in_svgalib_DIR:
|
$(IN_SVGALIB_LIB): in_input_DIR $(TARGET_DIR)/$(IN_SVGALIB_LIB)
|
||||||
@DIR=input_libs; $(MAKE_SURE_DIR)
|
|
||||||
|
|
||||||
$(IN_SVGALIB_LIB): in_svgalib_DIR $(TARGET_DIR)/$(IN_SVGALIB_LIB)
|
|
||||||
|
|
||||||
$(TARGET_DIR)/$(IN_SVGALIB_LIB): $(IN_SVGALIB_OBJS)
|
$(TARGET_DIR)/$(IN_SVGALIB_LIB): $(IN_SVGALIB_OBJS)
|
||||||
$(CC) $(CFLAGS) $(LDFLAGS) -lvga -shared -rdynamic -o $@ $(IN_SVGALIB_OBJS)
|
$(CC) $(CFLAGS) $(LDFLAGS) -lvga -shared -rdynamic -o $@ $(IN_SVGALIB_OBJS)
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq ($(IN_X11_LIB),)
|
||||||
|
|
||||||
|
IN_X11_OBJS = $(BUILD_DIR)/input_libs/in_x11.@OBJEXT@
|
||||||
|
|
||||||
|
$(IN_X11_LIB): in_input_DIR $(TARGET_DIR)/$(IN_X11_LIB)
|
||||||
|
|
||||||
|
$(TARGET_DIR)/$(IN_X11_LIB): $(IN_X11_OBJS)
|
||||||
|
$(CC) $(CFLAGS) $(LDFLAGS) -lvga -shared -rdynamic -o $@ $(IN_X11_OBJS)
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
###########################################################################
|
###########################################################################
|
||||||
#
|
#
|
||||||
# Misc targets
|
# Misc targets
|
||||||
|
|
|
@ -579,7 +579,7 @@ Host_Init ( quakeparms_t *parms)
|
||||||
if (!host_colormap)
|
if (!host_colormap)
|
||||||
Sys_Error ("Couldn't load gfx/colormap.lmp");
|
Sys_Error ("Couldn't load gfx/colormap.lmp");
|
||||||
|
|
||||||
plugin_load("./in_svgalib.so");
|
plugin_load("./in_x11.so");
|
||||||
IN->Init();
|
IN->Init();
|
||||||
VID_Init(host_basepal);
|
VID_Init(host_basepal);
|
||||||
Draw_Init();
|
Draw_Init();
|
||||||
|
|
537
common/in_x11.c
Normal file
537
common/in_x11.c
Normal file
|
@ -0,0 +1,537 @@
|
||||||
|
/*
|
||||||
|
vid_x.c - general x video driver
|
||||||
|
Copyright (C) 1996-1997 Id Software, Inc.
|
||||||
|
Copyright (C) 1999-2000 contributors of the QuakeForge project
|
||||||
|
Copyright (C) 2000 Marcus Sundberg [mackan@stacken.kth.se]
|
||||||
|
Please see the file "AUTHORS" for a list of contributors
|
||||||
|
|
||||||
|
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 the Free Software
|
||||||
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define _BSD
|
||||||
|
#include <config.h>
|
||||||
|
|
||||||
|
#include <ctype.h>
|
||||||
|
#include <sys/time.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#ifdef HAVE_UNISTD_H
|
||||||
|
#include <unistd.h>
|
||||||
|
#endif
|
||||||
|
#include <signal.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
|
#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>
|
||||||
|
#include <errno.h>
|
||||||
|
|
||||||
|
#include <quakedef.h>
|
||||||
|
#include <d_local.h>
|
||||||
|
#include <sound.h>
|
||||||
|
#include <keys.h>
|
||||||
|
#include <cvar.h>
|
||||||
|
#include <menu.h>
|
||||||
|
#include <sys.h>
|
||||||
|
#include <cmd.h>
|
||||||
|
#include <lib_replace.h>
|
||||||
|
#include <draw.h>
|
||||||
|
#include <console.h>
|
||||||
|
#include <client.h>
|
||||||
|
#include <plugin.h>
|
||||||
|
|
||||||
|
#ifdef HAVE_STRINGS_H
|
||||||
|
#include <strings.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
cvar_t _windowed_mouse = {"_windowed_mouse","0", true};
|
||||||
|
cvar_t m_filter = {"m_filter","0", true};
|
||||||
|
|
||||||
|
static qboolean mouse_avail;
|
||||||
|
static float mouse_x, mouse_y;
|
||||||
|
static float old_mouse_x, old_mouse_y;
|
||||||
|
static int p_mouse_x, p_mouse_y;
|
||||||
|
static qboolean mouse_in_window = false;
|
||||||
|
static float old_windowed_mouse;
|
||||||
|
|
||||||
|
static Display *x_disp = NULL;
|
||||||
|
static Window x_win;
|
||||||
|
static Atom aWMDelete = 0;
|
||||||
|
|
||||||
|
|
||||||
|
int XShmQueryExtension(Display *);
|
||||||
|
int XShmGetEventBase(Display *);
|
||||||
|
|
||||||
|
static qboolean doShm;
|
||||||
|
static int x_shmeventtype;
|
||||||
|
|
||||||
|
static qboolean oktodraw = false;
|
||||||
|
|
||||||
|
static int verbose = 0;
|
||||||
|
|
||||||
|
int VID_options_items = 1;
|
||||||
|
|
||||||
|
#define STD_EVENT_MASK \
|
||||||
|
(KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask \
|
||||||
|
| PointerMotionMask | EnterWindowMask | LeaveWindowMask \
|
||||||
|
| VisibilityChangeMask | ExposureMask | StructureNotifyMask)
|
||||||
|
|
||||||
|
|
||||||
|
// ========================================================================
|
||||||
|
// makes a null cursor
|
||||||
|
// ========================================================================
|
||||||
|
|
||||||
|
static Cursor CreateNullCursor(Display *display, Window root)
|
||||||
|
{
|
||||||
|
Pixmap cursormask;
|
||||||
|
XGCValues xgc;
|
||||||
|
GC gc;
|
||||||
|
XColor dummycolour;
|
||||||
|
Cursor cursor;
|
||||||
|
|
||||||
|
cursormask = XCreatePixmap(display, root, 1, 1, 1/*depth*/);
|
||||||
|
xgc.function = GXclear;
|
||||||
|
gc = XCreateGC(display, cursormask, GCFunction, &xgc);
|
||||||
|
XFillRectangle(display, cursormask, gc, 0, 0, 1, 1);
|
||||||
|
dummycolour.pixel = 0;
|
||||||
|
dummycolour.red = 0;
|
||||||
|
dummycolour.flags = 04;
|
||||||
|
cursor = XCreatePixmapCursor(display, cursormask, cursormask,
|
||||||
|
&dummycolour,&dummycolour, 0,0);
|
||||||
|
XFreePixmap(display,cursormask);
|
||||||
|
XFreeGC(display,gc);
|
||||||
|
return cursor;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ========================================================================
|
||||||
|
// Tragic death handler
|
||||||
|
// ========================================================================
|
||||||
|
|
||||||
|
static void TragicDeath(int signal_num)
|
||||||
|
{
|
||||||
|
XAutoRepeatOn(x_disp);
|
||||||
|
XCloseDisplay(x_disp);
|
||||||
|
Sys_Error("This death brought to you by the number %d\n", signal_num);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static int X_IN_Init (unsigned char *palette)
|
||||||
|
{
|
||||||
|
int template_mask;
|
||||||
|
int screen;
|
||||||
|
|
||||||
|
srandom(getpid());
|
||||||
|
|
||||||
|
verbose=COM_CheckParm("-verbose");
|
||||||
|
|
||||||
|
// open the display
|
||||||
|
x_disp = XOpenDisplay(0);
|
||||||
|
if (!x_disp)
|
||||||
|
{
|
||||||
|
if (getenv("DISPLAY"))
|
||||||
|
Sys_Error("IN: Could not open display [%s]\n",
|
||||||
|
getenv("DISPLAY"));
|
||||||
|
else
|
||||||
|
Sys_Error("IN: Could not open local display\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
// catch signals so i can turn on auto-repeat
|
||||||
|
|
||||||
|
{
|
||||||
|
struct sigaction sa;
|
||||||
|
sigaction(SIGINT, 0, &sa);
|
||||||
|
sa.sa_handler = TragicDeath;
|
||||||
|
sigaction(SIGINT, &sa, 0);
|
||||||
|
sigaction(SIGTERM, &sa, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
XAutoRepeatOff(x_disp);
|
||||||
|
|
||||||
|
// for debugging only
|
||||||
|
XSynchronize(x_disp, True);
|
||||||
|
|
||||||
|
|
||||||
|
template_mask = 0;
|
||||||
|
|
||||||
|
screen = XDefaultScreen(x_disp);
|
||||||
|
|
||||||
|
/* Setup attributes for main window */
|
||||||
|
{
|
||||||
|
int attribmask = CWEventMask | CWBorderPixel;
|
||||||
|
XSetWindowAttributes attribs;
|
||||||
|
|
||||||
|
attribs.event_mask = STD_EVENT_MASK;
|
||||||
|
attribs.border_pixel = 0;
|
||||||
|
|
||||||
|
/* Create the main window */
|
||||||
|
x_win = XCreateWindow(x_disp,
|
||||||
|
XRootWindow(x_disp, screen),
|
||||||
|
0, 0, 300, 200,
|
||||||
|
0, /* borderwidth */
|
||||||
|
0, InputOutput, CopyFromParent,
|
||||||
|
attribmask, &attribs);
|
||||||
|
|
||||||
|
/* Give it a title */
|
||||||
|
XStoreName(x_disp, x_win, "QF X11 Input");
|
||||||
|
|
||||||
|
/* Make window respond to Delete events */
|
||||||
|
aWMDelete = XInternAtom(x_disp, "WM_DELETE_WINDOW", False);
|
||||||
|
XSetWMProtocols(x_disp, x_win, &aWMDelete, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
XDefineCursor(x_disp, x_win, CreateNullCursor(x_disp, x_win));
|
||||||
|
|
||||||
|
// map the window
|
||||||
|
XMapWindow(x_disp, x_win);
|
||||||
|
|
||||||
|
// XSynchronize(x_disp, False);
|
||||||
|
|
||||||
|
Cvar_RegisterVariable(&_windowed_mouse);
|
||||||
|
Cvar_RegisterVariable(&m_filter);
|
||||||
|
if (COM_CheckParm("-nomouse")) return 1;
|
||||||
|
mouse_x = mouse_y = 0.0;
|
||||||
|
mouse_avail = 1;
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Called at shutdown
|
||||||
|
*/
|
||||||
|
static void X_IN_Shutdown(void)
|
||||||
|
{
|
||||||
|
Con_Printf("IN_Shutdown\n");
|
||||||
|
mouse_avail = 0;
|
||||||
|
if (x_disp) {
|
||||||
|
XAutoRepeatOn(x_disp);
|
||||||
|
XCloseDisplay(x_disp);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static int XLateKey(XKeyEvent *ev)
|
||||||
|
{
|
||||||
|
int key = 0;
|
||||||
|
char buf[64];
|
||||||
|
KeySym keysym;
|
||||||
|
|
||||||
|
XLookupString(ev, buf, sizeof(buf), &keysym, 0);
|
||||||
|
|
||||||
|
switch(keysym) {
|
||||||
|
case XK_KP_Page_Up: key = KP_PGUP; break;
|
||||||
|
case XK_Page_Up: key = K_PGUP; break;
|
||||||
|
|
||||||
|
case XK_KP_Page_Down: key = KP_PGDN; break;
|
||||||
|
case XK_Page_Down: key = K_PGDN; break;
|
||||||
|
|
||||||
|
case XK_KP_Home: key = KP_HOME; break;
|
||||||
|
case XK_Home: key = K_HOME; break;
|
||||||
|
|
||||||
|
case XK_KP_End: key = KP_END; break;
|
||||||
|
case XK_End: key = K_END; break;
|
||||||
|
|
||||||
|
case XK_KP_Left: key = KP_LEFTARROW; break;
|
||||||
|
case XK_Left: key = K_LEFTARROW; break;
|
||||||
|
|
||||||
|
case XK_KP_Right: key = KP_RIGHTARROW; break;
|
||||||
|
case XK_Right: key = K_RIGHTARROW; break;
|
||||||
|
|
||||||
|
case XK_KP_Down: key = KP_DOWNARROW; break;
|
||||||
|
case XK_Down: key = K_DOWNARROW; break;
|
||||||
|
|
||||||
|
case XK_KP_Up: key = KP_UPARROW; break;
|
||||||
|
case XK_Up: key = K_UPARROW; break;
|
||||||
|
|
||||||
|
case XK_Escape: key = K_ESCAPE; break;
|
||||||
|
|
||||||
|
case XK_KP_Enter: key = KP_ENTER; break;
|
||||||
|
case XK_Return: key = K_ENTER; break;
|
||||||
|
|
||||||
|
case XK_Tab: key = K_TAB; break;
|
||||||
|
|
||||||
|
case XK_F1: key = K_F1; break;
|
||||||
|
case XK_F2: key = K_F2; break;
|
||||||
|
case XK_F3: key = K_F3; break;
|
||||||
|
case XK_F4: key = K_F4; break;
|
||||||
|
case XK_F5: key = K_F5; break;
|
||||||
|
case XK_F6: key = K_F6; break;
|
||||||
|
case XK_F7: key = K_F7; break;
|
||||||
|
case XK_F8: key = K_F8; break;
|
||||||
|
case XK_F9: key = K_F9; break;
|
||||||
|
case XK_F10: key = K_F10; break;
|
||||||
|
case XK_F11: key = K_F11; break;
|
||||||
|
case XK_F12: key = K_F12; break;
|
||||||
|
|
||||||
|
case XK_BackSpace: key = K_BACKSPACE; break;
|
||||||
|
|
||||||
|
case XK_KP_Delete: key = KP_DEL; break;
|
||||||
|
case XK_Delete: key = K_DEL; break;
|
||||||
|
|
||||||
|
case XK_Pause: key = K_PAUSE; break;
|
||||||
|
|
||||||
|
case XK_Shift_L:
|
||||||
|
case XK_Shift_R: key = K_SHIFT; break;
|
||||||
|
|
||||||
|
case XK_Execute:
|
||||||
|
case XK_Control_L:
|
||||||
|
case XK_Control_R: key = K_CTRL; break;
|
||||||
|
|
||||||
|
case XK_Mode_switch:
|
||||||
|
case XK_Alt_L:
|
||||||
|
case XK_Meta_L:
|
||||||
|
case XK_Alt_R:
|
||||||
|
case XK_Meta_R: key = K_ALT; break;
|
||||||
|
|
||||||
|
case XK_KP_Begin: key = K_AUX30; break;
|
||||||
|
|
||||||
|
case XK_Insert: key = K_INS; break;
|
||||||
|
case XK_KP_Insert: key = KP_INS; break;
|
||||||
|
|
||||||
|
case XK_KP_Multiply: key = KP_MULTIPLY; break;
|
||||||
|
case XK_KP_Add: key = KP_PLUS; break;
|
||||||
|
case XK_KP_Subtract: key = KP_MINUS; break;
|
||||||
|
case XK_KP_Divide: key = KP_DIVIDE; break;
|
||||||
|
|
||||||
|
/* For Sun keyboards */
|
||||||
|
case XK_F27: key = K_HOME; break;
|
||||||
|
case XK_F29: key = K_PGUP; break;
|
||||||
|
case XK_F33: key = K_END; break;
|
||||||
|
case XK_F35: key = K_PGDN; break;
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
case 0x021: key = '1';break;/* [!] */
|
||||||
|
case 0x040: key = '2';break;/* [@] */
|
||||||
|
case 0x023: key = '3';break;/* [#] */
|
||||||
|
case 0x024: key = '4';break;/* [$] */
|
||||||
|
case 0x025: key = '5';break;/* [%] */
|
||||||
|
case 0x05e: key = '6';break;/* [^] */
|
||||||
|
case 0x026: key = '7';break;/* [&] */
|
||||||
|
case 0x02a: key = '8';break;/* [*] */
|
||||||
|
case 0x028: key = '9';;break;/* [(] */
|
||||||
|
case 0x029: key = '0';break;/* [)] */
|
||||||
|
case 0x05f: key = '-';break;/* [_] */
|
||||||
|
case 0x02b: key = '=';break;/* [+] */
|
||||||
|
case 0x07c: key = '\'';break;/* [|] */
|
||||||
|
case 0x07d: key = '[';break;/* [}] */
|
||||||
|
case 0x07b: key = ']';break;/* [{] */
|
||||||
|
case 0x022: key = '\'';break;/* ["] */
|
||||||
|
case 0x03a: key = ';';break;/* [:] */
|
||||||
|
case 0x03f: key = '/';break;/* [?] */
|
||||||
|
case 0x03e: key = '.';break;/* [>] */
|
||||||
|
case 0x03c: key = ',';break;/* [<] */
|
||||||
|
#endif
|
||||||
|
default:
|
||||||
|
key = *(unsigned char*)buf;
|
||||||
|
if (key >= 'A' && key <= 'Z') {
|
||||||
|
key = key + ('a' - 'A');
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return key;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void GetEvent(void)
|
||||||
|
{
|
||||||
|
XEvent x_event;
|
||||||
|
int but;
|
||||||
|
|
||||||
|
XNextEvent(x_disp, &x_event);
|
||||||
|
switch(x_event.type) {
|
||||||
|
case KeyPress:
|
||||||
|
Key_Event(XLateKey(&x_event.xkey), true);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case KeyRelease:
|
||||||
|
Key_Event(XLateKey(&x_event.xkey), false);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ButtonPress:
|
||||||
|
but = x_event.xbutton.button;
|
||||||
|
if (but == 2) but = 3;
|
||||||
|
else if (but == 3) but = 2;
|
||||||
|
switch(but) {
|
||||||
|
case 1:
|
||||||
|
case 2:
|
||||||
|
case 3:
|
||||||
|
Key_Event(K_MOUSE1 + but - 1, true);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ButtonRelease:
|
||||||
|
but = x_event.xbutton.button;
|
||||||
|
if (but == 2) but = 3;
|
||||||
|
else if (but == 3) but = 2;
|
||||||
|
switch(but) {
|
||||||
|
case 1:
|
||||||
|
case 2:
|
||||||
|
case 3:
|
||||||
|
Key_Event(K_MOUSE1 + but - 1, false);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case MotionNotify:
|
||||||
|
if (_windowed_mouse.value) {
|
||||||
|
mouse_x = (float) ((int)x_event.xmotion.x - (int)(vid.width/2));
|
||||||
|
mouse_y = (float) ((int)x_event.xmotion.y - (int)(vid.height/2));
|
||||||
|
//printf("m: x=%d,y=%d, mx=%3.2f,my=%3.2f\n",
|
||||||
|
// x_event.xmotion.x, x_event.xmotion.y, mouse_x, mouse_y);
|
||||||
|
|
||||||
|
/* move the mouse to the window center again */
|
||||||
|
XSelectInput(x_disp,x_win,StructureNotifyMask|KeyPressMask
|
||||||
|
|KeyReleaseMask|ExposureMask
|
||||||
|
|ButtonPressMask
|
||||||
|
|ButtonReleaseMask);
|
||||||
|
XWarpPointer(x_disp,None,x_win,0,0,0,0,
|
||||||
|
(vid.width/2),(vid.height/2));
|
||||||
|
XSelectInput(x_disp,x_win,StructureNotifyMask|KeyPressMask
|
||||||
|
|KeyReleaseMask|ExposureMask
|
||||||
|
|PointerMotionMask|ButtonPressMask
|
||||||
|
|ButtonReleaseMask);
|
||||||
|
} else {
|
||||||
|
mouse_x = (float) (x_event.xmotion.x-p_mouse_x);
|
||||||
|
mouse_y = (float) (x_event.xmotion.y-p_mouse_y);
|
||||||
|
p_mouse_x=x_event.xmotion.x;
|
||||||
|
p_mouse_y=x_event.xmotion.y;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case EnterNotify:
|
||||||
|
mouse_in_window = true;
|
||||||
|
break;
|
||||||
|
case LeaveNotify:
|
||||||
|
mouse_in_window = false;
|
||||||
|
break;
|
||||||
|
/* Host_Quit_f only available in uquake */
|
||||||
|
#ifdef UQUAKE
|
||||||
|
case ClientMessage:
|
||||||
|
if (x_event.xclient.data.l[0] == aWMDelete) Host_Quit_f();
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
default:
|
||||||
|
if (doShm && x_event.type == x_shmeventtype)
|
||||||
|
oktodraw = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (old_windowed_mouse != _windowed_mouse.value) {
|
||||||
|
old_windowed_mouse = _windowed_mouse.value;
|
||||||
|
|
||||||
|
if (!_windowed_mouse.value) {
|
||||||
|
/* ungrab the pointer */
|
||||||
|
XUngrabPointer(x_disp,CurrentTime);
|
||||||
|
} else {
|
||||||
|
/* grab the pointer */
|
||||||
|
XGrabPointer(x_disp,x_win,True,0,GrabModeAsync,
|
||||||
|
GrabModeAsync,x_win,None,CurrentTime);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void X_IN_SendKeyEvents(void)
|
||||||
|
{
|
||||||
|
/* Get events from X server. */
|
||||||
|
if (x_disp) {
|
||||||
|
while (XPending(x_disp)) {
|
||||||
|
GetEvent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void X_IN_Commands(void)
|
||||||
|
{
|
||||||
|
/* Nothing to do here */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void X_IN_Move(usercmd_t *cmd)
|
||||||
|
{
|
||||||
|
if (!mouse_avail)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (m_filter.value) {
|
||||||
|
mouse_x = (mouse_x + old_mouse_x) * 0.5;
|
||||||
|
mouse_y = (mouse_y + old_mouse_y) * 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
old_mouse_x = mouse_x;
|
||||||
|
old_mouse_y = mouse_y;
|
||||||
|
|
||||||
|
mouse_x *= sensitivity.value;
|
||||||
|
mouse_y *= sensitivity.value;
|
||||||
|
|
||||||
|
if ( (in_strafe.state & 1) || (lookstrafe.value && (in_mlook.state & 1) ))
|
||||||
|
cmd->sidemove += m_side.value * mouse_x;
|
||||||
|
else
|
||||||
|
cl.viewangles[YAW] -= m_yaw.value * mouse_x;
|
||||||
|
if (in_mlook.state & 1)
|
||||||
|
V_StopPitchDrift ();
|
||||||
|
|
||||||
|
if ( (in_mlook.state & 1) && !(in_strafe.state & 1)) {
|
||||||
|
cl.viewangles[PITCH] += m_pitch.value * mouse_y;
|
||||||
|
if (cl.viewangles[PITCH] > 80)
|
||||||
|
cl.viewangles[PITCH] = 80;
|
||||||
|
if (cl.viewangles[PITCH] < -70)
|
||||||
|
cl.viewangles[PITCH] = -70;
|
||||||
|
} else {
|
||||||
|
if ((in_strafe.state & 1) && noclip_anglehack)
|
||||||
|
cmd->upmove -= m_forward.value * mouse_y;
|
||||||
|
else
|
||||||
|
cmd->forwardmove -= m_forward.value * mouse_y;
|
||||||
|
}
|
||||||
|
mouse_x = mouse_y = 0.0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
static void X_IN_ExtraOptionDraw(unsigned int options_draw_cursor)
|
||||||
|
{
|
||||||
|
// Windowed Mouse
|
||||||
|
M_Print(16, options_draw_cursor+=8, " Use Mouse");
|
||||||
|
M_DrawCheckbox(220, options_draw_cursor, _windowed_mouse.value);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void X_IN_ExtraOptionCmd(int option_cursor)
|
||||||
|
{
|
||||||
|
switch (option_cursor) {
|
||||||
|
case 1: // _windowed_mouse
|
||||||
|
Cvar_SetValue ("_windowed_mouse", !_windowed_mouse.value);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
static input_pi x11_ip =
|
||||||
|
{
|
||||||
|
NULL,
|
||||||
|
NULL,
|
||||||
|
"X11 input module",
|
||||||
|
X_IN_Init,
|
||||||
|
X_IN_Shutdown,
|
||||||
|
X_IN_Commands,
|
||||||
|
X_IN_SendKeyEvents,
|
||||||
|
X_IN_Move,
|
||||||
|
};
|
||||||
|
|
||||||
|
input_pi *get_input_plugin_info()
|
||||||
|
{
|
||||||
|
return &x11_ip;
|
||||||
|
}
|
||||||
|
|
81
common/plugin.c
Normal file
81
common/plugin.c
Normal file
|
@ -0,0 +1,81 @@
|
||||||
|
/*
|
||||||
|
host.c
|
||||||
|
|
||||||
|
(description)
|
||||||
|
|
||||||
|
Copyright (C) 1999,2000 contributors of the QuakeForge project
|
||||||
|
Please see the file "AUTHORS" for a list of contributors
|
||||||
|
|
||||||
|
Author: Jeff Teunissen <deek@quakeforge.net>
|
||||||
|
Date: 09 Feb 2000
|
||||||
|
|
||||||
|
This file is part of the QuakeForge Core system.
|
||||||
|
|
||||||
|
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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define _GNU_SOURCE
|
||||||
|
#include <string.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <dlfcn.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
#include <net.h>
|
||||||
|
#include <plugin.h>
|
||||||
|
|
||||||
|
input_pi *IN;
|
||||||
|
|
||||||
|
int plugin_load(char *filename)
|
||||||
|
{
|
||||||
|
void *h;
|
||||||
|
void *(*gpi) (void);
|
||||||
|
|
||||||
|
if ((h = dlopen(filename, RTLD_LAZY))) {
|
||||||
|
if ((gpi = dlsym(h, "get_input_plugin_info"))) {
|
||||||
|
input_pi *p;
|
||||||
|
|
||||||
|
p = (input_pi *) gpi();
|
||||||
|
p->handle = h;
|
||||||
|
p->filename = filename;
|
||||||
|
|
||||||
|
IN = p;
|
||||||
|
/*
|
||||||
|
} else if (gpi = dlsym(h, "get_sound_plugin_info")) {
|
||||||
|
sound_pi *p;
|
||||||
|
|
||||||
|
p = (sound_pi *) gpi();
|
||||||
|
p->handle = h;
|
||||||
|
p->filename = filename;
|
||||||
|
*/
|
||||||
|
} else {
|
||||||
|
dlclose(h);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
fprintf(stderr, "%s\n", dlerror());
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
void plugin_unload(void *handle)
|
||||||
|
{
|
||||||
|
dlclose(handle);
|
||||||
|
}
|
48
common/plugin.h
Normal file
48
common/plugin.h
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
/*
|
||||||
|
Copyright (C) 1996-1997 Id Software, Inc.
|
||||||
|
Copyright (C) 1999,2000 contributors of the QuakeForge project
|
||||||
|
Please see the file "AUTHORS" for a list of contributors
|
||||||
|
|
||||||
|
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 the Free Software
|
||||||
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __MODULES__
|
||||||
|
#define __MODULES__
|
||||||
|
|
||||||
|
#include <net.h>
|
||||||
|
|
||||||
|
// Input plugin interface.
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
void *handle;
|
||||||
|
char *filename;
|
||||||
|
char *description;
|
||||||
|
|
||||||
|
int (*Init)();
|
||||||
|
void (*Shutdown)();
|
||||||
|
void (*Commands)();
|
||||||
|
void (*SendKeyEvents)();
|
||||||
|
void (*Move)(usercmd_t *);
|
||||||
|
} input_pi;
|
||||||
|
|
||||||
|
extern input_pi *IN;
|
||||||
|
|
||||||
|
int plugin_load(char *filename);
|
||||||
|
void plugin_unload(void *handle);
|
||||||
|
|
||||||
|
|
||||||
|
#endif // __MODULES__:w
|
330
common/vid_x.c
330
common/vid_x.c
|
@ -61,22 +61,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#include <strings.h>
|
#include <strings.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
cvar_t _windowed_mouse = {"_windowed_mouse","0", true};
|
|
||||||
cvar_t m_filter = {"m_filter","0", true};
|
|
||||||
|
|
||||||
static qboolean mouse_avail;
|
|
||||||
static float mouse_x, mouse_y;
|
|
||||||
static float old_mouse_x, old_mouse_y;
|
|
||||||
static int p_mouse_x, p_mouse_y;
|
|
||||||
static qboolean mouse_in_window = false;
|
|
||||||
static float old_windowed_mouse;
|
|
||||||
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
int input;
|
|
||||||
int output;
|
|
||||||
} keymap_t;
|
|
||||||
|
|
||||||
viddef_t vid; // global video state
|
viddef_t vid; // global video state
|
||||||
unsigned short d_8to16table[256];
|
unsigned short d_8to16table[256];
|
||||||
|
|
||||||
|
@ -307,18 +291,6 @@ void VID_Gamma_f (void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ========================================================================
|
|
||||||
// Tragic death handler
|
|
||||||
// ========================================================================
|
|
||||||
|
|
||||||
void TragicDeath(int signal_num)
|
|
||||||
{
|
|
||||||
XAutoRepeatOn(x_disp);
|
|
||||||
XCloseDisplay(x_disp);
|
|
||||||
Sys_Error("This death brought to you by the number %d\n", signal_num);
|
|
||||||
}
|
|
||||||
|
|
||||||
// ========================================================================
|
// ========================================================================
|
||||||
// makes a null cursor
|
// makes a null cursor
|
||||||
// ========================================================================
|
// ========================================================================
|
||||||
|
@ -529,18 +501,6 @@ void VID_Init (unsigned char *palette)
|
||||||
Sys_Error("VID: Could not open local display\n");
|
Sys_Error("VID: Could not open local display\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
// catch signals so i can turn on auto-repeat
|
|
||||||
|
|
||||||
{
|
|
||||||
struct sigaction sa;
|
|
||||||
sigaction(SIGINT, 0, &sa);
|
|
||||||
sa.sa_handler = TragicDeath;
|
|
||||||
sigaction(SIGINT, &sa, 0);
|
|
||||||
sigaction(SIGTERM, &sa, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
XAutoRepeatOff(x_disp);
|
|
||||||
|
|
||||||
// for debugging only
|
// for debugging only
|
||||||
XSynchronize(x_disp, True);
|
XSynchronize(x_disp, True);
|
||||||
|
|
||||||
|
@ -768,131 +728,6 @@ VID_Shutdown(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int
|
|
||||||
XLateKey(XKeyEvent *ev)
|
|
||||||
{
|
|
||||||
int key = 0;
|
|
||||||
char buf[64];
|
|
||||||
KeySym keysym;
|
|
||||||
|
|
||||||
XLookupString(ev, buf, sizeof(buf), &keysym, 0);
|
|
||||||
|
|
||||||
switch(keysym) {
|
|
||||||
case XK_KP_Page_Up: key = KP_PGUP; break;
|
|
||||||
case XK_Page_Up: key = K_PGUP; break;
|
|
||||||
|
|
||||||
case XK_KP_Page_Down: key = KP_PGDN; break;
|
|
||||||
case XK_Page_Down: key = K_PGDN; break;
|
|
||||||
|
|
||||||
case XK_KP_Home: key = KP_HOME; break;
|
|
||||||
case XK_Home: key = K_HOME; break;
|
|
||||||
|
|
||||||
case XK_KP_End: key = KP_END; break;
|
|
||||||
case XK_End: key = K_END; break;
|
|
||||||
|
|
||||||
case XK_KP_Left: key = KP_LEFTARROW; break;
|
|
||||||
case XK_Left: key = K_LEFTARROW; break;
|
|
||||||
|
|
||||||
case XK_KP_Right: key = KP_RIGHTARROW; break;
|
|
||||||
case XK_Right: key = K_RIGHTARROW; break;
|
|
||||||
|
|
||||||
case XK_KP_Down: key = KP_DOWNARROW; break;
|
|
||||||
case XK_Down: key = K_DOWNARROW; break;
|
|
||||||
|
|
||||||
case XK_KP_Up: key = KP_UPARROW; break;
|
|
||||||
case XK_Up: key = K_UPARROW; break;
|
|
||||||
|
|
||||||
case XK_Escape: key = K_ESCAPE; break;
|
|
||||||
|
|
||||||
case XK_KP_Enter: key = KP_ENTER; break;
|
|
||||||
case XK_Return: key = K_ENTER; break;
|
|
||||||
|
|
||||||
case XK_Tab: key = K_TAB; break;
|
|
||||||
|
|
||||||
case XK_F1: key = K_F1; break;
|
|
||||||
case XK_F2: key = K_F2; break;
|
|
||||||
case XK_F3: key = K_F3; break;
|
|
||||||
case XK_F4: key = K_F4; break;
|
|
||||||
case XK_F5: key = K_F5; break;
|
|
||||||
case XK_F6: key = K_F6; break;
|
|
||||||
case XK_F7: key = K_F7; break;
|
|
||||||
case XK_F8: key = K_F8; break;
|
|
||||||
case XK_F9: key = K_F9; break;
|
|
||||||
case XK_F10: key = K_F10; break;
|
|
||||||
case XK_F11: key = K_F11; break;
|
|
||||||
case XK_F12: key = K_F12; break;
|
|
||||||
|
|
||||||
case XK_BackSpace: key = K_BACKSPACE; break;
|
|
||||||
|
|
||||||
case XK_KP_Delete: key = KP_DEL; break;
|
|
||||||
case XK_Delete: key = K_DEL; break;
|
|
||||||
|
|
||||||
case XK_Pause: key = K_PAUSE; break;
|
|
||||||
|
|
||||||
case XK_Shift_L:
|
|
||||||
case XK_Shift_R: key = K_SHIFT; break;
|
|
||||||
|
|
||||||
case XK_Execute:
|
|
||||||
case XK_Control_L:
|
|
||||||
case XK_Control_R: key = K_CTRL; break;
|
|
||||||
|
|
||||||
case XK_Mode_switch:
|
|
||||||
case XK_Alt_L:
|
|
||||||
case XK_Meta_L:
|
|
||||||
case XK_Alt_R:
|
|
||||||
case XK_Meta_R: key = K_ALT; break;
|
|
||||||
|
|
||||||
case XK_KP_Begin: key = K_AUX30; break;
|
|
||||||
|
|
||||||
case XK_Insert: key = K_INS; break;
|
|
||||||
case XK_KP_Insert: key = KP_INS; break;
|
|
||||||
|
|
||||||
case XK_KP_Multiply: key = KP_MULTIPLY; break;
|
|
||||||
case XK_KP_Add: key = KP_PLUS; break;
|
|
||||||
case XK_KP_Subtract: key = KP_MINUS; break;
|
|
||||||
case XK_KP_Divide: key = KP_DIVIDE; break;
|
|
||||||
|
|
||||||
/* For Sun keyboards */
|
|
||||||
case XK_F27: key = K_HOME; break;
|
|
||||||
case XK_F29: key = K_PGUP; break;
|
|
||||||
case XK_F33: key = K_END; break;
|
|
||||||
case XK_F35: key = K_PGDN; break;
|
|
||||||
|
|
||||||
#if 0
|
|
||||||
case 0x021: key = '1';break;/* [!] */
|
|
||||||
case 0x040: key = '2';break;/* [@] */
|
|
||||||
case 0x023: key = '3';break;/* [#] */
|
|
||||||
case 0x024: key = '4';break;/* [$] */
|
|
||||||
case 0x025: key = '5';break;/* [%] */
|
|
||||||
case 0x05e: key = '6';break;/* [^] */
|
|
||||||
case 0x026: key = '7';break;/* [&] */
|
|
||||||
case 0x02a: key = '8';break;/* [*] */
|
|
||||||
case 0x028: key = '9';;break;/* [(] */
|
|
||||||
case 0x029: key = '0';break;/* [)] */
|
|
||||||
case 0x05f: key = '-';break;/* [_] */
|
|
||||||
case 0x02b: key = '=';break;/* [+] */
|
|
||||||
case 0x07c: key = '\'';break;/* [|] */
|
|
||||||
case 0x07d: key = '[';break;/* [}] */
|
|
||||||
case 0x07b: key = ']';break;/* [{] */
|
|
||||||
case 0x022: key = '\'';break;/* ["] */
|
|
||||||
case 0x03a: key = ';';break;/* [:] */
|
|
||||||
case 0x03f: key = '/';break;/* [?] */
|
|
||||||
case 0x03e: key = '.';break;/* [>] */
|
|
||||||
case 0x03c: key = ',';break;/* [<] */
|
|
||||||
#endif
|
|
||||||
default:
|
|
||||||
key = *(unsigned char*)buf;
|
|
||||||
if (key >= 'A' && key <= 'Z') {
|
|
||||||
key = key + ('a' - 'A');
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return key;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static int config_notify=0;
|
static int config_notify=0;
|
||||||
static int config_notify_width;
|
static int config_notify_width;
|
||||||
static int config_notify_height;
|
static int config_notify_height;
|
||||||
|
@ -901,68 +736,17 @@ static void
|
||||||
GetEvent(void)
|
GetEvent(void)
|
||||||
{
|
{
|
||||||
XEvent x_event;
|
XEvent x_event;
|
||||||
int but;
|
|
||||||
|
|
||||||
XNextEvent(x_disp, &x_event);
|
XNextEvent(x_disp, &x_event);
|
||||||
switch(x_event.type) {
|
switch(x_event.type) {
|
||||||
case KeyPress:
|
case KeyPress:
|
||||||
Key_Event(XLateKey(&x_event.xkey), true);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case KeyRelease:
|
case KeyRelease:
|
||||||
Key_Event(XLateKey(&x_event.xkey), false);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ButtonPress:
|
case ButtonPress:
|
||||||
but = x_event.xbutton.button;
|
|
||||||
if (but == 2) but = 3;
|
|
||||||
else if (but == 3) but = 2;
|
|
||||||
switch(but) {
|
|
||||||
case 1:
|
|
||||||
case 2:
|
|
||||||
case 3:
|
|
||||||
Key_Event(K_MOUSE1 + but - 1, true);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ButtonRelease:
|
case ButtonRelease:
|
||||||
but = x_event.xbutton.button;
|
|
||||||
if (but == 2) but = 3;
|
|
||||||
else if (but == 3) but = 2;
|
|
||||||
switch(but) {
|
|
||||||
case 1:
|
|
||||||
case 2:
|
|
||||||
case 3:
|
|
||||||
Key_Event(K_MOUSE1 + but - 1, false);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case MotionNotify:
|
case MotionNotify:
|
||||||
if (_windowed_mouse.value) {
|
case EnterNotify:
|
||||||
mouse_x = (float) ((int)x_event.xmotion.x - (int)(vid.width/2));
|
case LeaveNotify:
|
||||||
mouse_y = (float) ((int)x_event.xmotion.y - (int)(vid.height/2));
|
|
||||||
//printf("m: x=%d,y=%d, mx=%3.2f,my=%3.2f\n",
|
|
||||||
// x_event.xmotion.x, x_event.xmotion.y, mouse_x, mouse_y);
|
|
||||||
|
|
||||||
/* move the mouse to the window center again */
|
|
||||||
XSelectInput(x_disp,x_win,StructureNotifyMask|KeyPressMask
|
|
||||||
|KeyReleaseMask|ExposureMask
|
|
||||||
|ButtonPressMask
|
|
||||||
|ButtonReleaseMask);
|
|
||||||
XWarpPointer(x_disp,None,x_win,0,0,0,0,
|
|
||||||
(vid.width/2),(vid.height/2));
|
|
||||||
XSelectInput(x_disp,x_win,StructureNotifyMask|KeyPressMask
|
|
||||||
|KeyReleaseMask|ExposureMask
|
|
||||||
|PointerMotionMask|ButtonPressMask
|
|
||||||
|ButtonReleaseMask);
|
|
||||||
} else {
|
|
||||||
mouse_x = (float) (x_event.xmotion.x-p_mouse_x);
|
|
||||||
mouse_y = (float) (x_event.xmotion.y-p_mouse_y);
|
|
||||||
p_mouse_x=x_event.xmotion.x;
|
|
||||||
p_mouse_y=x_event.xmotion.y;
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ConfigureNotify:
|
case ConfigureNotify:
|
||||||
config_notify_width = x_event.xconfigure.width;
|
config_notify_width = x_event.xconfigure.width;
|
||||||
config_notify_height = x_event.xconfigure.height;
|
config_notify_height = x_event.xconfigure.height;
|
||||||
|
@ -971,12 +755,6 @@ GetEvent(void)
|
||||||
config_notify = 1;
|
config_notify = 1;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case EnterNotify:
|
|
||||||
mouse_in_window = true;
|
|
||||||
break;
|
|
||||||
case LeaveNotify:
|
|
||||||
mouse_in_window = false;
|
|
||||||
break;
|
|
||||||
/* Host_Quit_f only available in uquake */
|
/* Host_Quit_f only available in uquake */
|
||||||
#ifdef UQUAKE
|
#ifdef UQUAKE
|
||||||
case ClientMessage:
|
case ClientMessage:
|
||||||
|
@ -988,19 +766,6 @@ GetEvent(void)
|
||||||
if (doShm && x_event.type == x_shmeventtype)
|
if (doShm && x_event.type == x_shmeventtype)
|
||||||
oktodraw = true;
|
oktodraw = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (old_windowed_mouse != _windowed_mouse.value) {
|
|
||||||
old_windowed_mouse = _windowed_mouse.value;
|
|
||||||
|
|
||||||
if (!_windowed_mouse.value) {
|
|
||||||
/* ungrab the pointer */
|
|
||||||
XUngrabPointer(x_disp,CurrentTime);
|
|
||||||
} else {
|
|
||||||
/* grab the pointer */
|
|
||||||
XGrabPointer(x_disp,x_win,True,0,GrabModeAsync,
|
|
||||||
GrabModeAsync,x_win,None,CurrentTime);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1099,94 +864,3 @@ VID_DitherOff(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
|
||||||
Sys_SendKeyEvents(void)
|
|
||||||
{
|
|
||||||
/* Get events from X server. */
|
|
||||||
if (x_disp) {
|
|
||||||
while (XPending(x_disp)) GetEvent();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void
|
|
||||||
IN_Init(void)
|
|
||||||
{
|
|
||||||
Cvar_RegisterVariable(&_windowed_mouse);
|
|
||||||
Cvar_RegisterVariable(&m_filter);
|
|
||||||
if (COM_CheckParm("-nomouse")) return;
|
|
||||||
mouse_x = mouse_y = 0.0;
|
|
||||||
mouse_avail = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void
|
|
||||||
IN_Shutdown(void)
|
|
||||||
{
|
|
||||||
mouse_avail = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void
|
|
||||||
IN_Commands(void)
|
|
||||||
{
|
|
||||||
/* Nothing to do here */
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void
|
|
||||||
IN_Move(usercmd_t *cmd)
|
|
||||||
{
|
|
||||||
if (!mouse_avail)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (m_filter.value) {
|
|
||||||
mouse_x = (mouse_x + old_mouse_x) * 0.5;
|
|
||||||
mouse_y = (mouse_y + old_mouse_y) * 0.5;
|
|
||||||
}
|
|
||||||
|
|
||||||
old_mouse_x = mouse_x;
|
|
||||||
old_mouse_y = mouse_y;
|
|
||||||
|
|
||||||
mouse_x *= sensitivity.value;
|
|
||||||
mouse_y *= sensitivity.value;
|
|
||||||
|
|
||||||
if ( (in_strafe.state & 1) || (lookstrafe.value && (in_mlook.state & 1) ))
|
|
||||||
cmd->sidemove += m_side.value * mouse_x;
|
|
||||||
else
|
|
||||||
cl.viewangles[YAW] -= m_yaw.value * mouse_x;
|
|
||||||
if (in_mlook.state & 1)
|
|
||||||
V_StopPitchDrift ();
|
|
||||||
|
|
||||||
if ( (in_mlook.state & 1) && !(in_strafe.state & 1)) {
|
|
||||||
cl.viewangles[PITCH] += m_pitch.value * mouse_y;
|
|
||||||
if (cl.viewangles[PITCH] > 80)
|
|
||||||
cl.viewangles[PITCH] = 80;
|
|
||||||
if (cl.viewangles[PITCH] < -70)
|
|
||||||
cl.viewangles[PITCH] = -70;
|
|
||||||
} else {
|
|
||||||
if ((in_strafe.state & 1) && noclip_anglehack)
|
|
||||||
cmd->upmove -= m_forward.value * mouse_y;
|
|
||||||
else
|
|
||||||
cmd->forwardmove -= m_forward.value * mouse_y;
|
|
||||||
}
|
|
||||||
mouse_x = mouse_y = 0.0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void VID_ExtraOptionDraw(unsigned int options_draw_cursor)
|
|
||||||
{
|
|
||||||
// Windowed Mouse
|
|
||||||
M_Print(16, options_draw_cursor+=8, " Use Mouse");
|
|
||||||
M_DrawCheckbox(220, options_draw_cursor, _windowed_mouse.value);
|
|
||||||
}
|
|
||||||
|
|
||||||
void VID_ExtraOptionCmd(int option_cursor)
|
|
||||||
{
|
|
||||||
switch (option_cursor) {
|
|
||||||
case 1: // _windowed_mouse
|
|
||||||
Cvar_SetValue ("_windowed_mouse", !_windowed_mouse.value);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
|
@ -477,8 +477,10 @@ void M_AdjustSliders (int dir)
|
||||||
case 13:
|
case 13:
|
||||||
Cvar_SetValue ("cl_hudswap", !cl_hudswap.value);
|
Cvar_SetValue ("cl_hudswap", !cl_hudswap.value);
|
||||||
|
|
||||||
|
/*
|
||||||
default:
|
default:
|
||||||
VID_ExtraOptionCmd(options_cursor + 2 - L_OPTIONS_ITEMS);
|
VID_ExtraOptionCmd(options_cursor + 2 - L_OPTIONS_ITEMS);
|
||||||
|
*/
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -566,7 +568,7 @@ void M_Options_Draw (void)
|
||||||
M_Print (16, options_draw_cursor+=8, " HUD on left side");
|
M_Print (16, options_draw_cursor+=8, " HUD on left side");
|
||||||
M_DrawCheckbox (220, options_draw_cursor, cl_hudswap.value);
|
M_DrawCheckbox (220, options_draw_cursor, cl_hudswap.value);
|
||||||
|
|
||||||
VID_ExtraOptionDraw(options_draw_cursor);
|
//VID_ExtraOptionDraw(options_draw_cursor);
|
||||||
options_draw_cursor+=VID_options_items*8;
|
options_draw_cursor+=VID_options_items*8;
|
||||||
|
|
||||||
if (vid_menudrawfn) {
|
if (vid_menudrawfn) {
|
||||||
|
|
|
@ -33,6 +33,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
#include <sound.h>
|
#include <sound.h>
|
||||||
#include <screen.h>
|
#include <screen.h>
|
||||||
#include <menu.h>
|
#include <menu.h>
|
||||||
|
#include <plugin.h>
|
||||||
|
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
|
@ -972,7 +973,7 @@ int SCR_ModalMessage (char *text)
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
key_count = -1; // wait for a key down and up
|
key_count = -1; // wait for a key down and up
|
||||||
Sys_SendKeyEvents ();
|
IN->SendKeyEvents ();
|
||||||
} while (key_lastpress != 'y' && key_lastpress != 'n' && key_lastpress != K_ESCAPE);
|
} while (key_lastpress != 'y' && key_lastpress != 'n' && key_lastpress != K_ESCAPE);
|
||||||
|
|
||||||
scr_fullupdate = 0;
|
scr_fullupdate = 0;
|
||||||
|
|
Loading…
Reference in a new issue