123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026 |
- /*
- 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 <termios.h>
- #include <sys/ioctl.h>
- #include <sys/stat.h>
- #include <sys/vt.h>
- #include <stdarg.h>
- #include <stdio.h>
- #include <signal.h>
- #include <asm/io.h>
- #include "vga.h"
- #include "vgakeyboard.h"
- #include "vgamouse.h"
- #include "quakedef.h"
- #include "d_local.h"
- #define stringify(m) { #m, m }
- unsigned short d_8to16table[256];
- static byte *vid_surfcache;
- static int VID_highhunkmark;
- int num_modes;
- vga_modeinfo *modes;
- int current_mode;
- int num_shades=32;
- 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 d_con_indirect = 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",false};
- cvar_t vid_redrawfull = {"vid_redrawfull","0",false};
- cvar_t vid_waitforrefresh = {"vid_waitforrefresh","0",true};
-
- 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", true};
- cvar_t m_filter = {"m_filter","0"};
- 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 << plane, 0x3C5);
- outb(4, 0x3CE);
- outb(plane, 0x3CF);
- for (i=0 ; i<(height << repshift) ; i += reps)
- {
- for (k=0 ; k<reps ; k++)
- {
- for (j=0 ; j<(width >> 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<reps ; j++)
- {
- offset = x + ((y << repshift) + i + j) * vid.rowbytes;
- off = offset % 0x10000;
- if ((offset / 0x10000) != vidpage) {
- vidpage=offset / 0x10000;
- vga_setpage(vidpage);
- }
- memcpy (&backingbuf[(i + j) * 24],
- vid.direct + off, width);
- memcpy (vid.direct + off,
- &pbitmap[(i >> 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<reps ; k++)
- {
- for (j=0 ; j<(width >> 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<reps ; j++)
- {
- offset = x + ((y << repshift) + i + j) * vid.rowbytes;
- off = offset % 0x10000;
- if ((offset / 0x10000) != vidpage) {
- vidpage=offset / 0x10000;
- vga_setpage(vidpage);
- }
- memcpy (vid.direct + off,
- &backingbuf[(i +j)*24],
- width);
- }
- }
- }
- }
- /*
- =================
- VID_Gamma_f
- Keybinding command
- =================
- */
- void VID_Gamma_f (void)
- {
- float gamma, f, inf;
- unsigned char palette[768];
- int i;
- if (Cmd_Argc () == 2)
- {
- gamma = Q_atof (Cmd_Argv(1));
- for (i=0 ; i<768 ; i++)
- {
- f = pow ( (host_basepal[i]+1)/256.0 , gamma );
- inf = f*255 + 0.5;
- if (inf < 0)
- inf = 0;
- if (inf > 255)
- inf = 255;
- palette[i] = inf;
- }
- VID_SetPalette (palette);
- vid.recalc_refdef = 1; // force a surface cache flush
- }
- }
- void VID_DescribeMode_f (void)
- {
- int modenum;
-
- modenum = Q_atoi (Cmd_Argv(1));
- if ((modenum >= 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<num_modes;i++)
- if (modes[i].width) {
- Con_Printf("%d: %d x %d - ", i, modes[i].width,modes[i].height);
- if (modes[i].bytesperpixel == 0)
- Con_Printf("ModeX\n");
- else
- Con_Printf("%d bpp\n", modes[i].bytesperpixel<<3);
- }
- }
- /*
- ================
- VID_NumModes
- ================
- */
- int VID_NumModes ()
- {
- int i,i1=0;
-
- for (i=0;i<num_modes;i++)
- i1+=(modes[i].width?1:0);
- return (i1);
- }
- void VID_NumModes_f (void)
- {
- Con_Printf("%d modes\n",VID_NumModes());
- }
- void VID_Debug_f (void)
- {
- Con_Printf("mode: %d\n",current_mode);
- Con_Printf("height x width: %d x %d\n",vid.height,vid.width);
- Con_Printf("bpp: %d\n",modes[current_mode].bytesperpixel*8);
- Con_Printf("vid.aspect: %f\n",vid.aspect);
- }
- void VID_InitModes(void)
- {
- int i;
- // get complete information on all modes
- num_modes = vga_lastmodenumber()+1;
- modes = Z_Malloc(num_modes * sizeof(vga_modeinfo));
- for (i=0 ; i<num_modes ; i++)
- {
- if (vga_hasmode(i))
- Q_memcpy(&modes[i], vga_getmodeinfo(i), sizeof (vga_modeinfo));
- else
- modes[i].width = 0; // means not available
- }
- // filter for modes i don't support
- for (i=0 ; i<num_modes ; i++)
- {
- if (modes[i].bytesperpixel != 1 && modes[i].colors != 256)
- modes[i].width = 0;
- }
- }
- int get_mode(char *name, int width, int height, int depth)
- {
- int i;
- int 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<num_modes ; i++)
- if (modes[i].width)
- {
- ok = (modes[i].width == width)
- + (modes[i].height == height)*2
- + (modes[i].bytesperpixel == depth/8)*4;
- if ((ok & match) == ok)
- break;
- }
- if (i==num_modes)
- {
- Sys_Printf("Mode %dx%d (%d bits) not supported\n",
- width, height, depth);
- i = G320x200x256;
- }
- }
- return i;
- }
- int matchmouse(int mouse, char *name)
- {
- int i;
- for (i=0 ; i<num_mice ; i++)
- if (!strcmp(mice[i].name, name))
- return i;
- return mouse;
- }
- #if 0
- void vtswitch(int newconsole)
- {
- int fd;
- struct vt_stat x;
- // switch consoles and wait until reactivated
- fd = open("/dev/console", O_RDONLY);
- ioctl(fd, VT_GETSTATE, &x);
- ioctl(fd, VT_ACTIVATE, newconsole);
- ioctl(fd, VT_WAITACTIVE, x.v_active);
- close(fd);
- }
- #endif
- void keyhandler(int scancode, int state)
- {
-
- int sc;
- sc = scancode & 0x7f;
- // Con_Printf("scancode=%x (%d%s)\n", scancode, sc, scancode&0x80?"+128":"");
- Key_Event(scantokey[sc], state == KEY_EVENTPRESS);
- }
- void VID_Shutdown(void)
- {
- if (!svgalib_inited) return;
- // printf("shutdown graphics called\n");
- if (UseKeyboard)
- keyboard_close();
- if (UseDisplay)
- vga_setmode(TEXT);
- // printf("shutdown graphics finished\n");
- svgalib_inited = 0;
- }
- void VID_ShiftPalette(unsigned char *p)
- {
- VID_SetPalette(p);
- }
- void VID_SetPalette(byte *palette)
- {
- static int tmppal[256*3];
- int *tp;
- int i;
- if (!svgalib_inited)
- return;
- memcpy(vid_current_palette, palette, sizeof(vid_current_palette));
- if (vga_getcolors() == 256)
- {
- tp = tmppal;
- for (i=256*3 ; i ; i--)
- *(tp++) = *(palette++) >> 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.conrowbytes = vid.rowbytes;
- 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.conbuffer = 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 i;
- int w, h, d;
- S_Init(); // sound gets initialized here
- if (svgalib_inited)
- return;
- // Cmd_AddCommand ("gamma", VID_Gamma_f);
- if (UseDisplay)
- {
- vga_init();
- VID_InitModes();
- Cvar_RegisterVariable (&vid_mode);
- Cvar_RegisterVariable (&vid_redrawfull);
- Cvar_RegisterVariable (&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)
- {
- for (i=0 ; i<128 ; i++)
- scantokey[i] = ' ';
- scantokey[ 1] = K_ESCAPE;
- scantokey[ 2] = '1';
- scantokey[ 3] = '2';
- scantokey[ 4] = '3';
- scantokey[ 5] = '4';
- scantokey[ 6] = '5';
- scantokey[ 7] = '6';
- scantokey[ 8] = '7';
- scantokey[ 9] = '8';
- scantokey[ 10] = '9';
- scantokey[ 11] = '0';
- scantokey[ 12] = '-';
- scantokey[ 13] = '=';
- scantokey[ 14] = K_BACKSPACE;
- scantokey[ 15] = K_TAB;
- scantokey[ 16] = 'q';
- scantokey[ 17] = 'w';
- scantokey[ 18] = 'e';
- scantokey[ 19] = 'r';
- scantokey[ 20] = 't';
- scantokey[ 21] = 'y';
- scantokey[ 22] = 'u';
- scantokey[ 23] = 'i';
- scantokey[ 24] = 'o';
- scantokey[ 25] = 'p';
- scantokey[ 26] = '[';
- scantokey[ 27] = ']';
- scantokey[ 28] = K_ENTER;
- scantokey[ 29] = K_CTRL; //left
- scantokey[ 30] = 'a';
- scantokey[ 31] = 's';
- scantokey[ 32] = 'd';
- scantokey[ 33] = 'f';
- scantokey[ 34] = 'g';
- scantokey[ 35] = 'h';
- scantokey[ 36] = 'j';
- scantokey[ 37] = 'k';
- scantokey[ 38] = 'l';
- scantokey[ 39] = ';';
- scantokey[ 40] = '\'';
- scantokey[ 41] = '`';
- scantokey[ 42] = K_SHIFT; //left
- scantokey[ 43] = '\\';
- scantokey[ 44] = 'z';
- scantokey[ 45] = 'x';
- scantokey[ 46] = 'c';
- scantokey[ 47] = 'v';
- scantokey[ 48] = 'b';
- scantokey[ 49] = 'n';
- scantokey[ 50] = 'm';
- scantokey[ 51] = ',';
- scantokey[ 52] = '.';
- scantokey[ 53] = '/';
- scantokey[ 54] = K_SHIFT; //right
- scantokey[ 55] = '*'; //keypad
- scantokey[ 56] = K_ALT; //left
- scantokey[ 57] = ' ';
- // 58 caps lock
- scantokey[ 59] = K_F1;
- scantokey[ 60] = K_F2;
- scantokey[ 61] = K_F3;
- scantokey[ 62] = K_F4;
- scantokey[ 63] = K_F5;
- scantokey[ 64] = K_F6;
- scantokey[ 65] = K_F7;
- scantokey[ 66] = K_F8;
- scantokey[ 67] = K_F9;
- scantokey[ 68] = K_F10;
- // 69 numlock
- // 70 scrollock
- scantokey[ 71] = K_HOME;
- scantokey[ 72] = K_UPARROW;
- scantokey[ 73] = K_PGUP;
- scantokey[ 74] = '-';
- scantokey[ 75] = K_LEFTARROW;
- scantokey[ 76] = '5';
- scantokey[ 77] = K_RIGHTARROW;
- scantokey[ 79] = K_END;
- scantokey[ 78] = '+';
- scantokey[ 80] = K_DOWNARROW;
- scantokey[ 81] = K_PGDN;
- scantokey[ 82] = K_INS;
- scantokey[ 83] = K_DEL;
- // 84 to 86 not used
- scantokey[ 87] = K_F11;
- scantokey[ 88] = K_F12;
- // 89 to 95 not used
- scantokey[ 96] = K_ENTER; //keypad enter
- scantokey[ 97] = K_CTRL; //right
- scantokey[ 98] = '/';
- scantokey[ 99] = K_F12; // print screen, bind to screenshot by default
- scantokey[100] = K_ALT; // right
- scantokey[101] = K_PAUSE; // break
- scantokey[102] = K_HOME;
- scantokey[103] = K_UPARROW;
- scantokey[104] = K_PGUP;
- scantokey[105] = K_LEFTARROW;
- scantokey[106] = K_RIGHTARROW;
- scantokey[107] = K_END;
- scantokey[108] = K_DOWNARROW;
- scantokey[109] = K_PGDN;
- scantokey[110] = K_INS;
- scantokey[111] = K_DEL;
- scantokey[119] = K_PAUSE;
- 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;
- int offset;
- int 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);
- }
- static int dither;
- void VID_DitherOn(void)
- {
- if (dither == 0)
- {
- // R_ViewChanged (&vrect, sb_lines, vid.aspect);
- dither = 1;
- }
- }
- void VID_DitherOff(void)
- {
- if (dither)
- {
- // R_ViewChanged (&vrect, sb_lines, vid.aspect);
- dither = 0;
- }
- }
- 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 mtype;
- char *mousedev;
- int mouserate;
- Cvar_RegisterVariable (&m_filter);
- if (UseMouse)
- {
- Cvar_RegisterVariable (&mouse_button_commands[0]);
- Cvar_RegisterVariable (&mouse_button_commands[1]);
- Cvar_RegisterVariable (&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 (COM_CheckParm("-mdev"))
- mousedev = com_argv[COM_CheckParm("-mdev")+1];
- mouserate = 1200;
- if (getenv("MOUSERATE")) mouserate = atoi(getenv("MOUSERATE"));
- if (COM_CheckParm("-mrate"))
- mouserate = atoi(com_argv[COM_CheckParm("-mrate")+1]);
- // printf("Mouse: dev=%s,type=%s,speed=%d\n",
- // mousedev, mice[mtype].name, mouserate);
- if (mouse_init(mousedev, mtype, mouserate))
- {
- Con_Printf("No mouse found\n");
- UseMouse = 0;
- }
- else
- mouse_seteventhandler(mousehandler);
- }
- }
- 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 && (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;
- }
- }
- 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)
- {
- }
|