]> icculus.org git repositories - divverent/darkplaces.git/blob - cl_screen.c
removed video capture formats other than AVI I420 as it is the only useful format...
[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"};       // 1 - 170
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 (not used)"};
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","8", "speed of intermission printing (episode end texts)"};
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_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"};
34 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)"};
35 cvar_t cl_capturevideo_number = {CVAR_SAVE, "cl_capturevideo_number", "1", "number to append to video filename, incremented each time a capture begins"};
36 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)"};
37 cvar_t r_stereo_separation = {0, "r_stereo_separation", "4", "separation of eyes in the world (try negative values too)"};
38 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)"};
39 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)"};
40 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"};
41 cvar_t r_stereo_redgreen = {0, "r_stereo_redgreen", "0", "red/green anaglyph stereo glasses (for those who don't mind yellow)"};
42 cvar_t scr_zoomwindow = {CVAR_SAVE, "scr_zoomwindow", "0", "displays a zoomed in overlay window"};
43 cvar_t scr_zoomwindow_viewsizex = {CVAR_SAVE, "scr_zoomwindow_viewsizex", "20", "horizontal viewsize of zoom window"};
44 cvar_t scr_zoomwindow_viewsizey = {CVAR_SAVE, "scr_zoomwindow_viewsizey", "20", "vertical viewsize of zoom window"};
45 cvar_t scr_zoomwindow_fov = {CVAR_SAVE, "scr_zoomwindow_fov", "20", "fov of zoom window"};
46
47
48 int jpeg_supported = false;
49
50 qboolean        scr_initialized;                // ready to draw
51
52 float           scr_con_current;
53
54 extern int      con_vislines;
55
56 static void SCR_ScreenShot_f (void);
57 static void R_Envmap_f (void);
58
59 // backend
60 void R_ClearScreen(void);
61
62 /*
63 ===============================================================================
64
65 CENTER PRINTING
66
67 ===============================================================================
68 */
69
70 char            scr_centerstring[MAX_INPUTLINE];
71 float           scr_centertime_start;   // for slow victory printing
72 float           scr_centertime_off;
73 int                     scr_center_lines;
74 int                     scr_erase_lines;
75 int                     scr_erase_center;
76
77 /*
78 ==============
79 SCR_CenterPrint
80
81 Called for important messages that should stay in the center of the screen
82 for a few moments
83 ==============
84 */
85 void SCR_CenterPrint(char *str)
86 {
87         strlcpy (scr_centerstring, str, sizeof (scr_centerstring));
88         scr_centertime_off = scr_centertime.value;
89         scr_centertime_start = cl.time;
90
91 // count the number of lines for centering
92         scr_center_lines = 1;
93         while (*str)
94         {
95                 if (*str == '\n')
96                         scr_center_lines++;
97                 str++;
98         }
99 }
100
101
102 void SCR_DrawCenterString (void)
103 {
104         char    *start;
105         int             l;
106         int             x, y;
107         int             remaining;
108         int             color;
109
110 // the finale prints the characters one at a time
111         if (cl.intermission)
112                 remaining = (int)(scr_printspeed.value * (cl.time - scr_centertime_start));
113         else
114                 remaining = 9999;
115
116         scr_erase_center = 0;
117         start = scr_centerstring;
118
119         if (remaining < 1)
120                 return;
121
122         if (scr_center_lines <= 4)
123                 y = (int)(vid_conheight.integer*0.35);
124         else
125                 y = 48;
126
127         color = -1;
128         do
129         {
130                 // scan the number of characters on the line, not counting color codes
131                 int chars = 0;
132                 for (l=0 ; l<vid_conwidth.integer/8 ; l++)
133                 {
134                         if (start[l] == '\n' || !start[l])
135                                 break;
136                         // color codes add no visible characters, so don't count them
137                         if (start[l] == STRING_COLOR_TAG && (start[l+1] >= '0' && start[l+1] <= '9'))
138                                 l++;
139                         else
140                                 chars++;
141                 }
142                 x = (vid_conwidth.integer - chars*8)/2;
143                 if (l > 0)
144                 {
145                         if (remaining < l)
146                                 l = remaining;
147                         DrawQ_ColoredString(x, y, start, l, 8, 8, 1, 1, 1, 1, 0, &color);
148                         remaining -= l;
149                         if (remaining <= 0)
150                                 return;
151                 }
152
153                 y += 8;
154
155                 while (*start && *start != '\n')
156                         start++;
157
158                 if (!*start)
159                         break;
160                 start++;                // 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         scr_centertime_off -= cl.realframetime;
170
171         // don't draw if this is a normal stats-screen intermission,
172         // only if it is not an intermission, or a finale intermission
173         if (cl.intermission == 1)
174                 return;
175         if (scr_centertime_off <= 0 && !cl.intermission)
176                 return;
177         if (key_dest != key_game)
178                 return;
179
180         SCR_DrawCenterString ();
181 }
182
183 /*
184 ==============
185 SCR_DrawTurtle
186 ==============
187 */
188 void SCR_DrawTurtle (void)
189 {
190         static int      count;
191
192         if (cls.state != ca_connected)
193                 return;
194
195         if (!scr_showturtle.integer)
196                 return;
197
198         if (cl.realframetime < 0.1)
199         {
200                 count = 0;
201                 return;
202         }
203
204         count++;
205         if (count < 3)
206                 return;
207
208         DrawQ_Pic (0, 0, Draw_CachePic("gfx/turtle", true), 0, 0, 1, 1, 1, 1, 0);
209 }
210
211 /*
212 ==============
213 SCR_DrawNet
214 ==============
215 */
216 void SCR_DrawNet (void)
217 {
218         if (cls.state != ca_connected)
219                 return;
220         if (realtime - cl.last_received_message < 0.3)
221                 return;
222         if (cls.demoplayback)
223                 return;
224
225         DrawQ_Pic (64, 0, Draw_CachePic("gfx/net", true), 0, 0, 1, 1, 1, 1, 0);
226 }
227
228 /*
229 ==============
230 DrawPause
231 ==============
232 */
233 void SCR_DrawPause (void)
234 {
235         cachepic_t      *pic;
236
237         if (cls.state != ca_connected)
238                 return;
239
240         if (!scr_showpause.integer)             // turn off for screenshots
241                 return;
242
243         if (!cl.paused)
244                 return;
245
246         pic = Draw_CachePic ("gfx/pause", true);
247         DrawQ_Pic ((vid_conwidth.integer - pic->width)/2, (vid_conheight.integer - pic->height)/2, pic, 0, 0, 1, 1, 1, 1, 0);
248 }
249
250 /*
251 ==============
252 SCR_DrawBrand
253 ==============
254 */
255 void SCR_DrawBrand (void)
256 {
257         cachepic_t      *pic;
258         float           x, y;
259
260         if (!scr_showbrand.value)
261                 return;
262
263         pic = Draw_CachePic ("gfx/brand", true);
264
265         switch ((int)scr_showbrand.value)
266         {
267         case 1: // bottom left
268                 x = 0;
269                 y = vid_conheight.integer - pic->height;
270                 break;
271         case 2: // bottom centre
272                 x = (vid_conwidth.integer - pic->width) / 2;
273                 y = vid_conheight.integer - pic->height;
274                 break;
275         case 3: // bottom right
276                 x = vid_conwidth.integer - pic->width;
277                 y = vid_conheight.integer - pic->height;
278                 break;
279         case 4: // centre right
280                 x = vid_conwidth.integer - pic->width;
281                 y = (vid_conheight.integer - pic->height) / 2;
282                 break;
283         case 5: // top right
284                 x = vid_conwidth.integer - pic->width;
285                 y = 0;
286                 break;
287         case 6: // top centre
288                 x = (vid_conwidth.integer - pic->width) / 2;
289                 y = 0;
290                 break;
291         case 7: // top left
292                 x = 0;
293                 y = 0;
294                 break;
295         case 8: // centre left
296                 x = 0;
297                 y = (vid_conheight.integer - pic->height) / 2;
298                 break;
299         default:
300                 return;
301         }
302
303         DrawQ_Pic (x, y, pic, 0, 0, 1, 1, 1, 1, 0);
304 }
305
306 /*
307 ==============
308 SCR_DrawQWDownload
309 ==============
310 */
311 static int SCR_DrawQWDownload(int offset)
312 {
313         int len;
314         float x, y;
315         float size = 8;
316         char temp[256];
317         if (!cls.qw_downloadname[0])
318                 return 0;
319         dpsnprintf(temp, sizeof(temp), "Downloading %s ...  %3i%%\n", cls.qw_downloadname, cls.qw_downloadpercent);
320         len = (int)strlen(temp);
321         x = (vid_conwidth.integer - len*size) / 2;
322         y = vid_conheight.integer - size - offset;
323         DrawQ_Pic(0, y, NULL, vid_conwidth.integer, size, 0, 0, 0, 0.5, 0);
324         DrawQ_String(x, y, temp, len, size, size, 1, 1, 1, 1, 0);
325         return 8;
326 }
327
328 /*
329 ==============
330 SCR_DrawCurlDownload
331 ==============
332 */
333 static int SCR_DrawCurlDownload(int offset)
334 {
335         int len;
336         int nDownloads;
337         int i;
338         float x, y;
339         float size = 8;
340         Curl_downloadinfo_t *downinfo;
341         char temp[256];
342         const char *addinfo;
343
344         downinfo = Curl_GetDownloadInfo(&nDownloads, &addinfo);
345         if(!downinfo)
346                 return 0;
347
348         y = vid_conheight.integer - size * nDownloads - offset;
349
350         if(addinfo)
351         {
352                 len = (int)strlen(addinfo);
353                 x = (vid_conwidth.integer - len*size) / 2;
354                 DrawQ_Pic(0, y - size, NULL, vid_conwidth.integer, size, 1, 1, 1, 0.8, 0);
355                 DrawQ_String(x, y - size, addinfo, len, size, size, 0, 0, 0, 1, 0);
356         }
357
358         for(i = 0; i != nDownloads; ++i)
359         {
360                 if(downinfo[i].queued)
361                         dpsnprintf(temp, sizeof(temp), "Still in queue: %s\n", downinfo[i].filename);
362                 else if(downinfo[i].progress <= 0)
363                         dpsnprintf(temp, sizeof(temp), "Downloading %s ...  ???.?%% @ %.1f KiB/s\n", downinfo[i].filename, downinfo[i].speed / 1024.0);
364                 else
365                         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);
366                 len = (int)strlen(temp);
367                 x = (vid_conwidth.integer - len*size) / 2;
368                 DrawQ_Pic(0, y + i * size, NULL, vid_conwidth.integer, size, 0, 0, 0, 0.8, 0);
369                 DrawQ_String(x, y + i * size, temp, len, size, size, 1, 1, 1, 1, 0);
370         }
371
372         Z_Free(downinfo);
373
374         return 8 * (nDownloads + (addinfo ? 1 : 0));
375 }
376
377 /*
378 ==============
379 SCR_DrawDownload
380 ==============
381 */
382 static void SCR_DrawDownload()
383 {
384         int offset = 0;
385         offset += SCR_DrawQWDownload(offset);
386         offset += SCR_DrawCurlDownload(offset);
387 }
388
389 //=============================================================================
390
391 /*
392 ==================
393 SCR_SetUpToDrawConsole
394 ==================
395 */
396 void SCR_SetUpToDrawConsole (void)
397 {
398         // lines of console to display
399         float conlines;
400         static int framecounter = 0;
401
402         Con_CheckResize ();
403
404         if (scr_menuforcewhiledisconnected.integer && key_dest == key_game && cls.state == ca_disconnected)
405         {
406                 if (framecounter >= 2)
407                         MR_ToggleMenu_f();
408                 else
409                         framecounter++;
410         }
411         else
412                 framecounter = 0;
413
414         if (scr_conforcewhiledisconnected.integer && key_dest == key_game && cls.signon != SIGNONS)
415                 key_consoleactive |= KEY_CONSOLEACTIVE_FORCED;
416         else
417                 key_consoleactive &= ~KEY_CONSOLEACTIVE_FORCED;
418
419 // decide on the height of the console
420         if (key_consoleactive & KEY_CONSOLEACTIVE_USER)
421                 conlines = vid_conheight.integer/2;     // half screen
422         else
423                 conlines = 0;                           // none visible
424
425         scr_con_current = conlines;
426 }
427
428 /*
429 ==================
430 SCR_DrawConsole
431 ==================
432 */
433 void SCR_DrawConsole (void)
434 {
435         if (key_consoleactive & KEY_CONSOLEACTIVE_FORCED)
436         {
437                 // full screen
438                 Con_DrawConsole (vid_conheight.integer);
439         }
440         else if (scr_con_current)
441                 Con_DrawConsole ((int)scr_con_current);
442         else
443         {
444                 con_vislines = 0;
445                 if ((key_dest == key_game || key_dest == key_message) && !r_letterbox.value)
446                         Con_DrawNotify ();      // only draw notify in game
447         }
448 }
449
450 /*
451 ===============
452 SCR_BeginLoadingPlaque
453
454 ================
455 */
456 void SCR_BeginLoadingPlaque (void)
457 {
458         // save console log up to this point to log_file if it was set by configs
459         Log_Start();
460
461         Host_StartVideo();
462         S_StopAllSounds();
463         SCR_UpdateLoadingScreen();
464 }
465
466 //=============================================================================
467
468 char r_speeds_string[1024];
469 int speedstringcount, r_timereport_active;
470 double r_timereport_temp = 0, r_timereport_current = 0, r_timereport_start = 0;
471
472 void R_TimeReport(char *desc)
473 {
474         char tempbuf[256];
475         int length;
476         int t;
477
478         if (r_speeds.integer < 2 || !r_timereport_active)
479                 return;
480
481         CHECKGLERROR
482         qglFinish();CHECKGLERROR
483         r_timereport_temp = r_timereport_current;
484         r_timereport_current = Sys_DoubleTime();
485         t = (int) ((r_timereport_current - r_timereport_temp) * 1000000.0 + 0.5);
486
487         dpsnprintf(tempbuf, sizeof(tempbuf), "%8i %-11s", t, desc);
488         length = (int)strlen(tempbuf);
489         if (speedstringcount + length > (vid_conwidth.integer / 8))
490         {
491                 strlcat(r_speeds_string, "\n", sizeof(r_speeds_string));
492                 speedstringcount = 0;
493         }
494         strlcat(r_speeds_string, tempbuf, sizeof(r_speeds_string));
495         speedstringcount += length;
496 }
497
498 void R_TimeReport_Frame(void)
499 {
500         int i, j, lines, y;
501
502         if (r_speeds_string[0])
503         {
504                 if (r_timereport_active)
505                 {
506                         r_timereport_current = r_timereport_start;
507                         R_TimeReport("total");
508                 }
509
510                 if (r_speeds_string[strlen(r_speeds_string)-1] == '\n')
511                         r_speeds_string[strlen(r_speeds_string)-1] = 0;
512                 lines = 1;
513                 for (i = 0;r_speeds_string[i];i++)
514                         if (r_speeds_string[i] == '\n')
515                                 lines++;
516                 y = vid_conheight.integer - sb_lines - lines * 8;
517                 i = j = 0;
518                 DrawQ_Pic(0, y, NULL, vid_conwidth.integer, lines * 8, 0, 0, 0, 0.5, 0);
519                 while (r_speeds_string[i])
520                 {
521                         j = i;
522                         while (r_speeds_string[i] && r_speeds_string[i] != '\n')
523                                 i++;
524                         if (i - j > 0)
525                                 DrawQ_String(0, y, r_speeds_string + j, i - j, 8, 8, 1, 1, 1, 1, 0);
526                         if (r_speeds_string[i] == '\n')
527                                 i++;
528                         y += 8;
529                 }
530                 r_speeds_string[0] = 0;
531                 r_timereport_active = false;
532         }
533         if (r_speeds.integer && cls.signon == SIGNONS && cls.state == ca_connected)
534         {
535                 speedstringcount = 0;
536                 r_speeds_string[0] = 0;
537                 r_timereport_active = false;
538                 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]);
539                 sprintf(r_speeds_string + strlen(r_speeds_string), "%5i entities%6i surfaces%6i triangles%5i leafs%5i portals%6i particles\n", r_refdef.stats.entities, r_refdef.stats.entities_surfaces, r_refdef.stats.entities_triangles, r_refdef.stats.world_leafs, r_refdef.stats.world_portals, r_refdef.stats.particles);
540                 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);
541                 if (r_refdef.stats.bloom)
542                         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);
543                 else
544                         sprintf(r_speeds_string + strlen(r_speeds_string), "rendered%6i meshes%8i triangles\n", r_refdef.stats.meshes, r_refdef.stats.meshes_elements / 3);
545
546                 memset(&r_refdef.stats, 0, sizeof(r_refdef.stats));
547
548                 if (r_speeds.integer >= 2)
549                 {
550                         r_timereport_active = true;
551                         r_timereport_start = r_timereport_current = Sys_DoubleTime();
552                 }
553         }
554 }
555
556 /*
557 =================
558 SCR_SizeUp_f
559
560 Keybinding command
561 =================
562 */
563 void SCR_SizeUp_f (void)
564 {
565         Cvar_SetValue ("viewsize",scr_viewsize.value+10);
566 }
567
568
569 /*
570 =================
571 SCR_SizeDown_f
572
573 Keybinding command
574 =================
575 */
576 void SCR_SizeDown_f (void)
577 {
578         Cvar_SetValue ("viewsize",scr_viewsize.value-10);
579 }
580
581 void CL_Screen_Init(void)
582 {
583         Cvar_RegisterVariable (&scr_fov);
584         Cvar_RegisterVariable (&scr_viewsize);
585         Cvar_RegisterVariable (&scr_conalpha);
586         Cvar_RegisterVariable (&scr_conbrightness);
587         Cvar_RegisterVariable (&scr_conforcewhiledisconnected);
588         Cvar_RegisterVariable (&scr_menuforcewhiledisconnected);
589         Cvar_RegisterVariable (&scr_showram);
590         Cvar_RegisterVariable (&scr_showturtle);
591         Cvar_RegisterVariable (&scr_showpause);
592         Cvar_RegisterVariable (&scr_showbrand);
593         Cvar_RegisterVariable (&scr_centertime);
594         Cvar_RegisterVariable (&scr_printspeed);
595         Cvar_RegisterVariable (&vid_conwidth);
596         Cvar_RegisterVariable (&vid_conheight);
597         Cvar_RegisterVariable (&vid_pixelheight);
598         Cvar_RegisterVariable (&scr_screenshot_jpeg);
599         Cvar_RegisterVariable (&scr_screenshot_jpeg_quality);
600         Cvar_RegisterVariable (&scr_screenshot_gammaboost);
601         Cvar_RegisterVariable (&cl_capturevideo);
602         Cvar_RegisterVariable (&cl_capturevideo_realtime);
603         Cvar_RegisterVariable (&cl_capturevideo_fps);
604         Cvar_RegisterVariable (&cl_capturevideo_number);
605         Cvar_RegisterVariable (&r_letterbox);
606         Cvar_RegisterVariable(&r_stereo_separation);
607         Cvar_RegisterVariable(&r_stereo_sidebyside);
608         Cvar_RegisterVariable(&r_stereo_redblue);
609         Cvar_RegisterVariable(&r_stereo_redcyan);
610         Cvar_RegisterVariable(&r_stereo_redgreen);
611         Cvar_RegisterVariable(&scr_zoomwindow);
612         Cvar_RegisterVariable(&scr_zoomwindow_viewsizex);
613         Cvar_RegisterVariable(&scr_zoomwindow_viewsizey);
614         Cvar_RegisterVariable(&scr_zoomwindow_fov);
615
616         Cmd_AddCommand ("sizeup",SCR_SizeUp_f, "increase view size (increases viewsize cvar)");
617         Cmd_AddCommand ("sizedown",SCR_SizeDown_f, "decrease view size (decreases viewsize cvar)");
618         Cmd_AddCommand ("screenshot",SCR_ScreenShot_f, "takes a screenshot of the next rendered frame");
619         Cmd_AddCommand ("envmap", R_Envmap_f, "render a cubemap (skybox) of the current scene");
620
621         scr_initialized = true;
622 }
623
624 /*
625 ==================
626 SCR_ScreenShot_f
627 ==================
628 */
629 void SCR_ScreenShot_f (void)
630 {
631         static int shotnumber;
632         static char oldname[MAX_QPATH];
633         char base[MAX_QPATH];
634         char filename[MAX_QPATH];
635         unsigned char *buffer1;
636         unsigned char *buffer2;
637         unsigned char *buffer3;
638         qboolean jpeg = (scr_screenshot_jpeg.integer != 0);
639
640         sprintf (base, "screenshots/%s", scr_screenshot_name.string);
641
642         if (strcmp (oldname, scr_screenshot_name.string))
643         {
644                 sprintf(oldname, "%s", scr_screenshot_name.string);
645                 shotnumber = 0;
646         }
647
648         // find a file name to save it to
649         for (;shotnumber < 1000000;shotnumber++)
650                 if (!FS_SysFileExists(va("%s/%s%06d.tga", fs_gamedir, base, shotnumber)) && !FS_SysFileExists(va("%s/%s%06d.jpg", fs_gamedir, base, shotnumber)))
651                         break;
652         if (shotnumber >= 1000000)
653         {
654                 Con_Print("SCR_ScreenShot_f: Couldn't create the image file\n");
655                 return;
656         }
657
658         sprintf(filename, "%s%06d.%s", base, shotnumber, jpeg ? "jpg" : "tga");
659
660         buffer1 = (unsigned char *)Mem_Alloc(tempmempool, vid.width * vid.height * 3);
661         buffer2 = (unsigned char *)Mem_Alloc(tempmempool, vid.width * vid.height * 3);
662         buffer3 = (unsigned char *)Mem_Alloc(tempmempool, vid.width * vid.height * 3 + 18);
663
664         if (SCR_ScreenShot (filename, buffer1, buffer2, buffer3, 0, 0, vid.width, vid.height, false, false, false, jpeg, true))
665                 Con_Printf("Wrote %s\n", filename);
666         else
667                 Con_Printf("unable to write %s\n", filename);
668
669         Mem_Free (buffer1);
670         Mem_Free (buffer2);
671         Mem_Free (buffer3);
672
673         shotnumber++;
674 }
675
676 static void SCR_CaptureVideo_RIFF_Start(void)
677 {
678         memset(&cls.capturevideo.riffbuffer, 0, sizeof(sizebuf_t));
679         cls.capturevideo.riffbuffer.maxsize = sizeof(cls.capturevideo.riffbufferdata);
680         cls.capturevideo.riffbuffer.data = cls.capturevideo.riffbufferdata;
681 }
682
683 static void SCR_CaptureVideo_RIFF_Flush(void)
684 {
685         if (cls.capturevideo.riffbuffer.cursize > 0)
686         {
687                 if (!FS_Write(cls.capturevideo.videofile, cls.capturevideo.riffbuffer.data, cls.capturevideo.riffbuffer.cursize))
688                         cls.capturevideo.error = true;
689                 cls.capturevideo.riffbuffer.cursize = 0;
690                 cls.capturevideo.riffbuffer.overflowed = false;
691         }
692 }
693
694 static void SCR_CaptureVideo_RIFF_WriteBytes(const unsigned char *data, size_t size)
695 {
696         SCR_CaptureVideo_RIFF_Flush();
697         if (!FS_Write(cls.capturevideo.videofile, data, size))
698                 cls.capturevideo.error = true;
699 }
700
701 static void SCR_CaptureVideo_RIFF_Write32(int n)
702 {
703         if (cls.capturevideo.riffbuffer.cursize + 4 > cls.capturevideo.riffbuffer.maxsize)
704                 SCR_CaptureVideo_RIFF_Flush();
705         MSG_WriteLong(&cls.capturevideo.riffbuffer, n);
706 }
707
708 static void SCR_CaptureVideo_RIFF_Write16(int n)
709 {
710         if (cls.capturevideo.riffbuffer.cursize + 2 > cls.capturevideo.riffbuffer.maxsize)
711                 SCR_CaptureVideo_RIFF_Flush();
712         MSG_WriteShort(&cls.capturevideo.riffbuffer, n);
713 }
714
715 static void SCR_CaptureVideo_RIFF_WriteFourCC(const char *chunkfourcc)
716 {
717         if (cls.capturevideo.riffbuffer.cursize + (int)strlen(chunkfourcc) > cls.capturevideo.riffbuffer.maxsize)
718                 SCR_CaptureVideo_RIFF_Flush();
719         MSG_WriteUnterminatedString(&cls.capturevideo.riffbuffer, chunkfourcc);
720 }
721
722 static void SCR_CaptureVideo_RIFF_WriteTerminatedString(const char *string)
723 {
724         if (cls.capturevideo.riffbuffer.cursize + (int)strlen(string) > cls.capturevideo.riffbuffer.maxsize)
725                 SCR_CaptureVideo_RIFF_Flush();
726         MSG_WriteString(&cls.capturevideo.riffbuffer, string);
727 }
728
729 static fs_offset_t SCR_CaptureVideo_RIFF_GetPosition(void)
730 {
731         SCR_CaptureVideo_RIFF_Flush();
732         return FS_Tell(cls.capturevideo.videofile);
733 }
734
735 static void SCR_CaptureVideo_RIFF_Push(const char *chunkfourcc, const char *listtypefourcc)
736 {
737         SCR_CaptureVideo_RIFF_WriteFourCC(chunkfourcc);
738         SCR_CaptureVideo_RIFF_Write32(0);
739         SCR_CaptureVideo_RIFF_Flush();
740         cls.capturevideo.riffstackstartoffset[cls.capturevideo.riffstacklevel++] = SCR_CaptureVideo_RIFF_GetPosition();
741         if (listtypefourcc)
742                 SCR_CaptureVideo_RIFF_WriteFourCC(listtypefourcc);
743 }
744
745 static void SCR_CaptureVideo_RIFF_Pop(void)
746 {
747         fs_offset_t offset;
748         int x;
749         unsigned char sizebytes[4];
750         // write out the chunk size and then return to the current file position
751         cls.capturevideo.riffstacklevel--;
752         offset = SCR_CaptureVideo_RIFF_GetPosition();
753         x = (int)(offset - (cls.capturevideo.riffstackstartoffset[cls.capturevideo.riffstacklevel]));
754         sizebytes[0] = (x) & 0xff;sizebytes[1] = (x >> 8) & 0xff;sizebytes[2] = (x >> 16) & 0xff;sizebytes[3] = (x >> 24) & 0xff;
755         FS_Seek(cls.capturevideo.videofile, -(x + 4), SEEK_END);
756         FS_Write(cls.capturevideo.videofile, sizebytes, 4);
757         FS_Seek(cls.capturevideo.videofile, 0, SEEK_END);
758         if (offset & 1)
759         {
760                 unsigned char c = 0;
761                 FS_Write(cls.capturevideo.videofile, &c, 1);
762         }
763 }
764
765 static void SCR_CaptureVideo_RIFF_IndexEntry(const char *chunkfourcc, int chunksize, int flags)
766 {
767         if (cls.capturevideo.riffstacklevel != 2)
768                 Sys_Error("SCR_Capturevideo_RIFF_IndexEntry: RIFF stack level is %i (should be 2)\n", cls.capturevideo.riffstacklevel);
769         if (cls.capturevideo.riffindexbuffer.cursize + 16 > cls.capturevideo.riffindexbuffer.maxsize)
770         {
771                 int oldsize = cls.capturevideo.riffindexbuffer.maxsize;
772                 unsigned char *olddata;
773                 olddata = cls.capturevideo.riffindexbuffer.data;
774                 cls.capturevideo.riffindexbuffer.maxsize = max(cls.capturevideo.riffindexbuffer.maxsize * 2, 4096);
775                 cls.capturevideo.riffindexbuffer.data = Mem_Alloc(tempmempool, cls.capturevideo.riffindexbuffer.maxsize);
776                 if (olddata)
777                 {
778                         memcpy(cls.capturevideo.riffindexbuffer.data, olddata, oldsize);
779                         Mem_Free(olddata);
780                 }
781         }
782         MSG_WriteUnterminatedString(&cls.capturevideo.riffindexbuffer, chunkfourcc);
783         MSG_WriteLong(&cls.capturevideo.riffindexbuffer, flags);
784         MSG_WriteLong(&cls.capturevideo.riffindexbuffer, (int)FS_Tell(cls.capturevideo.videofile) - cls.capturevideo.riffstackstartoffset[1]);
785         MSG_WriteLong(&cls.capturevideo.riffindexbuffer, chunksize);
786 }
787
788 static void SCR_CaptureVideo_RIFF_Finish(void)
789 {
790         // close the "movi" list
791         SCR_CaptureVideo_RIFF_Pop();
792         // write the idx1 chunk that we've been building while saving the frames
793         SCR_CaptureVideo_RIFF_Push("idx1", NULL);
794         SCR_CaptureVideo_RIFF_WriteBytes(cls.capturevideo.riffindexbuffer.data, cls.capturevideo.riffindexbuffer.cursize);
795         SCR_CaptureVideo_RIFF_Pop();
796         cls.capturevideo.riffindexbuffer.cursize = 0;
797         // pop the RIFF chunk itself
798         while (cls.capturevideo.riffstacklevel > 0)
799                 SCR_CaptureVideo_RIFF_Pop();
800         SCR_CaptureVideo_RIFF_Flush();
801 }
802
803 static void SCR_CaptureVideo_RIFF_OverflowCheck(int framesize)
804 {
805         fs_offset_t cursize;
806         if (cls.capturevideo.riffstacklevel != 2)
807                 Sys_Error("SCR_CaptureVideo_RIFF_OverflowCheck: chunk stack leakage!\n");
808         // check where we are in the file
809         SCR_CaptureVideo_RIFF_Flush();
810         cursize = SCR_CaptureVideo_RIFF_GetPosition() - cls.capturevideo.riffstackstartoffset[0];
811         // if this would overflow the windows limit of 1GB per RIFF chunk, we need
812         // to close the current RIFF chunk and open another for future frames
813         if (8 + cursize + framesize > 1<<30)
814         {
815                 SCR_CaptureVideo_RIFF_Finish();
816                 while (cls.capturevideo.riffstacklevel > 0)
817                         SCR_CaptureVideo_RIFF_Pop();
818                 // begin a new 1GB extended section of the AVI
819                 SCR_CaptureVideo_RIFF_Push("RIFF", "AVIX");
820                 SCR_CaptureVideo_RIFF_Push("LIST", "movi");
821         }
822 }
823
824 void SCR_CaptureVideo_BeginVideo(void)
825 {
826         double gamma, g;
827         int width = vid.width, height = vid.height, x;
828         unsigned int i;
829         unsigned char out[44];
830         if (cls.capturevideo.active)
831                 return;
832         memset(&cls.capturevideo, 0, sizeof(cls.capturevideo));
833         // soundrate is figured out on the first SoundFrame
834         cls.capturevideo.active = true;
835         cls.capturevideo.starttime = Sys_DoubleTime();
836         cls.capturevideo.framerate = bound(1, cl_capturevideo_fps.value, 1000);
837         cls.capturevideo.soundrate = S_GetSoundRate();
838         cls.capturevideo.frame = 0;
839         cls.capturevideo.soundsampleframe = 0;
840         cls.capturevideo.realtime = cl_capturevideo_realtime.integer != 0;
841         cls.capturevideo.buffer = (unsigned char *)Mem_Alloc(tempmempool, vid.width * vid.height * (3+3+3) + 18);
842         gamma = 1.0/scr_screenshot_gammaboost.value;
843         dpsnprintf(cls.capturevideo.basename, sizeof(cls.capturevideo.basename), "video/dpvideo%03i", cl_capturevideo_number.integer);
844         Cvar_SetValueQuick(&cl_capturevideo_number, cl_capturevideo_number.integer + 1);
845
846         /*
847         for (i = 0;i < 256;i++)
848         {
849                 unsigned char j = (unsigned char)bound(0, 255*pow(i/255.0, gamma), 255);
850                 cls.capturevideo.rgbgammatable[0][i] = j;
851                 cls.capturevideo.rgbgammatable[1][i] = j;
852                 cls.capturevideo.rgbgammatable[2][i] = j;
853         }
854         */
855 /*
856 R = Y + 1.4075 * (Cr - 128);
857 G = Y + -0.3455 * (Cb - 128) + -0.7169 * (Cr - 128);
858 B = Y + 1.7790 * (Cb - 128);
859 Y = R *  .299 + G *  .587 + B *  .114;
860 Cb = R * -.169 + G * -.332 + B *  .500 + 128.;
861 Cr = R *  .500 + G * -.419 + B * -.0813 + 128.;
862 */
863         for (i = 0;i < 256;i++)
864         {
865                 g = 255*pow(i/255.0, gamma);
866                 // Y weights from RGB
867                 cls.capturevideo.rgbtoyuvscaletable[0][0][i] = (short)(g *  0.299);
868                 cls.capturevideo.rgbtoyuvscaletable[0][1][i] = (short)(g *  0.587);
869                 cls.capturevideo.rgbtoyuvscaletable[0][2][i] = (short)(g *  0.114);
870                 // Cb weights from RGB
871                 cls.capturevideo.rgbtoyuvscaletable[1][0][i] = (short)(g * -0.169);
872                 cls.capturevideo.rgbtoyuvscaletable[1][1][i] = (short)(g * -0.332);
873                 cls.capturevideo.rgbtoyuvscaletable[1][2][i] = (short)(g *  0.500);
874                 // Cr weights from RGB
875                 cls.capturevideo.rgbtoyuvscaletable[2][0][i] = (short)(g *  0.500);
876                 cls.capturevideo.rgbtoyuvscaletable[2][1][i] = (short)(g * -0.419);
877                 cls.capturevideo.rgbtoyuvscaletable[2][2][i] = (short)(g * -0.0813);
878                 // range reduction of YCbCr to valid signal range
879                 cls.capturevideo.yuvnormalizetable[0][i] = 16 + i * (236-16) / 256;
880                 cls.capturevideo.yuvnormalizetable[1][i] = 16 + i * (240-16) / 256;
881                 cls.capturevideo.yuvnormalizetable[2][i] = 16 + i * (240-16) / 256;
882         }
883
884         //if (cl_capturevideo_)
885         //{
886         //}
887         //else
888         {
889                 cls.capturevideo.format = CAPTUREVIDEOFORMAT_AVI_I420;
890                 cls.capturevideo.videofile = FS_Open (va("%s.avi", cls.capturevideo.basename), "wb", false, true);
891                 SCR_CaptureVideo_RIFF_Start();
892                 // 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)
893                 SCR_CaptureVideo_RIFF_Push("RIFF", "AVI ");
894                 // AVI main header
895                 SCR_CaptureVideo_RIFF_Push("LIST", "hdrl");
896                 SCR_CaptureVideo_RIFF_Push("avih", NULL);
897                 SCR_CaptureVideo_RIFF_Write32((int)(1000000.0 / cls.capturevideo.framerate)); // microseconds per frame
898                 SCR_CaptureVideo_RIFF_Write32(0); // max bytes per second
899                 SCR_CaptureVideo_RIFF_Write32(0); // padding granularity
900                 SCR_CaptureVideo_RIFF_Write32(0x910); // flags (AVIF_HASINDEX | AVIF_ISINTERLEAVED | AVIF_TRUSTCKTYPE)
901                 cls.capturevideo.videofile_totalframes_offset1 = SCR_CaptureVideo_RIFF_GetPosition();
902                 SCR_CaptureVideo_RIFF_Write32(0); // total frames
903                 SCR_CaptureVideo_RIFF_Write32(0); // initial frames
904                 if (cls.capturevideo.soundrate)
905                         SCR_CaptureVideo_RIFF_Write32(2); // number of streams
906                 else
907                         SCR_CaptureVideo_RIFF_Write32(1); // number of streams
908                 SCR_CaptureVideo_RIFF_Write32(0); // suggested buffer size
909                 SCR_CaptureVideo_RIFF_Write32(width); // width
910                 SCR_CaptureVideo_RIFF_Write32(height); // height
911                 SCR_CaptureVideo_RIFF_Write32(0); // reserved[0]
912                 SCR_CaptureVideo_RIFF_Write32(0); // reserved[1]
913                 SCR_CaptureVideo_RIFF_Write32(0); // reserved[2]
914                 SCR_CaptureVideo_RIFF_Write32(0); // reserved[3]
915                 SCR_CaptureVideo_RIFF_Pop();
916                 // video stream info
917                 SCR_CaptureVideo_RIFF_Push("LIST", "strl");
918                 SCR_CaptureVideo_RIFF_Push("strh", "vids");
919                 SCR_CaptureVideo_RIFF_WriteFourCC("I420"); // stream fourcc (I420 colorspace, uncompressed)
920                 SCR_CaptureVideo_RIFF_Write32(0); // flags
921                 SCR_CaptureVideo_RIFF_Write16(0); // priority
922                 SCR_CaptureVideo_RIFF_Write16(0); // language
923                 SCR_CaptureVideo_RIFF_Write32(0); // initial frames
924                 // find an ideal divisor for the framerate
925                 for (x = 1;x < 1000;x++)
926                         if (cls.capturevideo.framerate * x == floor(cls.capturevideo.framerate * x))
927                                 break;
928                 SCR_CaptureVideo_RIFF_Write32(x); // samples/second divisor
929                 SCR_CaptureVideo_RIFF_Write32((int)(cls.capturevideo.framerate * x)); // samples/second multiplied by divisor
930                 SCR_CaptureVideo_RIFF_Write32(0); // start
931                 cls.capturevideo.videofile_totalframes_offset2 = SCR_CaptureVideo_RIFF_GetPosition();
932                 SCR_CaptureVideo_RIFF_Write32(0); // length
933                 SCR_CaptureVideo_RIFF_Write32(width*height+(width/2)*(height/2)*2); // suggested buffer size
934                 SCR_CaptureVideo_RIFF_Write32(0); // quality
935                 SCR_CaptureVideo_RIFF_Write32(0); // sample size
936                 SCR_CaptureVideo_RIFF_Write16(0); // frame left
937                 SCR_CaptureVideo_RIFF_Write16(0); // frame top
938                 SCR_CaptureVideo_RIFF_Write16(width); // frame right
939                 SCR_CaptureVideo_RIFF_Write16(height); // frame bottom
940                 SCR_CaptureVideo_RIFF_Pop();
941                 // video stream format
942                 SCR_CaptureVideo_RIFF_Push("strf", NULL);
943                 SCR_CaptureVideo_RIFF_Write32(40); // BITMAPINFO struct size
944                 SCR_CaptureVideo_RIFF_Write32(width); // width
945                 SCR_CaptureVideo_RIFF_Write32(height); // height
946                 SCR_CaptureVideo_RIFF_Write16(3); // planes
947                 SCR_CaptureVideo_RIFF_Write16(12); // bitcount
948                 SCR_CaptureVideo_RIFF_WriteFourCC("I420"); // compression
949                 SCR_CaptureVideo_RIFF_Write32(width*height+(width/2)*(height/2)*2); // size of image
950                 SCR_CaptureVideo_RIFF_Write32(0); // x pixels per meter
951                 SCR_CaptureVideo_RIFF_Write32(0); // y pixels per meter
952                 SCR_CaptureVideo_RIFF_Write32(0); // color used
953                 SCR_CaptureVideo_RIFF_Write32(0); // color important
954                 SCR_CaptureVideo_RIFF_Pop();
955                 SCR_CaptureVideo_RIFF_Pop();
956                 if (cls.capturevideo.soundrate)
957                 {
958                         // audio stream info
959                         SCR_CaptureVideo_RIFF_Push("LIST", "strl");
960                         SCR_CaptureVideo_RIFF_Push("strh", "auds");
961                         SCR_CaptureVideo_RIFF_Write32(1); // stream fourcc (PCM audio, uncompressed)
962                         SCR_CaptureVideo_RIFF_Write32(0); // flags
963                         SCR_CaptureVideo_RIFF_Write16(0); // priority
964                         SCR_CaptureVideo_RIFF_Write16(0); // language
965                         SCR_CaptureVideo_RIFF_Write32(0); // initial frames
966                         SCR_CaptureVideo_RIFF_Write32(1); // samples/second divisor
967                         SCR_CaptureVideo_RIFF_Write32((int)(cls.capturevideo.soundrate)); // samples/second multiplied by divisor
968                         SCR_CaptureVideo_RIFF_Write32(0); // start
969                         cls.capturevideo.videofile_totalsampleframes_offset = SCR_CaptureVideo_RIFF_GetPosition();
970                         SCR_CaptureVideo_RIFF_Write32(0); // length
971                         SCR_CaptureVideo_RIFF_Write32(cls.capturevideo.soundrate * 2); // suggested buffer size (this is a half second)
972                         SCR_CaptureVideo_RIFF_Write32(0); // quality
973                         SCR_CaptureVideo_RIFF_Write32(4); // sample size
974                         SCR_CaptureVideo_RIFF_Write16(0); // frame left
975                         SCR_CaptureVideo_RIFF_Write16(0); // frame top
976                         SCR_CaptureVideo_RIFF_Write16(0); // frame right
977                         SCR_CaptureVideo_RIFF_Write16(0); // frame bottom
978                         SCR_CaptureVideo_RIFF_Pop();
979                         // audio stream format
980                         SCR_CaptureVideo_RIFF_Push("strf", NULL);
981                         SCR_CaptureVideo_RIFF_Write16(1); // format (uncompressed PCM?)
982                         SCR_CaptureVideo_RIFF_Write16(2); // channels (stereo)
983                         SCR_CaptureVideo_RIFF_Write32(cls.capturevideo.soundrate); // sampleframes per second
984                         SCR_CaptureVideo_RIFF_Write32(cls.capturevideo.soundrate * 4); // average bytes per second
985                         SCR_CaptureVideo_RIFF_Write16(4); // block align
986                         SCR_CaptureVideo_RIFF_Write16(16); // bits per sample
987                         SCR_CaptureVideo_RIFF_Write16(0); // size
988                         SCR_CaptureVideo_RIFF_Pop();
989                         SCR_CaptureVideo_RIFF_Pop();
990                 }
991                 // close the AVI header list
992                 SCR_CaptureVideo_RIFF_Pop();
993                 // software that produced this AVI video file
994                 SCR_CaptureVideo_RIFF_Push("LIST", "INFO");
995                 SCR_CaptureVideo_RIFF_Push("ISFT", NULL);
996                 SCR_CaptureVideo_RIFF_WriteTerminatedString(engineversion);
997                 SCR_CaptureVideo_RIFF_Pop();
998                 SCR_CaptureVideo_RIFF_Push("JUNK", NULL);
999                 x = 4096 - SCR_CaptureVideo_RIFF_GetPosition();
1000                 while (x > 0)
1001                 {
1002                         const char *junkfiller = "[ DarkPlaces junk data ]";
1003                         int i = min(x, (int)strlen(junkfiller));
1004                         SCR_CaptureVideo_RIFF_WriteBytes((const unsigned char *)junkfiller, i);
1005                         x -= i;
1006                 }
1007                 SCR_CaptureVideo_RIFF_Pop();
1008                 SCR_CaptureVideo_RIFF_Pop();
1009                 // begin the actual video section now
1010                 SCR_CaptureVideo_RIFF_Push("LIST", "movi");
1011                 // we're done with the headers now...
1012                 SCR_CaptureVideo_RIFF_Flush();
1013                 if (cls.capturevideo.riffstacklevel != 2)
1014                         Sys_Error("SCR_CaptureVideo_BeginVideo: broken AVI writing code (stack level is %i (should be 2) at end of headers)\n", cls.capturevideo.riffstacklevel);
1015         }
1016
1017         switch(cls.capturevideo.format)
1018         {
1019         case CAPTUREVIDEOFORMAT_AVI_I420:
1020                 break;
1021         default:
1022                 break;
1023         }
1024 }
1025
1026 void SCR_CaptureVideo_EndVideo(void)
1027 {
1028         int i, n;
1029         unsigned char out[44];
1030         if (!cls.capturevideo.active)
1031                 return;
1032         cls.capturevideo.active = false;
1033         if (cls.capturevideo.videofile)
1034         {
1035                 switch(cls.capturevideo.format)
1036                 {
1037                 case CAPTUREVIDEOFORMAT_AVI_I420:
1038                         // close any open chunks
1039                         SCR_CaptureVideo_RIFF_Finish();
1040                         // go back and fix the video frames and audio samples fields
1041                         FS_Seek(cls.capturevideo.videofile, cls.capturevideo.videofile_totalframes_offset1, SEEK_SET);
1042                         SCR_CaptureVideo_RIFF_Write32(cls.capturevideo.frame);
1043                         SCR_CaptureVideo_RIFF_Flush();
1044                         FS_Seek(cls.capturevideo.videofile, cls.capturevideo.videofile_totalframes_offset2, SEEK_SET);
1045                         SCR_CaptureVideo_RIFF_Write32(cls.capturevideo.frame);
1046                         SCR_CaptureVideo_RIFF_Flush();
1047                         if (cls.capturevideo.soundrate)
1048                         {
1049                                 FS_Seek(cls.capturevideo.videofile, cls.capturevideo.videofile_totalsampleframes_offset, SEEK_SET);
1050                                 SCR_CaptureVideo_RIFF_Write32(cls.capturevideo.soundsampleframe);
1051                                 SCR_CaptureVideo_RIFF_Flush();
1052                         }
1053                         break;
1054                 default:
1055                         break;
1056                 }
1057                 FS_Close(cls.capturevideo.videofile);
1058                 cls.capturevideo.videofile = NULL;
1059         }
1060
1061         if (cls.capturevideo.buffer)
1062         {
1063                 Mem_Free (cls.capturevideo.buffer);
1064                 cls.capturevideo.buffer = NULL;
1065         }
1066
1067         if (cls.capturevideo.riffindexbuffer.data)
1068         {
1069                 Mem_Free(cls.capturevideo.riffindexbuffer.data);
1070                 cls.capturevideo.riffindexbuffer.data = NULL;
1071         }
1072
1073         memset(&cls.capturevideo, 0, sizeof(cls.capturevideo));
1074 }
1075
1076 // converts from RGB24 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
1077 void SCR_CaptureVideo_ConvertFrame_RGB_to_I420_flip(int width, int height, unsigned char *instart, unsigned char *outstart)
1078 {
1079         int x, y;
1080         int outoffset = (width/2)*(height/2);
1081         unsigned char *b, *out;
1082         // process one line at a time, and CbCr every other line at 2 pixel intervals
1083         for (y = 0;y < height;y++)
1084         {
1085                 // 1x1 Y
1086                 for (b = instart + (height-1-y)*width*3, out = outstart + y*width, x = 0;x < width;x++, b += 3, out++)
1087                         *out = cls.capturevideo.yuvnormalizetable[0][cls.capturevideo.rgbtoyuvscaletable[0][0][b[0]] + cls.capturevideo.rgbtoyuvscaletable[0][1][b[1]] + cls.capturevideo.rgbtoyuvscaletable[0][2][b[2]]];
1088                 if ((y & 1) == 0)
1089                 {
1090                         // 2x2 Cr and Cb planes
1091 #if 0
1092                         // low quality, no averaging
1093                         for (b = instart + (height-2-y)*width*3, out = outstart + width*height + (y/2)*(width/2), x = 0;x < width/2;x++, b += 6, out++)
1094                         {
1095                                 // Cr
1096                                 out[0        ] = cls.capturevideo.yuvnormalizetable[1][cls.capturevideo.rgbtoyuvscaletable[1][0][b[0]] + cls.capturevideo.rgbtoyuvscaletable[1][1][b[1]] + cls.capturevideo.rgbtoyuvscaletable[1][2][b[2]] + 128];
1097                                 // Cb
1098                                 out[outoffset] = cls.capturevideo.yuvnormalizetable[2][cls.capturevideo.rgbtoyuvscaletable[2][0][b[0]] + cls.capturevideo.rgbtoyuvscaletable[2][1][b[1]] + cls.capturevideo.rgbtoyuvscaletable[2][2][b[2]] + 128];
1099                         }
1100 #else
1101                         // high quality, averaging
1102                         int inpitch = width*3;
1103                         for (b = instart + (height-2-y)*width*3, out = outstart + width*height + (y/2)*(width/2), x = 0;x < width/2;x++, b += 6, out++)
1104                         {
1105                                 int blockr, blockg, blockb;
1106                                 blockr = (b[0] + b[3] + b[inpitch+0] + b[inpitch+3]) >> 2;
1107                                 blockg = (b[1] + b[4] + b[inpitch+1] + b[inpitch+4]) >> 2;
1108                                 blockb = (b[2] + b[5] + b[inpitch+2] + b[inpitch+5]) >> 2;
1109                                 // Cr
1110                                 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];
1111                                 // Cb
1112                                 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];
1113                         }
1114 #endif
1115                 }
1116         }
1117 }
1118
1119 qboolean SCR_CaptureVideo_VideoFrame(int newframenum)
1120 {
1121         int x = 0, y = 0, width = vid.width, height = vid.height;
1122         unsigned char *in, *out;
1123         char filename[32];
1124         CHECKGLERROR
1125         //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);
1126         // speed is critical here, so do saving as directly as possible
1127         switch (cls.capturevideo.format)
1128         {
1129         case CAPTUREVIDEOFORMAT_AVI_I420:
1130                 // if there's no videofile we have to just give up, and abort saving
1131                 if (!cls.capturevideo.videofile)
1132                         return false;
1133                 // FIXME: width/height must be multiple of 2, enforce this?
1134                 qglReadPixels (x, y, width, height, GL_RGB, GL_UNSIGNED_BYTE, cls.capturevideo.buffer);CHECKGLERROR
1135                 in = cls.capturevideo.buffer;
1136                 out = cls.capturevideo.buffer + width*height*3;
1137                 SCR_CaptureVideo_ConvertFrame_RGB_to_I420_flip(width, height, in, out);
1138                 x = width*height+(width/2)*(height/2)*2;
1139                 SCR_CaptureVideo_RIFF_OverflowCheck(8 + x);
1140                 for (;cls.capturevideo.frame < newframenum;cls.capturevideo.frame++)
1141                 {
1142                         SCR_CaptureVideo_RIFF_IndexEntry("00dc", x, 0x10); // AVIIF_KEYFRAME
1143                         SCR_CaptureVideo_RIFF_Push("00dc", NULL);
1144                         SCR_CaptureVideo_RIFF_WriteBytes(out, x);
1145                         SCR_CaptureVideo_RIFF_Pop();
1146                 }
1147                 return true;
1148         default:
1149                 return false;
1150         }
1151 }
1152
1153 void SCR_CaptureVideo_SoundFrame(unsigned char *bufstereo16le, size_t length, int rate)
1154 {
1155         int x;
1156         cls.capturevideo.soundrate = rate;
1157         cls.capturevideo.soundsampleframe += length;
1158         switch (cls.capturevideo.format)
1159         {
1160         case CAPTUREVIDEOFORMAT_AVI_I420:
1161                 x = length*4;
1162                 SCR_CaptureVideo_RIFF_OverflowCheck(8 + x);
1163                 SCR_CaptureVideo_RIFF_IndexEntry("01wb", x, 0x10); // AVIIF_KEYFRAME
1164                 SCR_CaptureVideo_RIFF_Push("01wb", NULL);
1165                 SCR_CaptureVideo_RIFF_WriteBytes(bufstereo16le, x);
1166                 SCR_CaptureVideo_RIFF_Pop();
1167                 break;
1168         default:
1169                 break;
1170         }
1171 }
1172
1173 void SCR_CaptureVideo(void)
1174 {
1175         int newframenum;
1176         if (cl_capturevideo.integer && r_render.integer)
1177         {
1178                 if (!cls.capturevideo.active)
1179                         SCR_CaptureVideo_BeginVideo();
1180                 if (cls.capturevideo.framerate != cl_capturevideo_fps.value)
1181                 {
1182                         Con_Printf("You can not change the video framerate while recording a video.\n");
1183                         Cvar_SetValueQuick(&cl_capturevideo_fps, cls.capturevideo.framerate);
1184                 }
1185                 // for AVI saving we have to make sure that sound is saved before video
1186                 if (cls.capturevideo.soundrate && !cls.capturevideo.soundsampleframe)
1187                         return;
1188                 if (cls.capturevideo.realtime)
1189                 {
1190                         // preserve sound sync by duplicating frames when running slow
1191                         newframenum = (int)((Sys_DoubleTime() - cls.capturevideo.starttime) * cls.capturevideo.framerate);
1192                 }
1193                 else
1194                         newframenum = cls.capturevideo.frame + 1;
1195                 // if falling behind more than one second, stop
1196                 if (newframenum - cls.capturevideo.frame > (int)ceil(cls.capturevideo.framerate))
1197                 {
1198                         Cvar_SetValueQuick(&cl_capturevideo, 0);
1199                         Con_Printf("video saving failed on frame %i, your machine is too slow for this capture speed.\n", cls.capturevideo.frame);
1200                         SCR_CaptureVideo_EndVideo();
1201                         return;
1202                 }
1203                 // write frames
1204                 SCR_CaptureVideo_VideoFrame(newframenum);
1205                 if (cls.capturevideo.error)
1206                 {
1207                         Cvar_SetValueQuick(&cl_capturevideo, 0);
1208                         Con_Printf("video saving failed on frame %i, out of disk space? stopping video capture.\n", cls.capturevideo.frame);
1209                         SCR_CaptureVideo_EndVideo();
1210                 }
1211         }
1212         else if (cls.capturevideo.active)
1213                 SCR_CaptureVideo_EndVideo();
1214 }
1215
1216 /*
1217 ===============
1218 R_Envmap_f
1219
1220 Grab six views for environment mapping tests
1221 ===============
1222 */
1223 struct envmapinfo_s
1224 {
1225         float angles[3];
1226         char *name;
1227         qboolean flipx, flipy, flipdiagonaly;
1228 }
1229 envmapinfo[12] =
1230 {
1231         {{  0,   0, 0}, "rt", false, false, false},
1232         {{  0, 270, 0}, "ft", false, false, false},
1233         {{  0, 180, 0}, "lf", false, false, false},
1234         {{  0,  90, 0}, "bk", false, false, false},
1235         {{-90, 180, 0}, "up",  true,  true, false},
1236         {{ 90, 180, 0}, "dn",  true,  true, false},
1237
1238         {{  0,   0, 0}, "px",  true,  true,  true},
1239         {{  0,  90, 0}, "py", false,  true, false},
1240         {{  0, 180, 0}, "nx", false, false,  true},
1241         {{  0, 270, 0}, "ny",  true, false, false},
1242         {{-90, 180, 0}, "pz", false, false,  true},
1243         {{ 90, 180, 0}, "nz", false, false,  true}
1244 };
1245
1246 static void R_Envmap_f (void)
1247 {
1248         int j, size;
1249         char filename[MAX_QPATH], basename[MAX_QPATH];
1250         unsigned char *buffer1;
1251         unsigned char *buffer2;
1252         unsigned char *buffer3;
1253
1254         if (Cmd_Argc() != 3)
1255         {
1256                 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");
1257                 return;
1258         }
1259
1260         strlcpy (basename, Cmd_Argv(1), sizeof (basename));
1261         size = atoi(Cmd_Argv(2));
1262         if (size != 128 && size != 256 && size != 512 && size != 1024)
1263         {
1264                 Con_Print("envmap: size must be one of 128, 256, 512, or 1024\n");
1265                 return;
1266         }
1267         if (size > vid.width || size > vid.height)
1268         {
1269                 Con_Print("envmap: your resolution is not big enough to render that size\n");
1270                 return;
1271         }
1272
1273         r_refdef.envmap = true;
1274
1275         R_UpdateVariables();
1276
1277         r_view.x = 0;
1278         r_view.y = 0;
1279         r_view.z = 0;
1280         r_view.width = size;
1281         r_view.height = size;
1282         r_view.depth = 1;
1283
1284         r_view.frustum_x = tan(90 * M_PI / 360.0);
1285         r_view.frustum_y = tan(90 * M_PI / 360.0);
1286
1287         buffer1 = (unsigned char *)Mem_Alloc(tempmempool, size * size * 3);
1288         buffer2 = (unsigned char *)Mem_Alloc(tempmempool, size * size * 3);
1289         buffer3 = (unsigned char *)Mem_Alloc(tempmempool, size * size * 3 + 18);
1290
1291         for (j = 0;j < 12;j++)
1292         {
1293                 sprintf(filename, "env/%s%s.tga", basename, envmapinfo[j].name);
1294                 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);
1295                 R_ClearScreen();
1296                 R_Mesh_Start();
1297                 R_RenderView();
1298                 R_Mesh_Finish();
1299                 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);
1300         }
1301
1302         Mem_Free (buffer1);
1303         Mem_Free (buffer2);
1304         Mem_Free (buffer3);
1305
1306         r_refdef.envmap = false;
1307 }
1308
1309 //=============================================================================
1310
1311 // LordHavoc: SHOWLMP stuff
1312 #define SHOWLMP_MAXLABELS 256
1313 typedef struct showlmp_s
1314 {
1315         qboolean        isactive;
1316         float           x;
1317         float           y;
1318         char            label[32];
1319         char            pic[128];
1320 }
1321 showlmp_t;
1322
1323 showlmp_t showlmp[SHOWLMP_MAXLABELS];
1324
1325 void SHOWLMP_decodehide(void)
1326 {
1327         int i;
1328         char *lmplabel;
1329         lmplabel = MSG_ReadString();
1330         for (i = 0;i < SHOWLMP_MAXLABELS;i++)
1331                 if (showlmp[i].isactive && strcmp(showlmp[i].label, lmplabel) == 0)
1332                 {
1333                         showlmp[i].isactive = false;
1334                         return;
1335                 }
1336 }
1337
1338 void SHOWLMP_decodeshow(void)
1339 {
1340         int i, k;
1341         char lmplabel[256], picname[256];
1342         float x, y;
1343         strlcpy (lmplabel,MSG_ReadString(), sizeof (lmplabel));
1344         strlcpy (picname, MSG_ReadString(), sizeof (picname));
1345         if (gamemode == GAME_NEHAHRA) // LordHavoc: nasty old legacy junk
1346         {
1347                 x = MSG_ReadByte();
1348                 y = MSG_ReadByte();
1349         }
1350         else
1351         {
1352                 x = MSG_ReadShort();
1353                 y = MSG_ReadShort();
1354         }
1355         k = -1;
1356         for (i = 0;i < SHOWLMP_MAXLABELS;i++)
1357                 if (showlmp[i].isactive)
1358                 {
1359                         if (strcmp(showlmp[i].label, lmplabel) == 0)
1360                         {
1361                                 k = i;
1362                                 break; // drop out to replace it
1363                         }
1364                 }
1365                 else if (k < 0) // find first empty one to replace
1366                         k = i;
1367         if (k < 0)
1368                 return; // none found to replace
1369         // change existing one
1370         showlmp[k].isactive = true;
1371         strlcpy (showlmp[k].label, lmplabel, sizeof (showlmp[k].label));
1372         strlcpy (showlmp[k].pic, picname, sizeof (showlmp[k].pic));
1373         showlmp[k].x = x;
1374         showlmp[k].y = y;
1375 }
1376
1377 void SHOWLMP_drawall(void)
1378 {
1379         int i;
1380         for (i = 0;i < SHOWLMP_MAXLABELS;i++)
1381                 if (showlmp[i].isactive)
1382                         DrawQ_Pic(showlmp[i].x, showlmp[i].y, Draw_CachePic(showlmp[i].pic, true), 0, 0, 1, 1, 1, 1, 0);
1383 }
1384
1385 void SHOWLMP_clear(void)
1386 {
1387         int i;
1388         for (i = 0;i < SHOWLMP_MAXLABELS;i++)
1389                 showlmp[i].isactive = false;
1390 }
1391
1392 /*
1393 ==============================================================================
1394
1395                                                 SCREEN SHOTS
1396
1397 ==============================================================================
1398 */
1399
1400 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)
1401 {
1402         int     indices[3] = {0,1,2};
1403         qboolean ret;
1404
1405         if (!r_render.integer)
1406                 return false;
1407
1408         CHECKGLERROR
1409         qglReadPixels (x, y, width, height, GL_RGB, GL_UNSIGNED_BYTE, buffer1);CHECKGLERROR
1410
1411         if (scr_screenshot_gammaboost.value != 1 && gammacorrect)
1412         {
1413                 int i;
1414                 double igamma = 1.0 / scr_screenshot_gammaboost.value;
1415                 unsigned char ramp[256];
1416                 for (i = 0;i < 256;i++)
1417                         ramp[i] = (unsigned char) (pow(i * (1.0 / 255.0), igamma) * 255.0);
1418                 for (i = 0;i < width*height*3;i++)
1419                         buffer1[i] = ramp[buffer1[i]];
1420         }
1421
1422         Image_CopyMux (buffer2, buffer1, width, height, flipx, flipy, flipdiagonal, 3, 3, indices);
1423
1424         if (jpeg)
1425                 ret = JPEG_SaveImage_preflipped (filename, width, height, buffer2);
1426         else
1427                 ret = Image_WriteTGARGB_preflipped (filename, width, height, buffer2, buffer3);
1428
1429         return ret;
1430 }
1431
1432 //=============================================================================
1433
1434 void R_ClearScreen(void)
1435 {
1436         // clear to black
1437         CHECKGLERROR
1438         if (r_refdef.fogenabled)
1439         {
1440                 qglClearColor(r_refdef.fogcolor[0],r_refdef.fogcolor[1],r_refdef.fogcolor[2],0);CHECKGLERROR
1441         }
1442         else
1443         {
1444                 qglClearColor(0,0,0,0);CHECKGLERROR
1445         }
1446         qglClearDepth(1);CHECKGLERROR
1447         if (gl_stencil)
1448         {
1449                 // LordHavoc: we use a stencil centered around 128 instead of 0,
1450                 // to avoid clamping interfering with strange shadow volume
1451                 // drawing orders
1452                 qglClearStencil(128);CHECKGLERROR
1453         }
1454         // clear the screen
1455         if (r_render.integer)
1456                 GL_Clear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | (gl_stencil ? GL_STENCIL_BUFFER_BIT : 0));
1457         // set dithering mode
1458         if (gl_dither.integer)
1459         {
1460                 qglEnable(GL_DITHER);CHECKGLERROR
1461         }
1462         else
1463         {
1464                 qglDisable(GL_DITHER);CHECKGLERROR
1465         }
1466 }
1467
1468 qboolean CL_VM_UpdateView (void);
1469 void SCR_DrawConsole (void);
1470 void R_Shadow_EditLights_DrawSelectedLightProperties(void);
1471
1472 int r_stereo_side;
1473
1474 void SCR_DrawScreen (void)
1475 {
1476         R_Mesh_Start();
1477
1478         if (r_timereport_active)
1479                 R_TimeReport("setup");
1480
1481         R_UpdateVariables();
1482
1483         if (cls.signon == SIGNONS)
1484         {
1485                 float size;
1486
1487                 size = scr_viewsize.value * (1.0 / 100.0);
1488                 size = min(size, 1);
1489
1490                 if (r_stereo_sidebyside.integer)
1491                 {
1492                         r_view.width = (int)(vid.width * size / 2.5);
1493                         r_view.height = (int)(vid.height * size / 2.5 * (1 - bound(0, r_letterbox.value, 100) / 100));
1494                         r_view.depth = 1;
1495                         r_view.x = (int)((vid.width - r_view.width * 2.5) * 0.5);
1496                         r_view.y = (int)((vid.height - r_view.height)/2);
1497                         r_view.z = 0;
1498                         if (r_stereo_side)
1499                                 r_view.x += (int)(r_view.width * 1.5);
1500                 }
1501                 else
1502                 {
1503                         r_view.width = (int)(vid.width * size);
1504                         r_view.height = (int)(vid.height * size * (1 - bound(0, r_letterbox.value, 100) / 100));
1505                         r_view.depth = 1;
1506                         r_view.x = (int)((vid.width - r_view.width)/2);
1507                         r_view.y = (int)((vid.height - r_view.height)/2);
1508                         r_view.z = 0;
1509                 }
1510
1511                 // LordHavoc: viewzoom (zoom in for sniper rifles, etc)
1512                 // LordHavoc: this is designed to produce widescreen fov values
1513                 // when the screen is wider than 4/3 width/height aspect, to do
1514                 // this it simply assumes the requested fov is the vertical fov
1515                 // for a 4x3 display, if the ratio is not 4x3 this makes the fov
1516                 // higher/lower according to the ratio
1517                 r_view.frustum_y = tan(scr_fov.value * cl.viewzoom * M_PI / 360.0) * (3.0/4.0);
1518                 r_view.frustum_x = r_view.frustum_y * (float)r_view.width / (float)r_view.height / vid_pixelheight.value;
1519
1520                 r_view.frustum_x *= r_refdef.frustumscale_x;
1521                 r_view.frustum_y *= r_refdef.frustumscale_y;
1522
1523                 if(!CL_VM_UpdateView())
1524                         R_RenderView();
1525                 else
1526                         SCR_DrawConsole();
1527
1528                 if (scr_zoomwindow.integer)
1529                 {
1530                         float sizex = bound(10, scr_zoomwindow_viewsizex.value, 100) / 100.0;
1531                         float sizey = bound(10, scr_zoomwindow_viewsizey.value, 100) / 100.0;
1532                         r_view.width = (int)(vid.width * sizex);
1533                         r_view.height = (int)(vid.height * sizey);
1534                         r_view.depth = 1;
1535                         r_view.x = (int)((vid.width - r_view.width)/2);
1536                         r_view.y = 0;
1537                         r_view.z = 0;
1538
1539                         r_view.frustum_y = tan(scr_zoomwindow_fov.value * cl.viewzoom * M_PI / 360.0) * (3.0/4.0);
1540                         r_view.frustum_x = r_view.frustum_y * vid_pixelheight.value * (float)r_view.width / (float)r_view.height;
1541
1542                         r_view.frustum_x *= r_refdef.frustumscale_x;
1543                         r_view.frustum_y *= r_refdef.frustumscale_y;
1544
1545                         if(!CL_VM_UpdateView())
1546                                 R_RenderView();
1547                 }
1548         }
1549
1550         if (!r_stereo_sidebyside.integer)
1551         {
1552                 r_view.width = vid.width;
1553                 r_view.height = vid.height;
1554                 r_view.depth = 1;
1555                 r_view.x = 0;
1556                 r_view.y = 0;
1557                 r_view.z = 0;
1558         }
1559
1560         // draw 2D stuff
1561
1562         //FIXME: force menu if nothing else to look at?
1563         //if (key_dest == key_game && cls.signon != SIGNONS && cls.state == ca_disconnected)
1564
1565         if (cls.signon == SIGNONS)
1566         {
1567                 SCR_DrawNet ();
1568                 SCR_DrawTurtle ();
1569                 SCR_DrawPause ();
1570                 if (!r_letterbox.value)
1571                         Sbar_Draw();
1572                 SHOWLMP_drawall();
1573                 SCR_CheckDrawCenterString();
1574         }
1575         MR_Draw();
1576         CL_DrawVideo();
1577         R_Shadow_EditLights_DrawSelectedLightProperties();
1578
1579         if(!csqc_loaded)
1580                 SCR_DrawConsole();
1581
1582         SCR_DrawBrand();
1583
1584         SCR_DrawDownload();
1585
1586         if (r_timereport_active)
1587                 R_TimeReport("2d");
1588
1589         if (cls.signon == SIGNONS)
1590                 R_TimeReport_Frame();
1591
1592         DrawQ_Finish();
1593
1594         R_DrawGamma();
1595
1596         R_Mesh_Finish();
1597
1598         if (r_timereport_active)
1599                 R_TimeReport("meshfinish");
1600 }
1601
1602 void SCR_UpdateLoadingScreen (void)
1603 {
1604         float x, y;
1605         cachepic_t *pic;
1606         float vertex3f[12];
1607         float texcoord2f[8];
1608         // don't do anything if not initialized yet
1609         if (vid_hidden)
1610                 return;
1611         CHECKGLERROR
1612         qglViewport(0, 0, vid.width, vid.height);CHECKGLERROR
1613         //qglDisable(GL_SCISSOR_TEST);CHECKGLERROR
1614         //qglDepthMask(1);CHECKGLERROR
1615         qglColorMask(1,1,1,1);CHECKGLERROR
1616         //qglClearColor(0,0,0,0);CHECKGLERROR
1617         //qglClear(GL_COLOR_BUFFER_BIT);CHECKGLERROR
1618         //qglCullFace(GL_FRONT);CHECKGLERROR
1619         //qglDisable(GL_CULL_FACE);CHECKGLERROR
1620         //R_ClearScreen();
1621         R_Textures_Frame();
1622         GL_SetupView_Mode_Ortho(0, 0, vid_conwidth.integer, vid_conheight.integer, -10, 100);
1623         R_Mesh_Start();
1624         R_Mesh_Matrix(&identitymatrix);
1625         // draw the loading plaque
1626         pic = Draw_CachePic("gfx/loading", true);
1627         x = (vid_conwidth.integer - pic->width)/2;
1628         y = (vid_conheight.integer - pic->height)/2;
1629         GL_Color(1,1,1,1);
1630         GL_BlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
1631         GL_DepthTest(false);
1632         R_Mesh_VertexPointer(vertex3f);
1633         R_Mesh_ColorPointer(NULL);
1634         R_Mesh_ResetTextureState();
1635         R_Mesh_TexBind(0, R_GetTexture(pic->tex));
1636         R_Mesh_TexCoordPointer(0, 2, texcoord2f);
1637         vertex3f[2] = vertex3f[5] = vertex3f[8] = vertex3f[11] = 0;
1638         vertex3f[0] = vertex3f[9] = x;
1639         vertex3f[1] = vertex3f[4] = y;
1640         vertex3f[3] = vertex3f[6] = x + pic->width;
1641         vertex3f[7] = vertex3f[10] = y + pic->height;
1642         texcoord2f[0] = 0;texcoord2f[1] = 0;
1643         texcoord2f[2] = 1;texcoord2f[3] = 0;
1644         texcoord2f[4] = 1;texcoord2f[5] = 1;
1645         texcoord2f[6] = 0;texcoord2f[7] = 1;
1646         R_Mesh_Draw(0, 4, 2, polygonelements);
1647         R_Mesh_Finish();
1648         // refresh
1649         VID_Finish(false);
1650 }
1651
1652 void CL_UpdateScreen(void)
1653 {
1654         float conwidth, conheight;
1655
1656         if (vid_hidden)
1657                 return;
1658
1659         if (!scr_initialized || !con_initialized || vid_hidden)
1660                 return;                         // not initialized yet
1661
1662         // don't allow cheats in multiplayer
1663         if (!cl.islocalgame && cl.worldmodel)
1664         {
1665                 if (r_fullbright.integer != 0)
1666                         Cvar_Set ("r_fullbright", "0");
1667                 if (r_ambient.value != 0)
1668                         Cvar_Set ("r_ambient", "0");
1669         }
1670
1671         conwidth = bound(320, vid_conwidth.value, 2048);
1672         conheight = bound(200, vid_conheight.value, 1536);
1673         if (vid_conwidth.value != conwidth)
1674                 Cvar_SetValue("vid_conwidth", conwidth);
1675         if (vid_conheight.value != conheight)
1676                 Cvar_SetValue("vid_conheight", conheight);
1677
1678         // bound viewsize
1679         if (scr_viewsize.value < 30)
1680                 Cvar_Set ("viewsize","30");
1681         if (scr_viewsize.value > 120)
1682                 Cvar_Set ("viewsize","120");
1683
1684         // bound field of view
1685         if (scr_fov.value < 1)
1686                 Cvar_Set ("fov","1");
1687         if (scr_fov.value > 170)
1688                 Cvar_Set ("fov","170");
1689
1690         // validate r_textureunits cvar
1691         if (r_textureunits.integer > gl_textureunits)
1692                 Cvar_SetValueQuick(&r_textureunits, gl_textureunits);
1693         if (r_textureunits.integer < 1)
1694                 Cvar_SetValueQuick(&r_textureunits, 1);
1695
1696         // validate gl_combine cvar
1697         if (gl_combine.integer && !gl_combine_extension)
1698                 Cvar_SetValueQuick(&gl_combine, 0);
1699
1700         // intermission is always full screen
1701         if (cl.intermission)
1702                 sb_lines = 0;
1703         else
1704         {
1705                 if (scr_viewsize.value >= 120)
1706                         sb_lines = 0;           // no status bar at all
1707                 else if (scr_viewsize.value >= 110)
1708                         sb_lines = 24;          // no inventory
1709                 else
1710                         sb_lines = 24+16+8;
1711         }
1712
1713         r_view.colormask[0] = 1;
1714         r_view.colormask[1] = 1;
1715         r_view.colormask[2] = 1;
1716
1717         if (r_timereport_active)
1718                 R_TimeReport("other");
1719
1720         SCR_SetUpToDrawConsole();
1721
1722         if (r_timereport_active)
1723                 R_TimeReport("start");
1724
1725         CHECKGLERROR
1726         qglViewport(0, 0, vid.width, vid.height);CHECKGLERROR
1727         qglDisable(GL_SCISSOR_TEST);CHECKGLERROR
1728         qglDepthMask(1);CHECKGLERROR
1729         qglColorMask(1,1,1,1);CHECKGLERROR
1730         qglClearColor(0,0,0,0);CHECKGLERROR
1731         qglClear(GL_COLOR_BUFFER_BIT);CHECKGLERROR
1732
1733         if (r_timereport_active)
1734                 R_TimeReport("clear");
1735
1736         if (r_stereo_redblue.integer || r_stereo_redgreen.integer || r_stereo_redcyan.integer || r_stereo_sidebyside.integer)
1737         {
1738                 matrix4x4_t originalmatrix = r_view.matrix;
1739                 r_view.matrix.m[0][3] = originalmatrix.m[0][3] + r_stereo_separation.value * -0.5f * r_view.matrix.m[0][1];
1740                 r_view.matrix.m[1][3] = originalmatrix.m[1][3] + r_stereo_separation.value * -0.5f * r_view.matrix.m[1][1];
1741                 r_view.matrix.m[2][3] = originalmatrix.m[2][3] + r_stereo_separation.value * -0.5f * r_view.matrix.m[2][1];
1742
1743                 if (r_stereo_sidebyside.integer)
1744                         r_stereo_side = 0;
1745
1746                 if (r_stereo_redblue.integer || r_stereo_redgreen.integer || r_stereo_redcyan.integer)
1747                 {
1748                         r_view.colormask[0] = 1;
1749                         r_view.colormask[1] = 0;
1750                         r_view.colormask[2] = 0;
1751                 }
1752
1753                 SCR_DrawScreen();
1754
1755                 r_view.matrix.m[0][3] = originalmatrix.m[0][3] + r_stereo_separation.value * 0.5f * r_view.matrix.m[0][1];
1756                 r_view.matrix.m[1][3] = originalmatrix.m[1][3] + r_stereo_separation.value * 0.5f * r_view.matrix.m[1][1];
1757                 r_view.matrix.m[2][3] = originalmatrix.m[2][3] + r_stereo_separation.value * 0.5f * r_view.matrix.m[2][1];
1758
1759                 if (r_stereo_sidebyside.integer)
1760                         r_stereo_side = 1;
1761
1762                 if (r_stereo_redblue.integer || r_stereo_redgreen.integer || r_stereo_redcyan.integer)
1763                 {
1764                         r_view.colormask[0] = 0;
1765                         r_view.colormask[1] = r_stereo_redcyan.integer || r_stereo_redgreen.integer;
1766                         r_view.colormask[2] = r_stereo_redcyan.integer || r_stereo_redblue.integer;
1767                 }
1768
1769                 SCR_DrawScreen();
1770
1771                 r_view.matrix = originalmatrix;
1772         }
1773         else
1774                 SCR_DrawScreen();
1775
1776         SCR_CaptureVideo();
1777
1778         VID_Finish(true);
1779         if (r_timereport_active)
1780                 R_TimeReport("finish");
1781 }
1782
1783 void CL_Screen_NewMap(void)
1784 {
1785         SHOWLMP_clear();
1786 }