]> icculus.org git repositories - divverent/darkplaces.git/blob - gl_rmain.c
2D is now drawn using R_Mesh system
[divverent/darkplaces.git] / gl_rmain.c
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 // r_main.c
21
22 #include "quakedef.h"
23
24 // used for dlight push checking and other things
25 int r_framecount;
26
27 mplane_t frustum[4];
28
29 matrix4x4_t r_identitymatrix;
30
31 int c_alias_polys, c_light_polys, c_faces, c_nodes, c_leafs, c_models, c_bmodels, c_sprites, c_particles, c_dlights;
32
33 // true during envmap command capture
34 qboolean envmap;
35
36 float r_farclip;
37
38 // view origin
39 vec3_t r_origin;
40 vec3_t vpn;
41 vec3_t vright;
42 vec3_t vup;
43
44 //
45 // screen size info
46 //
47 refdef_t r_refdef;
48
49 // 8.8 fraction of base light value
50 unsigned short d_lightstylevalue[256];
51
52 cvar_t r_drawentities = {0, "r_drawentities","1"};
53 cvar_t r_drawviewmodel = {0, "r_drawviewmodel","1"};
54 cvar_t r_shadows = {CVAR_SAVE, "r_shadows", "1"};
55 cvar_t r_speeds = {0, "r_speeds","0"};
56 cvar_t r_fullbright = {0, "r_fullbright","0"};
57 cvar_t r_wateralpha = {CVAR_SAVE, "r_wateralpha","1"};
58 cvar_t r_dynamic = {CVAR_SAVE, "r_dynamic","1"};
59 cvar_t r_fullbrights = {CVAR_SAVE, "r_fullbrights", "1"};
60
61 cvar_t gl_fogenable = {0, "gl_fogenable", "0"};
62 cvar_t gl_fogdensity = {0, "gl_fogdensity", "0.25"};
63 cvar_t gl_fogred = {0, "gl_fogred","0.3"};
64 cvar_t gl_foggreen = {0, "gl_foggreen","0.3"};
65 cvar_t gl_fogblue = {0, "gl_fogblue","0.3"};
66 cvar_t gl_fogstart = {0, "gl_fogstart", "0"};
67 cvar_t gl_fogend = {0, "gl_fogend","0"};
68
69 cvar_t r_textureunits = {0, "r_textureunits", "32"};
70
71 void R_ModulateColors(float *in, float *out, int verts, float r, float g, float b)
72 {
73         int i;
74         for (i = 0;i < verts;i++)
75         {
76                 out[0] = in[0] * r;
77                 out[1] = in[1] * g;
78                 out[2] = in[2] * b;
79                 out[3] = in[3];
80                 in += 4;
81                 out += 4;
82         }
83 }
84
85 void R_FillColors(float *out, int verts, float r, float g, float b, float a)
86 {
87         int i;
88         for (i = 0;i < verts;i++)
89         {
90                 out[0] = r;
91                 out[1] = g;
92                 out[2] = b;
93                 out[3] = a;
94                 out += 4;
95         }
96 }
97
98 /*
99 ====================
100 R_TimeRefresh_f
101
102 For program optimization
103 ====================
104 */
105 qboolean intimerefresh = 0;
106 static void R_TimeRefresh_f (void)
107 {
108         int i;
109         float start, stop, time;
110
111         intimerefresh = 1;
112         start = Sys_DoubleTime ();
113         for (i = 0;i < 128;i++)
114         {
115                 r_refdef.viewangles[0] = 0;
116                 r_refdef.viewangles[1] = i/128.0*360.0;
117                 r_refdef.viewangles[2] = 0;
118                 CL_UpdateScreen();
119         }
120
121         stop = Sys_DoubleTime ();
122         intimerefresh = 0;
123         time = stop-start;
124         Con_Printf ("%f seconds (%f fps)\n", time, 128/time);
125 }
126
127 vec3_t fogcolor;
128 vec_t fogdensity;
129 float fog_density, fog_red, fog_green, fog_blue;
130 qboolean fogenabled;
131 qboolean oldgl_fogenable;
132 void R_SetupFog(void)
133 {
134         if (gamemode == GAME_NEHAHRA)
135         {
136                 if (gl_fogenable.integer)
137                 {
138                         oldgl_fogenable = true;
139                         fog_density = gl_fogdensity.value;
140                         fog_red = gl_fogred.value;
141                         fog_green = gl_foggreen.value;
142                         fog_blue = gl_fogblue.value;
143                 }
144                 else if (oldgl_fogenable)
145                 {
146                         oldgl_fogenable = false;
147                         fog_density = 0;
148                         fog_red = 0;
149                         fog_green = 0;
150                         fog_blue = 0;
151                 }
152         }
153         if (fog_density)
154         {
155                 fogcolor[0] = fog_red   = bound(0.0f, fog_red  , 1.0f);
156                 fogcolor[1] = fog_green = bound(0.0f, fog_green, 1.0f);
157                 fogcolor[2] = fog_blue  = bound(0.0f, fog_blue , 1.0f);
158         }
159         if (fog_density)
160         {
161                 fogenabled = true;
162                 fogdensity = -4000.0f / (fog_density * fog_density);
163                 // fog color was already set
164         }
165         else
166                 fogenabled = false;
167 }
168
169 // FIXME: move this to client?
170 void FOG_clear(void)
171 {
172         if (gamemode == GAME_NEHAHRA)
173         {
174                 Cvar_Set("gl_fogenable", "0");
175                 Cvar_Set("gl_fogdensity", "0.2");
176                 Cvar_Set("gl_fogred", "0.3");
177                 Cvar_Set("gl_foggreen", "0.3");
178                 Cvar_Set("gl_fogblue", "0.3");
179         }
180         fog_density = fog_red = fog_green = fog_blue = 0.0f;
181 }
182
183 // FIXME: move this to client?
184 void FOG_registercvars(void)
185 {
186         if (gamemode == GAME_NEHAHRA)
187         {
188                 Cvar_RegisterVariable (&gl_fogenable);
189                 Cvar_RegisterVariable (&gl_fogdensity);
190                 Cvar_RegisterVariable (&gl_fogred);
191                 Cvar_RegisterVariable (&gl_foggreen);
192                 Cvar_RegisterVariable (&gl_fogblue);
193                 Cvar_RegisterVariable (&gl_fogstart);
194                 Cvar_RegisterVariable (&gl_fogend);
195         }
196 }
197
198 void gl_main_start(void)
199 {
200 }
201
202 void gl_main_shutdown(void)
203 {
204 }
205
206 extern void CL_ParseEntityLump(char *entitystring);
207 void gl_main_newmap(void)
208 {
209         if (cl.worldmodel && cl.worldmodel->entities)
210                 CL_ParseEntityLump(cl.worldmodel->entities);
211         r_framecount = 1;
212 }
213
214 void GL_Main_Init(void)
215 {
216         Matrix4x4_CreateIdentity(&r_identitymatrix);
217 // FIXME: move this to client?
218         FOG_registercvars();
219         Cmd_AddCommand ("timerefresh", R_TimeRefresh_f);
220         Cvar_RegisterVariable (&r_drawentities);
221         Cvar_RegisterVariable (&r_drawviewmodel);
222         Cvar_RegisterVariable (&r_shadows);
223         Cvar_RegisterVariable (&r_speeds);
224         Cvar_RegisterVariable (&r_fullbrights);
225         Cvar_RegisterVariable (&r_wateralpha);
226         Cvar_RegisterVariable (&r_dynamic);
227         Cvar_RegisterVariable (&r_fullbright);
228         Cvar_RegisterVariable (&r_textureunits);
229         if (gamemode == GAME_NEHAHRA)
230                 Cvar_SetValue("r_fullbrights", 0);
231         R_RegisterModule("GL_Main", gl_main_start, gl_main_shutdown, gl_main_newmap);
232 }
233
234 vec3_t r_farclip_origin;
235 vec3_t r_farclip_direction;
236 vec_t r_farclip_directiondist;
237 vec_t r_farclip_meshfarclip;
238 int r_farclip_directionbit0;
239 int r_farclip_directionbit1;
240 int r_farclip_directionbit2;
241
242 // start a farclip measuring session
243 void R_FarClip_Start(vec3_t origin, vec3_t direction, vec_t startfarclip)
244 {
245         VectorCopy(origin, r_farclip_origin);
246         VectorCopy(direction, r_farclip_direction);
247         r_farclip_directiondist = DotProduct(r_farclip_origin, r_farclip_direction);
248         r_farclip_directionbit0 = r_farclip_direction[0] < 0;
249         r_farclip_directionbit1 = r_farclip_direction[1] < 0;
250         r_farclip_directionbit2 = r_farclip_direction[2] < 0;
251         r_farclip_meshfarclip = r_farclip_directiondist + startfarclip;
252 }
253
254 // enlarge farclip to accomodate box
255 void R_FarClip_Box(vec3_t mins, vec3_t maxs)
256 {
257         float d;
258         d = (r_farclip_directionbit0 ? mins[0] : maxs[0]) * r_farclip_direction[0]
259           + (r_farclip_directionbit1 ? mins[1] : maxs[1]) * r_farclip_direction[1]
260           + (r_farclip_directionbit2 ? mins[2] : maxs[2]) * r_farclip_direction[2];
261         if (r_farclip_meshfarclip < d)
262                 r_farclip_meshfarclip = d;
263 }
264
265 // return farclip value
266 float R_FarClip_Finish(void)
267 {
268         return r_farclip_meshfarclip - r_farclip_directiondist;
269 }
270
271 /*
272 ===============
273 R_NewMap
274 ===============
275 */
276 void R_NewMap (void)
277 {
278         R_Modules_NewMap();
279 }
280
281 extern void R_Textures_Init(void);
282 extern void Mod_RenderInit(void);
283 extern void GL_Draw_Init(void);
284 extern void GL_Main_Init(void);
285 extern void GL_Models_Init(void);
286 extern void R_Sky_Init(void);
287 extern void GL_Surf_Init(void);
288 extern void R_Crosshairs_Init(void);
289 extern void R_Light_Init(void);
290 extern void R_Particles_Init(void);
291 extern void R_Explosion_Init(void);
292 extern void ui_init(void);
293 extern void gl_backend_init(void);
294 extern void Sbar_Init(void);
295
296 void Render_Init(void)
297 {
298         R_Textures_Init();
299         Mod_RenderInit();
300         gl_backend_init();
301         R_MeshQueue_Init();
302         GL_Draw_Init();
303         GL_Main_Init();
304         GL_Models_Init();
305         R_Sky_Init();
306         GL_Surf_Init();
307         R_Crosshairs_Init();
308         R_Light_Init();
309         R_Particles_Init();
310         R_Explosion_Init();
311         ui_init();
312         Sbar_Init();
313 }
314
315 /*
316 ===============
317 GL_Init
318 ===============
319 */
320 extern char *ENGINE_EXTENSIONS;
321 void GL_Init (void)
322 {
323         VID_CheckExtensions();
324
325         // LordHavoc: report supported extensions
326         Con_Printf ("\nengine extensions: %s\n", ENGINE_EXTENSIONS);
327
328         qglCullFace(GL_FRONT);
329         qglEnable(GL_TEXTURE_2D);
330 }
331
332 int R_CullBox(const vec3_t emins, const vec3_t emaxs)
333 {
334         int i;
335         mplane_t *p;
336         for (i = 0;i < 4;i++)
337         {
338                 p = frustum + i;
339                 switch(p->signbits)
340                 {
341                 default:
342                 case 0:
343                         if (p->normal[0]*emaxs[0] + p->normal[1]*emaxs[1] + p->normal[2]*emaxs[2] < p->dist)
344                                 return true;
345                         break;
346                 case 1:
347                         if (p->normal[0]*emins[0] + p->normal[1]*emaxs[1] + p->normal[2]*emaxs[2] < p->dist)
348                                 return true;
349                         break;
350                 case 2:
351                         if (p->normal[0]*emaxs[0] + p->normal[1]*emins[1] + p->normal[2]*emaxs[2] < p->dist)
352                                 return true;
353                         break;
354                 case 3:
355                         if (p->normal[0]*emins[0] + p->normal[1]*emins[1] + p->normal[2]*emaxs[2] < p->dist)
356                                 return true;
357                         break;
358                 case 4:
359                         if (p->normal[0]*emaxs[0] + p->normal[1]*emaxs[1] + p->normal[2]*emins[2] < p->dist)
360                                 return true;
361                         break;
362                 case 5:
363                         if (p->normal[0]*emins[0] + p->normal[1]*emaxs[1] + p->normal[2]*emins[2] < p->dist)
364                                 return true;
365                         break;
366                 case 6:
367                         if (p->normal[0]*emaxs[0] + p->normal[1]*emins[1] + p->normal[2]*emins[2] < p->dist)
368                                 return true;
369                         break;
370                 case 7:
371                         if (p->normal[0]*emins[0] + p->normal[1]*emins[1] + p->normal[2]*emins[2] < p->dist)
372                                 return true;
373                         break;
374                 }
375         }
376         return false;
377 }
378
379 int R_NotCulledBox(const vec3_t emins, const vec3_t emaxs)
380 {
381         int i;
382         mplane_t *p;
383         for (i = 0;i < 4;i++)
384         {
385                 p = frustum + i;
386                 switch(p->signbits)
387                 {
388                 default:
389                 case 0:
390                         if (p->normal[0]*emaxs[0] + p->normal[1]*emaxs[1] + p->normal[2]*emaxs[2] < p->dist)
391                                 return false;
392                         break;
393                 case 1:
394                         if (p->normal[0]*emins[0] + p->normal[1]*emaxs[1] + p->normal[2]*emaxs[2] < p->dist)
395                                 return false;
396                         break;
397                 case 2:
398                         if (p->normal[0]*emaxs[0] + p->normal[1]*emins[1] + p->normal[2]*emaxs[2] < p->dist)
399                                 return false;
400                         break;
401                 case 3:
402                         if (p->normal[0]*emins[0] + p->normal[1]*emins[1] + p->normal[2]*emaxs[2] < p->dist)
403                                 return false;
404                         break;
405                 case 4:
406                         if (p->normal[0]*emaxs[0] + p->normal[1]*emaxs[1] + p->normal[2]*emins[2] < p->dist)
407                                 return false;
408                         break;
409                 case 5:
410                         if (p->normal[0]*emins[0] + p->normal[1]*emaxs[1] + p->normal[2]*emins[2] < p->dist)
411                                 return false;
412                         break;
413                 case 6:
414                         if (p->normal[0]*emaxs[0] + p->normal[1]*emins[1] + p->normal[2]*emins[2] < p->dist)
415                                 return false;
416                         break;
417                 case 7:
418                         if (p->normal[0]*emins[0] + p->normal[1]*emins[1] + p->normal[2]*emins[2] < p->dist)
419                                 return false;
420                         break;
421                 }
422         }
423         return true;
424 }
425
426
427 //==================================================================================
428
429 static void R_MarkEntities (void)
430 {
431         int i;
432         vec3_t v;
433         entity_render_t *ent;
434
435         ent = &cl_entities[0].render;
436         Matrix4x4_CreateIdentity(&ent->matrix);
437         Matrix4x4_CreateIdentity(&ent->inversematrix);
438
439         if (cl.worldmodel)
440                 R_FarClip_Box(cl.worldmodel->normalmins, cl.worldmodel->normalmaxs);
441
442         if (!r_drawentities.integer)
443                 return;
444
445         for (i = 0;i < r_refdef.numentities;i++)
446         {
447                 ent = r_refdef.entities[i];
448                 Mod_CheckLoaded(ent->model);
449
450                 // move view-relative models to where they should be
451                 if (ent->flags & RENDER_VIEWMODEL)
452                 {
453                         // remove flag so it will not be repeated incase RelinkEntities is not called again for a while
454                         ent->flags -= RENDER_VIEWMODEL;
455                         // transform origin
456                         VectorCopy(ent->origin, v);
457                         ent->origin[0] = v[0] * vpn[0] + v[1] * vright[0] + v[2] * vup[0] + r_origin[0];
458                         ent->origin[1] = v[0] * vpn[1] + v[1] * vright[1] + v[2] * vup[1] + r_origin[1];
459                         ent->origin[2] = v[0] * vpn[2] + v[1] * vright[2] + v[2] * vup[2] + r_origin[2];
460                         // adjust angles
461                         VectorAdd(ent->angles, r_refdef.viewangles, ent->angles);
462                 }
463
464                 ent->visframe = r_framecount;
465                 VectorCopy(ent->angles, v);
466                 if (!ent->model || ent->model->type != mod_brush)
467                         v[0] = -v[0];
468                 Matrix4x4_CreateFromQuakeEntity(&ent->matrix, ent->origin[0], ent->origin[1], ent->origin[2], v[0], v[1], v[2], ent->scale);
469                 Matrix4x4_Invert_Simple(&ent->inversematrix, &ent->matrix);
470                 R_LerpAnimation(ent);
471                 R_UpdateEntLights(ent);
472                 if (R_CullBox(ent->mins, ent->maxs))
473                         continue;
474                 R_FarClip_Box(ent->mins, ent->maxs);
475         }
476 }
477
478 // only used if skyrendermasked, and normally returns false
479 int R_DrawBrushModelsSky (void)
480 {
481         int i, sky;
482         entity_render_t *ent;
483
484         if (!r_drawentities.integer)
485                 return false;
486
487         sky = false;
488         for (i = 0;i < r_refdef.numentities;i++)
489         {
490                 ent = r_refdef.entities[i];
491                 if (ent->visframe == r_framecount && ent->model && ent->model->DrawSky)
492                 {
493                         ent->model->DrawSky(ent);
494                         sky = true;
495                 }
496         }
497         return sky;
498 }
499
500 /*
501 =============
502 R_DrawViewModel
503 =============
504 */
505 void R_DrawViewModel (void)
506 {
507         entity_render_t *ent;
508
509         // FIXME: move these checks to client
510         if (!r_drawviewmodel.integer || chase_active.integer || envmap || !r_drawentities.integer || cl.items & IT_INVISIBILITY || cl.stats[STAT_HEALTH] <= 0 || !cl.viewent.render.model)
511                 return;
512
513         ent = &cl.viewent.render;
514         Mod_CheckLoaded(ent->model);
515         R_LerpAnimation(ent);
516         Matrix4x4_CreateFromQuakeEntity(&ent->matrix, ent->origin[0], ent->origin[1], ent->origin[2], -ent->angles[0], ent->angles[1], ent->angles[2], ent->scale);
517         Matrix4x4_Invert_Simple(&ent->inversematrix, &ent->matrix);
518         R_UpdateEntLights(ent);
519         ent->model->Draw(ent);
520 }
521
522 void R_DrawNoModel(entity_render_t *ent);
523 void R_DrawModels (void)
524 {
525         int i;
526         entity_render_t *ent;
527
528         if (!r_drawentities.integer)
529                 return;
530
531         R_DrawViewModel();
532         for (i = 0;i < r_refdef.numentities;i++)
533         {
534                 ent = r_refdef.entities[i];
535                 if (ent->visframe == r_framecount)
536                 {
537                         if (ent->model)
538                         {
539                                 if (ent->model->Draw)
540                                         ent->model->Draw(ent);
541                         }
542                         else
543                                 R_DrawNoModel(ent);
544                 }
545         }
546 }
547
548 void R_DrawModelFakeShadows (void)
549 {
550         int i;
551         entity_render_t *ent;
552
553         if (!r_drawentities.integer)
554                 return;
555
556         for (i = 0;i < r_refdef.numentities;i++)
557         {
558                 ent = r_refdef.entities[i];
559                 if (ent->model && ent->model->DrawFakeShadow)
560                         ent->model->DrawFakeShadow(ent);
561         }
562 }
563
564 static void R_SetFrustum (void)
565 {
566         int i;
567
568         // LordHavoc: note to all quake engine coders, the special case for 90
569         // degrees assumed a square view (wrong), so I removed it, Quake2 has it
570         // disabled as well.
571         // rotate VPN right by FOV_X/2 degrees
572         RotatePointAroundVector( frustum[0].normal, vup, vpn, -(90-r_refdef.fov_x / 2 ) );
573         // rotate VPN left by FOV_X/2 degrees
574         RotatePointAroundVector( frustum[1].normal, vup, vpn, 90-r_refdef.fov_x / 2 );
575         // rotate VPN up by FOV_X/2 degrees
576         RotatePointAroundVector( frustum[2].normal, vright, vpn, 90-r_refdef.fov_y / 2 );
577         // rotate VPN down by FOV_X/2 degrees
578         RotatePointAroundVector( frustum[3].normal, vright, vpn, -( 90 - r_refdef.fov_y / 2 ) );
579
580         for (i = 0;i < 4;i++)
581         {
582                 frustum[i].type = PLANE_ANYZ;
583                 frustum[i].dist = DotProduct (r_origin, frustum[i].normal);
584                 PlaneClassify(&frustum[i]);
585         }
586 }
587
588 /*
589 ===============
590 R_SetupFrame
591 ===============
592 */
593 static void R_SetupFrame (void)
594 {
595 // don't allow cheats in multiplayer
596         if (cl.maxclients > 1)
597         {
598                 if (r_fullbright.integer != 0)
599                         Cvar_Set ("r_fullbright", "0");
600                 if (r_ambient.value != 0)
601                         Cvar_Set ("r_ambient", "0");
602         }
603
604         r_framecount++;
605
606 // build the transformation matrix for the given view angles
607         VectorCopy (r_refdef.vieworg, r_origin);
608
609         AngleVectors (r_refdef.viewangles, vpn, vright, vup);
610
611         R_AnimateLight ();
612 }
613
614
615 static void R_BlendView(void)
616 {
617         rmeshstate_t m;
618         float r;
619
620         if (r_refdef.viewblend[3] < 0.01f)
621                 return;
622
623         memset(&m, 0, sizeof(m));
624         m.blendfunc1 = GL_SRC_ALPHA;
625         m.blendfunc2 = GL_ONE_MINUS_SRC_ALPHA;
626         m.depthdisable = true; // magic
627         R_Mesh_Matrix(&r_identitymatrix);
628         R_Mesh_State(&m);
629
630         varray_color[0] = varray_color[4] = varray_color[8] = r_refdef.viewblend[0];
631         varray_color[1] = varray_color[5] = varray_color[9] = r_refdef.viewblend[1];
632         varray_color[2] = varray_color[6] = varray_color[10] = r_refdef.viewblend[2];
633         varray_color[3] = varray_color[7] = varray_color[11] = r_refdef.viewblend[3];
634         r = 64000;
635         varray_vertex[0] = r_origin[0] + vpn[0] * 1.5 - vright[0] * r - vup[0] * r;
636         varray_vertex[1] = r_origin[1] + vpn[1] * 1.5 - vright[1] * r - vup[1] * r;
637         varray_vertex[2] = r_origin[2] + vpn[2] * 1.5 - vright[2] * r - vup[2] * r;
638         r *= 3;
639         varray_vertex[4] = varray_vertex[0] + vup[0] * r;
640         varray_vertex[5] = varray_vertex[1] + vup[1] * r;
641         varray_vertex[6] = varray_vertex[2] + vup[2] * r;
642         varray_vertex[8] = varray_vertex[0] + vright[0] * r;
643         varray_vertex[9] = varray_vertex[1] + vright[1] * r;
644         varray_vertex[10] = varray_vertex[2] + vright[2] * r;
645         R_Mesh_Draw(3, 1, polygonelements);
646 }
647
648 /*
649 ================
650 R_RenderView
651
652 r_refdef must be set before the first call
653 ================
654 */
655 void R_RenderView (void)
656 {
657         entity_render_t *world;
658         if (!r_refdef.entities/* || !cl.worldmodel*/)
659                 return; //Host_Error ("R_RenderView: NULL worldmodel");
660
661         world = &cl_entities[0].render;
662
663         // FIXME: move to client
664         R_MoveExplosions();
665         R_TimeReport("mexplosion");
666
667         R_Textures_Frame();
668         R_SetupFrame();
669         R_SetFrustum();
670         R_SetupFog();
671         R_SkyStartFrame();
672         R_BuildLightList();
673         R_TimeReport("setup");
674
675         R_FarClip_Start(r_origin, vpn, 768.0f);
676         R_MarkEntities();
677         r_farclip = R_FarClip_Finish() + 256.0f;
678         R_TimeReport("markentity");
679
680         GL_SetupView_ViewPort(r_refdef.x, r_refdef.y, r_refdef.width, r_refdef.height);
681         GL_SetupView_Mode_Perspective((double) r_refdef.height / r_refdef.width, r_refdef.fov_x, r_refdef.fov_y, 1.0f, r_farclip);
682         GL_SetupView_Orientation_FromEntity (r_refdef.vieworg, r_refdef.viewangles);
683         GL_DepthFunc(GL_LEQUAL);
684         
685         R_Mesh_Start();
686         R_MeshQueue_BeginScene();
687
688         if (R_DrawBrushModelsSky())
689                 R_TimeReport("bmodelsky");
690
691         // must occur early because it can draw sky
692         R_DrawWorld(world);
693         R_TimeReport("world");
694
695         // don't let sound skip if going slow
696         if (!intimerefresh && !r_speeds.integer)
697                 S_ExtraUpdate ();
698
699         if (r_shadows.integer)
700         {
701                 R_DrawModelFakeShadows();
702                 R_TimeReport("fakeshadows");
703         }
704
705         R_DrawModels();
706         R_TimeReport("models");
707
708         R_DrawParticles();
709         R_TimeReport("particles");
710
711         R_DrawExplosions();
712         R_TimeReport("explosions");
713
714         R_MeshQueue_RenderTransparent();
715         R_TimeReport("drawtrans");
716
717         R_DrawCoronas();
718         R_TimeReport("coronas");
719
720         R_DrawWorldCrosshair();
721         R_TimeReport("crosshair");
722
723         R_BlendView();
724         R_TimeReport("blendview");
725
726         R_MeshQueue_Render();
727         R_MeshQueue_EndScene();
728         R_Mesh_Finish();
729         R_TimeReport("meshfinish");
730 }
731
732 /*
733 void R_DrawBBoxMesh(vec3_t mins, vec3_t maxs, float cr, float cg, float cb, float ca)
734 {
735         int i;
736         float *v, *c, f1, f2, diff[3];
737         rmeshstate_t m;
738         m.blendfunc1 = GL_SRC_ALPHA;
739         m.blendfunc2 = GL_ONE_MINUS_SRC_ALPHA;
740         R_Mesh_Matrix(&r_identitymatrix);
741         R_Mesh_State(&m);
742
743         varray_vertex[ 0] = mins[0];varray_vertex[ 1] = mins[1];varray_vertex[ 2] = mins[2];
744         varray_vertex[ 4] = maxs[0];varray_vertex[ 5] = mins[1];varray_vertex[ 6] = mins[2];
745         varray_vertex[ 8] = mins[0];varray_vertex[ 9] = maxs[1];varray_vertex[10] = mins[2];
746         varray_vertex[12] = maxs[0];varray_vertex[13] = maxs[1];varray_vertex[14] = mins[2];
747         varray_vertex[16] = mins[0];varray_vertex[17] = mins[1];varray_vertex[18] = maxs[2];
748         varray_vertex[20] = maxs[0];varray_vertex[21] = mins[1];varray_vertex[22] = maxs[2];
749         varray_vertex[24] = mins[0];varray_vertex[25] = maxs[1];varray_vertex[26] = maxs[2];
750         varray_vertex[28] = maxs[0];varray_vertex[29] = maxs[1];varray_vertex[30] = maxs[2];
751         varray_color[ 0] = varray_color[ 4] = varray_color[ 8] = varray_color[12] = varray_color[16] = varray_color[20] = varray_color[24] = varray_color[28] = cr * r_colorscale;
752         varray_color[ 1] = varray_color[ 5] = varray_color[ 9] = varray_color[13] = varray_color[17] = varray_color[21] = varray_color[25] = varray_color[29] = cg * r_colorscale;
753         varray_color[ 2] = varray_color[ 6] = varray_color[10] = varray_color[14] = varray_color[18] = varray_color[22] = varray_color[26] = varray_color[30] = cb * r_colorscale;
754         varray_color[ 3] = varray_color[ 7] = varray_color[11] = varray_color[15] = varray_color[19] = varray_color[23] = varray_color[27] = varray_color[31] = ca;
755         if (fogenabled)
756         {
757                 for (i = 0, v = varray_vertex, c = varray_color;i < 8;i++, v += 4, c += 4)
758                 {
759                         VectorSubtract(v, r_origin, diff);
760                         f2 = exp(fogdensity/DotProduct(diff, diff));
761                         f1 = 1 - f2;
762                         f2 *= r_colorscale;
763                         c[0] = c[0] * f1 + fogcolor[0] * f2;
764                         c[1] = c[1] * f1 + fogcolor[1] * f2;
765                         c[2] = c[2] * f1 + fogcolor[2] * f2;
766                 }
767         }
768         R_Mesh_Draw(8, 12);
769 }
770 */
771
772 void R_DrawNoModelCallback(const void *calldata1, int calldata2)
773 {
774         const entity_render_t *ent = calldata1;
775         int i, element[24];
776         float f1, f2, *c, diff[3];
777         rmeshstate_t m;
778         memset(&m, 0, sizeof(m));
779         if (ent->flags & EF_ADDITIVE)
780         {
781                 m.blendfunc1 = GL_SRC_ALPHA;
782                 m.blendfunc2 = GL_ONE;
783         }
784         else if (ent->alpha < 1)
785         {
786                 m.blendfunc1 = GL_SRC_ALPHA;
787                 m.blendfunc2 = GL_ONE_MINUS_SRC_ALPHA;
788         }
789         else
790         {
791                 m.blendfunc1 = GL_ONE;
792                 m.blendfunc2 = GL_ZERO;
793         }
794         R_Mesh_Matrix(&ent->matrix);
795         R_Mesh_State(&m);
796
797         element[ 0] = 5;element[ 1] = 2;element[ 2] = 0;
798         element[ 3] = 5;element[ 4] = 1;element[ 5] = 2;
799         element[ 6] = 5;element[ 7] = 0;element[ 8] = 3;
800         element[ 9] = 5;element[10] = 3;element[11] = 1;
801         element[12] = 0;element[13] = 2;element[14] = 4;
802         element[15] = 2;element[16] = 1;element[17] = 4;
803         element[18] = 3;element[19] = 0;element[20] = 4;
804         element[21] = 1;element[22] = 3;element[23] = 4;
805         varray_vertex[ 0] = -16;varray_vertex[ 1] =   0;varray_vertex[ 2] =   0;
806         varray_vertex[ 4] =  16;varray_vertex[ 5] =   0;varray_vertex[ 6] =   0;
807         varray_vertex[ 8] =   0;varray_vertex[ 9] = -16;varray_vertex[10] =   0;
808         varray_vertex[12] =   0;varray_vertex[13] =  16;varray_vertex[14] =   0;
809         varray_vertex[16] =   0;varray_vertex[17] =   0;varray_vertex[18] = -16;
810         varray_vertex[20] =   0;varray_vertex[21] =   0;varray_vertex[22] =  16;
811         varray_color[ 0] = 0.00f;varray_color[ 1] = 0.00f;varray_color[ 2] = 0.50f;varray_color[ 3] = ent->alpha;
812         varray_color[ 4] = 0.00f;varray_color[ 5] = 0.00f;varray_color[ 6] = 0.50f;varray_color[ 7] = ent->alpha;
813         varray_color[ 8] = 0.00f;varray_color[ 9] = 0.50f;varray_color[10] = 0.00f;varray_color[11] = ent->alpha;
814         varray_color[12] = 0.00f;varray_color[13] = 0.50f;varray_color[14] = 0.00f;varray_color[15] = ent->alpha;
815         varray_color[16] = 0.50f;varray_color[17] = 0.00f;varray_color[18] = 0.00f;varray_color[19] = ent->alpha;
816         varray_color[20] = 0.50f;varray_color[21] = 0.00f;varray_color[22] = 0.00f;varray_color[23] = ent->alpha;
817         if (fogenabled)
818         {
819                 VectorSubtract(ent->origin, r_origin, diff);
820                 f2 = exp(fogdensity/DotProduct(diff, diff));
821                 f1 = 1 - f2;
822                 for (i = 0, c = varray_color;i < 6;i++, c += 4)
823                 {
824                         c[0] = (c[0] * f1 + fogcolor[0] * f2) * r_colorscale;
825                         c[1] = (c[1] * f1 + fogcolor[1] * f2) * r_colorscale;
826                         c[2] = (c[2] * f1 + fogcolor[2] * f2) * r_colorscale;
827                 }
828         }
829         else
830         {
831                 for (i = 0, c = varray_color;i < 6;i++, c += 4)
832                 {
833                         c[0] *= r_colorscale;
834                         c[1] *= r_colorscale;
835                         c[2] *= r_colorscale;
836                 }
837         }
838         R_Mesh_Draw(6, 8, element);
839 }
840
841 void R_DrawNoModel(entity_render_t *ent)
842 {
843         //if ((ent->effects & EF_ADDITIVE) || (ent->alpha < 1))
844                 R_MeshQueue_AddTransparent(ent->origin, R_DrawNoModelCallback, ent, 0);
845         //else
846         //      R_DrawNoModelCallback(ent, 0);
847 }
848
849 void R_CalcBeamVerts (float *vert, vec3_t org1, vec3_t org2, float width)
850 {
851         vec3_t right1, right2, diff, normal;
852
853         VectorSubtract (org2, org1, normal);
854         VectorNormalizeFast (normal);
855
856         // calculate 'right' vector for start
857         VectorSubtract (r_origin, org1, diff);
858         VectorNormalizeFast (diff);
859         CrossProduct (normal, diff, right1);
860
861         // calculate 'right' vector for end
862         VectorSubtract (r_origin, org2, diff);
863         VectorNormalizeFast (diff);
864         CrossProduct (normal, diff, right2);
865
866         vert[ 0] = org1[0] + width * right1[0];
867         vert[ 1] = org1[1] + width * right1[1];
868         vert[ 2] = org1[2] + width * right1[2];
869         vert[ 4] = org1[0] - width * right1[0];
870         vert[ 5] = org1[1] - width * right1[1];
871         vert[ 6] = org1[2] - width * right1[2];
872         vert[ 8] = org2[0] - width * right2[0];
873         vert[ 9] = org2[1] - width * right2[1];
874         vert[10] = org2[2] - width * right2[2];
875         vert[12] = org2[0] + width * right2[0];
876         vert[13] = org2[1] + width * right2[1];
877         vert[14] = org2[2] + width * right2[2];
878 }