]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - vid_shared.c
removed model_t mdlmd2data_frames (no longer needed)
[xonotic/darkplaces.git] / vid_shared.c
1
2 #include "quakedef.h"
3
4 // global video state
5 viddef_t vid;
6
7 // LordHavoc: these are only set in wgl
8 qboolean isG200 = false; // LordHavoc: the Matrox G200 can't do per pixel alpha, and it uses a D3D driver for GL... ugh...
9 qboolean isRagePro = false; // LordHavoc: the ATI Rage Pro has limitations with per pixel alpha (the color scaler does not apply to per pixel alpha images...), although not as bad as a G200.
10
11 // GL_ARB_multitexture
12 int gl_textureunits = 0;
13 // GL_ARB_texture_env_combine or GL_EXT_texture_env_combine
14 int gl_combine_extension = false;
15 // GL_EXT_compiled_vertex_array
16 int gl_supportslockarrays = false;
17 // GLX_SGI_video_sync or WGL_EXT_swap_control
18 int gl_videosyncavailable = false;
19 // stencil available
20 int gl_stencil = false;
21 // 3D textures available
22 int gl_texture3d = false;
23 // GL_ARB_texture_cubemap
24 int gl_texturecubemap = false;
25 // GL_ARB_texture_env_dot3
26 int gl_dot3arb = false;
27
28 // LordHavoc: if window is hidden, don't update screen
29 int vid_hidden = true;
30 // LordHavoc: if window is not the active window, don't hog as much CPU time,
31 // let go of the mouse, turn off sound, and restore system gamma ramps...
32 int vid_activewindow = true;
33
34 cvar_t vid_fullscreen = {CVAR_SAVE, "vid_fullscreen", "1"};
35 cvar_t vid_width = {CVAR_SAVE, "vid_width", "640"};
36 cvar_t vid_height = {CVAR_SAVE, "vid_height", "480"};
37 cvar_t vid_bitsperpixel = {CVAR_SAVE, "vid_bitsperpixel", "16"};
38 cvar_t vid_stencil = {CVAR_SAVE, "vid_stencil", "0"};
39
40 cvar_t vid_mouse = {CVAR_SAVE, "vid_mouse", "1"};
41 cvar_t gl_combine = {0, "gl_combine", "1"};
42
43 cvar_t in_pitch_min = {0, "in_pitch_min", "-90"};
44 cvar_t in_pitch_max = {0, "in_pitch_max", "90"};
45
46 cvar_t m_filter = {CVAR_SAVE, "m_filter","0"};
47
48 // brand of graphics chip
49 const char *gl_vendor;
50 // graphics chip model and other information
51 const char *gl_renderer;
52 // begins with 1.0.0, 1.1.0, 1.2.0, 1.2.1, 1.3.0, 1.3.1, or 1.4.0
53 const char *gl_version;
54 // extensions list, space separated
55 const char *gl_extensions;
56 // WGL, GLX, or AGL
57 const char *gl_platform;
58 // another extensions list, containing platform-specific extensions that are
59 // not in the main list
60 const char *gl_platformextensions;
61 // name of driver library (opengl32.dll, libGL.so.1, or whatever)
62 char gl_driver[256];
63
64 // GL_ARB_multitexture
65 void (GLAPIENTRY *qglMultiTexCoord2f) (GLenum, GLfloat, GLfloat);
66 void (GLAPIENTRY *qglActiveTexture) (GLenum);
67 void (GLAPIENTRY *qglClientActiveTexture) (GLenum);
68
69 // GL_EXT_compiled_vertex_array
70 void (GLAPIENTRY *qglLockArraysEXT) (GLint first, GLint count);
71 void (GLAPIENTRY *qglUnlockArraysEXT) (void);
72
73
74 // general GL functions
75
76 void (GLAPIENTRY *qglClearColor)(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
77
78 void (GLAPIENTRY *qglClear)(GLbitfield mask);
79
80 //void (GLAPIENTRY *qglAlphaFunc)(GLenum func, GLclampf ref);
81 void (GLAPIENTRY *qglBlendFunc)(GLenum sfactor, GLenum dfactor);
82 void (GLAPIENTRY *qglCullFace)(GLenum mode);
83
84 void (GLAPIENTRY *qglDrawBuffer)(GLenum mode);
85 void (GLAPIENTRY *qglReadBuffer)(GLenum mode);
86 void (GLAPIENTRY *qglEnable)(GLenum cap);
87 void (GLAPIENTRY *qglDisable)(GLenum cap);
88 //GLboolean GLAPIENTRY *qglIsEnabled)(GLenum cap);
89
90 void (GLAPIENTRY *qglEnableClientState)(GLenum cap);
91 void (GLAPIENTRY *qglDisableClientState)(GLenum cap);
92
93 void (GLAPIENTRY *qglGetBooleanv)(GLenum pname, GLboolean *params);
94 void (GLAPIENTRY *qglGetDoublev)(GLenum pname, GLdouble *params);
95 void (GLAPIENTRY *qglGetFloatv)(GLenum pname, GLfloat *params);
96 void (GLAPIENTRY *qglGetIntegerv)(GLenum pname, GLint *params);
97
98 GLenum (GLAPIENTRY *qglGetError)(void);
99 const GLubyte* (GLAPIENTRY *qglGetString)(GLenum name);
100 void (GLAPIENTRY *qglFinish)(void);
101 void (GLAPIENTRY *qglFlush)(void);
102
103 void (GLAPIENTRY *qglClearDepth)(GLclampd depth);
104 void (GLAPIENTRY *qglDepthFunc)(GLenum func);
105 void (GLAPIENTRY *qglDepthMask)(GLboolean flag);
106 void (GLAPIENTRY *qglDepthRange)(GLclampd near_val, GLclampd far_val);
107 void (GLAPIENTRY *qglColorMask)(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
108
109 void (GLAPIENTRY *qglDrawRangeElements)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices);
110 void (GLAPIENTRY *qglDrawElements)(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices);
111 void (GLAPIENTRY *qglVertexPointer)(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr);
112 //void (GLAPIENTRY *qglNormalPointer)(GLenum type, GLsizei stride, const GLvoid *ptr);
113 void (GLAPIENTRY *qglColorPointer)(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr);
114 void (GLAPIENTRY *qglTexCoordPointer)(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr);
115 void (GLAPIENTRY *qglArrayElement)(GLint i);
116
117 void (GLAPIENTRY *qglColor4f)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
118 void (GLAPIENTRY *qglTexCoord2f)(GLfloat s, GLfloat t);
119 void (GLAPIENTRY *qglVertex2f)(GLfloat x, GLfloat y);
120 void (GLAPIENTRY *qglVertex3f)(GLfloat x, GLfloat y, GLfloat z);
121 void (GLAPIENTRY *qglBegin)(GLenum mode);
122 void (GLAPIENTRY *qglEnd)(void);
123
124 void (GLAPIENTRY *qglMatrixMode)(GLenum mode);
125 void (GLAPIENTRY *qglOrtho)(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble near_val, GLdouble far_val);
126 void (GLAPIENTRY *qglFrustum)(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble near_val, GLdouble far_val);
127 void (GLAPIENTRY *qglViewport)(GLint x, GLint y, GLsizei width, GLsizei height);
128 //void (GLAPIENTRY *qglPushMatrix)(void);
129 //void (GLAPIENTRY *qglPopMatrix)(void);
130 void (GLAPIENTRY *qglLoadIdentity)(void);
131 void (GLAPIENTRY *qglLoadMatrixd)(const GLdouble *m);
132 void (GLAPIENTRY *qglLoadMatrixf)(const GLfloat *m);
133 //void (GLAPIENTRY *qglMultMatrixd)(const GLdouble *m);
134 //void (GLAPIENTRY *qglMultMatrixf)(const GLfloat *m);
135 //void (GLAPIENTRY *qglRotated)(GLdouble angle, GLdouble x, GLdouble y, GLdouble z);
136 void (GLAPIENTRY *qglRotatef)(GLfloat angle, GLfloat x, GLfloat y, GLfloat z);
137 //void (GLAPIENTRY *qglScaled)(GLdouble x, GLdouble y, GLdouble z);
138 //void (GLAPIENTRY *qglScalef)(GLfloat x, GLfloat y, GLfloat z);
139 //void (GLAPIENTRY *qglTranslated)(GLdouble x, GLdouble y, GLdouble z);
140 void (GLAPIENTRY *qglTranslatef)(GLfloat x, GLfloat y, GLfloat z);
141
142 void (GLAPIENTRY *qglReadPixels)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels);
143
144 void (GLAPIENTRY *qglStencilFunc)(GLenum func, GLint ref, GLuint mask);
145 void (GLAPIENTRY *qglStencilMask)(GLuint mask);
146 void (GLAPIENTRY *qglStencilOp)(GLenum fail, GLenum zfail, GLenum zpass);
147 void (GLAPIENTRY *qglClearStencil)(GLint s);
148
149 void (GLAPIENTRY *qglTexEnvf)(GLenum target, GLenum pname, GLfloat param);
150 void (GLAPIENTRY *qglTexEnvi)(GLenum target, GLenum pname, GLint param);
151 void (GLAPIENTRY *qglTexParameterf)(GLenum target, GLenum pname, GLfloat param);
152 void (GLAPIENTRY *qglTexParameterfv)(GLenum target, GLenum pname, GLfloat *params);
153 void (GLAPIENTRY *qglTexParameteri)(GLenum target, GLenum pname, GLint param);
154
155 void (GLAPIENTRY *qglGenTextures)(GLsizei n, GLuint *textures);
156 void (GLAPIENTRY *qglDeleteTextures)(GLsizei n, const GLuint *textures);
157 void (GLAPIENTRY *qglBindTexture)(GLenum target, GLuint texture);
158 void (GLAPIENTRY *qglPrioritizeTextures)(GLsizei n, const GLuint *textures, const GLclampf *priorities);
159 GLboolean (GLAPIENTRY *qglAreTexturesResident)(GLsizei n, const GLuint *textures, GLboolean *residences);
160 GLboolean (GLAPIENTRY *qglIsTexture)(GLuint texture);
161 void (GLAPIENTRY *qglPixelStoref)(GLenum pname, GLfloat param);
162 void (GLAPIENTRY *qglPixelStorei)(GLenum pname, GLint param);
163
164 void (GLAPIENTRY *qglTexImage1D)(GLenum target, GLint level, GLint internalFormat, GLsizei width, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
165 void (GLAPIENTRY *qglTexImage2D)(GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
166 void (GLAPIENTRY *qglTexSubImage1D)(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const GLvoid *pixels);
167 void (GLAPIENTRY *qglTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels);
168 void (GLAPIENTRY *qglCopyTexImage1D)(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border);
169 void (GLAPIENTRY *qglCopyTexImage2D)(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border);
170 void (GLAPIENTRY *qglCopyTexSubImage1D)(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width);
171 void (GLAPIENTRY *qglCopyTexSubImage2D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height);
172
173
174 void (GLAPIENTRY *qglDrawRangeElementsEXT)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices);
175
176 //void (GLAPIENTRY *qglColorTableEXT)(int, int, int, int, int, const void *);
177
178 void (GLAPIENTRY *qglTexImage3D)(GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
179 void (GLAPIENTRY *qglTexSubImage3D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
180 void (GLAPIENTRY *qglCopyTexSubImage3D)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
181
182 void (GLAPIENTRY *qglScissor)(GLint x, GLint y, GLsizei width, GLsizei height);
183
184 void (GLAPIENTRY *qglPolygonOffset)(GLfloat factor, GLfloat units);
185
186 int GL_CheckExtension(const char *name, const dllfunction_t *funcs, const char *disableparm, int silent)
187 {
188         int failed = false;
189         const dllfunction_t *func;
190
191         Con_Printf("checking for %s...  ", name);
192
193         for (func = funcs;func && func->name;func++)
194                 *func->funcvariable = NULL;
195
196         if (disableparm && COM_CheckParm(disableparm))
197         {
198                 Con_Printf("disabled by commandline\n");
199                 return false;
200         }
201
202         if (strstr(gl_extensions, name) || strstr(gl_platformextensions, name) || (strncmp(name, "GL_", 3) && strncmp(name, "WGL_", 4) && strncmp(name, "GLX_", 4) && strncmp(name, "AGL_", 4)))
203         {
204                 for (func = funcs;func && func->name != NULL;func++)
205                 {
206                         // functions are cleared before all the extensions are evaluated
207                         if (!(*func->funcvariable = (void *) GL_GetProcAddress(func->name)))
208                         {
209                                 if (!silent)
210                                         Con_Printf("missing function \"%s\" - broken driver!\n", func->name);
211                                 failed = true;
212                         }
213                 }
214                 // delay the return so it prints all missing functions
215                 if (failed)
216                         return false;
217                 Con_Printf("enabled\n");
218                 return true;
219         }
220         else
221         {
222                 Con_Printf("not detected\n");
223                 return false;
224         }
225 }
226
227 static dllfunction_t opengl110funcs[] =
228 {
229         {"glClearColor", (void **) &qglClearColor},
230         {"glClear", (void **) &qglClear},
231 //      {"glAlphaFunc", (void **) &qglAlphaFunc},
232         {"glBlendFunc", (void **) &qglBlendFunc},
233         {"glCullFace", (void **) &qglCullFace},
234         {"glDrawBuffer", (void **) &qglDrawBuffer},
235         {"glReadBuffer", (void **) &qglReadBuffer},
236         {"glEnable", (void **) &qglEnable},
237         {"glDisable", (void **) &qglDisable},
238 //      {"glIsEnabled", (void **) &qglIsEnabled},
239         {"glEnableClientState", (void **) &qglEnableClientState},
240         {"glDisableClientState", (void **) &qglDisableClientState},
241         {"glGetBooleanv", (void **) &qglGetBooleanv},
242         {"glGetDoublev", (void **) &qglGetDoublev},
243         {"glGetFloatv", (void **) &qglGetFloatv},
244         {"glGetIntegerv", (void **) &qglGetIntegerv},
245         {"glGetError", (void **) &qglGetError},
246         {"glGetString", (void **) &qglGetString},
247         {"glFinish", (void **) &qglFinish},
248         {"glFlush", (void **) &qglFlush},
249         {"glClearDepth", (void **) &qglClearDepth},
250         {"glDepthFunc", (void **) &qglDepthFunc},
251         {"glDepthMask", (void **) &qglDepthMask},
252         {"glDepthRange", (void **) &qglDepthRange},
253         {"glDrawElements", (void **) &qglDrawElements},
254         {"glColorMask", (void **) &qglColorMask},
255         {"glVertexPointer", (void **) &qglVertexPointer},
256 //      {"glNormalPointer", (void **) &qglNormalPointer},
257         {"glColorPointer", (void **) &qglColorPointer},
258         {"glTexCoordPointer", (void **) &qglTexCoordPointer},
259         {"glArrayElement", (void **) &qglArrayElement},
260         {"glColor4f", (void **) &qglColor4f},
261         {"glTexCoord2f", (void **) &qglTexCoord2f},
262         {"glVertex2f", (void **) &qglVertex2f},
263         {"glVertex3f", (void **) &qglVertex3f},
264         {"glBegin", (void **) &qglBegin},
265         {"glEnd", (void **) &qglEnd},
266         {"glMatrixMode", (void **) &qglMatrixMode},
267         {"glOrtho", (void **) &qglOrtho},
268         {"glFrustum", (void **) &qglFrustum},
269         {"glViewport", (void **) &qglViewport},
270 //      {"glPushMatrix", (void **) &qglPushMatrix},
271 //      {"glPopMatrix", (void **) &qglPopMatrix},
272         {"glLoadIdentity", (void **) &qglLoadIdentity},
273         {"glLoadMatrixd", (void **) &qglLoadMatrixd},
274         {"glLoadMatrixf", (void **) &qglLoadMatrixf},
275 //      {"glMultMatrixd", (void **) &qglMultMatrixd},
276 //      {"glMultMatrixf", (void **) &qglMultMatrixf},
277 //      {"glRotated", (void **) &qglRotated},
278         {"glRotatef", (void **) &qglRotatef},
279 //      {"glScaled", (void **) &qglScaled},
280 //      {"glScalef", (void **) &qglScalef},
281 //      {"glTranslated", (void **) &qglTranslated},
282         {"glTranslatef", (void **) &qglTranslatef},
283         {"glReadPixels", (void **) &qglReadPixels},
284         {"glStencilFunc", (void **) &qglStencilFunc},
285         {"glStencilMask", (void **) &qglStencilMask},
286         {"glStencilOp", (void **) &qglStencilOp},
287         {"glClearStencil", (void **) &qglClearStencil},
288         {"glTexEnvf", (void **) &qglTexEnvf},
289         {"glTexEnvi", (void **) &qglTexEnvi},
290         {"glTexParameterf", (void **) &qglTexParameterf},
291         {"glTexParameterfv", (void **) &qglTexParameterfv},
292         {"glTexParameteri", (void **) &qglTexParameteri},
293         {"glPixelStoref", (void **) &qglPixelStoref},
294         {"glPixelStorei", (void **) &qglPixelStorei},
295         {"glGenTextures", (void **) &qglGenTextures},
296         {"glDeleteTextures", (void **) &qglDeleteTextures},
297         {"glBindTexture", (void **) &qglBindTexture},
298         {"glPrioritizeTextures", (void **) &qglPrioritizeTextures},
299         {"glAreTexturesResident", (void **) &qglAreTexturesResident},
300         {"glIsTexture", (void **) &qglIsTexture},
301         {"glTexImage1D", (void **) &qglTexImage1D},
302         {"glTexImage2D", (void **) &qglTexImage2D},
303         {"glTexSubImage1D", (void **) &qglTexSubImage1D},
304         {"glTexSubImage2D", (void **) &qglTexSubImage2D},
305         {"glCopyTexImage1D", (void **) &qglCopyTexImage1D},
306         {"glCopyTexImage2D", (void **) &qglCopyTexImage2D},
307         {"glCopyTexSubImage1D", (void **) &qglCopyTexSubImage1D},
308         {"glCopyTexSubImage2D", (void **) &qglCopyTexSubImage2D},
309         {"glScissor", (void **) &qglScissor},
310         {"glPolygonOffset", (void **) &qglPolygonOffset},
311         {NULL, NULL}
312 };
313
314 static dllfunction_t drawrangeelementsfuncs[] =
315 {
316         {"glDrawRangeElements", (void **) &qglDrawRangeElements},
317         {NULL, NULL}
318 };
319
320 static dllfunction_t drawrangeelementsextfuncs[] =
321 {
322         {"glDrawRangeElementsEXT", (void **) &qglDrawRangeElementsEXT},
323         {NULL, NULL}
324 };
325
326 static dllfunction_t multitexturefuncs[] =
327 {
328         {"glMultiTexCoord2fARB", (void **) &qglMultiTexCoord2f},
329         {"glActiveTextureARB", (void **) &qglActiveTexture},
330         {"glClientActiveTextureARB", (void **) &qglClientActiveTexture},
331         {NULL, NULL}
332 };
333
334 static dllfunction_t compiledvertexarrayfuncs[] =
335 {
336         {"glLockArraysEXT", (void **) &qglLockArraysEXT},
337         {"glUnlockArraysEXT", (void **) &qglUnlockArraysEXT},
338         {NULL, NULL}
339 };
340
341 static dllfunction_t texture3dextfuncs[] =
342 {
343         {"glTexImage3DEXT", (void **) &qglTexImage3D},
344         {"glTexSubImage3DEXT", (void **) &qglTexSubImage3D},
345         {"glCopyTexSubImage3DEXT", (void **) &qglCopyTexSubImage3D},
346         {NULL, NULL}
347 };
348
349 void VID_CheckExtensions(void)
350 {
351         gl_stencil = vid_stencil.integer;
352         gl_combine_extension = false;
353         gl_dot3arb = false;
354         gl_supportslockarrays = false;
355         gl_textureunits = 1;
356
357         if (!GL_CheckExtension("OpenGL 1.1.0", opengl110funcs, NULL, false))
358                 Sys_Error("OpenGL 1.1.0 functions not found\n");
359
360         Con_Printf ("GL_VENDOR: %s\n", gl_vendor);
361         Con_Printf ("GL_RENDERER: %s\n", gl_renderer);
362         Con_Printf ("GL_VERSION: %s\n", gl_version);
363         Con_Printf ("GL_EXTENSIONS: %s\n", gl_extensions);
364         Con_Printf ("%s_EXTENSIONS: %s\n", gl_platform, gl_platformextensions);
365
366         Con_Printf("Checking OpenGL extensions...\n");
367
368         if (!GL_CheckExtension("glDrawRangeElements", drawrangeelementsfuncs, "-nodrawrangeelements", true))
369                 GL_CheckExtension("GL_EXT_draw_range_elements", drawrangeelementsextfuncs, "-nodrawrangeelements", false);
370
371         if (GL_CheckExtension("GL_ARB_multitexture", multitexturefuncs, "-nomtex", false))
372         {
373                 qglGetIntegerv(GL_MAX_TEXTURE_UNITS_ARB, &gl_textureunits);
374                 gl_combine_extension = GL_CheckExtension("GL_ARB_texture_env_combine", NULL, "-nocombine", false) || GL_CheckExtension("GL_EXT_texture_env_combine", NULL, "-nocombine", false);
375                 if (gl_combine_extension)
376                         gl_dot3arb = GL_CheckExtension("GL_ARB_texture_env_dot3", NULL, "-nodot3", false);
377         }
378
379         gl_texture3d = GL_CheckExtension("GL_EXT_texture3D", texture3dextfuncs, "-notexture3d", false);
380         gl_texturecubemap = GL_CheckExtension("GL_ARB_texture_cube_map", NULL, "-nocubemap", false);
381         gl_supportslockarrays = GL_CheckExtension("GL_EXT_compiled_vertex_array", compiledvertexarrayfuncs, "-nocva", false);
382
383         // we don't care if it's an extension or not, they are identical functions, so keep it simple in the rendering code
384         if (qglDrawRangeElements == NULL)
385                 qglDrawRangeElements = qglDrawRangeElementsEXT;
386 }
387
388 void Force_CenterView_f (void)
389 {
390         cl.viewangles[PITCH] = 0;
391 }
392
393 void IN_PreMove(void)
394 {
395 }
396
397 void CL_AdjustAngles(void);
398 void IN_PostMove(void)
399 {
400         // clamp after the move as well to prevent messed up rendering angles
401         CL_AdjustAngles();
402 }
403
404 void IN_Mouse(usercmd_t *cmd, float mx, float my)
405 {
406         int mouselook = (in_mlook.state & 1) || freelook.integer;
407         float mouse_x, mouse_y;
408         static float old_mouse_x = 0, old_mouse_y = 0;
409
410         if (m_filter.integer)
411         {
412                 mouse_x = (mx + old_mouse_x) * 0.5;
413                 mouse_y = (my + old_mouse_y) * 0.5;
414         }
415         else
416         {
417                 mouse_x = mx;
418                 mouse_y = my;
419         }
420
421         old_mouse_x = mx;
422         old_mouse_y = my;
423
424         // LordHavoc: viewzoom affects mouse sensitivity for sniping
425         mouse_x *= sensitivity.value * cl.viewzoom;
426         mouse_y *= sensitivity.value * cl.viewzoom;
427
428         // Add mouse X/Y movement to cmd
429         if ((in_strafe.state & 1) || (lookstrafe.integer && mouselook))
430                 cmd->sidemove += m_side.value * mouse_x;
431         else
432                 cl.viewangles[YAW] -= m_yaw.value * mouse_x;
433
434         if (mouselook)
435                 V_StopPitchDrift();
436
437         if (mouselook && !(in_strafe.state & 1))
438                 cl.viewangles[PITCH] += m_pitch.value * mouse_y;
439         else
440         {
441                 if ((in_strafe.state & 1) && noclip_anglehack)
442                         cmd->upmove -= m_forward.value * mouse_y;
443                 else
444                         cmd->forwardmove -= m_forward.value * mouse_y;
445         }
446 }
447
448 void VID_Shared_Init(void)
449 {
450         Cvar_RegisterVariable(&vid_fullscreen);
451         Cvar_RegisterVariable(&vid_width);
452         Cvar_RegisterVariable(&vid_height);
453         Cvar_RegisterVariable(&vid_bitsperpixel);
454         Cvar_RegisterVariable(&vid_stencil);
455         Cvar_RegisterVariable(&vid_mouse);
456         Cvar_RegisterVariable(&gl_combine);
457         Cvar_RegisterVariable(&in_pitch_min);
458         Cvar_RegisterVariable(&in_pitch_max);
459         Cvar_RegisterVariable(&m_filter);
460         Cmd_AddCommand("force_centerview", Force_CenterView_f);
461         Cmd_AddCommand("vid_restart", VID_Restart_f);
462 }
463
464 int current_vid_fullscreen;
465 int current_vid_width;
466 int current_vid_height;
467 int current_vid_bitsperpixel;
468 int current_vid_stencil;
469 extern int VID_InitMode (int fullscreen, int width, int height, int bpp, int stencil);
470 int VID_Mode(int fullscreen, int width, int height, int bpp, int stencil)
471 {
472         Con_Printf("Video: %s %dx%dx%d %s\n", fullscreen ? "fullscreen" : "window", width, height, bpp, stencil ? "with stencil" : "without stencil");
473         if (VID_InitMode(fullscreen, width, height, bpp, stencil))
474         {
475                 current_vid_fullscreen = fullscreen;
476                 current_vid_width = width;
477                 current_vid_height = height;
478                 current_vid_bitsperpixel = bpp;
479                 current_vid_stencil = stencil;
480                 Cvar_SetValueQuick(&vid_fullscreen, fullscreen);
481                 Cvar_SetValueQuick(&vid_width, width);
482                 Cvar_SetValueQuick(&vid_height, height);
483                 Cvar_SetValueQuick(&vid_bitsperpixel, bpp);
484                 Cvar_SetValueQuick(&vid_stencil, stencil);
485                 return true;
486         }
487         else
488                 return false;
489 }
490
491 static void VID_OpenSystems(void)
492 {
493         R_Modules_Start();
494         S_Open();
495         CDAudio_Open();
496 }
497
498 static void VID_CloseSystems(void)
499 {
500         CDAudio_Close();
501         S_Close();
502         R_Modules_Shutdown();
503 }
504
505 void VID_Restart_f(void)
506 {
507         Con_Printf("VID_Restart: changing from %s %dx%dx%dbpp %s, to %s %dx%dx%dbpp %s.\n",
508                 current_vid_fullscreen ? "fullscreen" : "window", current_vid_width, current_vid_height, current_vid_bitsperpixel, current_vid_stencil ? "with stencil" : "without stencil",
509                 vid_fullscreen.integer ? "fullscreen" : "window", vid_width.integer, vid_height.integer, vid_bitsperpixel.integer, vid_stencil.integer ? "with stencil" : "without stencil");
510         VID_Close();
511         if (!VID_Mode(vid_fullscreen.integer, vid_width.integer, vid_height.integer, vid_bitsperpixel.integer, vid_stencil.integer))
512         {
513                 Con_Printf("Video mode change failed\n");
514                 if (!VID_Mode(current_vid_fullscreen, current_vid_width, current_vid_height, current_vid_bitsperpixel, current_vid_stencil))
515                         Sys_Error("Unable to restore to last working video mode\n");
516         }
517         VID_OpenSystems();
518 }
519
520 int vid_commandlinecheck = true;
521 void VID_Open(void)
522 {
523         int i;
524         if (vid_commandlinecheck)
525         {
526                 // interpret command-line parameters
527                 vid_commandlinecheck = false;
528                 if ((i = COM_CheckParm("-window")) != 0)
529                         Cvar_SetValueQuick(&vid_fullscreen, false);
530                 if ((i = COM_CheckParm("-fullscreen")) != 0)
531                         Cvar_SetValueQuick(&vid_fullscreen, true);
532                 if ((i = COM_CheckParm("-width")) != 0)
533                         Cvar_SetQuick(&vid_width, com_argv[i+1]);
534                 if ((i = COM_CheckParm("-height")) != 0)
535                         Cvar_SetQuick(&vid_height, com_argv[i+1]);
536                 if ((i = COM_CheckParm("-bpp")) != 0)
537                         Cvar_SetQuick(&vid_bitsperpixel, com_argv[i+1]);
538                 if ((i = COM_CheckParm("-nostencil")) != 0)
539                         Cvar_SetValueQuick(&vid_stencil, 0);
540                 if ((i = COM_CheckParm("-stencil")) != 0)
541                         Cvar_SetValueQuick(&vid_stencil, 1);
542         }
543
544         if (vid_stencil.integer && vid_bitsperpixel.integer != 32)
545         {
546                 Con_Printf("vid_stencil not allowed without vid_bitsperpixel 32, turning off vid_stencil\n");
547                 Cvar_SetValueQuick(&vid_stencil, 0);
548         }
549
550         Con_Printf("Starting video system\n");
551         if (!VID_Mode(vid_fullscreen.integer, vid_width.integer, vid_height.integer, vid_bitsperpixel.integer, vid_stencil.integer))
552         {
553                 Con_Printf("Desired video mode fail, trying fallbacks...\n");
554                 if (!vid_stencil.integer || !VID_Mode(vid_fullscreen.integer, vid_width.integer, vid_height.integer, vid_bitsperpixel.integer, false))
555                 {
556                         if (vid_fullscreen.integer)
557                         {
558                                 if (!VID_Mode(true, 640, 480, 16, false))
559                                         if (!VID_Mode(false, 640, 480, 16, false))
560                                                 Sys_Error("Video modes failed\n");
561                         }
562                         else
563                                 Sys_Error("Windowed video failed\n");
564                 }
565         }
566         VID_OpenSystems();
567 }
568
569 void VID_Close(void)
570 {
571         VID_CloseSystems();
572         VID_Shutdown();
573 }