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