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