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