]> icculus.org git repositories - divverent/darkplaces.git/blob - cl_screen.c
tiny code cleanups
[divverent/darkplaces.git] / cl_screen.c
1
2 #include "quakedef.h"
3 #include "cl_video.h"
4 #include "image.h"
5 #include "jpeg.h"
6 #include "cl_collision.h"
7 #include "libcurl.h"
8 #include "csprogs.h"
9 #include "cap_avi.h"
10 #include "cap_ogg.h"
11
12 // we have to include snd_main.h here only to get access to snd_renderbuffer->format.speed when writing the AVI headers
13 #include "snd_main.h"
14
15 cvar_t scr_viewsize = {CVAR_SAVE, "viewsize","100", "how large the view should be, 110 disables inventory bar, 120 disables status bar"};
16 cvar_t scr_fov = {CVAR_SAVE, "fov","90", "field of vision, 1-170 degrees, default 90, some players use 110-130"};
17 cvar_t scr_conalpha = {CVAR_SAVE, "scr_conalpha", "1", "opacity of console background"};
18 cvar_t scr_conbrightness = {CVAR_SAVE, "scr_conbrightness", "1", "brightness of console background (0 = black, 1 = image)"};
19 cvar_t scr_conforcewhiledisconnected = {0, "scr_conforcewhiledisconnected", "1", "forces fullscreen console while disconnected"};
20 cvar_t scr_menuforcewhiledisconnected = {0, "scr_menuforcewhiledisconnected", "0", "forces menu while disconnected"};
21 cvar_t scr_centertime = {0, "scr_centertime","2", "how long centerprint messages show"};
22 cvar_t scr_showram = {CVAR_SAVE, "showram","1", "show ram icon if low on surface cache memory (not used)"};
23 cvar_t scr_showturtle = {CVAR_SAVE, "showturtle","0", "show turtle icon when framerate is too low"};
24 cvar_t scr_showpause = {CVAR_SAVE, "showpause","1", "show pause icon when game is paused"};
25 cvar_t scr_showbrand = {0, "showbrand","0", "shows gfx/brand.tga in a corner of the screen (different values select different positions, including centered)"};
26 cvar_t scr_printspeed = {0, "scr_printspeed","0", "speed of intermission printing (episode end texts), a value of 0 disables the slow printing"};
27 cvar_t vid_conwidth = {CVAR_SAVE, "vid_conwidth", "640", "virtual width of 2D graphics system"};
28 cvar_t vid_conheight = {CVAR_SAVE, "vid_conheight", "480", "virtual height of 2D graphics system"};
29 cvar_t vid_pixelheight = {CVAR_SAVE, "vid_pixelheight", "1", "adjusts vertical field of vision to account for non-square pixels (1280x1024 on a CRT monitor for example)"};
30 cvar_t scr_screenshot_jpeg = {CVAR_SAVE, "scr_screenshot_jpeg","1", "save jpeg instead of targa"};
31 cvar_t scr_screenshot_jpeg_quality = {CVAR_SAVE, "scr_screenshot_jpeg_quality","0.9", "image quality of saved jpeg"};
32 cvar_t scr_screenshot_gammaboost = {CVAR_SAVE, "scr_screenshot_gammaboost","1", "gamma correction on saved screenshots and videos, 1.0 saves unmodified images"};
33 cvar_t scr_screenshot_hwgamma = {CVAR_SAVE, "scr_screenshot_hwgamma","1", "apply the video gamma ramp to saved screenshots and videos"};
34 // scr_screenshot_name is defined in fs.c
35 cvar_t cl_capturevideo = {0, "cl_capturevideo", "0", "enables saving of video to a .avi file using uncompressed I420 colorspace and PCM audio, note that scr_screenshot_gammaboost affects the brightness of the output)"};
36 cvar_t cl_capturevideo_printfps = {CVAR_SAVE, "cl_capturevideo_printfps", "1", "prints the frames per second captured in capturevideo (is only written to the log file, not to the console, as that would be visible on the video)"};
37 cvar_t cl_capturevideo_width = {CVAR_SAVE, "cl_capturevideo_width", "0", "scales all frames to this resolution before saving the video"};
38 cvar_t cl_capturevideo_height = {CVAR_SAVE, "cl_capturevideo_height", "0", "scales all frames to this resolution before saving the video"};
39 cvar_t cl_capturevideo_realtime = {0, "cl_capturevideo_realtime", "0", "causes video saving to operate in realtime (mostly useful while playing, not while capturing demos), this can produce a much lower quality video due to poor sound/video sync and will abort saving if your machine stalls for over a minute"};
40 cvar_t cl_capturevideo_fps = {CVAR_SAVE, "cl_capturevideo_fps", "30", "how many frames per second to save (29.97 for NTSC, 30 for typical PC video, 15 can be useful)"};
41 cvar_t cl_capturevideo_nameformat = {CVAR_SAVE, "cl_capturevideo_nameformat", "dpvideo", "prefix for saved videos (the date is encoded using strftime escapes)"};
42 cvar_t cl_capturevideo_number = {CVAR_SAVE, "cl_capturevideo_number", "1", "number to append to video filename, incremented each time a capture begins"};
43 cvar_t cl_capturevideo_ogg = {CVAR_SAVE, "cl_capturevideo_ogg", "1", "save captured video data as Ogg/Vorbis/Theora streams"};
44 cvar_t r_letterbox = {0, "r_letterbox", "0", "reduces vertical height of view to simulate a letterboxed movie effect (can be used by mods for cutscenes)"};
45 cvar_t r_stereo_separation = {0, "r_stereo_separation", "4", "separation distance of eyes in the world (negative values are only useful for cross-eyed viewing)"};
46 cvar_t r_stereo_sidebyside = {0, "r_stereo_sidebyside", "0", "side by side views for those who can't afford glasses but can afford eye strain (note: use a negative r_stereo_separation if you want cross-eyed viewing)"};
47 cvar_t r_stereo_redblue = {0, "r_stereo_redblue", "0", "red/blue anaglyph stereo glasses (note: most of these glasses are actually red/cyan, try that one too)"};
48 cvar_t r_stereo_redcyan = {0, "r_stereo_redcyan", "0", "red/cyan anaglyph stereo glasses, the kind given away at drive-in movies like Creature From The Black Lagoon In 3D"};
49 cvar_t r_stereo_redgreen = {0, "r_stereo_redgreen", "0", "red/green anaglyph stereo glasses (for those who don't mind yellow)"};
50 cvar_t r_stereo_angle = {0, "r_stereo_angle", "0", "separation angle of eyes (makes the views look different directions, as an example, 90 gives a 90 degree separation where the views are 45 degrees left and 45 degrees right)"};
51 cvar_t scr_zoomwindow = {CVAR_SAVE, "scr_zoomwindow", "0", "displays a zoomed in overlay window"};
52 cvar_t scr_zoomwindow_viewsizex = {CVAR_SAVE, "scr_zoomwindow_viewsizex", "20", "horizontal viewsize of zoom window"};
53 cvar_t scr_zoomwindow_viewsizey = {CVAR_SAVE, "scr_zoomwindow_viewsizey", "20", "vertical viewsize of zoom window"};
54 cvar_t scr_zoomwindow_fov = {CVAR_SAVE, "scr_zoomwindow_fov", "20", "fov of zoom window"};
55 cvar_t scr_stipple = {0, "scr_stipple", "0", "interlacing-like stippling of the display"};
56 cvar_t scr_refresh = {0, "scr_refresh", "1", "allows you to completely shut off rendering for benchmarking purposes"};
57 cvar_t shownetgraph = {CVAR_SAVE, "shownetgraph", "0", "shows a graph of packet sizes and other information, 0 = off, 1 = show client netgraph, 2 = show client and server netgraphs (when hosting a server)"};
58 cvar_t cl_demo_mousegrab = {0, "cl_demo_mousegrab", "0", "Allows reading the mouse input while playing demos. Useful for camera mods developed in csqc. (0: never, 1: always)"};
59
60 extern cvar_t r_glsl;
61 extern cvar_t v_glslgamma;
62 #define WANT_SCREENSHOT_HWGAMMA (scr_screenshot_hwgamma.integer && !(r_glsl.integer && v_glslgamma.integer))
63
64 int jpeg_supported = false;
65
66 qboolean        scr_initialized;                // ready to draw
67
68 float           scr_con_current;
69 int                     scr_con_margin_bottom;
70
71 extern int      con_vislines;
72
73 static void SCR_ScreenShot_f (void);
74 static void R_Envmap_f (void);
75
76 // backend
77 void R_ClearScreen(qboolean fogcolor);
78
79 /*
80 ===============================================================================
81
82 CENTER PRINTING
83
84 ===============================================================================
85 */
86
87 char            scr_centerstring[MAX_INPUTLINE];
88 float           scr_centertime_start;   // for slow victory printing
89 float           scr_centertime_off;
90 int                     scr_center_lines;
91 int                     scr_erase_lines;
92 int                     scr_erase_center;
93 char        scr_infobarstring[MAX_INPUTLINE];
94 float       scr_infobartime_off;
95
96 /*
97 ==============
98 SCR_CenterPrint
99
100 Called for important messages that should stay in the center of the screen
101 for a few moments
102 ==============
103 */
104 void SCR_CenterPrint(const char *str)
105 {
106         strlcpy (scr_centerstring, str, sizeof (scr_centerstring));
107         scr_centertime_off = scr_centertime.value;
108         scr_centertime_start = cl.time;
109
110 // count the number of lines for centering
111         scr_center_lines = 1;
112         while (*str)
113         {
114                 if (*str == '\n')
115                         scr_center_lines++;
116                 str++;
117         }
118 }
119
120
121 void SCR_DrawCenterString (void)
122 {
123         char    *start;
124         int             x, y;
125         int             remaining;
126         int             color;
127
128         if(cl.intermission == 2) // in finale,
129                 if(sb_showscores) // make TAB hide the finale message (sb_showscores overrides finale in sbar.c)
130                         return;
131
132         if(scr_centertime.value <= 0 && !cl.intermission)
133                 return;
134
135 // the finale prints the characters one at a time, except if printspeed is an absurdly high value
136         if (cl.intermission && scr_printspeed.value > 0 && scr_printspeed.value < 1000000)
137                 remaining = (int)(scr_printspeed.value * (cl.time - scr_centertime_start));
138         else
139                 remaining = 9999;
140
141         scr_erase_center = 0;
142         start = scr_centerstring;
143
144         if (remaining < 1)
145                 return;
146
147         if (scr_center_lines <= 4)
148                 y = (int)(vid_conheight.integer*0.35);
149         else
150                 y = 48;
151
152         color = -1;
153         do
154         {
155                 // scan the number of characters on the line, not counting color codes
156                 char *newline = strchr(start, '\n');
157                 int l = newline ? (newline - start) : (int)strlen(start);
158                 float width = DrawQ_TextWidth_Font(start, l, false, FONT_CENTERPRINT) * 8;
159
160                 x = (int) (vid_conwidth.integer - width)/2;
161                 if (l > 0)
162                 {
163                         if (remaining < l)
164                                 l = remaining;
165                         DrawQ_String_Font(x, y, start, l, 8, 8, 1, 1, 1, 1, 0, &color, false, FONT_CENTERPRINT);
166                         remaining -= l;
167                         if (remaining <= 0)
168                                 return;
169                 }
170                 y += 8;
171
172                 if (!newline)
173                         break;
174                 start = newline + 1; // skip the \n
175         } while (1);
176 }
177
178 void SCR_CheckDrawCenterString (void)
179 {
180         if (scr_center_lines > scr_erase_lines)
181                 scr_erase_lines = scr_center_lines;
182
183         if (cl.time > cl.oldtime)
184                 scr_centertime_off -= cl.time - cl.oldtime;
185
186         // don't draw if this is a normal stats-screen intermission,
187         // only if it is not an intermission, or a finale intermission
188         if (cl.intermission == 1)
189                 return;
190         if (scr_centertime_off <= 0 && !cl.intermission)
191                 return;
192         if (key_dest != key_game)
193                 return;
194
195         SCR_DrawCenterString ();
196 }
197
198 void SCR_DrawNetGraph_DrawGraph (int graphx, int graphy, int barwidth, int barheight, int bardivide, const char *label, float textsize, int packetcounter, int numparameters, const int **parameters, const float parametercolors[][4])
199 {
200         int j, k, x, y, index, offset, height;
201         // draw the bar graph itself
202         // advance the packet counter because it is the latest packet column being
203         // built up and should come last
204         packetcounter = (packetcounter + 1) % NETGRAPH_PACKETS;
205         for (j = 0;j < NETGRAPH_PACKETS;j++)
206         {
207                 x = graphx + j * barwidth;
208                 y = graphy + barheight;
209                 index = (packetcounter + j) % NETGRAPH_PACKETS;
210                 if (parameters[0][index] == NETGRAPH_LOSTPACKET)
211                         DrawQ_Fill(x, y - barheight, barwidth, barheight, 1, 0, 0, 1, 0);
212                 else if (parameters[0][index] == NETGRAPH_CHOKEDPACKET)
213                         DrawQ_Fill(x, y - min(2, barheight), barwidth, min(2, barheight), 1, 1, 0, 1, 0);
214                 else
215                 {
216                         offset = 0;
217                         for (k = 0;k < numparameters;k++)
218                         {
219                                 height = (parameters[k][index] + bardivide - 1) / bardivide;
220                                 height = min(height, barheight - offset);
221                                 offset += height;
222                                 if (height)
223                                         DrawQ_Fill(x, y - offset, barwidth, height, parametercolors[k][0], parametercolors[k][1], parametercolors[k][2], parametercolors[k][3], 0);
224                         }
225                 }
226         }
227 }
228
229 const float netgraphcolors[3][4] =
230 {
231         {1  , 0.5, 0  , 1},
232         {1  , 1  , 1  , 1},
233         {0  , 1  , 0  , 1},
234 };
235
236 void SCR_DrawNetGraph_DrawConnection_Client (netconn_t *conn, int graphx, int graphy, int barwidth, int barheight, int bardivide, const char *labelincoming, int separator, const char *labeloutgoing, float textsize)
237 {
238         int numparameters;
239         const int *parameters[3];
240         // dim background
241         DrawQ_Fill(graphx                                          , graphy, barwidth * NETGRAPH_PACKETS, barheight + textsize, 0, 0, 0, 0.5, 0);
242         DrawQ_Fill(graphx + barwidth * NETGRAPH_PACKETS + separator, graphy, barwidth * NETGRAPH_PACKETS, barheight + textsize, 0, 0, 0, 0.5, 0);
243         // draw the bar graphs
244         numparameters = 3;
245         parameters[0] = conn->incoming_unreliablesize;
246         parameters[1] = conn->incoming_reliablesize;
247         parameters[2] = conn->incoming_acksize;
248         SCR_DrawNetGraph_DrawGraph(graphx, graphy, barwidth, barheight, bardivide, labelincoming, textsize, conn->incoming_packetcounter, numparameters, parameters, netgraphcolors);
249         parameters[0] = conn->outgoing_unreliablesize;
250         parameters[1] = conn->outgoing_reliablesize;
251         parameters[2] = conn->outgoing_acksize;
252         SCR_DrawNetGraph_DrawGraph(graphx + barwidth * NETGRAPH_PACKETS + separator, graphy, barwidth, barheight, bardivide, labeloutgoing, textsize, conn->outgoing_packetcounter, numparameters, parameters, netgraphcolors);
253         // draw labels
254         DrawQ_String(graphx                                          , graphy + barheight, labelincoming, 0, textsize, textsize, 1, 1, 1, 1, 0, NULL, false);
255         DrawQ_String(graphx + barwidth * NETGRAPH_PACKETS + separator, graphy + barheight, labeloutgoing, 0, textsize, textsize, 1, 1, 1, 1, 0, NULL, false);
256 }
257
258 void SCR_DrawNetGraph_DrawConnection_Server (netconn_t *conn, int graphx, int graphy, int barwidth, int barheight, int bardivide, const char *labeloutgoing, int separator, const char *labelincoming, float textsize)
259 {
260         int numparameters;
261         const int *parameters[3];
262         // dim background
263         DrawQ_Fill(graphx                                          , graphy, barwidth * NETGRAPH_PACKETS, barheight + textsize, 0, 0, 0, 0.5, 0);
264         DrawQ_Fill(graphx + barwidth * NETGRAPH_PACKETS + separator, graphy, barwidth * NETGRAPH_PACKETS, barheight + textsize, 0, 0, 0, 0.5, 0);
265         // draw the bar graphs
266         numparameters = 3;
267         parameters[0] = conn->outgoing_unreliablesize;
268         parameters[1] = conn->outgoing_reliablesize;
269         parameters[2] = conn->outgoing_acksize;
270         SCR_DrawNetGraph_DrawGraph(graphx                                          , graphy, barwidth, barheight, bardivide, labeloutgoing, textsize, conn->outgoing_packetcounter, numparameters, parameters, netgraphcolors);
271         parameters[0] = conn->incoming_unreliablesize;
272         parameters[1] = conn->incoming_reliablesize;
273         parameters[2] = conn->incoming_acksize;
274         SCR_DrawNetGraph_DrawGraph(graphx + barwidth * NETGRAPH_PACKETS + separator, graphy, barwidth, barheight, bardivide, labelincoming, textsize, conn->incoming_packetcounter, numparameters, parameters, netgraphcolors);
275         // draw labels
276         DrawQ_String(graphx                                          , graphy + barheight, labeloutgoing, 0, textsize, textsize, 1, 1, 1, 1, 0, NULL, false);
277         DrawQ_String(graphx + barwidth * NETGRAPH_PACKETS + separator, graphy + barheight, labelincoming, 0, textsize, textsize, 1, 1, 1, 1, 0, NULL, false);
278 }
279
280 /*
281 ==============
282 SCR_DrawNetGraph
283 ==============
284 */
285 void SCR_DrawNetGraph (void)
286 {
287         int i, separator1, separator2, barwidth, barheight, bardivide, netgraph_x, netgraph_y, textsize, index, netgraphsperrow;
288
289         if (cls.state != ca_connected)
290                 return;
291         if (!cls.netcon)
292                 return;
293         if (!shownetgraph.integer)
294                 return;
295
296         separator1 = 2;
297         separator2 = 4;
298         textsize = 8;
299         barwidth = 1;
300         barheight = 50;
301         bardivide = 20;
302
303         netgraphsperrow = (vid_conwidth.integer + separator2) / (barwidth * NETGRAPH_PACKETS * 2 + separator1 + separator2);
304         netgraphsperrow = max(netgraphsperrow, 1);
305
306         index = 0;
307         netgraph_x = (vid_conwidth.integer + separator2) - (1 + (index % netgraphsperrow)) * (barwidth * NETGRAPH_PACKETS * 2 + separator1 + separator2);
308         netgraph_y = (vid_conheight.integer - 48 + separator2) - (1 + (index / netgraphsperrow)) * (barheight + textsize + separator2);
309         SCR_DrawNetGraph_DrawConnection_Client(cls.netcon, netgraph_x, netgraph_y, barwidth, barheight, bardivide, "incoming", separator1, "outgoing", textsize);
310         index++;
311
312         if (sv.active && shownetgraph.integer >= 2)
313         {
314                 for (i = 0;i < svs.maxclients;i++)
315                 {
316                         if (!svs.clients[i].netconnection)
317                                 continue;
318                         netgraph_x = (vid_conwidth.integer + separator2) - (1 + (index % netgraphsperrow)) * (barwidth * NETGRAPH_PACKETS * 2 + separator1 + separator2);
319                         netgraph_y = (vid_conheight.integer - 48 + separator2) - (1 + (index / netgraphsperrow)) * (barheight + textsize + separator2);
320                         SCR_DrawNetGraph_DrawConnection_Server(svs.clients[i].netconnection, netgraph_x, netgraph_y, barwidth, barheight, bardivide, va("%s", svs.clients[i].name), separator1, "", textsize);
321                         index++;
322                 }
323         }
324 }
325
326 /*
327 ==============
328 SCR_DrawTurtle
329 ==============
330 */
331 void SCR_DrawTurtle (void)
332 {
333         static int      count;
334
335         if (cls.state != ca_connected)
336                 return;
337
338         if (!scr_showturtle.integer)
339                 return;
340
341         if (cl.realframetime < 0.1)
342         {
343                 count = 0;
344                 return;
345         }
346
347         count++;
348         if (count < 3)
349                 return;
350
351         DrawQ_Pic (0, 0, Draw_CachePic ("gfx/turtle"), 0, 0, 1, 1, 1, 1, 0);
352 }
353
354 /*
355 ==============
356 SCR_DrawNet
357 ==============
358 */
359 void SCR_DrawNet (void)
360 {
361         if (cls.state != ca_connected)
362                 return;
363         if (realtime - cl.last_received_message < 0.3)
364                 return;
365         if (cls.demoplayback)
366                 return;
367
368         DrawQ_Pic (64, 0, Draw_CachePic ("gfx/net"), 0, 0, 1, 1, 1, 1, 0);
369 }
370
371 /*
372 ==============
373 DrawPause
374 ==============
375 */
376 void SCR_DrawPause (void)
377 {
378         cachepic_t      *pic;
379
380         if (cls.state != ca_connected)
381                 return;
382
383         if (!scr_showpause.integer)             // turn off for screenshots
384                 return;
385
386         if (!cl.paused)
387                 return;
388
389         pic = Draw_CachePic ("gfx/pause");
390         DrawQ_Pic ((vid_conwidth.integer - pic->width)/2, (vid_conheight.integer - pic->height)/2, pic, 0, 0, 1, 1, 1, 1, 0);
391 }
392
393 /*
394 ==============
395 SCR_DrawBrand
396 ==============
397 */
398 void SCR_DrawBrand (void)
399 {
400         cachepic_t      *pic;
401         float           x, y;
402
403         if (!scr_showbrand.value)
404                 return;
405
406         pic = Draw_CachePic ("gfx/brand");
407
408         switch ((int)scr_showbrand.value)
409         {
410         case 1: // bottom left
411                 x = 0;
412                 y = vid_conheight.integer - pic->height;
413                 break;
414         case 2: // bottom centre
415                 x = (vid_conwidth.integer - pic->width) / 2;
416                 y = vid_conheight.integer - pic->height;
417                 break;
418         case 3: // bottom right
419                 x = vid_conwidth.integer - pic->width;
420                 y = vid_conheight.integer - pic->height;
421                 break;
422         case 4: // centre right
423                 x = vid_conwidth.integer - pic->width;
424                 y = (vid_conheight.integer - pic->height) / 2;
425                 break;
426         case 5: // top right
427                 x = vid_conwidth.integer - pic->width;
428                 y = 0;
429                 break;
430         case 6: // top centre
431                 x = (vid_conwidth.integer - pic->width) / 2;
432                 y = 0;
433                 break;
434         case 7: // top left
435                 x = 0;
436                 y = 0;
437                 break;
438         case 8: // centre left
439                 x = 0;
440                 y = (vid_conheight.integer - pic->height) / 2;
441                 break;
442         default:
443                 return;
444         }
445
446         DrawQ_Pic (x, y, pic, 0, 0, 1, 1, 1, 1, 0);
447 }
448
449 /*
450 ==============
451 SCR_DrawQWDownload
452 ==============
453 */
454 static int SCR_DrawQWDownload(int offset)
455 {
456         // sync with SCR_InfobarHeight
457         int len;
458         float x, y;
459         float size = 8;
460         char temp[256];
461
462         if (!cls.qw_downloadname[0])
463         {
464                 cls.qw_downloadspeedrate = 0;
465                 cls.qw_downloadspeedtime = realtime;
466                 cls.qw_downloadspeedcount = 0;
467                 return 0;
468         }
469         if (realtime >= cls.qw_downloadspeedtime + 1)
470         {
471                 cls.qw_downloadspeedrate = cls.qw_downloadspeedcount;
472                 cls.qw_downloadspeedtime = realtime;
473                 cls.qw_downloadspeedcount = 0;
474         }
475         if (cls.protocol == PROTOCOL_QUAKEWORLD)
476                 dpsnprintf(temp, sizeof(temp), "Downloading %s %3i%% (%i) at %i bytes/s\n", cls.qw_downloadname, cls.qw_downloadpercent, cls.qw_downloadmemorycursize, cls.qw_downloadspeedrate);
477         else
478                 dpsnprintf(temp, sizeof(temp), "Downloading %s %3i%% (%i/%i) at %i bytes/s\n", cls.qw_downloadname, cls.qw_downloadpercent, cls.qw_downloadmemorycursize, cls.qw_downloadmemorymaxsize, cls.qw_downloadspeedrate);
479         len = (int)strlen(temp);
480         x = (vid_conwidth.integer - DrawQ_TextWidth_Font(temp, len, true, FONT_INFOBAR) * size) / 2;
481         y = vid_conheight.integer - size - offset;
482         DrawQ_Fill(0, y, vid_conwidth.integer, size, 0, 0, 0, cls.signon == SIGNONS ? 0.5 : 1, 0);
483         DrawQ_String_Font(x, y, temp, len, size, size, 1, 1, 1, 1, 0, NULL, true, FONT_INFOBAR);
484         return 8;
485 }
486 /*
487 ==============
488 SCR_DrawInfobarString
489 ==============
490 */
491 static int SCR_DrawInfobarString(int offset)
492 {
493         int len;
494         float x, y;
495         float size = 8;
496
497         len = (int)strlen(scr_infobarstring);
498         x = (vid_conwidth.integer - DrawQ_TextWidth_Font(scr_infobarstring, len, false, FONT_INFOBAR) * size) / 2;
499         y = vid_conheight.integer - size - offset;
500         DrawQ_Fill(0, y, vid_conwidth.integer, size, 0, 0, 0, cls.signon == SIGNONS ? 0.5 : 1, 0);
501         DrawQ_String_Font(x, y, scr_infobarstring, len, size, size, 1, 1, 1, 1, 0, NULL, false, FONT_INFOBAR);
502         return 8;
503 }
504
505 /*
506 ==============
507 SCR_DrawCurlDownload
508 ==============
509 */
510 static int SCR_DrawCurlDownload(int offset)
511 {
512         // sync with SCR_InfobarHeight
513         int len;
514         int nDownloads;
515         int i;
516         float x, y;
517         float size = 8;
518         Curl_downloadinfo_t *downinfo;
519         char temp[256];
520         const char *addinfo;
521
522         downinfo = Curl_GetDownloadInfo(&nDownloads, &addinfo);
523         if(!downinfo)
524                 return 0;
525
526         y = vid_conheight.integer - size * nDownloads - offset;
527
528         if(addinfo)
529         {
530                 len = (int)strlen(addinfo);
531                 x = (vid_conwidth.integer - DrawQ_TextWidth_Font(addinfo, len, true, FONT_INFOBAR) * size) / 2;
532                 DrawQ_Fill(0, y - size, vid_conwidth.integer, size, 1, 1, 1, cls.signon == SIGNONS ? 0.8 : 1, 0);
533                 DrawQ_String_Font(x, y - size, addinfo, len, size, size, 0, 0, 0, 1, 0, NULL, true, FONT_INFOBAR);
534         }
535
536         for(i = 0; i != nDownloads; ++i)
537         {
538                 if(downinfo[i].queued)
539                         dpsnprintf(temp, sizeof(temp), "Still in queue: %s\n", downinfo[i].filename);
540                 else if(downinfo[i].progress <= 0)
541                         dpsnprintf(temp, sizeof(temp), "Downloading %s ...  ???.?%% @ %.1f KiB/s\n", downinfo[i].filename, downinfo[i].speed / 1024.0);
542                 else
543                         dpsnprintf(temp, sizeof(temp), "Downloading %s ...  %5.1f%% @ %.1f KiB/s\n", downinfo[i].filename, 100.0 * downinfo[i].progress, downinfo[i].speed / 1024.0);
544                 len = (int)strlen(temp);
545                 x = (vid_conwidth.integer - DrawQ_TextWidth_Font(temp, len, true, FONT_INFOBAR) * size) / 2;
546                 DrawQ_Fill(0, y + i * size, vid_conwidth.integer, size, 0, 0, 0, cls.signon == SIGNONS ? 0.5 : 1, 0);
547                 DrawQ_String_Font(x, y + i * size, temp, len, size, size, 1, 1, 1, 1, 0, NULL, true, FONT_INFOBAR);
548         }
549
550         Z_Free(downinfo);
551
552         return 8 * (nDownloads + (addinfo ? 1 : 0));
553 }
554
555 /*
556 ==============
557 SCR_DrawInfobar
558 ==============
559 */
560 static void SCR_DrawInfobar()
561 {
562         int offset = 0;
563         if(scr_infobartime_off > 0)
564                 offset += SCR_DrawInfobarString(offset);
565         offset += SCR_DrawQWDownload(offset);
566         offset += SCR_DrawCurlDownload(offset);
567         if(offset != scr_con_margin_bottom)
568                 Con_DPrintf("broken console margin calculation: %d != %d\n", offset, scr_con_margin_bottom);
569 }
570
571 static int SCR_InfobarHeight()
572 {
573         int offset = 0;
574         Curl_downloadinfo_t *downinfo;
575         const char *addinfo;
576         int nDownloads;
577
578         if (cl.time > cl.oldtime)
579                 scr_infobartime_off -= cl.time - cl.oldtime;
580         if(scr_infobartime_off > 0)
581                 offset += 8;
582
583         if(cls.qw_downloadname[0])
584                 offset += 8;
585
586         downinfo = Curl_GetDownloadInfo(&nDownloads, &addinfo);
587         if(downinfo)
588         {
589                 offset += 8 * (nDownloads + (addinfo ? 1 : 0));
590                 Z_Free(downinfo);
591         }
592
593         return offset;
594 }
595
596 /*
597 ==============
598 SCR_InfoBar_f
599 ==============
600 */
601 void SCR_InfoBar_f(void)
602 {
603         if(Cmd_Argc() == 3)
604         {
605                 scr_infobartime_off = atof(Cmd_Argv(1));
606                 strlcpy(scr_infobarstring, Cmd_Argv(2), sizeof(scr_infobarstring));
607         }
608         else
609         {
610                 Con_Printf("usage:\ninfobar expiretime \"string\"\n");
611         }
612 }
613 //=============================================================================
614
615 /*
616 ==================
617 SCR_SetUpToDrawConsole
618 ==================
619 */
620 void SCR_SetUpToDrawConsole (void)
621 {
622         // lines of console to display
623         float conlines;
624         static int framecounter = 0;
625
626         Con_CheckResize ();
627
628         if (scr_menuforcewhiledisconnected.integer && key_dest == key_game && cls.state == ca_disconnected)
629         {
630                 if (framecounter >= 2)
631                         MR_ToggleMenu_f();
632                 else
633                         framecounter++;
634         }
635         else
636                 framecounter = 0;
637
638         if (scr_conforcewhiledisconnected.integer && key_dest == key_game && cls.signon != SIGNONS)
639                 key_consoleactive |= KEY_CONSOLEACTIVE_FORCED;
640         else
641                 key_consoleactive &= ~KEY_CONSOLEACTIVE_FORCED;
642
643 // decide on the height of the console
644         if (key_consoleactive & KEY_CONSOLEACTIVE_USER)
645                 conlines = vid_conheight.integer/2;     // half screen
646         else
647                 conlines = 0;                           // none visible
648
649         scr_con_current = conlines;
650 }
651
652 /*
653 ==================
654 SCR_DrawConsole
655 ==================
656 */
657 void SCR_DrawConsole (void)
658 {
659         scr_con_margin_bottom = SCR_InfobarHeight();
660         if (key_consoleactive & KEY_CONSOLEACTIVE_FORCED)
661         {
662                 // full screen
663                 Con_DrawConsole (vid_conheight.integer - scr_con_margin_bottom);
664         }
665         else if (scr_con_current)
666                 Con_DrawConsole (min((int)scr_con_current, vid_conheight.integer - scr_con_margin_bottom));
667         else
668                 con_vislines = 0;
669 }
670
671 /*
672 ===============
673 SCR_BeginLoadingPlaque
674
675 ================
676 */
677 void SCR_BeginLoadingPlaque (void)
678 {
679         // save console log up to this point to log_file if it was set by configs
680         Log_Start();
681
682         Host_StartVideo();
683         SCR_UpdateLoadingScreen(false);
684 }
685
686 //=============================================================================
687
688 char r_speeds_timestring[4096];
689 int speedstringcount, r_timereport_active;
690 double r_timereport_temp = 0, r_timereport_current = 0, r_timereport_start = 0;
691 int r_speeds_longestitem = 0;
692
693 void R_TimeReport(char *desc)
694 {
695         char tempbuf[256];
696         int length;
697         int t;
698
699         if (r_speeds.integer < 2 || !r_timereport_active)
700                 return;
701
702         CHECKGLERROR
703         if (r_speeds.integer == 2)
704                 qglFinish();
705         CHECKGLERROR
706         r_timereport_temp = r_timereport_current;
707         r_timereport_current = Sys_DoubleTime();
708         t = (int) ((r_timereport_current - r_timereport_temp) * 1000000.0 + 0.5);
709
710         length = dpsnprintf(tempbuf, sizeof(tempbuf), "%8i %s", t, desc);
711         length = min(length, (int)sizeof(tempbuf) - 1);
712         if (r_speeds_longestitem < length)
713                 r_speeds_longestitem = length;
714         for (;length < r_speeds_longestitem;length++)
715                 tempbuf[length] = ' ';
716         tempbuf[length] = 0;
717
718         if (speedstringcount + length > (vid_conwidth.integer / 8))
719         {
720                 strlcat(r_speeds_timestring, "\n", sizeof(r_speeds_timestring));
721                 speedstringcount = 0;
722         }
723         strlcat(r_speeds_timestring, tempbuf, sizeof(r_speeds_timestring));
724         speedstringcount += length;
725 }
726
727 void R_TimeReport_BeginFrame(void)
728 {
729         speedstringcount = 0;
730         r_speeds_timestring[0] = 0;
731         r_timereport_active = false;
732         memset(&r_refdef.stats, 0, sizeof(r_refdef.stats));
733
734         if (r_speeds.integer >= 2 && cls.signon == SIGNONS && cls.state == ca_connected)
735         {
736                 r_timereport_active = true;
737                 r_timereport_start = r_timereport_current = Sys_DoubleTime();
738         }
739 }
740
741 void R_TimeReport_EndFrame(void)
742 {
743         int i, j, lines, y;
744         cl_locnode_t *loc;
745         char string[1024+4096];
746         mleaf_t *viewleaf;
747
748         string[0] = 0;
749         if (r_speeds.integer && cls.signon == SIGNONS && cls.state == ca_connected)
750         {
751                 // put the location name in the r_speeds display as it greatly helps
752                 // when creating loc files
753                 loc = CL_Locs_FindNearest(cl.movement_origin);
754                 viewleaf = (r_refdef.scene.worldmodel && r_refdef.scene.worldmodel->brush.PointInLeaf) ? r_refdef.scene.worldmodel->brush.PointInLeaf(r_refdef.scene.worldmodel, r_refdef.view.origin) : NULL;
755                 dpsnprintf(string, sizeof(string),
756 "%s%s\n"
757 "%3i renders org:'%+8.2f %+8.2f %+8.2f' dir:'%+2.3f %+2.3f %+2.3f'\n"
758 "%7i surfaces%7i triangles %5i entities (%7i surfaces%7i triangles)\n"
759 "%5i leafs%5i portals%6i/%6i particles%6i/%6i decals %3i%% quality\n"
760 "%7i lightmap updates (%7i pixels)%s\n"
761 "%4i lights%4i clears%4i scissored%7i light%7i shadow%7i dynamic\n"
762 "rendered%6i meshes%8i triangles bloompixels%8i copied%8i drawn\n"
763 "%s"
764 , loc ? "Location: " : "", loc ? loc->name : ""
765 , r_refdef.stats.renders, r_refdef.view.origin[0], r_refdef.view.origin[1], r_refdef.view.origin[2], r_refdef.view.forward[0], r_refdef.view.forward[1], r_refdef.view.forward[2]
766 , r_refdef.stats.world_surfaces, r_refdef.stats.world_triangles, r_refdef.stats.entities, r_refdef.stats.entities_surfaces, r_refdef.stats.entities_triangles
767 , r_refdef.stats.world_leafs, r_refdef.stats.world_portals, r_refdef.stats.particles, cl.num_particles, r_refdef.stats.decals, cl.num_decals, (int)(100 * r_refdef.view.quality)
768 , r_refdef.stats.lightmapupdates, r_refdef.stats.lightmapupdatepixels, viewleaf ? va(" clusterindex%6i", viewleaf->clusterindex) : ""
769 , r_refdef.stats.lights, r_refdef.stats.lights_clears, r_refdef.stats.lights_scissored, r_refdef.stats.lights_lighttriangles, r_refdef.stats.lights_shadowtriangles, r_refdef.stats.lights_dynamicshadowtriangles
770 , r_refdef.stats.meshes, r_refdef.stats.meshes_elements / 3, r_refdef.stats.bloom_copypixels, r_refdef.stats.bloom_drawpixels
771 , r_speeds_timestring);
772
773                 memset(&r_refdef.stats, 0, sizeof(r_refdef.stats));
774
775                 speedstringcount = 0;
776                 r_speeds_timestring[0] = 0;
777                 r_timereport_active = false;
778
779                 if (r_speeds.integer >= 2)
780                 {
781                         r_timereport_active = true;
782                         r_timereport_start = r_timereport_current = Sys_DoubleTime();
783                 }
784         }
785
786         if (string[0])
787         {
788                 if (string[strlen(string)-1] == '\n')
789                         string[strlen(string)-1] = 0;
790                 lines = 1;
791                 for (i = 0;string[i];i++)
792                         if (string[i] == '\n')
793                                 lines++;
794                 y = vid_conheight.integer - sb_lines - lines * 8;
795                 i = j = 0;
796                 DrawQ_Fill(0, y, vid_conwidth.integer, lines * 8, 0, 0, 0, 0.5, 0);
797                 while (string[i])
798                 {
799                         j = i;
800                         while (string[i] && string[i] != '\n')
801                                 i++;
802                         if (i - j > 0)
803                                 DrawQ_String(0, y, string + j, i - j, 8, 8, 1, 1, 1, 1, 0, NULL, true);
804                         if (string[i] == '\n')
805                                 i++;
806                         y += 8;
807                 }
808         }
809 }
810
811 /*
812 =================
813 SCR_SizeUp_f
814
815 Keybinding command
816 =================
817 */
818 void SCR_SizeUp_f (void)
819 {
820         Cvar_SetValue ("viewsize",scr_viewsize.value+10);
821 }
822
823
824 /*
825 =================
826 SCR_SizeDown_f
827
828 Keybinding command
829 =================
830 */
831 void SCR_SizeDown_f (void)
832 {
833         Cvar_SetValue ("viewsize",scr_viewsize.value-10);
834 }
835
836 void SCR_CaptureVideo_EndVideo(void);
837 void CL_Screen_Shutdown(void)
838 {
839         SCR_CaptureVideo_EndVideo();
840 }
841
842 void CL_Screen_Init(void)
843 {
844         Cvar_RegisterVariable (&scr_fov);
845         Cvar_RegisterVariable (&scr_viewsize);
846         Cvar_RegisterVariable (&scr_conalpha);
847         Cvar_RegisterVariable (&scr_conbrightness);
848         Cvar_RegisterVariable (&scr_conforcewhiledisconnected);
849         Cvar_RegisterVariable (&scr_menuforcewhiledisconnected);
850         Cvar_RegisterVariable (&scr_showram);
851         Cvar_RegisterVariable (&scr_showturtle);
852         Cvar_RegisterVariable (&scr_showpause);
853         Cvar_RegisterVariable (&scr_showbrand);
854         Cvar_RegisterVariable (&scr_centertime);
855         Cvar_RegisterVariable (&scr_printspeed);
856         Cvar_RegisterVariable (&vid_conwidth);
857         Cvar_RegisterVariable (&vid_conheight);
858         Cvar_RegisterVariable (&vid_pixelheight);
859         Cvar_RegisterVariable (&scr_screenshot_jpeg);
860         Cvar_RegisterVariable (&scr_screenshot_jpeg_quality);
861         Cvar_RegisterVariable (&scr_screenshot_gammaboost);
862         Cvar_RegisterVariable (&scr_screenshot_hwgamma);
863         Cvar_RegisterVariable (&cl_capturevideo);
864         Cvar_RegisterVariable (&cl_capturevideo_printfps);
865         Cvar_RegisterVariable (&cl_capturevideo_width);
866         Cvar_RegisterVariable (&cl_capturevideo_height);
867         Cvar_RegisterVariable (&cl_capturevideo_realtime);
868         Cvar_RegisterVariable (&cl_capturevideo_fps);
869         Cvar_RegisterVariable (&cl_capturevideo_nameformat);
870         Cvar_RegisterVariable (&cl_capturevideo_number);
871         Cvar_RegisterVariable (&cl_capturevideo_ogg);
872         Cvar_RegisterVariable (&r_letterbox);
873         Cvar_RegisterVariable(&r_stereo_separation);
874         Cvar_RegisterVariable(&r_stereo_sidebyside);
875         Cvar_RegisterVariable(&r_stereo_redblue);
876         Cvar_RegisterVariable(&r_stereo_redcyan);
877         Cvar_RegisterVariable(&r_stereo_redgreen);
878         Cvar_RegisterVariable(&r_stereo_angle);
879         Cvar_RegisterVariable(&scr_zoomwindow);
880         Cvar_RegisterVariable(&scr_zoomwindow_viewsizex);
881         Cvar_RegisterVariable(&scr_zoomwindow_viewsizey);
882         Cvar_RegisterVariable(&scr_zoomwindow_fov);
883         Cvar_RegisterVariable(&scr_stipple);
884         Cvar_RegisterVariable(&scr_refresh);
885         Cvar_RegisterVariable(&shownetgraph);
886         Cvar_RegisterVariable(&cl_demo_mousegrab);
887
888         Cmd_AddCommand ("sizeup",SCR_SizeUp_f, "increase view size (increases viewsize cvar)");
889         Cmd_AddCommand ("sizedown",SCR_SizeDown_f, "decrease view size (decreases viewsize cvar)");
890         Cmd_AddCommand ("screenshot",SCR_ScreenShot_f, "takes a screenshot of the next rendered frame");
891         Cmd_AddCommand ("envmap", R_Envmap_f, "render a cubemap (skybox) of the current scene");
892         Cmd_AddCommand ("infobar", SCR_InfoBar_f, "display a text in the infobar (usage: infobar expiretime string)");
893
894         SCR_CaptureVideo_Ogg_Init();
895
896         scr_initialized = true;
897 }
898
899 /*
900 ==================
901 SCR_ScreenShot_f
902 ==================
903 */
904 void SCR_ScreenShot_f (void)
905 {
906         static int shotnumber;
907         static char old_prefix_name[MAX_QPATH];
908         char prefix_name[MAX_QPATH];
909         char filename[MAX_QPATH];
910         unsigned char *buffer1;
911         unsigned char *buffer2;
912         unsigned char *buffer3;
913         qboolean jpeg = (scr_screenshot_jpeg.integer != 0);
914
915         dpsnprintf (prefix_name, sizeof(prefix_name), "%s", Sys_TimeString(scr_screenshot_name.string));
916
917         if (strcmp(old_prefix_name, prefix_name))
918         {
919                 dpsnprintf(old_prefix_name, sizeof(old_prefix_name), "%s", prefix_name );
920                 shotnumber = 0;
921         }
922
923         // find a file name to save it to
924         for (;shotnumber < 1000000;shotnumber++)
925                 if (!FS_SysFileExists(va("%s/screenshots/%s%06d.tga", fs_gamedir, prefix_name, shotnumber)) && !FS_SysFileExists(va("%s/screenshots/%s%06d.jpg", fs_gamedir, prefix_name, shotnumber)))
926                         break;
927         if (shotnumber >= 1000000)
928         {
929                 Con_Print("Couldn't create the image file\n");
930                 return;
931         }
932
933         dpsnprintf(filename, sizeof(filename), "screenshots/%s%06d.%s", prefix_name, shotnumber, jpeg ? "jpg" : "tga");
934
935         buffer1 = (unsigned char *)Mem_Alloc(tempmempool, vid.width * vid.height * 3);
936         buffer2 = (unsigned char *)Mem_Alloc(tempmempool, vid.width * vid.height * 3);
937         buffer3 = (unsigned char *)Mem_Alloc(tempmempool, vid.width * vid.height * 3 + 18);
938
939         if (SCR_ScreenShot (filename, buffer1, buffer2, buffer3, 0, 0, vid.width, vid.height, false, false, false, jpeg, true))
940                 Con_Printf("Wrote %s\n", filename);
941         else
942                 Con_Printf("Unable to write %s\n", filename);
943
944         Mem_Free (buffer1);
945         Mem_Free (buffer2);
946         Mem_Free (buffer3);
947
948         shotnumber++;
949 }
950
951 void SCR_CaptureVideo_BeginVideo(void)
952 {
953         double r, g, b;
954         unsigned int i;
955         int width = cl_capturevideo_width.integer, height = cl_capturevideo_height.integer;
956         if (cls.capturevideo.active)
957                 return;
958         memset(&cls.capturevideo, 0, sizeof(cls.capturevideo));
959         // soundrate is figured out on the first SoundFrame
960
961         if(width == 0 && height != 0)
962                 width = (int) (height * (double)vid.width / ((double)vid.height * vid_pixelheight.value)); // keep aspect
963         if(width != 0 && height == 0)
964                 height = (int) (width * ((double)vid.height * vid_pixelheight.value) / (double)vid.width); // keep aspect
965
966         if(width < 2 || width > vid.width) // can't scale up
967                 width = vid.width;
968         if(height < 2 || height > vid.height) // can't scale up
969                 height = vid.height;
970
971         // ensure it's all even; if not, scale down a little
972         if(width % 1)
973                 --width;
974         if(height % 1)
975                 --height;
976
977         cls.capturevideo.width = width;
978         cls.capturevideo.height = height;
979         cls.capturevideo.active = true;
980         cls.capturevideo.framerate = bound(1, cl_capturevideo_fps.value, 1001);
981         cls.capturevideo.soundrate = S_GetSoundRate();
982         cls.capturevideo.soundchannels = S_GetSoundChannels();
983         cls.capturevideo.startrealtime = realtime;
984         cls.capturevideo.frame = cls.capturevideo.lastfpsframe = 0;
985         cls.capturevideo.starttime = cls.capturevideo.lastfpstime = Sys_DoubleTime();
986         cls.capturevideo.soundsampleframe = 0;
987         cls.capturevideo.realtime = cl_capturevideo_realtime.integer != 0;
988         cls.capturevideo.screenbuffer = (unsigned char *)Mem_Alloc(tempmempool, vid.width * vid.height * 4);
989         cls.capturevideo.outbuffer = (unsigned char *)Mem_Alloc(tempmempool, width * height * (4+4) + 18);
990         dpsnprintf(cls.capturevideo.basename, sizeof(cls.capturevideo.basename), "video/%s%03i", Sys_TimeString(cl_capturevideo_nameformat.string), cl_capturevideo_number.integer);
991         Cvar_SetValueQuick(&cl_capturevideo_number, cl_capturevideo_number.integer + 1);
992
993         /*
994         for (i = 0;i < 256;i++)
995         {
996                 unsigned char j = (unsigned char)bound(0, 255*pow(i/255.0, gamma), 255);
997                 cls.capturevideo.rgbgammatable[0][i] = j;
998                 cls.capturevideo.rgbgammatable[1][i] = j;
999                 cls.capturevideo.rgbgammatable[2][i] = j;
1000         }
1001         */
1002 /*
1003 R = Y + 1.4075 * (Cr - 128);
1004 G = Y + -0.3455 * (Cb - 128) + -0.7169 * (Cr - 128);
1005 B = Y + 1.7790 * (Cb - 128);
1006 Y = R *  .299 + G *  .587 + B *  .114;
1007 Cb = R * -.169 + G * -.332 + B *  .500 + 128.;
1008 Cr = R *  .500 + G * -.419 + B * -.0813 + 128.;
1009 */
1010
1011         if(WANT_SCREENSHOT_HWGAMMA)
1012         {
1013                 VID_BuildGammaTables(&cls.capturevideo.vidramp[0], 256);
1014         }
1015         else
1016         {
1017                 // identity gamma table
1018                 BuildGammaTable16(1.0f, 1.0f, 1.0f, 0.0f, 1.0f, cls.capturevideo.vidramp, 256);
1019                 BuildGammaTable16(1.0f, 1.0f, 1.0f, 0.0f, 1.0f, cls.capturevideo.vidramp + 256, 256);
1020                 BuildGammaTable16(1.0f, 1.0f, 1.0f, 0.0f, 1.0f, cls.capturevideo.vidramp + 256*2, 256);
1021         }
1022         if(scr_screenshot_gammaboost.value != 1)
1023         {
1024                 double igamma = 1 / scr_screenshot_gammaboost.value;
1025                 for (i = 0;i < 256 * 3;i++)
1026                         cls.capturevideo.vidramp[i] = (unsigned short) (0.5 + pow(cls.capturevideo.vidramp[i] * (1.0 / 65535.0), igamma) * 65535.0);
1027         }
1028
1029         for (i = 0;i < 256;i++)
1030         {
1031                 r = 255*cls.capturevideo.vidramp[i]/65535.0;
1032                 g = 255*cls.capturevideo.vidramp[i+256]/65535.0;
1033                 b = 255*cls.capturevideo.vidramp[i+512]/65535.0;
1034                 // NOTE: we have to round DOWN here, or integer overflows happen. Sorry for slightly wrong looking colors sometimes...
1035                 // Y weights from RGB
1036                 cls.capturevideo.rgbtoyuvscaletable[0][0][i] = (short)(r *  0.299);
1037                 cls.capturevideo.rgbtoyuvscaletable[0][1][i] = (short)(g *  0.587);
1038                 cls.capturevideo.rgbtoyuvscaletable[0][2][i] = (short)(b *  0.114);
1039                 // Cb weights from RGB
1040                 cls.capturevideo.rgbtoyuvscaletable[1][0][i] = (short)(r * -0.169);
1041                 cls.capturevideo.rgbtoyuvscaletable[1][1][i] = (short)(g * -0.332);
1042                 cls.capturevideo.rgbtoyuvscaletable[1][2][i] = (short)(b *  0.500);
1043                 // Cr weights from RGB
1044                 cls.capturevideo.rgbtoyuvscaletable[2][0][i] = (short)(r *  0.500);
1045                 cls.capturevideo.rgbtoyuvscaletable[2][1][i] = (short)(g * -0.419);
1046                 cls.capturevideo.rgbtoyuvscaletable[2][2][i] = (short)(b * -0.0813);
1047                 // range reduction of YCbCr to valid signal range
1048                 cls.capturevideo.yuvnormalizetable[0][i] = 16 + i * (236-16) / 256;
1049                 cls.capturevideo.yuvnormalizetable[1][i] = 16 + i * (240-16) / 256;
1050                 cls.capturevideo.yuvnormalizetable[2][i] = 16 + i * (240-16) / 256;
1051         }
1052
1053         if (cl_capturevideo_ogg.integer)
1054         {
1055                 if(SCR_CaptureVideo_Ogg_Available())
1056                 {
1057                         SCR_CaptureVideo_Ogg_BeginVideo();
1058                         return;
1059                 }
1060                 else
1061                         Con_Print("cl_capturevideo_ogg: libraries not available. Capturing in AVI instead.\n");
1062         }
1063
1064         SCR_CaptureVideo_Avi_BeginVideo();
1065 }
1066
1067 void SCR_CaptureVideo_EndVideo(void)
1068 {
1069         if (!cls.capturevideo.active)
1070                 return;
1071         cls.capturevideo.active = false;
1072
1073         Con_Printf("Finishing capture of %s.%s (%d frames, %d audio frames)\n", cls.capturevideo.basename, cls.capturevideo.formatextension, cls.capturevideo.frame, cls.capturevideo.soundsampleframe);
1074
1075         if (cls.capturevideo.videofile)
1076         {
1077                 cls.capturevideo.endvideo();
1078         }
1079
1080         if (cls.capturevideo.screenbuffer)
1081         {
1082                 Mem_Free (cls.capturevideo.screenbuffer);
1083                 cls.capturevideo.screenbuffer = NULL;
1084         }
1085
1086         if (cls.capturevideo.outbuffer)
1087         {
1088                 Mem_Free (cls.capturevideo.outbuffer);
1089                 cls.capturevideo.outbuffer = NULL;
1090         }
1091
1092         memset(&cls.capturevideo, 0, sizeof(cls.capturevideo));
1093 }
1094
1095 static void SCR_ScaleDownBGRA(unsigned char *in, int inw, int inh, unsigned char *out, int outw, int outh)
1096 {
1097         // TODO optimize this function
1098
1099         int x, y;
1100         float area;
1101
1102         // memcpy is faster than me
1103         if(inw == outw && inh == outh)
1104         {
1105                 memcpy(out, in, 4 * inw * inh);
1106                 return;
1107         }
1108
1109         // otherwise: a box filter
1110         area = (float)outw * (float)outh / (float)inw / (float)inh;
1111         for(y = 0; y < outh; ++y)
1112         {
1113                 float iny0 =  y    / (float)outh * inh; int iny0_i = (int) floor(iny0);
1114                 float iny1 = (y+1) / (float)outh * inh; int iny1_i = (int) ceil(iny1);
1115                 for(x = 0; x < outw; ++x)
1116                 {
1117                         float inx0 =  x    / (float)outw * inw; int inx0_i = (int) floor(inx0);
1118                         float inx1 = (x+1) / (float)outw * inw; int inx1_i = (int) ceil(inx1);
1119                         float r = 0, g = 0, b = 0, alpha = 0;
1120                         int xx, yy;
1121
1122                         for(yy = iny0_i; yy < iny1_i; ++yy)
1123                         {
1124                                 float ya = min(yy+1, iny1) - max(iny0, yy);
1125                                 for(xx = inx0_i; xx < inx1_i; ++xx)
1126                                 {
1127                                         float a = ya * (min(xx+1, inx1) - max(inx0, xx));
1128                                         r += a * in[4*(xx + inw * yy)+0];
1129                                         g += a * in[4*(xx + inw * yy)+1];
1130                                         b += a * in[4*(xx + inw * yy)+2];
1131                                         alpha += a * in[4*(xx + inw * yy)+3];
1132                                 }
1133                         }
1134
1135                         out[4*(x + outw * y)+0] = (unsigned char) (r * area);
1136                         out[4*(x + outw * y)+1] = (unsigned char) (g * area);
1137                         out[4*(x + outw * y)+2] = (unsigned char) (b * area);
1138                         out[4*(x + outw * y)+3] = (unsigned char) (alpha * area);
1139                 }
1140         }
1141 }
1142
1143 void SCR_CaptureVideo_VideoFrame(int newframenum)
1144 {
1145         int x = 0, y = 0;
1146         int width = cls.capturevideo.width, height = cls.capturevideo.height;
1147
1148         CHECKGLERROR
1149         //return SCR_ScreenShot(filename, cls.capturevideo.buffer, cls.capturevideo.buffer + vid.width * vid.height * 3, cls.capturevideo.buffer + vid.width * vid.height * 6, 0, 0, vid.width, vid.height, false, false, false, jpeg, true);
1150         // speed is critical here, so do saving as directly as possible
1151
1152         qglReadPixels (x, y, vid.width, vid.height, GL_BGRA, GL_UNSIGNED_BYTE, cls.capturevideo.screenbuffer);CHECKGLERROR
1153         SCR_ScaleDownBGRA (cls.capturevideo.screenbuffer, vid.width, vid.height, cls.capturevideo.outbuffer, width, height);
1154
1155         cls.capturevideo.videoframes(newframenum - cls.capturevideo.frame);
1156         cls.capturevideo.frame = newframenum;
1157
1158         if(cl_capturevideo_printfps.integer)
1159         {
1160                 char buf[80];
1161                 double t = Sys_DoubleTime();
1162                 if(t > cls.capturevideo.lastfpstime + 1)
1163                 {
1164                         double fps1 = (cls.capturevideo.frame - cls.capturevideo.lastfpsframe) / (t - cls.capturevideo.lastfpstime + 0.0000001);
1165                         double fps  = (cls.capturevideo.frame                                ) / (t - cls.capturevideo.starttime   + 0.0000001);
1166                         dpsnprintf(buf, sizeof(buf), "capturevideo: (%.1fs) last second %.3ffps, total %.3ffps\n", cls.capturevideo.frame / cls.capturevideo.framerate, fps1, fps);
1167                         Sys_PrintToTerminal(buf);
1168                         cls.capturevideo.lastfpstime = t;
1169                         cls.capturevideo.lastfpsframe = cls.capturevideo.frame;
1170                 }
1171         }
1172 }
1173
1174 void SCR_CaptureVideo_SoundFrame(const portable_sampleframe_t *paintbuffer, size_t length)
1175 {
1176         cls.capturevideo.soundsampleframe += length;
1177         cls.capturevideo.soundframe(paintbuffer, length);
1178 }
1179
1180 void SCR_CaptureVideo(void)
1181 {
1182         int newframenum;
1183         if (cl_capturevideo.integer && r_render.integer)
1184         {
1185                 if (!cls.capturevideo.active)
1186                         SCR_CaptureVideo_BeginVideo();
1187                 if (cls.capturevideo.framerate != cl_capturevideo_fps.value)
1188                 {
1189                         Con_Printf("You can not change the video framerate while recording a video.\n");
1190                         Cvar_SetValueQuick(&cl_capturevideo_fps, cls.capturevideo.framerate);
1191                 }
1192                 // for AVI saving we have to make sure that sound is saved before video
1193                 if (cls.capturevideo.soundrate && !cls.capturevideo.soundsampleframe)
1194                         return;
1195                 if (cls.capturevideo.realtime)
1196                 {
1197                         // preserve sound sync by duplicating frames when running slow
1198                         newframenum = (int)((realtime - cls.capturevideo.startrealtime) * cls.capturevideo.framerate);
1199                 }
1200                 else
1201                         newframenum = cls.capturevideo.frame + 1;
1202                 // if falling behind more than one second, stop
1203                 if (newframenum - cls.capturevideo.frame > 60 * (int)ceil(cls.capturevideo.framerate))
1204                 {
1205                         Cvar_SetValueQuick(&cl_capturevideo, 0);
1206                         Con_Printf("video saving failed on frame %i, your machine is too slow for this capture speed.\n", cls.capturevideo.frame);
1207                         SCR_CaptureVideo_EndVideo();
1208                         return;
1209                 }
1210                 // write frames
1211                 SCR_CaptureVideo_VideoFrame(newframenum);
1212                 if (cls.capturevideo.error)
1213                 {
1214                         Cvar_SetValueQuick(&cl_capturevideo, 0);
1215                         Con_Printf("video saving failed on frame %i, out of disk space? stopping video capture.\n", cls.capturevideo.frame);
1216                         SCR_CaptureVideo_EndVideo();
1217                 }
1218         }
1219         else if (cls.capturevideo.active)
1220                 SCR_CaptureVideo_EndVideo();
1221 }
1222
1223 /*
1224 ===============
1225 R_Envmap_f
1226
1227 Grab six views for environment mapping tests
1228 ===============
1229 */
1230 struct envmapinfo_s
1231 {
1232         float angles[3];
1233         char *name;
1234         qboolean flipx, flipy, flipdiagonaly;
1235 }
1236 envmapinfo[12] =
1237 {
1238         {{  0,   0, 0}, "rt", false, false, false},
1239         {{  0, 270, 0}, "ft", false, false, false},
1240         {{  0, 180, 0}, "lf", false, false, false},
1241         {{  0,  90, 0}, "bk", false, false, false},
1242         {{-90, 180, 0}, "up",  true,  true, false},
1243         {{ 90, 180, 0}, "dn",  true,  true, false},
1244
1245         {{  0,   0, 0}, "px",  true,  true,  true},
1246         {{  0,  90, 0}, "py", false,  true, false},
1247         {{  0, 180, 0}, "nx", false, false,  true},
1248         {{  0, 270, 0}, "ny",  true, false, false},
1249         {{-90, 180, 0}, "pz", false, false,  true},
1250         {{ 90, 180, 0}, "nz", false, false,  true}
1251 };
1252
1253 static void R_Envmap_f (void)
1254 {
1255         int j, size;
1256         char filename[MAX_QPATH], basename[MAX_QPATH];
1257         unsigned char *buffer1;
1258         unsigned char *buffer2;
1259         unsigned char *buffer3;
1260
1261         if (Cmd_Argc() != 3)
1262         {
1263                 Con_Print("envmap <basename> <size>: save out 6 cubic environment map images, usable with loadsky, note that size must one of 128, 256, 512, or 1024 and can't be bigger than your current resolution\n");
1264                 return;
1265         }
1266
1267         strlcpy (basename, Cmd_Argv(1), sizeof (basename));
1268         size = atoi(Cmd_Argv(2));
1269         if (size != 128 && size != 256 && size != 512 && size != 1024)
1270         {
1271                 Con_Print("envmap: size must be one of 128, 256, 512, or 1024\n");
1272                 return;
1273         }
1274         if (size > vid.width || size > vid.height)
1275         {
1276                 Con_Print("envmap: your resolution is not big enough to render that size\n");
1277                 return;
1278         }
1279
1280         r_refdef.envmap = true;
1281
1282         R_UpdateVariables();
1283
1284         r_refdef.view.x = 0;
1285         r_refdef.view.y = 0;
1286         r_refdef.view.z = 0;
1287         r_refdef.view.width = size;
1288         r_refdef.view.height = size;
1289         r_refdef.view.depth = 1;
1290         r_refdef.view.useperspective = true;
1291         r_refdef.view.isoverlay = false;
1292
1293         r_refdef.view.frustum_x = tan(90 * M_PI / 360.0);
1294         r_refdef.view.frustum_y = tan(90 * M_PI / 360.0);
1295
1296         buffer1 = (unsigned char *)Mem_Alloc(tempmempool, size * size * 3);
1297         buffer2 = (unsigned char *)Mem_Alloc(tempmempool, size * size * 3);
1298         buffer3 = (unsigned char *)Mem_Alloc(tempmempool, size * size * 3 + 18);
1299
1300         for (j = 0;j < 12;j++)
1301         {
1302                 dpsnprintf(filename, sizeof(filename), "env/%s%s.tga", basename, envmapinfo[j].name);
1303                 Matrix4x4_CreateFromQuakeEntity(&r_refdef.view.matrix, r_refdef.view.origin[0], r_refdef.view.origin[1], r_refdef.view.origin[2], envmapinfo[j].angles[0], envmapinfo[j].angles[1], envmapinfo[j].angles[2], 1);
1304                 r_refdef.view.quality = 1;
1305                 r_refdef.view.clear = true;
1306                 R_Mesh_Start();
1307                 R_RenderView();
1308                 R_Mesh_Finish();
1309                 SCR_ScreenShot(filename, buffer1, buffer2, buffer3, 0, vid.height - (r_refdef.view.y + r_refdef.view.height), size, size, envmapinfo[j].flipx, envmapinfo[j].flipy, envmapinfo[j].flipdiagonaly, false, false);
1310         }
1311
1312         Mem_Free (buffer1);
1313         Mem_Free (buffer2);
1314         Mem_Free (buffer3);
1315
1316         r_refdef.envmap = false;
1317 }
1318
1319 //=============================================================================
1320
1321 void SHOWLMP_decodehide(void)
1322 {
1323         int i;
1324         char *lmplabel;
1325         lmplabel = MSG_ReadString();
1326         for (i = 0;i < cl.num_showlmps;i++)
1327                 if (cl.showlmps[i].isactive && strcmp(cl.showlmps[i].label, lmplabel) == 0)
1328                 {
1329                         cl.showlmps[i].isactive = false;
1330                         return;
1331                 }
1332 }
1333
1334 void SHOWLMP_decodeshow(void)
1335 {
1336         int k;
1337         char lmplabel[256], picname[256];
1338         float x, y;
1339         strlcpy (lmplabel,MSG_ReadString(), sizeof (lmplabel));
1340         strlcpy (picname, MSG_ReadString(), sizeof (picname));
1341         if (gamemode == GAME_NEHAHRA) // LordHavoc: nasty old legacy junk
1342         {
1343                 x = MSG_ReadByte();
1344                 y = MSG_ReadByte();
1345         }
1346         else
1347         {
1348                 x = MSG_ReadShort();
1349                 y = MSG_ReadShort();
1350         }
1351         if (!cl.showlmps || cl.num_showlmps >= cl.max_showlmps)
1352         {
1353                 showlmp_t *oldshowlmps = cl.showlmps;
1354                 cl.max_showlmps += 16;
1355                 cl.showlmps = (showlmp_t *) Mem_Alloc(cls.levelmempool, cl.max_showlmps * sizeof(showlmp_t));
1356                 if (cl.num_showlmps)
1357                         memcpy(cl.showlmps, oldshowlmps, cl.num_showlmps * sizeof(showlmp_t));
1358                 if (oldshowlmps)
1359                         Mem_Free(oldshowlmps);
1360         }
1361         for (k = 0;k < cl.max_showlmps;k++)
1362                 if (cl.showlmps[k].isactive && !strcmp(cl.showlmps[k].label, lmplabel))
1363                         break;
1364         if (k == cl.max_showlmps)
1365                 for (k = 0;k < cl.max_showlmps;k++)
1366                         if (!cl.showlmps[k].isactive)
1367                                 break;
1368         cl.showlmps[k].isactive = true;
1369         strlcpy (cl.showlmps[k].label, lmplabel, sizeof (cl.showlmps[k].label));
1370         strlcpy (cl.showlmps[k].pic, picname, sizeof (cl.showlmps[k].pic));
1371         cl.showlmps[k].x = x;
1372         cl.showlmps[k].y = y;
1373         cl.num_showlmps = max(cl.num_showlmps, k + 1);
1374 }
1375
1376 void SHOWLMP_drawall(void)
1377 {
1378         int i;
1379         for (i = 0;i < cl.num_showlmps;i++)
1380                 if (cl.showlmps[i].isactive)
1381                         DrawQ_Pic(cl.showlmps[i].x, cl.showlmps[i].y, Draw_CachePic (cl.showlmps[i].pic), 0, 0, 1, 1, 1, 1, 0);
1382 }
1383
1384 /*
1385 ==============================================================================
1386
1387                                                 SCREEN SHOTS
1388
1389 ==============================================================================
1390 */
1391
1392 qboolean SCR_ScreenShot(char *filename, unsigned char *buffer1, unsigned char *buffer2, unsigned char *buffer3, int x, int y, int width, int height, qboolean flipx, qboolean flipy, qboolean flipdiagonal, qboolean jpeg, qboolean gammacorrect)
1393 {
1394         int     indices[3] = {0,1,2};
1395         qboolean ret;
1396
1397         if (!r_render.integer)
1398                 return false;
1399
1400         CHECKGLERROR
1401         qglReadPixels (x, y, width, height, jpeg ? GL_RGB : GL_BGR, GL_UNSIGNED_BYTE, buffer1);CHECKGLERROR
1402
1403         if(gammacorrect && (scr_screenshot_gammaboost.value != 1 || WANT_SCREENSHOT_HWGAMMA))
1404         {
1405                 int i;
1406                 double igamma = 1.0 / scr_screenshot_gammaboost.value;
1407                 unsigned short vidramp[256 * 3];
1408                 if(WANT_SCREENSHOT_HWGAMMA)
1409                 {
1410                         VID_BuildGammaTables(&vidramp[0], 256);
1411                 }
1412                 else
1413                 {
1414                         // identity gamma table
1415                         BuildGammaTable16(1.0f, 1.0f, 1.0f, 0.0f, 1.0f, vidramp, 256);
1416                         BuildGammaTable16(1.0f, 1.0f, 1.0f, 0.0f, 1.0f, vidramp + 256, 256);
1417                         BuildGammaTable16(1.0f, 1.0f, 1.0f, 0.0f, 1.0f, vidramp + 256*2, 256);
1418                 }
1419                 if(scr_screenshot_gammaboost.value != 1)
1420                 {
1421                         for (i = 0;i < 256 * 3;i++)
1422                                 vidramp[i] = (unsigned short) (0.5 + pow(vidramp[i] * (1.0 / 65535.0), igamma) * 65535.0);
1423                 }
1424                 for (i = 0;i < width*height*3;i += 3)
1425                 {
1426                         buffer1[i] = (unsigned char) (vidramp[buffer1[i]] * 255.0 / 65535.0 + 0.5);
1427                         buffer1[i+1] = (unsigned char) (vidramp[buffer1[i+1] + 256] * 255.0 / 65535.0 + 0.5);
1428                         buffer1[i+2] = (unsigned char) (vidramp[buffer1[i+2] + 512] * 255.0 / 65535.0 + 0.5);
1429                 }
1430         }
1431
1432         Image_CopyMux (buffer2, buffer1, width, height, flipx, flipy, flipdiagonal, 3, 3, indices);
1433
1434         if (jpeg)
1435                 ret = JPEG_SaveImage_preflipped (filename, width, height, buffer2);
1436         else
1437                 ret = Image_WriteTGABGR_preflipped (filename, width, height, buffer2, buffer3);
1438
1439         return ret;
1440 }
1441
1442 //=============================================================================
1443
1444 extern void R_UpdateFogColor(void);
1445 void R_ClearScreen(qboolean fogcolor)
1446 {
1447         // clear to black
1448         CHECKGLERROR
1449         if (fogcolor)
1450         {
1451                 R_UpdateFogColor();
1452                 qglClearColor(r_refdef.fogcolor[0],r_refdef.fogcolor[1],r_refdef.fogcolor[2],0);CHECKGLERROR
1453         }
1454         else
1455         {
1456                 qglClearColor(0,0,0,0);CHECKGLERROR
1457         }
1458         qglClearDepth(1);CHECKGLERROR
1459         if (gl_stencil)
1460         {
1461                 // LordHavoc: we use a stencil centered around 128 instead of 0,
1462                 // to avoid clamping interfering with strange shadow volume
1463                 // drawing orders
1464                 qglClearStencil(128);CHECKGLERROR
1465         }
1466         // clear the screen
1467         if (r_render.integer)
1468                 GL_Clear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | (gl_stencil ? GL_STENCIL_BUFFER_BIT : 0));
1469         // set dithering mode
1470         if (gl_dither.integer)
1471         {
1472                 qglEnable(GL_DITHER);CHECKGLERROR
1473         }
1474         else
1475         {
1476                 qglDisable(GL_DITHER);CHECKGLERROR
1477         }
1478 }
1479
1480 qboolean CL_VM_UpdateView (void);
1481 void SCR_DrawConsole (void);
1482 void R_Shadow_EditLights_DrawSelectedLightProperties(void);
1483
1484 int r_stereo_side;
1485
1486 void SCR_DrawScreen (void)
1487 {
1488         R_Mesh_Start();
1489
1490         R_TimeReport_BeginFrame();
1491
1492         R_UpdateVariables();
1493
1494         // Quake uses clockwise winding, so these are swapped
1495         r_refdef.view.cullface_front = GL_BACK;
1496         r_refdef.view.cullface_back = GL_FRONT;
1497
1498         if (cls.signon == SIGNONS)
1499         {
1500                 float size;
1501
1502                 size = scr_viewsize.value * (1.0 / 100.0);
1503                 size = min(size, 1);
1504
1505                 if (r_stereo_sidebyside.integer)
1506                 {
1507                         r_refdef.view.width = (int)(vid.width * size / 2.5);
1508                         r_refdef.view.height = (int)(vid.height * size / 2.5 * (1 - bound(0, r_letterbox.value, 100) / 100));
1509                         r_refdef.view.depth = 1;
1510                         r_refdef.view.x = (int)((vid.width - r_refdef.view.width * 2.5) * 0.5);
1511                         r_refdef.view.y = (int)((vid.height - r_refdef.view.height)/2);
1512                         r_refdef.view.z = 0;
1513                         if (r_stereo_side)
1514                                 r_refdef.view.x += (int)(r_refdef.view.width * 1.5);
1515                 }
1516                 else
1517                 {
1518                         r_refdef.view.width = (int)(vid.width * size);
1519                         r_refdef.view.height = (int)(vid.height * size * (1 - bound(0, r_letterbox.value, 100) / 100));
1520                         r_refdef.view.depth = 1;
1521                         r_refdef.view.x = (int)((vid.width - r_refdef.view.width)/2);
1522                         r_refdef.view.y = (int)((vid.height - r_refdef.view.height)/2);
1523                         r_refdef.view.z = 0;
1524                 }
1525
1526                 // LordHavoc: viewzoom (zoom in for sniper rifles, etc)
1527                 // LordHavoc: this is designed to produce widescreen fov values
1528                 // when the screen is wider than 4/3 width/height aspect, to do
1529                 // this it simply assumes the requested fov is the vertical fov
1530                 // for a 4x3 display, if the ratio is not 4x3 this makes the fov
1531                 // higher/lower according to the ratio
1532                 r_refdef.view.useperspective = true;
1533                 r_refdef.view.frustum_y = tan(scr_fov.value * M_PI / 360.0) * (3.0/4.0) * cl.viewzoom;
1534                 r_refdef.view.frustum_x = r_refdef.view.frustum_y * (float)r_refdef.view.width / (float)r_refdef.view.height / vid_pixelheight.value;
1535
1536                 r_refdef.view.frustum_x *= r_refdef.frustumscale_x;
1537                 r_refdef.view.frustum_y *= r_refdef.frustumscale_y;
1538
1539                 if(!CL_VM_UpdateView())
1540                         R_RenderView();
1541
1542                 if (scr_zoomwindow.integer)
1543                 {
1544                         float sizex = bound(10, scr_zoomwindow_viewsizex.value, 100) / 100.0;
1545                         float sizey = bound(10, scr_zoomwindow_viewsizey.value, 100) / 100.0;
1546                         r_refdef.view.width = (int)(vid.width * sizex);
1547                         r_refdef.view.height = (int)(vid.height * sizey);
1548                         r_refdef.view.depth = 1;
1549                         r_refdef.view.x = (int)((vid.width - r_refdef.view.width)/2);
1550                         r_refdef.view.y = 0;
1551                         r_refdef.view.z = 0;
1552
1553                         r_refdef.view.useperspective = true;
1554                         r_refdef.view.frustum_y = tan(scr_zoomwindow_fov.value * M_PI / 360.0) * (3.0/4.0) * cl.viewzoom;
1555                         r_refdef.view.frustum_x = r_refdef.view.frustum_y * vid_pixelheight.value * (float)r_refdef.view.width / (float)r_refdef.view.height;
1556
1557                         r_refdef.view.frustum_x *= r_refdef.frustumscale_x;
1558                         r_refdef.view.frustum_y *= r_refdef.frustumscale_y;
1559
1560                         if(!CL_VM_UpdateView())
1561                                 R_RenderView();
1562                 }
1563         }
1564
1565         if (!r_stereo_sidebyside.integer)
1566         {
1567                 r_refdef.view.width = vid.width;
1568                 r_refdef.view.height = vid.height;
1569                 r_refdef.view.depth = 1;
1570                 r_refdef.view.x = 0;
1571                 r_refdef.view.y = 0;
1572                 r_refdef.view.z = 0;
1573                 r_refdef.view.useperspective = false;
1574         }
1575
1576         // draw 2D stuff
1577         if(!scr_con_current && !(key_consoleactive & KEY_CONSOLEACTIVE_FORCED))
1578                 if ((key_dest == key_game || key_dest == key_message) && !r_letterbox.value)
1579                         Con_DrawNotify ();      // only draw notify in game
1580
1581         if (cls.signon == SIGNONS)
1582         {
1583                 SCR_DrawNet ();
1584                 SCR_DrawTurtle ();
1585                 SCR_DrawPause ();
1586                 if (!r_letterbox.value)
1587                         Sbar_Draw();
1588                 SHOWLMP_drawall();
1589                 SCR_CheckDrawCenterString();
1590         }
1591         SCR_DrawNetGraph ();
1592         MR_Draw();
1593         CL_DrawVideo();
1594         R_Shadow_EditLights_DrawSelectedLightProperties();
1595
1596         SCR_DrawConsole();
1597
1598         SCR_DrawBrand();
1599
1600         SCR_DrawInfobar();
1601
1602         if (r_timereport_active)
1603                 R_TimeReport("2d");
1604
1605         if (cls.signon == SIGNONS)
1606                 R_TimeReport_EndFrame();
1607
1608         DrawQ_Finish();
1609
1610         R_DrawGamma();
1611
1612         R_Mesh_Finish();
1613 }
1614
1615 typedef struct loadingscreenstack_s
1616 {
1617         struct loadingscreenstack_s *prev;
1618         char msg[MAX_QPATH];
1619         float absolute_loading_amount_min; // this corresponds to relative completion 0 of this item
1620         float absolute_loading_amount_len; // this corresponds to relative completion 1 of this item
1621         float relative_completion; // 0 .. 1
1622 }
1623 loadingscreenstack_t;
1624 static loadingscreenstack_t *loadingscreenstack = NULL;
1625 static double loadingscreentime = -1;
1626 static qboolean loadingscreencleared = false;
1627 static float loadingscreenheight = 0;
1628 rtexture_t *loadingscreentexture = NULL;
1629 static float loadingscreentexture_vertex3f[12];
1630 static float loadingscreentexture_texcoord2f[8];
1631
1632 static void SCR_ClearLoadingScreenTexture()
1633 {
1634         if(loadingscreentexture)
1635                 R_FreeTexture(loadingscreentexture);
1636         loadingscreentexture = NULL;
1637 }
1638
1639 extern rtexturepool_t *r_main_texturepool;
1640 static void SCR_SetLoadingScreenTexture()
1641 {
1642         int w, h;
1643         float loadingscreentexture_w;
1644         float loadingscreentexture_h;
1645
1646         SCR_ClearLoadingScreenTexture();
1647
1648         if (gl_support_arb_texture_non_power_of_two)
1649         {
1650                 w = vid.width; h = vid.height;
1651                 loadingscreentexture_w = loadingscreentexture_h = 1;
1652         }
1653         else
1654         {
1655                 w = CeilPowerOf2(vid.width); h = CeilPowerOf2(vid.height);
1656                 loadingscreentexture_w = vid.width / (float) w;
1657                 loadingscreentexture_h = vid.height / (float) h;
1658         }
1659
1660         loadingscreentexture = R_LoadTexture2D(r_main_texturepool, "loadingscreentexture", w, h, NULL, TEXTYPE_BGRA, TEXF_FORCENEAREST | TEXF_CLAMP | TEXF_ALWAYSPRECACHE, NULL);
1661         R_Mesh_TexBind(0, R_GetTexture(loadingscreentexture));
1662         GL_ActiveTexture(0);
1663         CHECKGLERROR
1664         qglCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, 0, 0, vid.width, vid.height);CHECKGLERROR
1665
1666         loadingscreentexture_vertex3f[2] = loadingscreentexture_vertex3f[5] = loadingscreentexture_vertex3f[8] = loadingscreentexture_vertex3f[11] = 0;
1667         loadingscreentexture_vertex3f[0] = loadingscreentexture_vertex3f[9] = 0;
1668         loadingscreentexture_vertex3f[1] = loadingscreentexture_vertex3f[4] = 0;
1669         loadingscreentexture_vertex3f[3] = loadingscreentexture_vertex3f[6] = vid_conwidth.integer;
1670         loadingscreentexture_vertex3f[7] = loadingscreentexture_vertex3f[10] = vid_conheight.integer;
1671         loadingscreentexture_texcoord2f[0] = 0;loadingscreentexture_texcoord2f[1] = loadingscreentexture_h;
1672         loadingscreentexture_texcoord2f[2] = loadingscreentexture_w;loadingscreentexture_texcoord2f[3] = loadingscreentexture_h;
1673         loadingscreentexture_texcoord2f[4] = loadingscreentexture_w;loadingscreentexture_texcoord2f[5] = 0;
1674         loadingscreentexture_texcoord2f[6] = 0;loadingscreentexture_texcoord2f[7] = 0;
1675 }
1676
1677 void SCR_UpdateLoadingScreenIfShown()
1678 {
1679         if(realtime == loadingscreentime)
1680                 SCR_UpdateLoadingScreen(loadingscreencleared);
1681 }
1682
1683 void SCR_PushLoadingScreen (qboolean redraw, const char *msg, float len_in_parent)
1684 {
1685         loadingscreenstack_t *s = (loadingscreenstack_t *) Z_Malloc(sizeof(loadingscreenstack_t));
1686         s->prev = loadingscreenstack;
1687         loadingscreenstack = s;
1688
1689         strlcpy(s->msg, msg, sizeof(s->msg));
1690         s->relative_completion = 0;
1691
1692         if(s->prev)
1693         {
1694                 s->absolute_loading_amount_min = s->prev->absolute_loading_amount_min + s->prev->absolute_loading_amount_len * s->prev->relative_completion;
1695                 s->absolute_loading_amount_len = s->prev->absolute_loading_amount_len * len_in_parent;
1696                 if(s->absolute_loading_amount_len > s->prev->absolute_loading_amount_min + s->prev->absolute_loading_amount_len - s->absolute_loading_amount_min)
1697                         s->absolute_loading_amount_len = s->prev->absolute_loading_amount_min + s->prev->absolute_loading_amount_len - s->absolute_loading_amount_min;
1698         }
1699         else
1700         {
1701                 s->absolute_loading_amount_min = 0;
1702                 s->absolute_loading_amount_len = 1;
1703         }
1704
1705         if(redraw)
1706                 SCR_UpdateLoadingScreenIfShown();
1707 }
1708
1709 void SCR_PopLoadingScreen (qboolean redraw)
1710 {
1711         loadingscreenstack_t *s = loadingscreenstack;
1712
1713         if(!s)
1714         {
1715                 Con_DPrintf("Popping a loading screen item from an empty stack!\n");
1716                 return;
1717         }
1718
1719         loadingscreenstack = s->prev;
1720         if(s->prev)
1721                 s->prev->relative_completion = (s->absolute_loading_amount_min + s->absolute_loading_amount_len - s->prev->absolute_loading_amount_min) / s->prev->absolute_loading_amount_len;
1722         Z_Free(s);
1723
1724         if(redraw)
1725                 SCR_UpdateLoadingScreenIfShown();
1726 }
1727
1728 void SCR_ClearLoadingScreen (qboolean redraw)
1729 {
1730         while(loadingscreenstack)
1731                 SCR_PopLoadingScreen(redraw && !loadingscreenstack->prev);
1732 }
1733
1734 static float SCR_DrawLoadingStack_r(loadingscreenstack_t *s, float y)
1735 {
1736         float size = 8;
1737         float x;
1738         size_t len;
1739         float total;
1740
1741         total = 0;
1742 #if 0
1743         if(s)
1744         {
1745                 total += SCR_DrawLoadingStack_r(s->prev, y);
1746                 y -= total;
1747                 if(!s->prev || strcmp(s->msg, s->prev->msg))
1748                 {
1749                         len = strlen(s->msg);
1750                         x = (vid_conwidth.integer - DrawQ_TextWidth_Font(s->msg, len, true, FONT_INFOBAR) * size) / 2;
1751                         y -= size;
1752                         DrawQ_Fill(0, y, vid_conwidth.integer, size, 0, 0, 0, 1, 0);
1753                         DrawQ_String_Font(x, y, s->msg, len, size, size, 1, 1, 1, 1, 0, NULL, true, FONT_INFOBAR);
1754                         total += size;
1755                 }
1756         }
1757 #else
1758         if(s)
1759         {
1760                 len = strlen(s->msg);
1761                 x = (vid_conwidth.integer - DrawQ_TextWidth_Font(s->msg, len, true, FONT_INFOBAR) * size) / 2;
1762                 y -= size;
1763                 DrawQ_Fill(0, y, vid_conwidth.integer, size, 0, 0, 0, 1, 0);
1764                 DrawQ_String_Font(x, y, s->msg, len, size, size, 1, 1, 1, 1, 0, NULL, true, FONT_INFOBAR);
1765                 total += size;
1766         }
1767 #endif
1768         return total;
1769 }
1770
1771 static void SCR_DrawLoadingStack()
1772 {
1773         float verts[12];
1774         float colors[16];
1775         int i;
1776
1777         loadingscreenheight = SCR_DrawLoadingStack_r(loadingscreenstack, vid_conheight.integer);
1778         if(loadingscreenstack)
1779         {
1780                 // height = 32; // sorry, using the actual one is ugly
1781                 GL_BlendFunc(GL_SRC_ALPHA, GL_ONE);
1782                 GL_DepthRange(0, 1);
1783                 GL_PolygonOffset(0, 0);
1784                 GL_DepthTest(false);
1785                 R_Mesh_VertexPointer(verts, 0, 0);
1786                 R_Mesh_ColorPointer(colors, 0, 0);
1787                 R_Mesh_ResetTextureState();
1788                 R_SetupGenericShader(false);
1789                 verts[2] = verts[5] = verts[8] = verts[11] = 0;
1790                 verts[0] = verts[9] = 0;
1791                 verts[1] = verts[4] = vid_conheight.integer - 8;
1792                 verts[3] = verts[6] = vid_conwidth.integer * loadingscreenstack->absolute_loading_amount_min;
1793                 verts[7] = verts[10] = vid_conheight.integer;
1794
1795                 for(i = 0; i < 16; ++i)
1796                         colors[i] = (i % 4 == 3) ? 1 : (i >= 8 && i % 4 == 2) ? 1 : 0;
1797                         //                                        ^^^^^^^^^^ blue component
1798                         //                              ^^^^^^ bottom row
1799                         //          ^^^^^^^^^^^^ alpha is always on
1800                 R_Mesh_Draw(0, 4, 0, 2, NULL, polygonelements, 0, 0);
1801
1802                 // make sure everything is cleared, including the progress indicator
1803                 if(loadingscreenheight < 8)
1804                         loadingscreenheight = 8;
1805         }
1806 }
1807
1808 static cachepic_t *loadingscreenpic;
1809 static float loadingscreenpic_vertex3f[12];
1810 static float loadingscreenpic_texcoord2f[8];
1811
1812 static void SCR_DrawLoadingScreen_SharedSetup (qboolean clear)
1813 {
1814         float x, y;
1815         // release mouse grab while loading
1816         if (!vid.fullscreen)
1817                 VID_SetMouse(false, false, false);
1818         CHECKGLERROR
1819         qglViewport(0, 0, vid.width, vid.height);CHECKGLERROR
1820         //qglDisable(GL_SCISSOR_TEST);CHECKGLERROR
1821         //qglDepthMask(1);CHECKGLERROR
1822         qglColorMask(1,1,1,1);CHECKGLERROR
1823         qglClearColor(0,0,0,0);CHECKGLERROR
1824         // when starting up a new video mode, make sure the screen is cleared to black
1825         if (clear)
1826                 qglClear(GL_COLOR_BUFFER_BIT);CHECKGLERROR
1827         R_Textures_Frame();
1828         GL_SetupView_Mode_Ortho(0, 0, vid_conwidth.integer, vid_conheight.integer, -10, 100);
1829         R_Mesh_Start();
1830         R_Mesh_Matrix(&identitymatrix);
1831         // draw the loading plaque
1832         loadingscreenpic = Draw_CachePic ("gfx/loading");
1833         x = (vid_conwidth.integer - loadingscreenpic->width)/2;
1834         y = (vid_conheight.integer - loadingscreenpic->height)/2;
1835         loadingscreenpic_vertex3f[2] = loadingscreenpic_vertex3f[5] = loadingscreenpic_vertex3f[8] = loadingscreenpic_vertex3f[11] = 0;
1836         loadingscreenpic_vertex3f[0] = loadingscreenpic_vertex3f[9] = x;
1837         loadingscreenpic_vertex3f[1] = loadingscreenpic_vertex3f[4] = y;
1838         loadingscreenpic_vertex3f[3] = loadingscreenpic_vertex3f[6] = x + loadingscreenpic->width;
1839         loadingscreenpic_vertex3f[7] = loadingscreenpic_vertex3f[10] = y + loadingscreenpic->height;
1840         loadingscreenpic_texcoord2f[0] = 0;loadingscreenpic_texcoord2f[1] = 0;
1841         loadingscreenpic_texcoord2f[2] = 1;loadingscreenpic_texcoord2f[3] = 0;
1842         loadingscreenpic_texcoord2f[4] = 1;loadingscreenpic_texcoord2f[5] = 1;
1843         loadingscreenpic_texcoord2f[6] = 0;loadingscreenpic_texcoord2f[7] = 1;
1844 }
1845
1846 static void SCR_DrawLoadingScreen (qboolean clear)
1847 {
1848         // we only need to draw the image if it isn't already there
1849         GL_Color(1,1,1,1);
1850         GL_BlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
1851         GL_DepthRange(0, 1);
1852         GL_PolygonOffset(0, 0);
1853         GL_DepthTest(false);
1854         R_SetupGenericShader(true);
1855         R_Mesh_ColorPointer(NULL, 0, 0);
1856         if(loadingscreentexture)
1857         {
1858                 R_Mesh_VertexPointer(loadingscreentexture_vertex3f, 0, 0);
1859                 R_Mesh_ResetTextureState();
1860                 R_Mesh_TexBind(0, R_GetTexture(loadingscreentexture));
1861                 R_Mesh_TexCoordPointer(0, 2, loadingscreentexture_texcoord2f, 0, 0);
1862                 R_Mesh_Draw(0, 4, 0, 2, NULL, polygonelements, 0, 0);
1863         }
1864         R_Mesh_VertexPointer(loadingscreenpic_vertex3f, 0, 0);
1865         R_Mesh_ResetTextureState();
1866         R_Mesh_TexBind(0, R_GetTexture(loadingscreenpic->tex));
1867         R_Mesh_TexCoordPointer(0, 2, loadingscreenpic_texcoord2f, 0, 0);
1868         R_Mesh_Draw(0, 4, 0, 2, NULL, polygonelements, 0, 0);
1869         SCR_DrawLoadingStack();
1870 }
1871
1872 static void SCR_DrawLoadingScreen_SharedFinish (qboolean clear)
1873 {
1874         R_Mesh_Finish();
1875         // refresh
1876         VID_Finish();
1877         // however this IS necessary on Windows Vista
1878         qglFinish();
1879 }
1880
1881 void SCR_UpdateLoadingScreen (qboolean clear)
1882 {
1883         keydest_t       old_key_dest;
1884         int                     old_key_consoleactive;
1885
1886         // don't do anything if not initialized yet
1887         if (vid_hidden || !scr_refresh.integer || cls.state == ca_dedicated)
1888                 return;
1889         
1890         if(loadingscreentime == realtime)
1891                 clear |= loadingscreencleared;
1892
1893         if(clear)
1894                 SCR_ClearLoadingScreenTexture();
1895         else if(loadingscreentime != realtime)
1896                 SCR_SetLoadingScreenTexture();
1897
1898         if(loadingscreentime != realtime)
1899         {
1900                 loadingscreentime = realtime;
1901                 loadingscreenheight = 0;
1902         }
1903         loadingscreencleared = clear;
1904
1905         SCR_DrawLoadingScreen_SharedSetup(clear);
1906         if (vid.stereobuffer)
1907         {
1908                 qglDrawBuffer(GL_BACK_LEFT);
1909                 SCR_DrawLoadingScreen(clear);
1910                 qglDrawBuffer(GL_BACK_RIGHT);
1911                 SCR_DrawLoadingScreen(clear);
1912         }
1913         else
1914         {
1915                 qglDrawBuffer(GL_BACK);
1916                 SCR_DrawLoadingScreen(clear);
1917         }
1918         SCR_DrawLoadingScreen_SharedFinish(clear);
1919
1920         // this goes into the event loop, and should prevent unresponsive cursor on vista
1921         old_key_dest = key_dest;
1922         old_key_consoleactive = key_consoleactive;
1923         key_dest = key_void;
1924         key_consoleactive = false;
1925         Sys_SendKeyEvents();
1926         key_dest = old_key_dest;
1927         key_consoleactive = old_key_consoleactive;
1928 }
1929
1930 extern cvar_t cl_minfps;
1931 extern cvar_t cl_minfps_fade;
1932 extern cvar_t cl_minfps_qualitymax;
1933 extern cvar_t cl_minfps_qualitymin;
1934 extern cvar_t cl_minfps_qualitypower;
1935 extern cvar_t cl_minfps_qualityscale;
1936 static double cl_updatescreen_rendertime = 0;
1937 static double cl_updatescreen_quality = 1;
1938 void CL_UpdateScreen(void)
1939 {
1940         double rendertime1;
1941         float conwidth, conheight;
1942
1943         if (!scr_initialized || !con_initialized)
1944                 return;                         // not initialized yet
1945
1946         if(gamemode == GAME_NEXUIZ)
1947         {
1948                 // play a bit with the palette (experimental)
1949                 palette_rgb_pantscolormap[15][0] = (unsigned char) (128 + 127 * sin(cl.time / exp(1) + 0*M_PI/3));
1950                 palette_rgb_pantscolormap[15][1] = (unsigned char) (128 + 127 * sin(cl.time / exp(1) + 2*M_PI/3));
1951                 palette_rgb_pantscolormap[15][2] = (unsigned char) (128 + 127 * sin(cl.time / exp(1) + 4*M_PI/3));
1952                 palette_rgb_shirtcolormap[15][0] = (unsigned char) (128 + 127 * sin(cl.time /  M_PI  + 5*M_PI/3));
1953                 palette_rgb_shirtcolormap[15][1] = (unsigned char) (128 + 127 * sin(cl.time /  M_PI  + 3*M_PI/3));
1954                 palette_rgb_shirtcolormap[15][2] = (unsigned char) (128 + 127 * sin(cl.time /  M_PI  + 1*M_PI/3));
1955                 memcpy(palette_rgb_pantsscoreboard[15], palette_rgb_pantscolormap[15], sizeof(*palette_rgb_pantscolormap));
1956                 memcpy(palette_rgb_shirtscoreboard[15], palette_rgb_shirtcolormap[15], sizeof(*palette_rgb_shirtcolormap));
1957         }
1958
1959         if (vid_hidden || !scr_refresh.integer)
1960                 return;
1961
1962         rendertime1 = Sys_DoubleTime();
1963
1964         conwidth = bound(320, vid_conwidth.value, 2048);
1965         conheight = bound(200, vid_conheight.value, 1536);
1966         if (vid_conwidth.value != conwidth)
1967                 Cvar_SetValue("vid_conwidth", conwidth);
1968         if (vid_conheight.value != conheight)
1969                 Cvar_SetValue("vid_conheight", conheight);
1970
1971         // bound viewsize
1972         if (scr_viewsize.value < 30)
1973                 Cvar_Set ("viewsize","30");
1974         if (scr_viewsize.value > 120)
1975                 Cvar_Set ("viewsize","120");
1976
1977         // bound field of view
1978         if (scr_fov.value < 1)
1979                 Cvar_Set ("fov","1");
1980         if (scr_fov.value > 170)
1981                 Cvar_Set ("fov","170");
1982
1983         // validate r_textureunits cvar
1984         if (r_textureunits.integer > gl_textureunits)
1985                 Cvar_SetValueQuick(&r_textureunits, gl_textureunits);
1986         if (r_textureunits.integer < 1)
1987                 Cvar_SetValueQuick(&r_textureunits, 1);
1988
1989         // validate gl_combine cvar
1990         if (gl_combine.integer && !gl_combine_extension)
1991                 Cvar_SetValueQuick(&gl_combine, 0);
1992
1993         // intermission is always full screen
1994         if (cl.intermission)
1995                 sb_lines = 0;
1996         else
1997         {
1998                 if (scr_viewsize.value >= 120)
1999                         sb_lines = 0;           // no status bar at all
2000                 else if (scr_viewsize.value >= 110)
2001                         sb_lines = 24;          // no inventory
2002                 else
2003                         sb_lines = 24+16+8;
2004         }
2005
2006         r_refdef.view.colormask[0] = 1;
2007         r_refdef.view.colormask[1] = 1;
2008         r_refdef.view.colormask[2] = 1;
2009
2010         SCR_SetUpToDrawConsole();
2011
2012         CHECKGLERROR
2013         qglDrawBuffer(GL_BACK);CHECKGLERROR
2014         qglViewport(0, 0, vid.width, vid.height);CHECKGLERROR
2015         qglDisable(GL_SCISSOR_TEST);CHECKGLERROR
2016         qglDepthMask(1);CHECKGLERROR
2017         qglColorMask(1,1,1,1);CHECKGLERROR
2018         qglClearColor(0,0,0,0);CHECKGLERROR
2019         R_ClearScreen(false);
2020         r_refdef.view.clear = false;
2021         r_refdef.view.isoverlay = false;
2022         r_refdef.view.quality = bound(cl_minfps_qualitymin.value, pow(cl_updatescreen_quality, cl_minfps_qualitypower.value) * cl_minfps_qualityscale.value, cl_minfps_qualitymax.value);
2023
2024         if(scr_stipple.integer)
2025         {
2026                 GLubyte stipple[128];
2027                 int i, s, width, parts;
2028                 static int frame = 0;
2029                 ++frame;
2030
2031                 s = scr_stipple.integer;
2032                 parts = (s & 007);
2033                 width = (s & 070) >> 3;
2034
2035                 qglEnable(GL_POLYGON_STIPPLE); // 0x0B42
2036                 for(i = 0; i < 128; ++i)
2037                 {
2038                         int line = i/4;
2039                         stipple[i] = (((line >> width) + frame) & ((1 << parts) - 1)) ? 0x00 : 0xFF;
2040                 }
2041                 qglPolygonStipple(stipple);
2042         }
2043         else
2044                 qglDisable(GL_POLYGON_STIPPLE);
2045
2046         if (vid.stereobuffer || r_stereo_redblue.integer || r_stereo_redgreen.integer || r_stereo_redcyan.integer || r_stereo_sidebyside.integer)
2047         {
2048                 matrix4x4_t originalmatrix = r_refdef.view.matrix;
2049                 matrix4x4_t offsetmatrix;
2050                 Matrix4x4_CreateFromQuakeEntity(&offsetmatrix, 0, r_stereo_separation.value * 0.5f, 0, 0, r_stereo_angle.value * 0.5f, 0, 1);
2051                 Matrix4x4_Concat(&r_refdef.view.matrix, &originalmatrix, &offsetmatrix);
2052
2053                 if (r_stereo_sidebyside.integer)
2054                         r_stereo_side = 0;
2055
2056                 if (r_stereo_redblue.integer || r_stereo_redgreen.integer || r_stereo_redcyan.integer)
2057                 {
2058                         r_refdef.view.colormask[0] = 1;
2059                         r_refdef.view.colormask[1] = 0;
2060                         r_refdef.view.colormask[2] = 0;
2061                 }
2062
2063                 if (vid.stereobuffer)
2064                         qglDrawBuffer(GL_BACK_RIGHT);
2065
2066                 SCR_DrawScreen();
2067
2068                 Matrix4x4_CreateFromQuakeEntity(&offsetmatrix, 0, r_stereo_separation.value * -0.5f, 0, 0, r_stereo_angle.value * -0.5f, 0, 1);
2069                 Matrix4x4_Concat(&r_refdef.view.matrix, &originalmatrix, &offsetmatrix);
2070
2071                 if (r_stereo_sidebyside.integer)
2072                         r_stereo_side = 1;
2073
2074                 if (r_stereo_redblue.integer || r_stereo_redgreen.integer || r_stereo_redcyan.integer)
2075                 {
2076                         r_refdef.view.colormask[0] = 0;
2077                         r_refdef.view.colormask[1] = r_stereo_redcyan.integer || r_stereo_redgreen.integer;
2078                         r_refdef.view.colormask[2] = r_stereo_redcyan.integer || r_stereo_redblue.integer;
2079                 }
2080
2081                 if (vid.stereobuffer)
2082                         qglDrawBuffer(GL_BACK_LEFT);
2083
2084                 SCR_DrawScreen();
2085
2086                 r_refdef.view.matrix = originalmatrix;
2087         }
2088         else
2089                 SCR_DrawScreen();
2090
2091         SCR_CaptureVideo();
2092
2093         // quality adjustment according to render time
2094         qglFlush();
2095         cl_updatescreen_rendertime += ((Sys_DoubleTime() - rendertime1) - cl_updatescreen_rendertime) * bound(0, cl_minfps_fade.value, 1);
2096         if (cl_minfps.value > 0 && cl_updatescreen_rendertime > 0 && !cls.timedemo && (!cls.capturevideo.active || !cls.capturevideo.realtime))
2097                 cl_updatescreen_quality = 1 / (cl_updatescreen_rendertime * cl_minfps.value);
2098         else
2099                 cl_updatescreen_quality = 1;
2100
2101         if (!vid_activewindow)
2102                 VID_SetMouse(false, false, false);
2103         else if (key_consoleactive)
2104                 VID_SetMouse(vid.fullscreen, false, false);
2105         else if (key_dest == key_menu_grabbed)
2106                 VID_SetMouse(true, vid_mouse.integer && !in_client_mouse, true);
2107         else if (key_dest == key_menu)
2108                 VID_SetMouse(vid.fullscreen, vid_mouse.integer && !in_client_mouse, true);
2109         else
2110                 VID_SetMouse(vid.fullscreen, vid_mouse.integer && !cl.csqc_wantsmousemove && (!cls.demoplayback || cl_demo_mousegrab.integer), true);
2111
2112         VID_Finish();
2113 }
2114
2115 void CL_Screen_NewMap(void)
2116 {
2117 }