X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=render.h;h=98ea4ebf7d84ef69bc3bb6bdf58d02d5048dfaa5;hb=df8727697622029dd7a03047999ffc19b49e44ea;hp=e0a6a816a17c65da34d6ae25fc89dd78c293fb24;hpb=7d1be6a3730dffa3f81c847f1ba1a756a90600ff;p=xonotic%2Fdarkplaces.git diff --git a/render.h b/render.h index e0a6a816..98ea4ebf 100644 --- a/render.h +++ b/render.h @@ -21,7 +21,14 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #ifndef RENDER_H #define RENDER_H -extern qbyte r_pvsbits[(MAX_MAP_LEAFS+7)>>3]; +// flag arrays used for visibility checking on world model +// (all other entities have no per-surface/per-leaf visibility checks) +// TODO: dynamic resize according to r_refdef.worldmodel->brush.num_clusters +qbyte r_pvsbits[(32768+7)>>3]; +// TODO: dynamic resize according to r_refdef.worldmodel->brush.num_leafs +qbyte r_worldleafvisible[32768]; +// TODO: dynamic resize according to r_refdef.worldmodel->brush.num_surfaces +qbyte r_worldsurfacevisible[262144]; extern matrix4x4_t r_identitymatrix; @@ -52,11 +59,11 @@ extern void SHOWLMP_drawall(void); extern void SHOWLMP_clear(void); // render profiling stuff -extern qboolean intimerefresh; extern char r_speeds_string[1024]; // lighting stuff extern cvar_t r_ambient; +extern cvar_t gl_flashblend; // vis stuff extern cvar_t r_novis; @@ -69,18 +76,46 @@ extern cvar_t r_lerpmodels; extern cvar_t r_waterscroll; extern cvar_t r_watershader; +extern cvar_t developer_texturelogging; + +typedef struct rmesh_s +{ + // vertices of this mesh + int maxvertices; + int numvertices; + float *vertex3f; + float *svector3f; + float *tvector3f; + float *normal3f; + float *texcoord2f; + float *texcoordlightmap2f; + float *color4f; + // triangles of this mesh + int maxtriangles; + int numtriangles; + int *element3i; + int *neighbor3i; + // snapping epsilon + float epsilon2; +} +rmesh_t; + // useful functions for rendering void R_ModulateColors(float *in, float *out, int verts, float r, float g, float b); void R_FillColors(float *out, int verts, float r, float g, float b, float a); +int R_Mesh_AddVertex3f(rmesh_t *mesh, const float *v); +void R_Mesh_AddPolygon3f(rmesh_t *mesh, int numvertices, float *vertex3f); +void R_Mesh_AddBrushMeshFromPlanes(rmesh_t *mesh, int numplanes, mplane_t *planes); #define TOP_RANGE 16 // soldier uniform colors #define BOTTOM_RANGE 96 //============================================================================= -extern int r_framecount; -extern mplane_t frustum[4]; -extern int c_alias_polys, c_light_polys, c_faces, c_nodes, c_leafs, c_models, c_bmodels, c_sprites, c_particles, c_dlights; +extern int r_framecount; +extern mplane_t frustum[5]; + +extern int c_alias_polys, c_light_polys, c_faces, c_nodes, c_leafs, c_models, c_bmodels, c_sprites, c_particles, c_dlights, c_meshs, c_meshelements, c_rt_lights, c_rt_clears, c_rt_scissored, c_rt_shadowmeshes, c_rt_shadowtris, c_rt_lightmeshes, c_rt_lighttris, c_rtcached_shadowmeshes, c_rtcached_shadowtris, c_bloom, c_bloomcopies, c_bloomcopypixels, c_bloomdraws, c_bloomdrawpixels; // brightness of world lightmaps and related lighting // (often reduced when world rtlights are enabled) @@ -133,18 +168,14 @@ void R_RenderView(void); // must call R_UpdateWorld and set r_refdef first void R_InitSky (qbyte *src, int bytesperpixel); // called at level load -void R_WorldVisibility(entity_render_t *ent); -void R_DrawWorld(entity_render_t *ent); +void R_WorldVisibility(); void R_DrawParticles(void); void R_DrawExplosions(void); #define gl_solid_format 3 #define gl_alpha_format 4 -//#define PARANOID 1 - int R_CullBox(const vec3_t mins, const vec3_t maxs); -#define VIS_CullBox(mins,maxs) (R_CullBox((mins), (maxs)) || (cl.worldmodel && cl.worldmodel->brush.BoxTouchingPVS && !cl.worldmodel->brush.BoxTouchingPVS(cl.worldmodel, r_pvsbits, (mins), (maxs)))) extern qboolean fogenabled; extern vec3_t fogcolor; @@ -169,6 +200,16 @@ extern cvar_t gl_dither; #include "r_light.h" +extern rtexture_t *r_texture_blanknormalmap; +extern rtexture_t *r_texture_white; +extern rtexture_t *r_texture_black; +extern rtexture_t *r_texture_notexture; +extern rtexture_t *r_texture_whitecube; +extern rtexture_t *r_texture_normalizationcube; +#define NUM_DETAILTEXTURES 1 +extern rtexture_t *r_texture_detailtextures[NUM_DETAILTEXTURES]; +extern rtexture_t *r_texture_distorttexture[64]; + void R_TimeReport(char *name); void R_TimeReport_Start(void); void R_TimeReport_End(void);