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.
22 ==============================================================================
26 ==============================================================================
31 // in memory representation
45 typedef struct mplane_s
49 int type; // for texture axis selection and fast side tests
50 // LordHavoc: faster than id's signbits system
51 int (*BoxOnPlaneSideFunc) (vec3_t emins, vec3_t emaxs, struct mplane_s *p);
55 typedef struct texture_s
58 unsigned width, height;
59 int flags; // LordHavoc: SURF_ flags
62 rtexture_t *glowtexture;
63 rtexture_t *fogtexture; // alpha-only version of main texture
65 int anim_total; // total frames in sequence (< 2 = not animated)
66 struct texture_s *anim_frames[10]; // LordHavoc: direct pointers to each of the frames in the sequence
67 struct texture_s *alternate_anims; // bmodels in frame 1 use these
72 #define SURF_PLANEBACK 2
73 #define SURF_DRAWSKY 4
74 //#define SURF_DRAWSPRITE 8
75 #define SURF_DRAWTURB 0x10
76 #define SURF_LIGHTMAP 0x20
77 //#define SURF_DRAWBACKGROUND 0x40
78 //#define SURF_UNDERWATER 0x80
79 #define SURF_DRAWNOALPHA 0x100
80 #define SURF_DRAWFULLBRIGHT 0x200
81 #define SURF_LIGHTBOTHSIDES 0x400
82 #define SURF_CLIPSOLID 0x800 // this polygon can obscure other polygons
98 typedef struct surfvertex_s
102 // offset into lightmap (used by vertex lighting)
104 // texture coordinates
106 // lightmap coordinates
111 // LordHavoc: replaces glpoly, triangle mesh
112 typedef struct surfmesh_s
116 surfvertex_t *vertex;
121 typedef struct msurface_s
123 // should be drawn if visframe == r_framecount (set by WorldNode functions)
126 // the node plane this is on, backwards if SURF_PLANEBACK flag set
130 struct Cshader_s *shader;
131 struct msurface_s *chain; // shader rendering chain
133 // look up in model->surfedges[], negative numbers are backwards edges
137 short texturemins[2];
141 texture_t *currenttexture; // updated (animated) during early surface processing each frame
143 // index into d_lightstylevalue array, 255 means not used (black)
144 qbyte styles[MAXLIGHTMAPS];
145 // RGB lighting data [numstyles][height][width][3]
147 // stain to apply on lightmap (soot/dirt/blood/whatever)
150 // these fields are generated during model loading
151 // the lightmap texture fragment to use on the surface
152 rtexture_t *lightmaptexture;
153 // the stride when building lightmaps to comply with fragment update
154 int lightmaptexturestride;
155 // mesh for rendering
158 // these are just 3D points defining the outline of the polygon,
159 // no texcoord info (that can be generated from these)
163 // these are regenerated every frame
167 // avoid redundent addition of dlights
169 // only render each surface once
171 // marked when surface is prepared for the frame
174 // these cause lightmap updates if regenerated
175 // values currently used in lightmap
176 unsigned short cached_light[MAXLIGHTMAPS];
177 // if lightmap was lit by dynamic lights, force update on next frame
179 // to cause lightmap to be rerendered when v_overbrightbits changes
180 short cached_lightscalebit;
181 // rerender lightmaps when r_ambient changes
182 float cached_ambient;
186 #define SHADERSTAGE_SKY 0
187 #define SHADERSTAGE_NORMAL 1
188 #define SHADERSTAGE_COUNT 2
190 // change this stuff when real shaders are added
191 typedef struct Cshader_s
193 void (*shaderfunc[SHADERSTAGE_COUNT])(msurface_t *firstsurf);
194 // list of surfaces using this shader (used during surface rendering)
199 extern Cshader_t Cshader_wall_vertex;
200 extern Cshader_t Cshader_wall_lightmap;
201 extern Cshader_t Cshader_wall_fullbright;
202 extern Cshader_t Cshader_water;
203 extern Cshader_t Cshader_sky;
205 // warning: if this is changed, references must be updated in cpu_* assembly files
206 typedef struct mnode_s
209 int contents; // 0, to differentiate from leafs
211 struct mnode_s *parent;
212 struct mportal_s *portals;
214 // for bounding box culling
220 struct mnode_s *children[2];
222 unsigned short firstsurface;
223 unsigned short numsurfaces;
227 typedef struct mleaf_s
230 int contents; // will be a negative contents number
232 struct mnode_s *parent;
233 struct mportal_s *portals;
235 // for bounding box culling
240 int visframe; // visible if current (r_framecount)
241 int worldnodeframe; // used by certain worldnode variants to avoid processing the same leaf twice in a frame
242 int portalmarkid; // used by polygon-through-portals visibility checker
244 // LordHavoc: leaf based dynamic lighting
248 qbyte *compressed_vis;
250 msurface_t **firstmarksurface;
252 qbyte ambient_sound_level[NUM_AMBIENTS];
258 dclipnode_t *clipnodes;
267 typedef struct mportal_s
269 struct mportal_s *next; // the next portal on this leaf
270 mleaf_t *here; // the leaf this portal is on
271 mleaf_t *past; // the leaf through this portal (infront)
275 int visframe; // is this portal visible this frame?
279 extern rtexture_t *r_notexture;
280 extern texture_t r_notexture_mip;
283 void Mod_LoadBrushModel (struct model_s *mod, void *buffer);
284 void Mod_BrushInit(void);
285 void Mod_FindNonSolidLocation(vec3_t pos, struct model_s *mod);