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