/* Copyright (C) 1996-1997 Id Software, Inc. 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. */ #include #include #include #include #include #include #include #include #include "vga.h" #include "vgakeyboard.h" #include "vgamouse.h" #include "quakedef.h" #include "d_local.h" #define stringify(m) {#m, m} static byte *vid_surfcache; static int VID_highhunkmark; int num_modes; vga_modeinfo *modes; int current_mode; struct { char *name; int num; } mice[] = { stringify(MOUSE_MICROSOFT), stringify(MOUSE_MOUSESYSTEMS), stringify(MOUSE_MMSERIES), stringify(MOUSE_LOGITECH), stringify(MOUSE_BUSMOUSE), stringify(MOUSE_PS2), }; static unsigned char scantokey[128]; static byte vid_current_palette[768]; int num_mice = sizeof (mice) / sizeof(mice[0]); int svgalib_inited = 0; int UseMouse = 1; int UseDisplay = 1; int UseKeyboard = 1; int mouserate = MOUSE_DEFAULTSAMPLERATE; cvar_t vid_mode = {"vid_mode", "5"}; cvar_t vid_redrawfull = {"vid_redrawfull", "0"}; cvar_t vid_waitforrefresh = {"vid_waitforrefresh", "0", CVAR_ARCHIVE}; char *framebuffer_ptr; cvar_t mouse_button_commands[3] = { {"mouse1", "+attack"}, {"mouse2", "+strafe"}, {"mouse3", "+forward"}, }; int mouse_buttons; int mouse_buttonstate; int mouse_oldbuttonstate; float mouse_x, mouse_y; float old_mouse_x, old_mouse_y; int mx, my; cvar_t _windowed_mouse = {"_windowed_mouse", "1"}; // dummy for menu.c cvar_t m_filter = {"m_filter", "0"}; cvar_t cl_keypad = {"cl_keypad", "1"}; static byte backingbuf[48*24]; int VGA_width, VGA_height, VGA_rowbytes, VGA_bufferrowbytes, VGA_planar; byte *VGA_pagebase; void VGA_UpdatePlanarScreen (void *srcbuffer); void D_BeginDirectRect (int x, int y, byte *pbitmap, int width, int height) { int i, j, k, plane, reps, repshift, offset, vidpage, off; if (!svgalib_inited || !vid.direct || !vga_oktowrite()) return; if (vid.aspect > 1.5) { reps = 2; repshift = 1; } else { reps = 1; repshift = 0; } vidpage = 0; vga_setpage (0); if (VGA_planar) { for (plane=0 ; plane<4 ; plane++) { // select the correct plane for reading and writing outb(0x02, 0x3C4); outb(1<> 2) ; j++) { backingbuf[(i+k) * 24 + (j<<2) + plane] = vid.direct[(y+i+k) * VGA_rowbytes + (x>>2) + j]; vid.direct[(y+i+k) * VGA_rowbytes + (x>>2) + j] = pbitmap[(i>>repshift) * 24 + (j<<2) + plane]; } } } } } else { for (i=0 ; i<(height << repshift) ; i += reps) { for (j=0 ; j> repshift)*width], width); } } } } void D_EndDirectRect (int x, int y, int width, int height) { int i, j, k, plane, reps, repshift, offset, vidpage, off; if (!svgalib_inited || !vid.direct || !vga_oktowrite()) return; if (vid.aspect > 1.5) { reps = 2; repshift = 1; } else { reps = 1; repshift = 0; } vidpage = 0; vga_setpage (0); if (VGA_planar) { for (plane=0 ; plane<4 ; plane++) { // select the correct plane for writing outb(2, 0x3C4); outb(1 << plane, 0x3C5); outb(4, 0x3CE); outb(plane, 0x3CF); for (i=0 ; i<(height << repshift) ; i += reps) { for (k=0 ; k> 2) ; j++) { vid.direct[(y+i+k) * VGA_rowbytes + (x>>2) + j] = backingbuf[(i+k) * 24 + (j<<2) + plane]; } } } } } else { for (i=0 ; i<(height << repshift) ; i += reps) { for (j=0 ; j= num_modes) || (modenum < 0 ) || !modes[modenum].width) Con_Printf ("Invalid video mode: %d!\n", modenum); Con_Printf ("%d: %d x %d - ", modenum, modes[modenum].width, modes[modenum].height); if (modes[modenum].bytesperpixel == 0) Con_Printf ("ModeX\n"); else Con_Printf ("%d bpp\n", modes[modenum].bytesperpixel<<3); } void VID_DescribeModes_f (void) { int i; for (i=0 ; i MAXWIDTH || modes[i].height > MAXHEIGHT) modes[i].width = 0; } vid_windowedmouse = false; } int get_mode (char *name, int width, int height, int depth) { int i, ok, match; match = (!!width) + (!!height)*2 + (!!depth)*4; if (name) { i = vga_getmodenumber(name); if (!modes[i].width) { Sys_Printf ("Mode [%s] not supported\n", name); i = G320x200x256; } } else { for (i=0 ; i> 2; if (UseDisplay && vga_oktowrite()) vga_setpalvec (0, 256, tmppal); } } int VID_SetMode (int modenum, unsigned char *palette) { int bsize, zsize, tsize; if ((modenum >= num_modes) || (modenum < 0) || !modes[modenum].width) { Cvar_SetValue (&vid_mode, (float)current_mode); Con_Printf ("No such video mode: %d\n",modenum); return 0; } Cvar_SetValue (&vid_mode, (float)modenum); current_mode = modenum; vid.width = modes[current_mode].width; vid.height = modes[current_mode].height; VGA_width = modes[current_mode].width; VGA_height = modes[current_mode].height; VGA_planar = modes[current_mode].bytesperpixel == 0; VGA_rowbytes = modes[current_mode].linewidth; vid.rowbytes = modes[current_mode].linewidth; if (VGA_planar) { VGA_bufferrowbytes = modes[current_mode].linewidth * 4; vid.rowbytes = modes[current_mode].linewidth * 4; } vid.aspect = ((float)vid.height / (float)vid.width) * (320.0 / 240.0); vid.colormap = (pixel_t *) host_colormap; vid.fullbright = 256 - LittleLong (*((int *)vid.colormap + 2048)); vid.conwidth = vid.width; vid.conheight = vid.height; vid.numpages = 1; vid.maxwarpwidth = WARP_WIDTH; vid.maxwarpheight = WARP_HEIGHT; // alloc zbuffer and surface cache if (d_pzbuffer) { D_FlushCaches (); Hunk_FreeToHighMark (VID_highhunkmark); d_pzbuffer = NULL; vid_surfcache = NULL; } bsize = vid.rowbytes * vid.height; tsize = D_SurfaceCacheForRes (vid.width, vid.height); zsize = vid.width * vid.height * sizeof(*d_pzbuffer); VID_highhunkmark = Hunk_HighMark (); d_pzbuffer = Hunk_HighAllocName (bsize + tsize + zsize, "video"); vid_surfcache = ((byte *)d_pzbuffer) + zsize; vid.buffer = (pixel_t *)(((byte *)d_pzbuffer) + zsize + tsize); D_InitCaches (vid_surfcache, tsize); // get goin' vga_setmode (current_mode); VID_SetPalette (palette); VGA_pagebase = vid.direct = framebuffer_ptr = (char *)vga_getgraphmem (); // if (vga_setlinearaddressing()>0) // framebuffer_ptr = (char *) vga_getgraphmem(); if (!framebuffer_ptr) Sys_Error("This mode isn't hapnin'\n"); vga_setpage (0); svgalib_inited = 1; vid.recalc_refdef = 1; // force a surface cache flush return 0; } void VID_Init (unsigned char *palette) { int w, h, d; if (svgalib_inited) return; // Cmd_AddCommand ("gamma", VID_Gamma_f); if (UseDisplay) { vga_init (); VID_InitModes (); Cvar_Register (&vid_mode); Cvar_Register (&vid_redrawfull); Cvar_Register (&vid_waitforrefresh); Cmd_AddCommand ("vid_nummodes", VID_NumModes_f); Cmd_AddCommand ("vid_describemode", VID_DescribeMode_f); Cmd_AddCommand ("vid_describemodes", VID_DescribeModes_f); Cmd_AddCommand ("vid_debug", VID_Debug_f); // interpret command-line params w = h = d = 0; if (getenv("GSVGAMODE")) { current_mode = get_mode (getenv("GSVGAMODE"), w, h, d); } else if (COM_CheckParm("-mode")) { current_mode = get_mode (com_argv[COM_CheckParm("-mode")+1], w, h, d); } else if (COM_CheckParm("-w") || COM_CheckParm("-h") || COM_CheckParm("-d")) { if (COM_CheckParm("-w")) w = Q_atoi(com_argv[COM_CheckParm("-w")+1]); if (COM_CheckParm("-h")) h = Q_atoi(com_argv[COM_CheckParm("-h")+1]); if (COM_CheckParm("-d")) d = Q_atoi(com_argv[COM_CheckParm("-d")+1]); current_mode = get_mode(0, w, h, d); } else { current_mode = G320x200x256; } // set vid parameters VID_SetMode (current_mode, palette); VID_SetPalette (palette); // we do want to run in the background when switched away vga_runinbackground (1); } if (COM_CheckParm("-nokbd")) UseKeyboard = 0; if (UseKeyboard) { if (keyboard_init()) Sys_Error("keyboard_init() failed"); keyboard_seteventhandler (keyhandler); } } void VID_Update (vrect_t *rects) { if (!svgalib_inited) return; if (!vga_oktowrite()) return; // can't update screen if it's not active if (vid_waitforrefresh.value) vga_waitretrace (); if (VGA_planar) { VGA_UpdatePlanarScreen (vid.buffer); } else if (vid_redrawfull.value) { int total = vid.rowbytes * vid.height; int offset; for (offset = 0 ; offset < total ; offset += 0x10000) { vga_setpage (offset / 0x10000); memcpy (framebuffer_ptr,vid.buffer + offset, ((total - offset > 0x10000) ? 0x10000 : (total - offset))); } } else { int ycount, offset, vidpage = 0; vga_setpage (0); while (rects) { ycount = rects->height; offset = rects->y * vid.rowbytes + rects->x; while (ycount--) { register int i = offset % 0x10000; if ((offset / 0x10000) != vidpage) { vidpage = offset / 0x10000; vga_setpage(vidpage); } if (rects->width + i > 0x10000) { memcpy (framebuffer_ptr + i, vid.buffer + offset, 0x10000 - i); vga_setpage (++vidpage); memcpy (framebuffer_ptr, vid.buffer + offset + 0x10000 - i, rects->width - 0x10000 + i); } else { memcpy (framebuffer_ptr + i, vid.buffer + offset, rects->width); } offset += vid.rowbytes; } rects = rects->pnext; } } if (vid_mode.value != current_mode) VID_SetMode ((int)vid_mode.value, vid_current_palette); } void Sys_SendKeyEvents (void) { if (!svgalib_inited) return; if (UseKeyboard) while (keyboard_update()) ; } void Force_CenterView_f (void) { cl.viewangles[PITCH] = 0; } void mousehandler(int buttonstate, int dx, int dy) { mouse_buttonstate = buttonstate; mx += dx; my += dy; } void IN_Init (void) { int i, mtype, mouserate; char *mousedev; Cvar_Register (&m_filter); if (UseMouse) { Cvar_Register (&mouse_button_commands[0]); Cvar_Register (&mouse_button_commands[1]); Cvar_Register (&mouse_button_commands[2]); Cmd_AddCommand ("force_centerview", Force_CenterView_f); mouse_buttons = 3; mtype = vga_getmousetype (); mousedev = "/dev/mouse"; if (getenv("MOUSEDEV")) mousedev = getenv("MOUSEDEV"); if ((i = COM_CheckParm("-mdev")) && i + 1 < com_argc) mousedev = com_argv[i+1]; mouserate = 1200; if (getenv("MOUSERATE")) mouserate = Q_atoi(getenv("MOUSERATE")); if ((i = COM_CheckParm("-mrate")) && i + 1 < com_argc) mouserate = Q_atoi(com_argv[i+1]); if (mouse_init(mousedev, mtype, mouserate)) { Con_Printf ("No mouse found\n"); UseMouse = 0; } else { mouse_seteventhandler (mousehandler); } } if (UseKeyboard) Cvar_Register (&cl_keypad); } void IN_Shutdown(void) { if (UseMouse) mouse_close (); } /* =========== IN_Commands =========== */ void IN_Commands (void) { if (UseMouse && cls.state != ca_dedicated) { // poll mouse values while (mouse_update()) ; // perform button actions if ((mouse_buttonstate & MOUSE_LEFTBUTTON) && !(mouse_oldbuttonstate & MOUSE_LEFTBUTTON)) Key_Event (K_MOUSE1, true); else if (!(mouse_buttonstate & MOUSE_LEFTBUTTON) && (mouse_oldbuttonstate & MOUSE_LEFTBUTTON)) Key_Event (K_MOUSE1, false); if ((mouse_buttonstate & MOUSE_RIGHTBUTTON) && !(mouse_oldbuttonstate & MOUSE_RIGHTBUTTON)) Key_Event (K_MOUSE2, true); else if (!(mouse_buttonstate & MOUSE_RIGHTBUTTON) && (mouse_oldbuttonstate & MOUSE_RIGHTBUTTON)) Key_Event (K_MOUSE2, false); if ((mouse_buttonstate & MOUSE_MIDDLEBUTTON) && !(mouse_oldbuttonstate & MOUSE_MIDDLEBUTTON)) Key_Event (K_MOUSE3, true); else if (!(mouse_buttonstate & MOUSE_MIDDLEBUTTON) && (mouse_oldbuttonstate & MOUSE_MIDDLEBUTTON)) Key_Event (K_MOUSE3, false); mouse_oldbuttonstate = mouse_buttonstate; } } /* =========== IN_Move =========== */ void IN_MouseMove (usercmd_t *cmd) { if (!UseMouse) return; // poll mouse values while (mouse_update()) ; if (m_filter.value) { mouse_x = (mx + old_mouse_x) * 0.5; mouse_y = (my + old_mouse_y) * 0.5; } else { mouse_x = mx; mouse_y = my; } old_mouse_x = mx; old_mouse_y = my; mx = my = 0; // clear for next update mouse_x *= sensitivity.value; mouse_y *= sensitivity.value; // add mouse X/Y movement to cmd if ((in_strafe.state & 1) || (lookstrafe.value && mlook_active)) cmd->sidemove += m_side.value * mouse_x; else cl.viewangles[YAW] -= m_yaw.value * mouse_x; if (mlook_active) V_StopPitchDrift (); if (mlook_active && !(in_strafe.state & 1)) { cl.viewangles[PITCH] += m_pitch.value * mouse_y; cl.viewangles[PITCH] = bound (-70, cl.viewangles[PITCH], 80); } else { if ((in_strafe.state & 1) && noclip_anglehack) cmd->upmove -= m_forward.value * mouse_y; else cmd->forwardmove -= m_forward.value * mouse_y; } } void IN_Move (usercmd_t *cmd) { IN_MouseMove (cmd); } /* ================ VID_ModeInfo ================ */ char *VID_ModeInfo (int modenum) { static char *badmodestr = "Bad mode number"; static char modestr[40]; if (modenum == 0) { sprintf (modestr, "%d x %d, %d bpp", vid.width, vid.height, modes[current_mode].bytesperpixel*8); return (modestr); } else { return (badmodestr); } } void VID_LockBuffer (void) { } void VID_UnlockBuffer (void) { }