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