2 Copyright (C) 1996-1997 Id Software, Inc.
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.
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.
13 See the GNU General Public License for more details.
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.
25 ==============================================================================
29 ==============================================================================
34 // in memory representation
48 typedef struct mplane_s
52 // for texture axis selection and fast side tests
58 #define SHADERSTAGE_SKY 0
59 #define SHADERSTAGE_NORMAL 1
60 #define SHADERSTAGE_COUNT 2
62 #define SHADERFLAGS_NEEDLIGHTMAP 1
64 #define SURF_PLANEBACK 2
65 #define SURF_DRAWSKY 4
66 #define SURF_DRAWTURB 0x10
67 #define SURF_LIGHTMAP 0x20
68 #define SURF_DRAWNOALPHA 0x100
69 #define SURF_DRAWFULLBRIGHT 0x200
70 #define SURF_LIGHTBOTHSIDES 0x400
71 #define SURF_SHADOWCAST 0x1000 // this polygon can cast stencil shadows
72 #define SURF_SHADOWLIGHT 0x2000 // this polygon can be lit by stencil shadowing
73 #define SURF_WATERALPHA 0x4000 // this polygon's alpha is modulated by r_wateralpha
75 #define SURFRENDER_OPAQUE 0
76 #define SURFRENDER_ALPHA 1
77 #define SURFRENDER_ADD 2
79 struct entity_render_s;
82 // change this stuff when real shaders are added
83 typedef struct Cshader_s
85 void (*shaderfunc[SHADERSTAGE_COUNT])(const struct entity_render_s *ent, const struct texture_s *texture, struct msurface_s **surfchain);
90 extern Cshader_t Cshader_wall_lightmap;
91 extern Cshader_t Cshader_water;
92 extern Cshader_t Cshader_sky;
94 typedef struct texture_s
99 unsigned int width, height;
103 // position in the model's textures array
106 // type of rendering (SURFRENDER_ value)
109 // base texture without fullbrights, never NULL
111 // fullbrights texture, NULL if no fullbrights used
112 rtexture_t *glowtexture;
113 // alpha texture (used for fogging), NULL if opaque
114 rtexture_t *fogtexture;
115 // detail texture (usually not used if transparent)
116 rtexture_t *detailtexture;
117 // normalmap for bumpmap shading
118 rtexture_t *nmaptexture;
119 // color filtering for glossy surfaces
120 rtexture_t *glosstexture;
122 // shader to use for this texture
125 // total frames in sequence and alternate sequence
127 // direct pointers to each of the frames in the sequences
128 // (indexed as [alternate][frame])
129 struct texture_s *anim_frames[2][10];
130 // set if animated or there is an alternate frame set
131 // (this is an optimization in the renderer)
133 // the current texture frame in animation
134 struct texture_s *currentframe;
135 // current alpha of the texture
154 // LordHavoc: replaces glpoly, triangle mesh
155 typedef struct surfmesh_s
157 // can be multiple meshs per surface
158 struct surfmesh_s *chain;
159 int numverts; // number of vertices in the mesh
160 int numtriangles; // number of triangles in the mesh
161 float *verts; // float[verts*4] vertex locations
162 float *svectors; // float[verts*4] direction of 'S' (right) texture axis for each vertex
163 float *tvectors; // float[verts*4] direction of 'T' (down) texture axis for each vertex
164 float *normals; // float[verts*4] direction of 'R' (out) texture axis for each vertex
165 int *lightmapoffsets; // index into surface's lightmap samples for vertex lighting
166 float *str; // float[verts*4] texcoords for surface texture
167 float *uvw; // float[verts*4] texcoords for lightmap texture
168 float *abc; // float[verts*4] texcoords for detail texture
169 int *index; // int[tris*3] triangles of the mesh, 3 indices into vertex arrays for each
170 int *triangleneighbors; // int[tris*3] neighboring triangle on each edge (-1 if none)
174 typedef struct msurface_s
176 // surface number, to avoid having to do a divide to find the number of a surface from it's address
178 // should be drawn if visframe == r_framecount (set by PrepareSurfaces)
180 // should be drawn if onscreen and not a backface (used for setting visframe)
182 // chain of surfaces marked visible by pvs
183 //struct msurface_s *pvschain;
185 // the node plane this is on, backwards if SURF_PLANEBACK flag set
190 // look up in model->surfedges[], negative numbers are backwards edges
194 short texturemins[2];
199 // index into d_lightstylevalue array, 255 means not used (black)
200 qbyte styles[MAXLIGHTMAPS];
201 // RGB lighting data [numstyles][height][width][3]
203 // stain to apply on lightmap (soot/dirt/blood/whatever)
206 // these fields are generated during model loading
207 // the lightmap texture fragment to use on the surface
208 rtexture_t *lightmaptexture;
209 // the stride when building lightmaps to comply with fragment update
210 int lightmaptexturestride;
211 // mesh for rendering
214 // these are just 3D points defining the outline of the polygon,
215 // no texcoord info (that can be generated from these)
218 // bounding box for onscreen checks, and center for sorting
219 vec3_t poly_mins, poly_maxs, poly_center;
221 // neighboring surfaces (one per poly_numverts)
222 //struct msurface_s **neighborsurfaces;
223 // currently used only for generating static shadow volumes
226 // these are regenerated every frame
228 // if this == r_framecount there are dynamic lights on the surface
230 // which dynamic lights are touching this surface
231 // (only access this if dlightframe is current)
233 // avoid redundent addition of dlights
236 // if lightmap settings changed, this forces update
241 typedef struct mnode_s
247 struct mnode_s *parent;
248 struct mportal_s *portals;
250 // for bounding box culling
256 struct mnode_s *children[2];
258 unsigned short firstsurface;
259 unsigned short numsurfaces;
263 typedef struct mleaf_s
266 // always negative in leafs
269 struct mnode_s *parent;
270 struct mportal_s *portals;
272 // for bounding box culling
277 // next leaf in pvschain
278 struct mleaf_s *pvschain;
279 // potentially visible if current (model->pvsframecount)
281 // visible if marked current (r_framecount)
283 // used by certain worldnode variants to avoid processing the same leaf twice in a frame
285 // used by polygon-through-portals visibility checker
288 qbyte *compressed_vis;
290 int *firstmarksurface;
292 qbyte ambient_sound_level[NUM_AMBIENTS];
298 dclipnode_t *clipnodes;
308 typedef struct mportal_s
310 struct mportal_s *next; // the next portal on this leaf
311 mleaf_t *here; // the leaf this portal is on
312 mleaf_t *past; // the leaf through this portal (infront)
316 int visframe; // is this portal visible this frame?
320 typedef struct svbspmesh_s
322 struct svbspmesh_s *next;
323 int numverts, maxverts;
324 int numtriangles, maxtriangles;
330 typedef struct mlight_s
334 // distance attenuation scale (smaller is a larger light)
336 // color and brightness combined
338 // brightness bias, used for limiting radius without a hard edge
340 // spotlight direction
342 // cosine of spotlight cone angle (or 0 if not a spotlight)
344 // distance bias (larger value is softer and darker)
346 // light style controlling this light
348 // maximum extent of the light for shading purposes
350 // maximum extent of the light for culling purposes
354 // surfaces this shines on
356 msurface_t **surfaces;
359 // precomputed shadow volume meshs
360 //svbspmesh_t *shadowvolume;
361 //vec3_t shadowvolumemins, shadowvolumemaxs;
362 shadowmesh_t *shadowvolume;
367 extern rtexture_t *r_notexture;
368 extern texture_t r_notexture_mip;
371 void Mod_LoadBrushModel (struct model_s *mod, void *buffer);
372 void Mod_BrushInit(void);
374 void Mod_FindNonSolidLocation(vec3_t pos, struct model_s *mod);
375 mleaf_t *Mod_PointInLeaf (const float *p, struct model_s *model);
376 int Mod_PointContents (const float *p, struct model_s *model);
377 qbyte *Mod_LeafPVS (mleaf_t *leaf, struct model_s *model);
378 void Mod_BuildPVSTextureChains(struct model_s *model);