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