]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - client.h
improve keepalive handling (also send keepalives during map loading); but still not...
[xonotic/darkplaces.git] / client.h
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 // client.h
21
22 #ifndef CLIENT_H
23 #define CLIENT_H
24
25 #include "matrixlib.h"
26 #include "snd_main.h"
27
28 // LordHavoc: 256 dynamic lights
29 #define MAX_DLIGHTS 256
30
31 // this is the maximum number of input packets that can be predicted
32 #define CL_MAX_USERCMDS 256
33
34 // flags for rtlight rendering
35 #define LIGHTFLAG_NORMALMODE 1
36 #define LIGHTFLAG_REALTIMEMODE 2
37
38 typedef struct effect_s
39 {
40         int active;
41         vec3_t origin;
42         double starttime;
43         float framerate;
44         int modelindex;
45         int startframe;
46         int endframe;
47         // these are for interpolation
48         int frame;
49         double frame1time;
50         double frame2time;
51 }
52 cl_effect_t;
53
54 typedef struct beam_s
55 {
56         int             entity;
57         // draw this as lightning polygons, or a model?
58         int             lightning;
59         struct model_s  *model;
60         float   endtime;
61         vec3_t  start, end;
62 }
63 beam_t;
64
65 typedef struct rtlight_s
66 {
67         // shadow volumes are done entirely in model space, so there are no matrices for dealing with them...  they just use the origin
68
69         // note that the world to light matrices are inversely scaled (divided) by lightradius
70
71         // core properties
72         // matrix for transforming light filter coordinates to world coordinates
73         matrix4x4_t matrix_lighttoworld;
74         // matrix for transforming world coordinates to light filter coordinates
75         matrix4x4_t matrix_worldtolight;
76         // typically 1 1 1, can be lower (dim) or higher (overbright)
77         vec3_t color;
78         // size of the light (remove?)
79         vec_t radius;
80         // light filter
81         char cubemapname[64];
82         // light style to monitor for brightness
83         int style;
84         // whether light should render shadows
85         int shadow;
86         // intensity of corona to render
87         vec_t corona;
88         // radius scale of corona to render (1.0 means same as light radius)
89         vec_t coronasizescale;
90         // ambient intensity to render
91         vec_t ambientscale;
92         // diffuse intensity to render
93         vec_t diffusescale;
94         // specular intensity to render
95         vec_t specularscale;
96         // LIGHTFLAG_* flags
97         int flags;
98
99         // generated properties
100         // used only for shadow volumes
101         vec3_t shadoworigin;
102         // culling
103         vec3_t cullmins;
104         vec3_t cullmaxs;
105         // culling
106         //vec_t cullradius;
107         // squared cullradius
108         //vec_t cullradius2;
109
110         // rendering properties, updated each time a light is rendered
111         // this is rtlight->color * d_lightstylevalue
112         vec3_t currentcolor;
113         // used by corona updates, due to occlusion query
114         float corona_visibility;
115         unsigned int corona_queryindex_visiblepixels;
116         unsigned int corona_queryindex_allpixels;
117         // this is R_Shadow_Cubemap(rtlight->cubemapname)
118         rtexture_t *currentcubemap;
119
120         // static light info
121         // true if this light should be compiled as a static light
122         int isstatic;
123         // true if this is a compiled world light, cleared if the light changes
124         int compiled;
125         // premade shadow volumes to render for world entity
126         shadowmesh_t *static_meshchain_shadow_zpass;
127         shadowmesh_t *static_meshchain_shadow_zfail;
128         // used for visibility testing (more exact than bbox)
129         int static_numleafs;
130         int static_numleafpvsbytes;
131         int *static_leaflist;
132         unsigned char *static_leafpvs;
133         // surfaces seen by light
134         int static_numsurfaces;
135         int *static_surfacelist;
136         // flag bits indicating which triangles of the world model should cast
137         // shadows, and which ones should be lit
138         //
139         // this avoids redundantly scanning the triangles in each surface twice
140         // for whether they should cast shadows, once in culling and once in the
141         // actual shadowmarklist production.
142         int static_numshadowtrispvsbytes;
143         unsigned char *static_shadowtrispvs;
144         // this allows the lighting batch code to skip backfaces andother culled
145         // triangles not relevant for lighting
146         // (important on big surfaces such as terrain)
147         int static_numlighttrispvsbytes;
148         unsigned char *static_lighttrispvs;
149 }
150 rtlight_t;
151
152 typedef struct dlight_s
153 {
154         // destroy light after this time
155         // (dlight only)
156         vec_t die;
157         // the entity that owns this light (can be NULL)
158         // (dlight only)
159         struct entity_render_s *ent;
160         // location
161         // (worldlight: saved to .rtlights file)
162         vec3_t origin;
163         // worldlight orientation
164         // (worldlight only)
165         // (worldlight: saved to .rtlights file)
166         vec3_t angles;
167         // dlight orientation/scaling/location
168         // (dlight only)
169         matrix4x4_t matrix;
170         // color of light
171         // (worldlight: saved to .rtlights file)
172         vec3_t color;
173         // cubemap name to use on this light
174         // (worldlight: saved to .rtlights file)
175         char cubemapname[64];
176         // make light flash while selected
177         // (worldlight only)
178         int selected;
179         // brightness (not really radius anymore)
180         // (worldlight: saved to .rtlights file)
181         vec_t radius;
182         // drop intensity this much each second
183         // (dlight only)
184         vec_t decay;
185         // intensity value which is dropped over time
186         // (dlight only)
187         vec_t intensity;
188         // initial values for intensity to modify
189         // (dlight only)
190         vec_t initialradius;
191         vec3_t initialcolor;
192         // light style which controls intensity of this light
193         // (worldlight: saved to .rtlights file)
194         int style;
195         // cast shadows
196         // (worldlight: saved to .rtlights file)
197         int shadow;
198         // corona intensity
199         // (worldlight: saved to .rtlights file)
200         vec_t corona;
201         // radius scale of corona to render (1.0 means same as light radius)
202         // (worldlight: saved to .rtlights file)
203         vec_t coronasizescale;
204         // ambient intensity to render
205         // (worldlight: saved to .rtlights file)
206         vec_t ambientscale;
207         // diffuse intensity to render
208         // (worldlight: saved to .rtlights file)
209         vec_t diffusescale;
210         // specular intensity to render
211         // (worldlight: saved to .rtlights file)
212         vec_t specularscale;
213         // LIGHTFLAG_* flags
214         // (worldlight: saved to .rtlights file)
215         int flags;
216         // linked list of world lights
217         // (worldlight only)
218         struct dlight_s *next;
219         // embedded rtlight struct for renderer
220         // (worldlight only)
221         rtlight_t rtlight;
222 }
223 dlight_t;
224
225 typedef struct frameblend_s
226 {
227         int frame;
228         float lerp;
229 }
230 frameblend_t;
231
232 // LordHavoc: this struct is intended for the renderer but some fields are
233 // used by the client.
234 //
235 // The renderer should not rely on any changes to this struct to be persistent
236 // across multiple frames because temp entities are wiped every frame, but it
237 // is acceptable to cache things in this struct that are not critical.
238 //
239 // For example the r_cullentities_trace code does such caching.
240 typedef struct entity_render_s
241 {
242         // location
243         //vec3_t origin;
244         // orientation
245         //vec3_t angles;
246         // transform matrix for model to world
247         matrix4x4_t matrix;
248         // transform matrix for world to model
249         matrix4x4_t inversematrix;
250         // opacity (alpha) of the model
251         float alpha;
252         // size the model is shown
253         float scale;
254
255         // NULL = no model
256         dp_model_t *model;
257         // number of the entity represents, or 0 for non-network entities
258         int entitynumber;
259         // literal colormap colors for renderer, if both are 0 0 0 it is not colormapped
260         vec3_t colormap_pantscolor;
261         vec3_t colormap_shirtcolor;
262         // light, particles, etc
263         int effects;
264         // qw CTF flags and other internal-use-only effect bits
265         int internaleffects;
266         // for Alias models
267         int skinnum;
268         // render flags
269         int flags;
270
271         // colormod tinting of models
272         float colormod[3];
273
274         // interpolated animation
275
276         // frame that the model is interpolating from
277         int frame1;
278         // frame that the model is interpolating to
279         int frame2;
280         // interpolation factor, usually computed from frame2time
281         float framelerp;
282         // time frame1 began playing (for framegroup animations)
283         double frame1time;
284         // time frame2 began playing (for framegroup animations)
285         double frame2time;
286         // time of last model change (for shader animations)
287         double shadertime;
288
289         // calculated by the renderer (but not persistent)
290
291         // calculated during R_AddModelEntities
292         vec3_t mins, maxs;
293         // 4 frame numbers (-1 if not used) and their blending scalers (0-1), if interpolation is not desired, use frame instead
294         frameblend_t frameblend[4];
295
296         // current lighting from map (updated ONLY by client code, not renderer)
297         vec3_t modellight_ambient;
298         vec3_t modellight_diffuse; // q3bsp
299         vec3_t modellight_lightdir; // q3bsp
300
301         // FIELDS UPDATED BY RENDERER:
302         // last time visible during trace culling
303         double last_trace_visibility;
304 }
305 entity_render_t;
306
307 typedef struct entity_persistent_s
308 {
309         vec3_t trail_origin;
310
311         // particle trail
312         float trail_time;
313         qboolean trail_allowed; // set to false by teleports, true by update code, prevents bad lerps
314
315         // muzzleflash fading
316         float muzzleflash;
317
318         // interpolated movement
319
320         // start time of move
321         float lerpstarttime;
322         // time difference from start to end of move
323         float lerpdeltatime;
324         // the move itself, start and end
325         float oldorigin[3];
326         float oldangles[3];
327         float neworigin[3];
328         float newangles[3];
329 }
330 entity_persistent_t;
331
332 typedef struct entity_s
333 {
334         // baseline state (default values)
335         entity_state_t state_baseline;
336         // previous state (interpolating from this)
337         entity_state_t state_previous;
338         // current state (interpolating to this)
339         entity_state_t state_current;
340
341         // used for regenerating parts of render
342         entity_persistent_t persistent;
343
344         // the only data the renderer should know about
345         entity_render_t render;
346 }
347 entity_t;
348
349 typedef struct usercmd_s
350 {
351         vec3_t  viewangles;
352
353 // intended velocities
354         float   forwardmove;
355         float   sidemove;
356         float   upmove;
357
358         vec3_t  cursor_screen;
359         vec3_t  cursor_start;
360         vec3_t  cursor_end;
361         vec3_t  cursor_impact;
362         vec3_t  cursor_normal;
363         vec_t   cursor_fraction;
364         int             cursor_entitynumber;
365
366         double time; // time the move is executed for (cl_movement: clienttime, non-cl_movement: receivetime)
367         double receivetime; // time the move was received at
368         double clienttime; // time to which server state the move corresponds to
369         int msec; // for predicted moves
370         int buttons;
371         int impulse;
372         int sequence;
373         qboolean applied; // if false we're still accumulating a move
374         qboolean predicted; // if true the sequence should be sent as 0
375
376         // derived properties
377         double frametime;
378         qboolean canjump;
379         qboolean jump;
380         qboolean crouch;
381 } usercmd_t;
382
383 typedef struct lightstyle_s
384 {
385         int             length;
386         char    map[MAX_STYLESTRING];
387 } lightstyle_t;
388
389 typedef struct scoreboard_s
390 {
391         char    name[MAX_SCOREBOARDNAME];
392         int             frags;
393         int             colors; // two 4 bit fields
394         // QW fields:
395         int             qw_userid;
396         char    qw_userinfo[MAX_USERINFO_STRING];
397         float   qw_entertime;
398         int             qw_ping;
399         int             qw_packetloss;
400         int             qw_spectator;
401         char    qw_team[8];
402         char    qw_skin[MAX_QPATH];
403 } scoreboard_t;
404
405 typedef struct cshift_s
406 {
407         float   destcolor[3];
408         float   percent;                // 0-255
409         float   alphafade;      // (any speed)
410 } cshift_t;
411
412 #define CSHIFT_CONTENTS 0
413 #define CSHIFT_DAMAGE   1
414 #define CSHIFT_BONUS    2
415 #define CSHIFT_POWERUP  3
416 #define CSHIFT_VCSHIFT  4
417 #define NUM_CSHIFTS             5
418
419 #define NAME_LENGTH     64
420
421
422 //
423 // client_state_t should hold all pieces of the client state
424 //
425
426 #define SIGNONS         4                       // signon messages to receive before connected
427
428 #define MAX_DEMOS               8
429 #define MAX_DEMONAME    16
430
431 typedef enum cactive_e
432 {
433         ca_uninitialized,       // during early startup
434         ca_dedicated,           // a dedicated server with no ability to start a client
435         ca_disconnected,        // full screen console with no connection
436         ca_connected            // valid netcon, talking to a server
437 }
438 cactive_t;
439
440 typedef enum qw_downloadtype_e
441 {
442         dl_none,
443         dl_single,
444         dl_skin,
445         dl_model,
446         dl_sound
447 }
448 qw_downloadtype_t;
449
450 typedef enum capturevideoformat_e
451 {
452         CAPTUREVIDEOFORMAT_AVI_I420,
453         CAPTUREVIDEOFORMAT_OGG_VORBIS_THEORA,
454 }
455 capturevideoformat_t;
456
457 typedef struct capturevideostate_s
458 {
459         double startrealtime;
460         double framerate;
461         qboolean active;
462         qboolean realtime;
463         qboolean error;
464         int soundrate;
465         int soundchannels;
466         int frame;
467         double starttime;
468         double lastfpstime;
469         int lastfpsframe;
470         int soundsampleframe;
471         unsigned char *screenbuffer;
472         unsigned char *outbuffer;
473         char basename[MAX_QPATH];
474         int width, height;
475
476         // precomputed RGB to YUV tables
477         // converts the RGB values to YUV (see cap_avi.c for how to use them)
478         short rgbtoyuvscaletable[3][3][256];
479         unsigned char yuvnormalizetable[3][256];
480
481         // precomputed gamma ramp (only needed if the capturevideo module uses RGB output)
482         // note: to map from these values to RGB24, you have to multiply by 255.0/65535.0, then add 0.5, then cast to integer
483         unsigned short vidramp[256 * 3];
484
485         // stuff to be filled in by the video format module
486         capturevideoformat_t format;
487         const char *formatextension;
488         qfile_t *videofile;
489                 // always use this:
490                 //   cls.capturevideo.videofile = FS_OpenRealFile(va("%s.%s", cls.capturevideo.basename, cls.capturevideo.formatextension), "wb", false);
491         void (*endvideo) ();
492         void (*videoframes) (int num);
493         void (*soundframe) (const portable_sampleframe_t *paintbuffer, size_t length);
494
495         // format specific data
496         void *formatspecific;
497 }
498 capturevideostate_t;
499
500 #define CL_MAX_DOWNLOADACKS 4
501
502 typedef struct cl_downloadack_s
503 {
504         int start, size;
505 }
506 cl_downloadack_t;
507
508 typedef struct cl_soundstats_s
509 {
510         int mixedsounds;
511         int totalsounds;
512         int latency_milliseconds;
513 }
514 cl_soundstats_t;
515
516 //
517 // the client_static_t structure is persistent through an arbitrary number
518 // of server connections
519 //
520 typedef struct client_static_s
521 {
522         cactive_t state;
523
524         // all client memory allocations go in these pools
525         mempool_t *levelmempool;
526         mempool_t *permanentmempool;
527
528 // demo loop control
529         // -1 = don't play demos
530         int demonum;
531         // list of demos in loop
532         char demos[MAX_DEMOS][MAX_DEMONAME];
533         // the actively playing demo (set by CL_PlayDemo_f)
534         char demoname[MAX_QPATH];
535
536 // demo recording info must be here, because record is started before
537 // entering a map (and clearing client_state_t)
538         qboolean demorecording;
539         fs_offset_t demo_lastcsprogssize;
540         int demo_lastcsprogscrc;
541         qboolean demoplayback;
542         qboolean timedemo;
543         // -1 = use normal cd track
544         int forcetrack;
545         qfile_t *demofile;
546         // realtime at second frame of timedemo (LordHavoc: changed to double)
547         double td_starttime;
548         int td_frames; // total frames parsed
549         double td_onesecondnexttime;
550         double td_onesecondframes;
551         double td_onesecondrealtime;
552         double td_onesecondminfps;
553         double td_onesecondmaxfps;
554         double td_onesecondavgfps;
555         int td_onesecondavgcount;
556         // LordHavoc: pausedemo
557         qboolean demopaused;
558
559         // sound mixer statistics for showsound display
560         cl_soundstats_t soundstats;
561
562         qboolean connect_trying;
563         int connect_remainingtries;
564         double connect_nextsendtime;
565         lhnetsocket_t *connect_mysocket;
566         lhnetaddress_t connect_address;
567         // protocol version of the server we're connected to
568         // (kept outside client_state_t because it's used between levels)
569         protocolversion_t protocol;
570
571 // connection information
572         // 0 to SIGNONS
573         int signon;
574         // network connection
575         netconn_t *netcon;
576
577         // download information
578         // (note: qw_download variables are also used)
579         cl_downloadack_t dp_downloadack[CL_MAX_DOWNLOADACKS];
580
581         // input sequence numbers are not reset on level change, only connect
582         int movesequence;
583         int servermovesequence;
584
585         // quakeworld stuff below
586
587         // value of "qport" cvar at time of connection
588         int qw_qport;
589         // copied from cls.netcon->qw. variables every time they change, or set by demos (which have no cls.netcon)
590         int qw_incoming_sequence;
591         int qw_outgoing_sequence;
592
593         // current file download buffer (only saved when file is completed)
594         char qw_downloadname[MAX_QPATH];
595         unsigned char *qw_downloadmemory;
596         int qw_downloadmemorycursize;
597         int qw_downloadmemorymaxsize;
598         int qw_downloadnumber;
599         int qw_downloadpercent;
600         qw_downloadtype_t qw_downloadtype;
601         // transfer rate display
602         double qw_downloadspeedtime;
603         int qw_downloadspeedcount;
604         int qw_downloadspeedrate;
605         qboolean qw_download_deflate;
606
607         // current file upload buffer (for uploading screenshots to server)
608         unsigned char *qw_uploaddata;
609         int qw_uploadsize;
610         int qw_uploadpos;
611
612         // user infostring
613         // this normally contains the following keys in quakeworld:
614         // password spectator name team skin topcolor bottomcolor rate noaim msg *ver *ip
615         char userinfo[MAX_USERINFO_STRING];
616
617         // video capture stuff
618         capturevideostate_t capturevideo;
619 }
620 client_static_t;
621
622 extern client_static_t  cls;
623
624 typedef struct client_movementqueue_s
625 {
626         double time;
627         float frametime;
628         int sequence;
629         float viewangles[3];
630         float move[3];
631         qboolean jump;
632         qboolean crouch;
633         qboolean canjump;
634 }
635 client_movementqueue_t;
636
637 //[515]: csqc
638 typedef struct
639 {
640         qboolean drawworld;
641         qboolean drawenginesbar;
642         qboolean drawcrosshair;
643 }csqc_vidvars_t;
644
645 typedef enum
646 {
647         PARTICLE_BILLBOARD = 0,
648         PARTICLE_SPARK = 1,
649         PARTICLE_ORIENTED_DOUBLESIDED = 2,
650         PARTICLE_BEAM = 3,
651         PARTICLE_INVALID = -1
652 }
653 porientation_t;
654
655 typedef enum
656 {
657         PBLEND_ALPHA = 0,
658         PBLEND_ADD = 1,
659         PBLEND_INVMOD = 2,
660         PBLEND_INVALID = -1
661 }
662 pblend_t;
663
664 typedef struct particletype_s
665 {
666         pblend_t blendmode;
667         porientation_t orientation;
668         qboolean lighting;
669 }
670 particletype_t;
671
672 typedef enum
673 {
674         pt_dead, pt_alphastatic, pt_static, pt_spark, pt_beam, pt_rain, pt_raindecal, pt_snow, pt_bubble, pt_blood, pt_smoke, pt_decal, pt_entityparticle, pt_total
675 }
676 ptype_t;
677
678 typedef struct decal_s
679 {
680         // fields used by rendering:  (40 bytes)
681         unsigned short  typeindex;
682         unsigned short  texnum;
683         vec3_t                  org;
684         vec3_t                  normal;
685         float                   size;
686         float                   alpha; // 0-255
687         unsigned char   color[3];
688         unsigned char   unused1;
689
690         // fields not used by rendering: (36 bytes in 32bit, 40 bytes in 64bit)
691         float                   time2; // used for decal fade
692         unsigned int    owner; // decal stuck to this entity
693         dp_model_t                      *ownermodel; // model the decal is stuck to (used to make sure the entity is still alive)
694         vec3_t                  relativeorigin; // decal at this location in entity's coordinate space
695         vec3_t                  relativenormal; // decal oriented this way relative to entity's coordinate space
696 }
697 decal_t;
698
699 typedef struct particle_s
700 {
701         // fields used by rendering: (40 bytes)
702         unsigned char   typeindex;
703         pblend_t   blendmode;
704         porientation_t   orientation;
705         unsigned char   texnum;
706         vec3_t                  org;
707         vec3_t                  vel; // velocity of particle, or orientation of decal, or end point of beam
708         float                   size;
709         float                   alpha; // 0-255
710         unsigned char   color[3];
711         unsigned char   qualityreduction; // enables skipping of this particle according to r_refdef.view.qualityreduction
712         float           stretch; // only for sparks
713
714         // fields not used by rendering:  (40 bytes)
715         float                   sizeincrease; // rate of size change per second
716         float                   alphafade; // how much alpha reduces per second
717         float                   time2; // used for snow fluttering and decal fade
718         float                   bounce; // how much bounce-back from a surface the particle hits (0 = no physics, 1 = stop and slide, 2 = keep bouncing forever, 1.5 is typical)
719         float                   gravity; // how much gravity affects this particle (1.0 = normal gravity, 0.0 = none)
720         float                   airfriction; // how much air friction affects this object (objects with a low mass/size ratio tend to get more air friction)
721         float                   liquidfriction; // how much liquid friction affects this object (objects with a low mass/size ratio tend to get more liquid friction)
722         float                   delayedcollisions; // time that p->bounce becomes active
723         float                   delayedspawn; // time that particle appears and begins moving
724         float                   die; // time when this particle should be removed, regardless of alpha
725 }
726 particle_t;
727
728 typedef enum cl_parsingtextmode_e
729 {
730         CL_PARSETEXTMODE_NONE,
731         CL_PARSETEXTMODE_PING,
732         CL_PARSETEXTMODE_STATUS,
733         CL_PARSETEXTMODE_STATUS_PLAYERID,
734         CL_PARSETEXTMODE_STATUS_PLAYERIP
735 }
736 cl_parsingtextmode_t;
737
738 typedef struct cl_locnode_s
739 {
740         struct cl_locnode_s *next;
741         char *name;
742         vec3_t mins, maxs;
743 }
744 cl_locnode_t;
745
746 typedef struct showlmp_s
747 {
748         qboolean        isactive;
749         float           x;
750         float           y;
751         char            label[32];
752         char            pic[128];
753 }
754 showlmp_t;
755
756 //
757 // the client_state_t structure is wiped completely at every
758 // server signon
759 //
760 typedef struct client_state_s
761 {
762         // true if playing in a local game and no one else is connected
763         int islocalgame;
764
765         // send a clc_nop periodically until connected
766         float sendnoptime;
767
768         // current input being accumulated by mouse/joystick/etc input
769         usercmd_t cmd;
770         // latest moves sent to the server that have not been confirmed yet
771         usercmd_t movecmd[CL_MAX_USERCMDS];
772
773 // information for local display
774         // health, etc
775         int stats[MAX_CL_STATS];
776         float *statsf; // points to stats[] array
777         // last known inventory bit flags, for blinking
778         int olditems;
779         // cl.time of acquiring item, for blinking
780         float item_gettime[32];
781         // last known STAT_ACTIVEWEAPON
782         int activeweapon;
783         // cl.time of changing STAT_ACTIVEWEAPON
784         float weapontime;
785         // use pain anim frame if cl.time < this
786         float faceanimtime;
787         // for stair smoothing
788         float stairsmoothz;
789         double stairsmoothtime;
790
791         // color shifts for damage, powerups
792         cshift_t cshifts[NUM_CSHIFTS];
793         // and content types
794         cshift_t prev_cshifts[NUM_CSHIFTS];
795
796 // the client maintains its own idea of view angles, which are
797 // sent to the server each frame.  The server sets punchangle when
798 // the view is temporarily offset, and an angle reset commands at the start
799 // of each level and after teleporting.
800
801         // mviewangles is read from demo
802         // viewangles is either client controlled or lerped from mviewangles
803         vec3_t mviewangles[2], viewangles;
804         // update by server, used by qc to do weapon recoil
805         vec3_t mpunchangle[2], punchangle;
806         // update by server, can be used by mods to kick view around
807         vec3_t mpunchvector[2], punchvector;
808         // update by server, used for lean+bob (0 is newest)
809         vec3_t mvelocity[2], velocity;
810         // update by server, can be used by mods for zooming
811         vec_t mviewzoom[2], viewzoom;
812         // if true interpolation the mviewangles and other interpolation of the
813         // player is disabled until the next network packet
814         // this is used primarily by teleporters, and when spectating players
815         // special checking of the old fixangle[1] is used to differentiate
816         // between teleporting and spectating
817         qboolean fixangle[2];
818
819         // client movement simulation
820         // these fields are only updated by CL_ClientMovement (called by CL_SendMove after parsing each network packet)
821         // set by CL_ClientMovement_Replay functions
822         qboolean movement_predicted;
823         // if true the CL_ClientMovement_Replay function will update origin, etc
824         qboolean movement_replay;
825         // simulated data (this is valid even if cl.movement is false)
826         vec3_t movement_origin;
827         vec3_t movement_velocity;
828         // whether the replay should allow a jump at the first sequence
829         qboolean movement_replay_canjump;
830
831 // pitch drifting vars
832         float idealpitch;
833         float pitchvel;
834         qboolean nodrift;
835         float driftmove;
836         double laststop;
837
838 //[515]: added for csqc purposes
839         float sensitivityscale;
840         csqc_vidvars_t csqc_vidvars;    //[515]: these parms must be set to true by default
841         qboolean csqc_wantsmousemove;
842         struct model_s *csqc_model_precache[MAX_MODELS];
843
844         // local amount for smoothing stepups
845         //float crouch;
846
847         // sent by server
848         qboolean paused;
849         qboolean onground;
850         qboolean inwater;
851
852         // used by bob
853         qboolean oldonground;
854         double lastongroundtime;
855         double hitgroundtime;
856
857         // don't change view angle, full screen, etc
858         int intermission;
859         // latched at intermission start
860         double completed_time;
861
862         // the timestamp of the last two messages
863         double mtime[2];
864
865         // clients view of time, time should be between mtime[0] and mtime[1] to
866         // generate a lerp point for other data, oldtime is the previous frame's
867         // value of time, frametime is the difference between time and oldtime
868         // note: cl.time may be beyond cl.mtime[0] if packet loss is occuring, it
869         // is only forcefully limited when a packet is received
870         double time, oldtime;
871         // how long it has been since the previous client frame in real time
872         // (not game time, for that use cl.time - cl.oldtime)
873         double realframetime;
874
875         // copy of realtime from last recieved message, for net trouble icon
876         float last_received_message;
877
878 // information that is static for the entire time connected to a server
879         struct model_s *model_precache[MAX_MODELS];
880         struct sfx_s *sound_precache[MAX_SOUNDS];
881
882         // FIXME: this is a lot of memory to be keeping around, this really should be dynamically allocated and freed somehow
883         char model_name[MAX_MODELS][MAX_QPATH];
884         char sound_name[MAX_SOUNDS][MAX_QPATH];
885
886         // for display on solo scoreboard
887         char levelname[40];
888         // cl_entitites[cl.viewentity] = player
889         int viewentity;
890         // the real player entity (normally same as viewentity,
891         // different than viewentity if mod uses chasecam or other tricks)
892         int realplayerentity;
893         // this is updated to match cl.viewentity whenever it is in the clients
894         // range, basically this is used in preference to cl.realplayerentity for
895         // most purposes because when spectating another player it should show
896         // their information rather than yours
897         int playerentity;
898         // max players that can be in this game
899         int maxclients;
900         // type of game (deathmatch, coop, singleplayer)
901         int gametype;
902
903         // models and sounds used by engine code (particularly cl_parse.c)
904         dp_model_t *model_bolt;
905         dp_model_t *model_bolt2;
906         dp_model_t *model_bolt3;
907         dp_model_t *model_beam;
908         sfx_t *sfx_wizhit;
909         sfx_t *sfx_knighthit;
910         sfx_t *sfx_tink1;
911         sfx_t *sfx_ric1;
912         sfx_t *sfx_ric2;
913         sfx_t *sfx_ric3;
914         sfx_t *sfx_r_exp3;
915         // indicates that the file "sound/misc/talk2.wav" was found (for use by team chat messages)
916         qboolean foundtalk2wav;
917
918 // refresh related state
919
920         // cl_entitites[0].model
921         struct model_s *worldmodel;
922
923         // the gun model
924         entity_t viewent;
925
926         // cd audio
927         int cdtrack, looptrack;
928
929 // frag scoreboard
930
931         // [cl.maxclients]
932         scoreboard_t *scores;
933
934         // keep track of svc_print parsing state (analyzes ping reports and status reports)
935         cl_parsingtextmode_t parsingtextmode;
936         int parsingtextplayerindex;
937         // set by scoreboard code when sending ping command, this causes the next ping results to be hidden
938         // (which could eat the wrong ping report if the player issues one
939         //  manually, but they would still see a ping report, just a later one
940         //  caused by the scoreboard code rather than the one they intentionally
941         //  issued)
942         int parsingtextexpectingpingforscores;
943
944         // entity database stuff
945         // latest received entity frame numbers
946 #define LATESTFRAMENUMS 3
947         int latestframenums[LATESTFRAMENUMS];
948         entityframe_database_t *entitydatabase;
949         entityframe4_database_t *entitydatabase4;
950         entityframeqw_database_t *entitydatabaseqw;
951
952         // keep track of quake entities because they need to be killed if they get stale
953         int lastquakeentity;
954         unsigned char isquakeentity[MAX_EDICTS];
955
956         // bounding boxes for clientside movement
957         vec3_t playerstandmins;
958         vec3_t playerstandmaxs;
959         vec3_t playercrouchmins;
960         vec3_t playercrouchmaxs;
961
962         int max_entities;
963         int max_static_entities;
964         int max_effects;
965         int max_beams;
966         int max_dlights;
967         int max_lightstyle;
968         int max_brushmodel_entities;
969         int max_particles;
970         int max_decals;
971         int max_showlmps;
972
973         entity_t *entities;
974         unsigned char *entities_active;
975         entity_t *static_entities;
976         cl_effect_t *effects;
977         beam_t *beams;
978         dlight_t *dlights;
979         lightstyle_t *lightstyle;
980         int *brushmodel_entities;
981         particle_t *particles;
982         decal_t *decals;
983         showlmp_t *showlmps;
984
985         int num_entities;
986         int num_static_entities;
987         int num_brushmodel_entities;
988         int num_effects;
989         int num_beams;
990         int num_dlights;
991         int num_particles;
992         int num_decals;
993         int num_showlmps;
994
995         double particles_updatetime;
996         double decals_updatetime;
997         int free_particle;
998         int free_decal;
999
1000         // cl_serverextension_download feature
1001         int loadmodel_current;
1002         int downloadmodel_current;
1003         int loadmodel_total;
1004         int loadsound_current;
1005         int downloadsound_current;
1006         int loadsound_total;
1007         qboolean downloadcsqc;
1008         qboolean loadcsqc;
1009         qboolean loadbegun;
1010         qboolean loadfinished;
1011
1012         // quakeworld stuff
1013
1014         // local copy of the server infostring
1015         char qw_serverinfo[MAX_SERVERINFO_STRING];
1016
1017         // time of last qw "pings" command sent to server while showing scores
1018         double last_ping_request;
1019
1020         // used during connect
1021         int qw_servercount;
1022
1023         // updated from serverinfo
1024         int qw_teamplay;
1025
1026         // unused: indicates whether the player is spectating
1027         // use cl.scores[cl.playerentity-1].qw_spectator instead
1028         //qboolean qw_spectator;
1029
1030         // last time an input packet was sent
1031         double lastpackettime;
1032
1033         // movement parameters for client prediction
1034         float movevars_wallfriction;
1035         float movevars_waterfriction;
1036         float movevars_friction;
1037         float movevars_timescale;
1038         float movevars_gravity;
1039         float movevars_stopspeed;
1040         float movevars_maxspeed;
1041         float movevars_spectatormaxspeed;
1042         float movevars_accelerate;
1043         float movevars_airaccelerate;
1044         float movevars_wateraccelerate;
1045         float movevars_entgravity;
1046         float movevars_jumpvelocity;
1047         float movevars_edgefriction;
1048         float movevars_maxairspeed;
1049         float movevars_stepheight;
1050         float movevars_airaccel_qw;
1051         float movevars_airaccel_sideways_friction;
1052
1053         // models used by qw protocol
1054         int qw_modelindex_spike;
1055         int qw_modelindex_player;
1056         int qw_modelindex_flag;
1057         int qw_modelindex_s_explod;
1058
1059         vec3_t qw_intermission_origin;
1060         vec3_t qw_intermission_angles;
1061
1062         // 255 is the most nails the QW protocol could send
1063         int qw_num_nails;
1064         vec_t qw_nails[255][6];
1065
1066         float qw_weaponkick;
1067
1068         int qw_validsequence;
1069
1070         int qw_deltasequence[QW_UPDATE_BACKUP];
1071
1072         // csqc stuff:
1073         // server entity number corresponding to a clientside entity
1074         unsigned short csqc_server2csqcentitynumber[MAX_EDICTS];
1075         qboolean csqc_loaded;
1076         vec3_t csqc_origin;
1077         vec3_t csqc_angles;
1078         qboolean csqc_usecsqclistener;
1079         matrix4x4_t csqc_listenermatrix;
1080         char csqc_printtextbuf[MAX_INPUTLINE];
1081
1082         // collision culling data
1083         world_t world;
1084
1085         // loc file stuff (points and boxes describing locations in the level)
1086         cl_locnode_t *locnodes;
1087         // this is updated to cl.movement_origin whenever health is < 1
1088         // used by %d print in say/say_team messages if cl_locs_enable is on
1089         vec3_t lastdeathorigin;
1090
1091         // processing buffer used by R_BuildLightMap, reallocated as needed,
1092         // freed on each level change
1093         size_t buildlightmapmemorysize;
1094         unsigned char *buildlightmapmemory;
1095 }
1096 client_state_t;
1097
1098 //
1099 // cvars
1100 //
1101 extern cvar_t cl_name;
1102 extern cvar_t cl_color;
1103 extern cvar_t cl_rate;
1104 extern cvar_t cl_pmodel;
1105 extern cvar_t cl_playermodel;
1106 extern cvar_t cl_playerskin;
1107
1108 extern cvar_t rcon_password;
1109 extern cvar_t rcon_address;
1110
1111 extern cvar_t cl_upspeed;
1112 extern cvar_t cl_forwardspeed;
1113 extern cvar_t cl_backspeed;
1114 extern cvar_t cl_sidespeed;
1115
1116 extern cvar_t cl_movespeedkey;
1117
1118 extern cvar_t cl_yawspeed;
1119 extern cvar_t cl_pitchspeed;
1120
1121 extern cvar_t cl_anglespeedkey;
1122
1123 extern cvar_t cl_autofire;
1124
1125 extern cvar_t cl_shownet;
1126 extern cvar_t cl_nolerp;
1127 extern cvar_t cl_nettimesyncfactor;
1128 extern cvar_t cl_nettimesyncboundmode;
1129 extern cvar_t cl_nettimesyncboundtolerance;
1130
1131 extern cvar_t cl_pitchdriftspeed;
1132 extern cvar_t lookspring;
1133 extern cvar_t lookstrafe;
1134 extern cvar_t sensitivity;
1135
1136 extern cvar_t freelook;
1137
1138 extern cvar_t m_pitch;
1139 extern cvar_t m_yaw;
1140 extern cvar_t m_forward;
1141 extern cvar_t m_side;
1142
1143 extern cvar_t cl_autodemo;
1144 extern cvar_t cl_autodemo_nameformat;
1145
1146 extern cvar_t r_draweffects;
1147
1148 extern cvar_t cl_explosions_alpha_start;
1149 extern cvar_t cl_explosions_alpha_end;
1150 extern cvar_t cl_explosions_size_start;
1151 extern cvar_t cl_explosions_size_end;
1152 extern cvar_t cl_explosions_lifetime;
1153 extern cvar_t cl_stainmaps;
1154 extern cvar_t cl_stainmaps_clearonload;
1155
1156 extern cvar_t cl_prydoncursor;
1157
1158 extern cvar_t cl_locs_enable;
1159
1160 extern client_state_t cl;
1161
1162 extern void CL_AllocLightFlash (entity_render_t *ent, matrix4x4_t *matrix, float radius, float red, float green, float blue, float decay, float lifetime, int cubemapnum, int style, int shadowenable, vec_t corona, vec_t coronasizescale, vec_t ambientscale, vec_t diffusescale, vec_t specularscale, int flags);
1163
1164 cl_locnode_t *CL_Locs_FindNearest(const vec3_t point);
1165 void CL_Locs_FindLocationName(char *buffer, size_t buffersize, vec3_t point);
1166
1167 //=============================================================================
1168
1169 //
1170 // cl_main
1171 //
1172
1173 void CL_Shutdown (void);
1174 void CL_Init (void);
1175
1176 void CL_EstablishConnection(const char *host);
1177
1178 void CL_Disconnect (void);
1179 void CL_Disconnect_f (void);
1180
1181 void CL_UpdateRenderEntity(entity_render_t *ent);
1182 void CL_SetEntityColormapColors(entity_render_t *ent, int colormap);
1183 void CL_UpdateViewEntities(void);
1184
1185 //
1186 // cl_input
1187 //
1188 typedef struct kbutton_s
1189 {
1190         int             down[2];                // key nums holding it down
1191         int             state;                  // low bit is down state
1192 }
1193 kbutton_t;
1194
1195 extern  kbutton_t       in_mlook, in_klook;
1196 extern  kbutton_t       in_strafe;
1197 extern  kbutton_t       in_speed;
1198
1199 void CL_InitInput (void);
1200 void CL_SendMove (void);
1201
1202 void CL_ValidateState(entity_state_t *s);
1203 void CL_MoveLerpEntityStates(entity_t *ent);
1204 void CL_LerpUpdate(entity_t *e);
1205 void CL_ParseTEnt (void);
1206 void CL_NewBeam (int ent, vec3_t start, vec3_t end, dp_model_t *m, int lightning);
1207 void CL_RelinkBeams (void);
1208 void CL_Beam_CalculatePositions (const beam_t *b, vec3_t start, vec3_t end);
1209 void CL_ClientMovement_Replay(void);
1210
1211 void CL_ClearTempEntities (void);
1212 entity_render_t *CL_NewTempEntity (double shadertime);
1213
1214 void CL_Effect(vec3_t org, int modelindex, int startframe, int framecount, float framerate);
1215
1216 void CL_ClearState (void);
1217 void CL_ExpandEntities(int num);
1218 void CL_SetInfo(const char *key, const char *value, qboolean send, qboolean allowstarkey, qboolean allowmodel, qboolean quiet);
1219
1220
1221 void CL_UpdateWorld (void);
1222 void CL_WriteToServer (void);
1223 void CL_Input (void);
1224 extern int cl_ignoremousemoves;
1225
1226
1227 float CL_KeyState (kbutton_t *key);
1228 const char *Key_KeynumToString (int keynum);
1229 int Key_StringToKeynum (const char *str);
1230
1231 //
1232 // cl_demo.c
1233 //
1234 void CL_StopPlayback(void);
1235 void CL_ReadDemoMessage(void);
1236 void CL_WriteDemoMessage(sizebuf_t *mesage);
1237
1238 void CL_CutDemo(unsigned char **buf, fs_offset_t *filesize);
1239 void CL_PasteDemo(unsigned char **buf, fs_offset_t *filesize);
1240
1241 void CL_NextDemo(void);
1242 void CL_Stop_f(void);
1243 void CL_Record_f(void);
1244 void CL_PlayDemo_f(void);
1245 void CL_TimeDemo_f(void);
1246
1247 //
1248 // cl_parse.c
1249 //
1250 void CL_Parse_Init(void);
1251 void CL_Parse_Shutdown(void);
1252 void CL_ParseServerMessage(void);
1253 void CL_Parse_DumpPacket(void);
1254 void CL_Parse_ErrorCleanUp(void);
1255 void QW_CL_StartUpload(unsigned char *data, int size);
1256 extern cvar_t qport;
1257 void CL_KeepaliveMessage(qboolean readmessages); // call this during loading of large content
1258
1259 //
1260 // view
1261 //
1262 void V_StartPitchDrift (void);
1263 void V_StopPitchDrift (void);
1264
1265 void V_Init (void);
1266 float V_CalcRoll (vec3_t angles, vec3_t velocity);
1267 void V_UpdateBlends (void);
1268 void V_ParseDamage (void);
1269
1270 //
1271 // cl_part
1272 //
1273
1274 extern cvar_t cl_particles;
1275 extern cvar_t cl_particles_quality;
1276 extern cvar_t cl_particles_size;
1277 extern cvar_t cl_particles_quake;
1278 extern cvar_t cl_particles_blood;
1279 extern cvar_t cl_particles_blood_alpha;
1280 extern cvar_t cl_particles_blood_bloodhack;
1281 extern cvar_t cl_particles_bulletimpacts;
1282 extern cvar_t cl_particles_explosions_sparks;
1283 extern cvar_t cl_particles_explosions_shell;
1284 extern cvar_t cl_particles_rain;
1285 extern cvar_t cl_particles_snow;
1286 extern cvar_t cl_particles_smoke;
1287 extern cvar_t cl_particles_smoke_alpha;
1288 extern cvar_t cl_particles_smoke_alphafade;
1289 extern cvar_t cl_particles_sparks;
1290 extern cvar_t cl_particles_bubbles;
1291 extern cvar_t cl_decals;
1292 extern cvar_t cl_decals_time;
1293 extern cvar_t cl_decals_fadetime;
1294
1295 void CL_Particles_Clear(void);
1296 void CL_Particles_Init(void);
1297 void CL_Particles_Shutdown(void);
1298
1299 typedef enum effectnameindex_s
1300 {
1301         EFFECT_NONE,
1302         EFFECT_TE_GUNSHOT,
1303         EFFECT_TE_GUNSHOTQUAD,
1304         EFFECT_TE_SPIKE,
1305         EFFECT_TE_SPIKEQUAD,
1306         EFFECT_TE_SUPERSPIKE,
1307         EFFECT_TE_SUPERSPIKEQUAD,
1308         EFFECT_TE_WIZSPIKE,
1309         EFFECT_TE_KNIGHTSPIKE,
1310         EFFECT_TE_EXPLOSION,
1311         EFFECT_TE_EXPLOSIONQUAD,
1312         EFFECT_TE_TAREXPLOSION,
1313         EFFECT_TE_TELEPORT,
1314         EFFECT_TE_LAVASPLASH,
1315         EFFECT_TE_SMALLFLASH,
1316         EFFECT_TE_FLAMEJET,
1317         EFFECT_EF_FLAME,
1318         EFFECT_TE_BLOOD,
1319         EFFECT_TE_SPARK,
1320         EFFECT_TE_PLASMABURN,
1321         EFFECT_TE_TEI_G3,
1322         EFFECT_TE_TEI_SMOKE,
1323         EFFECT_TE_TEI_BIGEXPLOSION,
1324         EFFECT_TE_TEI_PLASMAHIT,
1325         EFFECT_EF_STARDUST,
1326         EFFECT_TR_ROCKET,
1327         EFFECT_TR_GRENADE,
1328         EFFECT_TR_BLOOD,
1329         EFFECT_TR_WIZSPIKE,
1330         EFFECT_TR_SLIGHTBLOOD,
1331         EFFECT_TR_KNIGHTSPIKE,
1332         EFFECT_TR_VORESPIKE,
1333         EFFECT_TR_NEHAHRASMOKE,
1334         EFFECT_TR_NEXUIZPLASMA,
1335         EFFECT_TR_GLOWTRAIL,
1336         EFFECT_SVC_PARTICLE,
1337         EFFECT_TOTAL
1338 }
1339 effectnameindex_t;
1340
1341 int CL_ParticleEffectIndexForName(const char *name);
1342 const char *CL_ParticleEffectNameForIndex(int i);
1343 void CL_ParticleEffect(int effectindex, float pcount, const vec3_t originmins, const vec3_t originmaxs, const vec3_t velocitymins, const vec3_t velocitymaxs, entity_t *ent, int palettecolor);
1344 void CL_ParticleTrail(int effectindex, float pcount, const vec3_t originmins, const vec3_t originmaxs, const vec3_t velocitymins, const vec3_t velocitymaxs, entity_t *ent, int palettecolor, qboolean spawndlight, qboolean spawnparticles);
1345 void CL_ParseParticleEffect (void);
1346 void CL_ParticleCube (const vec3_t mins, const vec3_t maxs, const vec3_t dir, int count, int colorbase, vec_t gravity, vec_t randomvel);
1347 void CL_ParticleRain (const vec3_t mins, const vec3_t maxs, const vec3_t dir, int count, int colorbase, int type);
1348 void CL_EntityParticles (const entity_t *ent);
1349 void CL_ParticleExplosion (const vec3_t org);
1350 void CL_ParticleExplosion2 (const vec3_t org, int colorStart, int colorLength);
1351 void R_NewExplosion(const vec3_t org);
1352
1353 void Debug_PolygonBegin(const char *picname, int flags);
1354 void Debug_PolygonVertex(float x, float y, float z, float s, float t, float r, float g, float b, float a);
1355 void Debug_PolygonEnd(void);
1356
1357 #include "cl_screen.h"
1358
1359 extern qboolean sb_showscores;
1360
1361 float FogPoint_World(const vec3_t p);
1362 float FogPoint_Model(const vec3_t p);
1363 float FogForDistance(vec_t dist);
1364
1365 typedef struct r_refdef_stats_s
1366 {
1367         int renders;
1368         int entities;
1369         int entities_surfaces;
1370         int entities_triangles;
1371         int world_leafs;
1372         int world_portals;
1373         int world_surfaces;
1374         int world_triangles;
1375         int lightmapupdates;
1376         int lightmapupdatepixels;
1377         int particles;
1378         int decals;
1379         int meshes;
1380         int meshes_elements;
1381         int lights;
1382         int lights_clears;
1383         int lights_scissored;
1384         int lights_lighttriangles;
1385         int lights_shadowtriangles;
1386         int lights_dynamicshadowtriangles;
1387         int bloom;
1388         int bloom_copypixels;
1389         int bloom_drawpixels;
1390 }
1391 r_refdef_stats_t;
1392
1393 typedef struct r_refdef_view_s
1394 {
1395         // view information (changes multiple times per frame)
1396         // if any of these variables change then r_refdef.viewcache must be regenerated
1397         // by calling R_View_Update
1398         // (which also updates viewport, scissor, colormask)
1399
1400         // it is safe and expected to copy this into a structure on the stack and
1401         // call the renderer recursively, then restore from the stack afterward
1402         // (as long as R_View_Update is called)
1403
1404         // eye position information
1405         matrix4x4_t matrix, inverse_matrix;
1406         vec3_t origin;
1407         vec3_t forward;
1408         vec3_t left;
1409         vec3_t right;
1410         vec3_t up;
1411         int numfrustumplanes;
1412         mplane_t frustum[6];
1413         qboolean useclipplane;
1414         qboolean usecustompvs; // uses r_refdef.viewcache.pvsbits as-is rather than computing it
1415         mplane_t clipplane;
1416         float frustum_x, frustum_y;
1417         vec3_t frustumcorner[4];
1418         // if turned off it renders an ortho view
1419         int useperspective;
1420         float ortho_x, ortho_y;
1421
1422         // screen area to render in
1423         int x;
1424         int y;
1425         int z;
1426         int width;
1427         int height;
1428         int depth;
1429
1430         // which color components to allow (for anaglyph glasses)
1431         int colormask[4];
1432
1433         // global RGB color multiplier for rendering, this is required by HDR
1434         float colorscale;
1435
1436         // whether to call R_ClearScreen before rendering stuff
1437         qboolean clear;
1438         // if true, don't clear or do any post process effects (bloom, etc)
1439         qboolean isoverlay;
1440
1441         // whether to draw r_showtris and such, this is only true for the main
1442         // view render, all secondary renders (HDR, mirrors, portals, cameras,
1443         // distortion effects, etc) omit such debugging information
1444         qboolean showdebug;
1445
1446         // these define which values to use in GL_CullFace calls to request frontface or backface culling
1447         int cullface_front;
1448         int cullface_back;
1449
1450         // render quality (0 to 1) - affects r_drawparticles_drawdistance and others
1451         float quality;
1452 }
1453 r_refdef_view_t;
1454
1455 typedef struct r_refdef_viewcache_s
1456 {
1457         // these properties are generated by R_View_Update()
1458
1459         // which entities are currently visible for this viewpoint
1460         // (the used range is 0...r_refdef.scene.numentities)
1461         unsigned char entityvisible[MAX_EDICTS];
1462         // flag arrays used for visibility checking on world model
1463         // (all other entities have no per-surface/per-leaf visibility checks)
1464         // TODO: dynamic resize according to r_refdef.scene.worldmodel->brush.num_clusters
1465         unsigned char world_pvsbits[(32768+7)>>3]; // FIXME: buffer overflow on huge maps
1466         // TODO: dynamic resize according to r_refdef.scene.worldmodel->brush.num_leafs
1467         unsigned char world_leafvisible[32768]; // FIXME: buffer overflow on huge maps
1468         // TODO: dynamic resize according to r_refdef.scene.worldmodel->num_surfaces
1469         unsigned char world_surfacevisible[262144]; // FIXME: buffer overflow on huge maps
1470         // if true, the view is currently in a leaf without pvs data
1471         qboolean world_novis;
1472 }
1473 r_refdef_viewcache_t;
1474
1475 // TODO: really think about which fields should go into scene and which one should stay in refdef [1/7/2008 Black]
1476 // maybe also refactor some of the functions to support different setting sources (ie. fogenabled, etc.) for different scenes
1477 typedef struct r_refdef_scene_s {
1478         // whether to call S_ExtraUpdate during render to reduce sound chop
1479         qboolean extraupdate;
1480
1481         // (client gameworld) time for rendering time based effects
1482         double time;
1483
1484         // the world
1485         entity_render_t *worldentity;
1486
1487         // same as worldentity->model
1488         dp_model_t *worldmodel;
1489
1490         // renderable entities (excluding world)
1491         entity_render_t **entities;
1492         int numentities;
1493         int maxentities;
1494
1495         // field of temporary entities that is reset each (client) frame
1496         entity_render_t *tempentities;
1497         int numtempentities;
1498         int maxtempentities;
1499
1500         // renderable dynamic lights
1501         rtlight_t *lights[MAX_DLIGHTS];
1502         rtlight_t templights[MAX_DLIGHTS];
1503         int numlights;
1504
1505         // intensities for light styles right now, controls rtlights
1506         float rtlightstylevalue[256];   // float fraction of base light value
1507         // 8.8bit fixed point intensities for light styles
1508         // controls intensity lightmap layers
1509         unsigned short lightstylevalue[256];    // 8.8 fraction of base light value
1510
1511         float ambient;
1512
1513         qboolean rtworld;
1514         qboolean rtworldshadows;
1515         qboolean rtdlight;
1516         qboolean rtdlightshadows;
1517 } r_refdef_scene_t;
1518
1519 typedef struct r_refdef_s
1520 {
1521         // these fields define the basic rendering information for the world
1522         // but not the view, which could change multiple times in one rendered
1523         // frame (for example when rendering textures for certain effects)
1524
1525         // these are set for water warping before
1526         // frustum_x/frustum_y are calculated
1527         float frustumscale_x, frustumscale_y;
1528
1529         // current view settings (these get reset a few times during rendering because of water rendering, reflections, etc)
1530         r_refdef_view_t view;
1531         r_refdef_viewcache_t viewcache;
1532
1533         // minimum visible distance (pixels closer than this disappear)
1534         double nearclip;
1535         // maximum visible distance (pixels further than this disappear in 16bpp modes,
1536         // in 32bpp an infinite-farclip matrix is used instead)
1537         double farclip;
1538
1539         // fullscreen color blend
1540         float viewblend[4];
1541
1542         r_refdef_scene_t scene;
1543
1544         vec3_t fogcolor;
1545         vec_t fogrange;
1546         vec_t fograngerecip;
1547         vec_t fogmasktabledistmultiplier;
1548 #define FOGMASKTABLEWIDTH 1024
1549         float fogmasktable[FOGMASKTABLEWIDTH];
1550         float fogmasktable_start, fogmasktable_alpha, fogmasktable_range, fogmasktable_density;
1551         float fog_density;
1552         float fog_red;
1553         float fog_green;
1554         float fog_blue;
1555         float fog_alpha;
1556         float fog_start;
1557         float fog_end;
1558         qboolean fogenabled;
1559         qboolean oldgl_fogenable;
1560
1561         qboolean draw2dstage;
1562
1563         // true during envmap command capture
1564         qboolean envmap;
1565
1566         // brightness of world lightmaps and related lighting
1567         // (often reduced when world rtlights are enabled)
1568         float lightmapintensity;
1569         // whether to draw world lights realtime, dlights realtime, and their shadows
1570         float polygonfactor;
1571         float polygonoffset;
1572         float shadowpolygonfactor;
1573         float shadowpolygonoffset;
1574
1575         // rendering stats for r_speeds display
1576         // (these are incremented in many places)
1577         r_refdef_stats_t stats;
1578 }
1579 r_refdef_t;
1580
1581 extern r_refdef_t r_refdef;
1582
1583 #endif
1584