]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - r_shadow.h
Add more debugging prints in Draw_CachePic, most of these are for edge cases.
[xonotic/darkplaces.git] / r_shadow.h
1
2 #ifndef R_SHADOW_H
3 #define R_SHADOW_H
4
5 #define R_SHADOW_SHADOWMAP_NUMCUBEMAPS 8
6
7 extern cvar_t r_shadow_bumpscale_basetexture;
8 extern cvar_t r_shadow_bumpscale_bumpmap;
9 extern cvar_t r_shadow_debuglight;
10 extern cvar_t r_shadow_gloss;
11 extern cvar_t r_shadow_gloss2intensity;
12 extern cvar_t r_shadow_glossintensity;
13 extern cvar_t r_shadow_glossexponent;
14 extern cvar_t r_shadow_gloss2exponent;
15 extern cvar_t r_shadow_glossexact;
16 extern cvar_t r_shadow_lightattenuationpower;
17 extern cvar_t r_shadow_lightattenuationscale;
18 extern cvar_t r_shadow_lightintensityscale;
19 extern cvar_t r_shadow_lightradiusscale;
20 extern cvar_t r_shadow_projectdistance;
21 extern cvar_t r_shadow_frontsidecasting;
22 extern cvar_t r_shadow_realtime_dlight;
23 extern cvar_t r_shadow_realtime_dlight_shadows;
24 extern cvar_t r_shadow_realtime_dlight_svbspculling;
25 extern cvar_t r_shadow_realtime_dlight_portalculling;
26 extern cvar_t r_shadow_realtime_world;
27 extern cvar_t r_shadow_realtime_world_lightmaps;
28 extern cvar_t r_shadow_realtime_world_shadows;
29 extern cvar_t r_shadow_realtime_world_compile;
30 extern cvar_t r_shadow_realtime_world_compileshadow;
31 extern cvar_t r_shadow_realtime_world_compilesvbsp;
32 extern cvar_t r_shadow_realtime_world_compileportalculling;
33 extern cvar_t r_shadow_scissor;
34
35 // used by shader for bouncegrid feature
36 typedef struct r_shadow_bouncegrid_settings_s
37 {
38         qboolean staticmode;
39         qboolean bounceanglediffuse;
40         qboolean directionalshading;
41         qboolean includedirectlighting;
42         qboolean blur;
43         qboolean normalizevectors;
44         int floatcolors;
45         float dlightparticlemultiplier;
46         qboolean hitmodels;
47         float lightradiusscale;
48         int maxbounce;
49         float lightpathsize_initial;
50         float lightpathsize_conespread;
51         float particlebounceintensity;
52         float particleintensity;
53         int maxphotons;
54         float energyperphoton;
55         float spacing[3];
56         int rng_type;
57         int rng_seed;
58         float bounceminimumintensity2;
59 }
60 r_shadow_bouncegrid_settings_t;
61
62 typedef struct r_shadow_bouncegrid_state_s
63 {
64         r_shadow_bouncegrid_settings_t settings;
65         qboolean capable;
66         qboolean allowdirectionalshading;
67         qboolean directional; // copied from settings.directionalshading after createtexture is decided
68         qboolean createtexture; // set to true to recreate the texture rather than updating it - happens when size changes or directional changes
69         rtexture_t *texture;
70         matrix4x4_t matrix;
71         vec_t intensity;
72         double lastupdatetime;
73         int resolution[3];
74         int numpixels;
75         int pixelbands;
76         int pixelsperband;
77         int bytesperband;
78         float spacing[3];
79         float ispacing[3];
80         vec3_t mins;
81         vec3_t maxs;
82         vec3_t size;
83         int maxsplatpaths;
84
85         // per-frame data that is very temporary
86         int numsplatpaths;
87         struct r_shadow_bouncegrid_splatpath_s *splatpaths;
88         int highpixels_index; // which one is active - this toggles when doing blur
89         float *highpixels; // equals blurpixels[highpixels_index]
90         float *blurpixels[2];
91         unsigned char *u8pixels; // temporary processing buffer when outputting to rgba8 format
92         unsigned short *fp16pixels; // temporary processing buffer when outputting to rgba16f format
93 }
94 r_shadow_bouncegrid_state_t;
95
96 extern r_shadow_bouncegrid_state_t r_shadow_bouncegrid_state;
97
98 void R_Shadow_Init(void);
99 qboolean R_Shadow_ShadowMappingEnabled(void);
100 void R_Shadow_ShadowMapFromList(int numverts, int numtris, const float *vertex3f, const int *elements, int numsidetris, const int *sidetotals, const unsigned char *sides, const int *sidetris);
101 int R_Shadow_CalcTriangleSideMask(const vec3_t p1, const vec3_t p2, const vec3_t p3, float bias);
102 int R_Shadow_CalcSphereSideMask(const vec3_t p1, float radius, float bias);
103 int R_Shadow_ChooseSidesFromBox(int firsttriangle, int numtris, const float *invertex3f, const int *elements, const matrix4x4_t *worldtolight, const vec3_t projectorigin, const vec3_t projectdirection, const vec3_t lightmins, const vec3_t lightmaxs, const vec3_t surfacemins, const vec3_t surfacemaxs, int *totals);
104 void R_Shadow_RenderLighting(int texturenumsurfaces, const msurface_t **texturesurfacelist);
105 void R_Shadow_RenderMode_Begin(void);
106 void R_Shadow_RenderMode_ActiveLight(const rtlight_t *rtlight);
107 void R_Shadow_RenderMode_Reset(void);
108 void R_Shadow_RenderMode_Lighting(qboolean transparent, qboolean shadowmapping, qboolean noselfshadowpass);
109 void R_Shadow_RenderMode_DrawDeferredLight(qboolean shadowmapping);
110 void R_Shadow_RenderMode_VisibleLighting(qboolean transparent);
111 void R_Shadow_RenderMode_End(void);
112 void R_Shadow_ClearStencil(void);
113 void R_Shadow_SetupEntityLight(const entity_render_t *ent);
114
115 qboolean R_Shadow_ScissorForBBox(const float *mins, const float *maxs);
116
117 // these never change, they are used to create attenuation matrices
118 extern matrix4x4_t matrix_attenuationxyz;
119 extern matrix4x4_t matrix_attenuationz;
120
121 void R_Shadow_UpdateWorldLightSelection(void);
122
123 extern rtlight_t *r_shadow_compilingrtlight;
124
125 void R_RTLight_Update(rtlight_t *rtlight, int isstatic, matrix4x4_t *matrix, vec3_t color, int style, const char *cubemapname, int shadow, vec_t corona, vec_t coronasizescale, vec_t ambientscale, vec_t diffusescale, vec_t specularscale, int flags);
126 void R_RTLight_Compile(rtlight_t *rtlight);
127 void R_RTLight_Uncompile(rtlight_t *rtlight);
128
129 void R_Shadow_PrepareLights(void);
130 void R_Shadow_ClearShadowMapTexture(void);
131 void R_Shadow_DrawPrepass(void);
132 void R_Shadow_DrawLights(void);
133 void R_Shadow_DrawCoronas(void);
134
135 extern int maxshadowmark;
136 extern int numshadowmark;
137 extern int *shadowmark;
138 extern int *shadowmarklist;
139 extern int shadowmarkcount;
140 void R_Shadow_PrepareShadowMark(int numtris);
141
142 extern int maxshadowsides;
143 extern int numshadowsides;
144 extern unsigned char *shadowsides;
145 extern int *shadowsideslist;
146 void R_Shadow_PrepareShadowSides(int numtris);
147
148 void R_Shadow_PrepareModelShadows(void);
149
150 #define LP_LIGHTMAP             1
151 #define LP_RTWORLD              2
152 #define LP_DYNLIGHT             4
153 void R_CompleteLightPoint(float *ambient, float *diffuse, float *lightdir, const vec3_t p, const int flags, float lightmapintensity, float ambientintensity);
154
155 void R_Shadow_DrawShadowMaps(void);
156
157 #endif