]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - client.h
optimized handling of decals, which increased timedemo bigass1.dem from 185fps to...
[xonotic/darkplaces.git] / client.h
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 // client.h
21
22 #ifndef CLIENT_H
23 #define CLIENT_H
24
25 #include "matrixlib.h"
26
27 // LordHavoc: 256 dynamic lights
28 #define MAX_DLIGHTS 256
29
30 // flags for rtlight rendering
31 #define LIGHTFLAG_NORMALMODE 1
32 #define LIGHTFLAG_REALTIMEMODE 2
33
34 typedef struct effect_s
35 {
36         int active;
37         vec3_t origin;
38         float starttime;
39         float framerate;
40         int modelindex;
41         int startframe;
42         int endframe;
43         // these are for interpolation
44         int frame;
45         double frame1time;
46         double frame2time;
47 }
48 cl_effect_t;
49
50 typedef struct beam_s
51 {
52         int             entity;
53         // draw this as lightning polygons, or a model?
54         int             lightning;
55         struct model_s  *model;
56         float   endtime;
57         vec3_t  start, end;
58         // if this beam is owned by an entity, this is the beam start relative to
59         // that entity's matrix for per frame start updates
60         vec3_t  relativestart;
61         vec3_t  relativeend;
62         // indicates whether relativestart is valid
63         int     relativestartvalid;
64 }
65 beam_t;
66
67 typedef struct rtlight_s
68 {
69         // shadow volumes are done entirely in model space, so there are no matrices for dealing with them...  they just use the origin
70
71         // note that the world to light matrices are inversely scaled (divided) by lightradius
72
73         // core properties
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 }
132 rtlight_t;
133
134 typedef struct dlight_s
135 {
136         // destroy light after this time
137         // (dlight only)
138         vec_t die;
139         // the entity that owns this light (can be NULL)
140         // (dlight only)
141         struct entity_render_s *ent;
142         // location
143         // (worldlight: saved to .rtlights file)
144         vec3_t origin;
145         // worldlight orientation
146         // (worldlight only)
147         // (worldlight: saved to .rtlights file)
148         vec3_t angles;
149         // dlight orientation/scaling/location
150         // (dlight only)
151         matrix4x4_t matrix;
152         // color of light
153         // (worldlight: saved to .rtlights file)
154         vec3_t color;
155         // cubemap number to use on this light
156         // (dlight only)
157         int cubemapnum;
158         // cubemap name to use on this light
159         // (worldlight only)
160         // (worldlight: saved to .rtlights file)
161         char cubemapname[64];
162         // make light flash while selected
163         // (worldlight only)
164         int selected;
165         // brightness (not really radius anymore)
166         // (worldlight: saved to .rtlights file)
167         vec_t radius;
168         // drop radius this much each second
169         // (dlight only)
170         vec_t decay;
171         // light style which controls intensity of this light
172         // (worldlight: saved to .rtlights file)
173         int style;
174         // cast shadows
175         // (worldlight: saved to .rtlights file)
176         int shadow;
177         // corona intensity
178         // (worldlight: saved to .rtlights file)
179         vec_t corona;
180         // radius scale of corona to render (1.0 means same as light radius)
181         // (worldlight: saved to .rtlights file)
182         vec_t coronasizescale;
183         // ambient intensity to render
184         // (worldlight: saved to .rtlights file)
185         vec_t ambientscale;
186         // diffuse intensity to render
187         // (worldlight: saved to .rtlights file)
188         vec_t diffusescale;
189         // specular intensity to render
190         // (worldlight: saved to .rtlights file)
191         vec_t specularscale;
192         // LIGHTFLAG_* flags
193         // (worldlight: saved to .rtlights file)
194         int flags;
195         // linked list of world lights
196         // (worldlight only)
197         struct dlight_s *next;
198         // embedded rtlight struct for renderer
199         // (renderer only)
200         rtlight_t rtlight;
201 }
202 dlight_t;
203
204 typedef struct frameblend_s
205 {
206         int frame;
207         float lerp;
208 }
209 frameblend_t;
210
211 // LordHavoc: this struct is intended for the renderer but some fields are
212 // used by the client.
213 typedef struct entity_render_s
214 {
215         // location
216         vec3_t origin;
217         // orientation
218         vec3_t angles;
219         // transform matrix for model to world
220         matrix4x4_t matrix;
221         // transform matrix for world to model
222         matrix4x4_t inversematrix;
223         // opacity (alpha) of the model
224         float alpha;
225         // size the model is shown
226         float scale;
227
228         // NULL = no model
229         model_t *model;
230         // current uninterpolated animation frame (for things which do not use interpolation)
231         int frame;
232         // entity shirt and pants colors (-1 if not colormapped)
233         int colormap;
234         // literal colors for renderer
235         vec3_t colormap_pantscolor;
236         vec3_t colormap_shirtcolor;
237         // light, particles, etc
238         int effects;
239         // for Alias models
240         int skinnum;
241         // render flags
242         int flags;
243
244         // colormod tinting of models
245         float colormod[3];
246
247         // interpolated animation
248
249         // frame that the model is interpolating from
250         int frame1;
251         // frame that the model is interpolating to
252         int frame2;
253         // interpolation factor, usually computed from frame2time
254         float framelerp;
255         // time frame1 began playing (for framegroup animations)
256         double frame1time;
257         // time frame2 began playing (for framegroup animations)
258         double frame2time;
259
260         // calculated by the renderer (but not persistent)
261
262         // if visframe == r_framecount, it is visible
263         int visframe;
264         // calculated during R_AddModelEntities
265         vec3_t mins, maxs;
266         // 4 frame numbers (-1 if not used) and their blending scalers (0-1), if interpolation is not desired, use frame instead
267         frameblend_t frameblend[4];
268
269         // current lighting from map
270         vec3_t modellight_ambient;
271         vec3_t modellight_diffuse; // q3bsp
272         vec3_t modellight_lightdir; // q3bsp
273 }
274 entity_render_t;
275
276 typedef struct entity_persistent_s
277 {
278         int linkframe;
279
280         vec3_t trail_origin;
281
282         // particle trail
283         float trail_time;
284
285         // muzzleflash fading
286         float muzzleflash;
287
288         // interpolated movement
289
290         // start time of move
291         float lerpstarttime;
292         // time difference from start to end of move
293         float lerpdeltatime;
294         // the move itself, start and end
295         float oldorigin[3];
296         float oldangles[3];
297         float neworigin[3];
298         float newangles[3];
299 }
300 entity_persistent_t;
301
302 typedef struct entity_s
303 {
304         qboolean csqc;
305         // baseline state (default values)
306         entity_state_t state_baseline;
307         // previous state (interpolating from this)
308         entity_state_t state_previous;
309         // current state (interpolating to this)
310         entity_state_t state_current;
311
312         // used for regenerating parts of render
313         entity_persistent_t persistent;
314
315         // the only data the renderer should know about
316         entity_render_t render;
317 }
318 entity_t;
319
320 typedef struct usercmd_s
321 {
322         vec3_t  viewangles;
323
324 // intended velocities
325         float   forwardmove;
326         float   sidemove;
327         float   upmove;
328
329         vec3_t  cursor_screen;
330         vec3_t  cursor_start;
331         vec3_t  cursor_end;
332         vec3_t  cursor_impact;
333         vec3_t  cursor_normal;
334         vec_t   cursor_fraction;
335         int             cursor_entitynumber;
336
337         double time;
338         double receivetime;
339         int buttons;
340         int impulse;
341         int sequence;
342         qboolean applied; // if false we're still accumulating a move
343 } usercmd_t;
344
345 typedef struct lightstyle_s
346 {
347         int             length;
348         char    map[MAX_STYLESTRING];
349 } lightstyle_t;
350
351 typedef struct scoreboard_s
352 {
353         char    name[MAX_SCOREBOARDNAME];
354         int             frags;
355         int             colors; // two 4 bit fields
356         // QW fields:
357         int             qw_userid;
358         char    qw_userinfo[MAX_USERINFO_STRING];
359         float   qw_entertime;
360         int             qw_ping;
361         int             qw_packetloss;
362         int             qw_spectator;
363         char    qw_team[8];
364         char    qw_skin[MAX_QPATH];
365 } scoreboard_t;
366
367 typedef struct cshift_s
368 {
369         float   destcolor[3];
370         float   percent;                // 0-256
371 } cshift_t;
372
373 #define CSHIFT_CONTENTS 0
374 #define CSHIFT_DAMAGE   1
375 #define CSHIFT_BONUS    2
376 #define CSHIFT_POWERUP  3
377 #define CSHIFT_VCSHIFT  4
378 #define NUM_CSHIFTS             5
379
380 #define NAME_LENGTH     64
381
382
383 //
384 // client_state_t should hold all pieces of the client state
385 //
386
387 #define SIGNONS         4                       // signon messages to receive before connected
388
389 #define MAX_DEMOS               8
390 #define MAX_DEMONAME    16
391
392 typedef enum cactive_e
393 {
394         ca_dedicated,           // a dedicated server with no ability to start a client
395         ca_disconnected,        // full screen console with no connection
396         ca_connected            // valid netcon, talking to a server
397 }
398 cactive_t;
399
400 typedef enum qw_downloadtype_e
401 {
402         dl_none,
403         dl_single,
404         dl_skin,
405         dl_model,
406         dl_sound
407 }
408 qw_downloadtype_t;
409
410 typedef enum capturevideoformat_e
411 {
412         CAPTUREVIDEOFORMAT_TARGA,
413         CAPTUREVIDEOFORMAT_JPEG,
414         CAPTUREVIDEOFORMAT_RAWRGB,
415         CAPTUREVIDEOFORMAT_RAWYV12
416 }
417 capturevideoformat_t;
418
419 //
420 // the client_static_t structure is persistent through an arbitrary number
421 // of server connections
422 //
423 typedef struct client_static_s
424 {
425         cactive_t state;
426
427         // all client memory allocations go in these pools
428         mempool_t *levelmempool;
429         mempool_t *permanentmempool;
430
431 // demo loop control
432         // -1 = don't play demos
433         int demonum;
434         // list of demos in loop
435         char demos[MAX_DEMOS][MAX_DEMONAME];
436         // the actively playing demo (set by CL_PlayDemo_f)
437         char demoname[64];
438
439 // demo recording info must be here, because record is started before
440 // entering a map (and clearing client_state_t)
441         qboolean demorecording;
442         qboolean demoplayback;
443         qboolean timedemo;
444         // -1 = use normal cd track
445         int forcetrack;
446         qfile_t *demofile;
447         // to meter out one message a frame
448         int td_lastframe;
449         // host_framecount at start
450         int td_startframe;
451         // realtime at second frame of timedemo (LordHavoc: changed to double)
452         double td_starttime;
453         // LordHavoc: for measuring maxfps
454         double td_minframetime;
455         // LordHavoc: for measuring minfps
456         double td_maxframetime;
457         // LordHavoc: pausedemo
458         qboolean demopaused;
459
460         qboolean connect_trying;
461         int connect_remainingtries;
462         double connect_nextsendtime;
463         lhnetsocket_t *connect_mysocket;
464         lhnetaddress_t connect_address;
465         // protocol version of the server we're connected to
466         // (kept outside client_state_t because it's used between levels)
467         protocolversion_t protocol;
468
469 // connection information
470         // 0 to SIGNONS
471         int signon;
472         // network connection
473         netconn_t *netcon;
474
475         // quakeworld stuff below
476
477         // value of "qport" cvar at time of connection
478         int qw_qport;
479
480         // current file download buffer (only saved when file is completed)
481         char qw_downloadname[MAX_QPATH];
482         unsigned char *qw_downloadmemory;
483         int qw_downloadmemorycursize;
484         int qw_downloadmemorymaxsize;
485         int qw_downloadnumber;
486         int qw_downloadpercent;
487         qw_downloadtype_t qw_downloadtype;
488
489         // current file upload buffer (for uploading screenshots to server)
490         unsigned char *qw_uploaddata;
491         int qw_uploadsize;
492         int qw_uploadpos;
493
494         // user infostring
495         // this normally contains the following keys in quakeworld:
496         // password spectator name team skin topcolor bottomcolor rate noaim msg *ver *ip
497         char userinfo[MAX_USERINFO_STRING];
498
499         // video capture stuff
500         qboolean capturevideo_active;
501         capturevideoformat_t capturevideo_format;
502         double capturevideo_starttime;
503         double capturevideo_framerate;
504         int capturevideo_soundrate;
505         int capturevideo_frame;
506         unsigned char *capturevideo_buffer;
507         qfile_t *capturevideo_videofile;
508         qfile_t *capturevideo_soundfile;
509         short capturevideo_rgbtoyuvscaletable[3][3][256];
510         unsigned char capturevideo_yuvnormalizetable[3][256];
511 }
512 client_static_t;
513
514 extern client_static_t  cls;
515
516 typedef struct client_movementqueue_s
517 {
518         double time;
519         float frametime;
520         int sequence;
521         float viewangles[3];
522         float move[3];
523         qboolean jump;
524         qboolean crouch;
525 }
526 client_movementqueue_t;
527
528 //[515]: csqc
529 typedef struct
530 {
531         qboolean drawworld;
532         qboolean drawenginesbar;
533         qboolean drawcrosshair;
534 }csqc_vidvars_t;
535
536 typedef struct qw_usercmd_s
537 {
538         vec3_t angles;
539         short forwardmove, sidemove, upmove;
540         unsigned char padding1[2];
541         unsigned char msec;
542         unsigned char buttons;
543         unsigned char impulse;
544         unsigned char padding2;
545 }
546 qw_usercmd_t;
547
548 typedef enum
549 {
550         PARTICLE_BILLBOARD = 0,
551         PARTICLE_SPARK = 1,
552         PARTICLE_ORIENTED_DOUBLESIDED = 2,
553         PARTICLE_BEAM = 3
554 }
555 porientation_t;
556
557 typedef enum
558 {
559         PBLEND_ALPHA = 0,
560         PBLEND_ADD = 1,
561         PBLEND_MOD = 2
562 }
563 pblend_t;
564
565 typedef struct particletype_s
566 {
567         pblend_t blendmode;
568         porientation_t orientation;
569         qboolean lighting;
570 }
571 particletype_t;
572
573 typedef enum
574 {
575         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
576 }
577 ptype_t;
578
579 typedef struct particle_s
580 {
581         particletype_t *type;
582         int                     texnum;
583         vec3_t          org;
584         vec3_t          vel; // velocity of particle, or orientation of decal, or end point of beam
585         float           size;
586         float           sizeincrease; // rate of size change per second
587         float           alpha; // 0-255
588         float           alphafade; // how much alpha reduces per second
589         float           time2; // used for snow fluttering and decal fade
590         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)
591         float           gravity; // how much gravity affects this particle (1.0 = normal gravity, 0.0 = none)
592         float           airfriction; // how much air friction affects this object (objects with a low mass/size ratio tend to get more air friction)
593         float           liquidfriction; // how much liquid friction affects this object (objects with a low mass/size ratio tend to get more liquid friction)
594         unsigned char           color[4];
595         unsigned short owner; // decal stuck to this entity
596         model_t         *ownermodel; // model the decal is stuck to (used to make sure the entity is still alive)
597         vec3_t          relativeorigin; // decal at this location in entity's coordinate space
598         vec3_t          relativedirection; // decal oriented this way relative to entity's coordinate space
599 }
600 particle_t;
601
602 //
603 // the client_state_t structure is wiped completely at every
604 // server signon
605 //
606 typedef struct client_state_s
607 {
608         // true if playing in a local game and no one else is connected
609         int islocalgame;
610
611         // when connecting to the server throw out the first couple move messages
612         // so the player doesn't accidentally do something the first frame
613         int movemessages;
614
615         // send a clc_nop periodically until connected
616         float sendnoptime;
617
618         // current input to send to the server
619         usercmd_t cmd;
620
621 // information for local display
622         // health, etc
623         int stats[MAX_CL_STATS];
624         // last known inventory bit flags, for blinking
625         int olditems;
626         // cl.time of acquiring item, for blinking
627         float item_gettime[32];
628         // last known STAT_ACTIVEWEAPON
629         int activeweapon;
630         // cl.time of changing STAT_ACTIVEWEAPON
631         float weapontime;
632         // use pain anim frame if cl.time < this
633         float faceanimtime;
634
635         // color shifts for damage, powerups
636         cshift_t cshifts[NUM_CSHIFTS];
637         // and content types
638         cshift_t prev_cshifts[NUM_CSHIFTS];
639
640 // the client maintains its own idea of view angles, which are
641 // sent to the server each frame.  The server sets punchangle when
642 // the view is temporarily offset, and an angle reset commands at the start
643 // of each level and after teleporting.
644
645         // mviewangles is read from demo
646         // viewangles is either client controlled or lerped from mviewangles
647         vec3_t mviewangles[2], viewangles;
648         // update by server, used by qc to do weapon recoil
649         vec3_t mpunchangle[2], punchangle;
650         // update by server, can be used by mods to kick view around
651         vec3_t mpunchvector[2], punchvector;
652         // update by server, used for lean+bob (0 is newest)
653         vec3_t mvelocity[2], velocity;
654         // update by server, can be used by mods for zooming
655         vec_t mviewzoom[2], viewzoom;
656
657         // client movement simulation
658         // these fields are only updated by CL_ClientMovement (called by CL_SendMove after parsing each network packet)
659         qboolean movement;
660         // this is set true by svc_time parsing and causes a new movement to be
661         // queued for prediction purposes
662         qboolean movement_needupdate;
663         // indicates the queue has been updated and should be replayed
664         qboolean movement_replay;
665         // simulated data (this is valid even if cl.movement is false)
666         vec3_t movement_origin;
667         vec3_t movement_oldorigin;
668         vec3_t movement_velocity;
669         // queue of proposed moves
670         int movement_numqueue;
671         client_movementqueue_t movement_queue[64];
672         int movesequence;
673         int servermovesequence;
674
675 // pitch drifting vars
676         float idealpitch;
677         float pitchvel;
678         qboolean nodrift;
679         float driftmove;
680         double laststop;
681
682 //[515]: added for csqc purposes
683         float sensitivityscale;
684         csqc_vidvars_t csqc_vidvars;    //[515]: these parms must be set to true by default
685         qboolean csqc_wantsmousemove;
686         struct model_s *csqc_model_precache[MAX_MODELS];
687
688         // local amount for smoothing stepups
689         //float crouch;
690
691         // sent by server
692         qboolean paused;
693         qboolean onground;
694         qboolean inwater;
695
696         // used by bob
697         qboolean oldonground;
698         double lastongroundtime;
699         double hitgroundtime;
700
701         // don't change view angle, full screen, etc
702         int intermission;
703         // latched at intermission start
704         double completed_time;
705
706         // the timestamp of the last two messages
707         double mtime[2];
708
709         // clients view of time, time should be between mtime[0] and mtime[1] to
710         // generate a lerp point for other data, oldtime is the previous frame's
711         // value of time, frametime is the difference between time and oldtime
712         double time, oldtime;
713         // how long it has been since the previous client frame in real time
714         // (not game time, for that use cl.time - cl.oldtime)
715         double realframetime;
716
717         // copy of realtime from last recieved message, for net trouble icon
718         float last_received_message;
719
720 // information that is static for the entire time connected to a server
721         struct model_s *model_precache[MAX_MODELS];
722         struct sfx_s *sound_precache[MAX_SOUNDS];
723
724         // FIXME: this is a lot of memory to be keeping around, this really should be dynamically allocated and freed somehow
725         char model_name[MAX_MODELS][MAX_QPATH];
726         char sound_name[MAX_SOUNDS][MAX_QPATH];
727
728         // for display on solo scoreboard
729         char levelname[40];
730         // cl_entitites[cl.viewentity] = player
731         int viewentity;
732         // the real player entity (normally same as viewentity,
733         // different than viewentity if mod uses chasecam or other tricks)
734         int playerentity;
735         // max players that can be in this game
736         int maxclients;
737         // type of game (deathmatch, coop, singleplayer)
738         int gametype;
739
740         // models and sounds used by engine code (particularly cl_parse.c)
741         model_t *model_bolt;
742         model_t *model_bolt2;
743         model_t *model_bolt3;
744         model_t *model_beam;
745         sfx_t *sfx_wizhit;
746         sfx_t *sfx_knighthit;
747         sfx_t *sfx_tink1;
748         sfx_t *sfx_ric1;
749         sfx_t *sfx_ric2;
750         sfx_t *sfx_ric3;
751         sfx_t *sfx_r_exp3;
752
753 // refresh related state
754
755         // cl_entitites[0].model
756         struct model_s *worldmodel;
757
758         // the gun model
759         entity_t viewent;
760
761         // cd audio
762         int cdtrack, looptrack;
763
764 // frag scoreboard
765
766         // [cl.maxclients]
767         scoreboard_t *scores;
768
769         // entity database stuff
770         // latest received entity frame numbers
771 #define LATESTFRAMENUMS 3
772         int latestframenums[LATESTFRAMENUMS];
773         entityframe_database_t *entitydatabase;
774         entityframe4_database_t *entitydatabase4;
775         entityframeqw_database_t *entitydatabaseqw;
776
777         // keep track of quake entities because they need to be killed if they get stale
778         int lastquakeentity;
779         unsigned char isquakeentity[MAX_EDICTS];
780
781         // bounding boxes for clientside movement
782         vec3_t playerstandmins;
783         vec3_t playerstandmaxs;
784         vec3_t playercrouchmins;
785         vec3_t playercrouchmaxs;
786
787         int max_entities;
788         int max_csqcentities;
789         int max_static_entities;
790         int max_temp_entities;
791         int max_effects;
792         int max_beams;
793         int max_dlights;
794         int max_lightstyle;
795         int max_brushmodel_entities;
796         int max_particles;
797
798         entity_t *entities;
799         entity_t *csqcentities; //[515]: csqc
800         unsigned char *entities_active;
801         unsigned char *csqcentities_active;     //[515]: csqc
802         entity_t *static_entities;
803         entity_t *temp_entities;
804         cl_effect_t *effects;
805         beam_t *beams;
806         dlight_t *dlights;
807         lightstyle_t *lightstyle;
808         int *brushmodel_entities;
809         particle_t *particles;
810
811         int num_entities;
812         int num_csqcentities;   //[515]: csqc
813         int num_static_entities;
814         int num_temp_entities;
815         int num_brushmodel_entities;
816         int num_effects;
817         int num_beams;
818         int num_dlights;
819         int num_particles;
820
821         int free_particle;
822
823         // quakeworld stuff
824
825         // local copy of the server infostring
826         char qw_serverinfo[MAX_SERVERINFO_STRING];
827
828         // time of last qw "pings" command sent to server while showing scores
829         double last_ping_request;
830
831         // used during connect
832         int qw_servercount;
833
834         // updated from serverinfo
835         int qw_teamplay;
836
837         // indicates whether the player is spectating
838         qboolean qw_spectator;
839
840         // movement parameters for client prediction
841         float qw_movevars_gravity;
842         float qw_movevars_stopspeed;
843         float qw_movevars_maxspeed; // can change during play
844         float qw_movevars_spectatormaxspeed;
845         float qw_movevars_accelerate;
846         float qw_movevars_airaccelerate;
847         float qw_movevars_wateraccelerate;
848         float qw_movevars_friction;
849         float qw_movevars_waterfriction;
850         float qw_movevars_entgravity; // can change during play
851
852         // models used by qw protocol
853         int qw_modelindex_spike;
854         int qw_modelindex_player;
855         int qw_modelindex_flag;
856         int qw_modelindex_s_explod;
857
858         vec3_t qw_intermission_origin;
859         vec3_t qw_intermission_angles;
860
861         // 255 is the most nails the QW protocol could send
862         int qw_num_nails;
863         vec_t qw_nails[255][6];
864
865         float qw_weaponkick;
866
867         int qw_validsequence;
868
869         qw_usercmd_t qw_moves[QW_UPDATE_BACKUP];
870
871         int qw_deltasequence[QW_UPDATE_BACKUP];
872 }
873 client_state_t;
874
875 //
876 // cvars
877 //
878 extern cvar_t cl_name;
879 extern cvar_t cl_color;
880 extern cvar_t cl_rate;
881 extern cvar_t cl_pmodel;
882 extern cvar_t cl_playermodel;
883 extern cvar_t cl_playerskin;
884
885 extern cvar_t rcon_password;
886 extern cvar_t rcon_address;
887
888 extern cvar_t cl_upspeed;
889 extern cvar_t cl_forwardspeed;
890 extern cvar_t cl_backspeed;
891 extern cvar_t cl_sidespeed;
892
893 extern cvar_t cl_movespeedkey;
894
895 extern cvar_t cl_yawspeed;
896 extern cvar_t cl_pitchspeed;
897
898 extern cvar_t cl_anglespeedkey;
899
900 extern cvar_t cl_autofire;
901
902 extern cvar_t csqc_progname;    //[515]: csqc crc check and right csprogs name according to progs.dat
903 extern cvar_t csqc_progcrc;
904
905 extern cvar_t cl_shownet;
906 extern cvar_t cl_nolerp;
907
908 extern cvar_t cl_pitchdriftspeed;
909 extern cvar_t lookspring;
910 extern cvar_t lookstrafe;
911 extern cvar_t sensitivity;
912
913 extern cvar_t freelook;
914
915 extern cvar_t m_pitch;
916 extern cvar_t m_yaw;
917 extern cvar_t m_forward;
918 extern cvar_t m_side;
919
920 extern cvar_t cl_autodemo;
921 extern cvar_t cl_autodemo_nameformat;
922
923 extern cvar_t r_draweffects;
924
925 extern cvar_t cl_explosions_alpha_start;
926 extern cvar_t cl_explosions_alpha_end;
927 extern cvar_t cl_explosions_size_start;
928 extern cvar_t cl_explosions_size_end;
929 extern cvar_t cl_explosions_lifetime;
930 extern cvar_t cl_stainmaps;
931 extern cvar_t cl_stainmaps_clearonload;
932
933 extern cvar_t cl_prydoncursor;
934
935 extern client_state_t cl;
936
937 extern void CL_AllocDlight (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);
938
939 //=============================================================================
940
941 //
942 // cl_main
943 //
944
945 void CL_Shutdown (void);
946 void CL_Init (void);
947
948 void CL_EstablishConnection(const char *host);
949
950 void CL_Disconnect (void);
951 void CL_Disconnect_f (void);
952
953 void CL_BoundingBoxForEntity(entity_render_t *ent);
954
955 extern cvar_t cl_beams_polygons;
956 extern cvar_t cl_beams_relative;
957 extern cvar_t cl_beams_lightatend;
958
959 //
960 // cl_input
961 //
962 typedef struct kbutton_s
963 {
964         int             down[2];                // key nums holding it down
965         int             state;                  // low bit is down state
966 }
967 kbutton_t;
968
969 extern  kbutton_t       in_mlook, in_klook;
970 extern  kbutton_t       in_strafe;
971 extern  kbutton_t       in_speed;
972
973 void CL_InitInput (void);
974 void CL_SendMove (void);
975
976 void CL_ValidateState(entity_state_t *s);
977 void CL_MoveLerpEntityStates(entity_t *ent);
978 void CL_LerpUpdate(entity_t *e);
979 void CL_ParseTEnt (void);
980 void CL_RelinkBeams (void);
981
982 void CL_ClearTempEntities (void);
983 entity_t *CL_NewTempEntity (void);
984
985 void CL_Effect(vec3_t org, int modelindex, int startframe, int framecount, float framerate);
986
987 void CL_ClearState (void);
988 void CL_ExpandEntities(int num);
989
990
991 int  CL_ReadFromServer (void);
992 void CL_WriteToServer (void);
993 void CL_Move (void);
994 extern qboolean cl_ignoremousemove;
995
996
997 float CL_KeyState (kbutton_t *key);
998 const char *Key_KeynumToString (int keynum);
999 int Key_StringToKeynum (const char *str);
1000
1001 //
1002 // cl_demo.c
1003 //
1004 void CL_StopPlayback(void);
1005 void CL_ReadDemoMessage(void);
1006 void CL_WriteDemoMessage(void);
1007
1008 void CL_NextDemo(void);
1009 void CL_Stop_f(void);
1010 void CL_Record_f(void);
1011 void CL_PlayDemo_f(void);
1012 void CL_TimeDemo_f(void);
1013
1014 //
1015 // cl_parse.c
1016 //
1017 void CL_Parse_Init(void);
1018 void CL_Parse_Shutdown(void);
1019 void CL_ParseServerMessage(void);
1020 void CL_Parse_DumpPacket(void);
1021 void CL_Parse_ErrorCleanUp(void);
1022 void QW_CL_StartUpload(unsigned char *data, int size);
1023 extern cvar_t qport;
1024
1025 //
1026 // view
1027 //
1028 void V_StartPitchDrift (void);
1029 void V_StopPitchDrift (void);
1030
1031 void V_Init (void);
1032 float V_CalcRoll (vec3_t angles, vec3_t velocity);
1033 void V_UpdateBlends (void);
1034 void V_ParseDamage (void);
1035
1036 //
1037 // cl_part
1038 //
1039
1040 extern cvar_t cl_particles;
1041 extern cvar_t cl_particles_quality;
1042 extern cvar_t cl_particles_size;
1043 extern cvar_t cl_particles_quake;
1044 extern cvar_t cl_particles_blood;
1045 extern cvar_t cl_particles_blood_alpha;
1046 extern cvar_t cl_particles_blood_bloodhack;
1047 extern cvar_t cl_particles_bulletimpacts;
1048 extern cvar_t cl_particles_explosions_bubbles;
1049 extern cvar_t cl_particles_explosions_smoke;
1050 extern cvar_t cl_particles_explosions_sparks;
1051 extern cvar_t cl_particles_explosions_shell;
1052 extern cvar_t cl_particles_smoke;
1053 extern cvar_t cl_particles_smoke_alpha;
1054 extern cvar_t cl_particles_smoke_alphafade;
1055 extern cvar_t cl_particles_sparks;
1056 extern cvar_t cl_particles_bubbles;
1057 extern cvar_t cl_decals;
1058 extern cvar_t cl_decals_time;
1059 extern cvar_t cl_decals_fadetime;
1060
1061 void CL_Particles_Clear(void);
1062 void CL_Particles_Init(void);
1063 void CL_Particles_Shutdown(void);
1064
1065 typedef enum effectnameindex_s
1066 {
1067         EFFECT_NONE,
1068         EFFECT_TE_GUNSHOT,
1069         EFFECT_TE_GUNSHOTQUAD,
1070         EFFECT_TE_SPIKE,
1071         EFFECT_TE_SPIKEQUAD,
1072         EFFECT_TE_SUPERSPIKE,
1073         EFFECT_TE_SUPERSPIKEQUAD,
1074         EFFECT_TE_WIZSPIKE,
1075         EFFECT_TE_KNIGHTSPIKE,
1076         EFFECT_TE_VORESPIKE,
1077         EFFECT_TE_EXPLOSION,
1078         EFFECT_TE_EXPLOSIONQUAD,
1079         EFFECT_TE_TAREXPLOSION,
1080         EFFECT_TE_TELEPORT,
1081         EFFECT_TE_LAVASPLASH,
1082         EFFECT_TE_SMALLFLASH,
1083         EFFECT_TE_FLAMEJET,
1084         EFFECT_EF_FLAME,
1085         EFFECT_TE_BLOOD,
1086         EFFECT_TE_SPARK,
1087         EFFECT_TE_PLASMABURN,
1088         EFFECT_TE_TEI_G3,
1089         EFFECT_TE_TEI_SMOKE,
1090         EFFECT_TE_TEI_BIGEXPLOSION,
1091         EFFECT_TE_TEI_PLASMAHIT,
1092         EFFECT_EF_STARDUST,
1093         EFFECT_TR_ROCKET,
1094         EFFECT_TR_GRENADE,
1095         EFFECT_TR_BLOOD,
1096         EFFECT_TR_WIZSPIKE,
1097         EFFECT_TR_SLIGHTBLOOD,
1098         EFFECT_TR_KNIGHTSPIKE,
1099         EFFECT_TR_VORESPIKE,
1100         EFFECT_TR_NEHAHRASMOKE,
1101         EFFECT_TR_NEXUIZPLASMA,
1102         EFFECT_TR_GLOWTRAIL,
1103         EFFECT_SVC_PARTICLE,
1104         EFFECT_TOTAL
1105 }
1106 effectnameindex_t;
1107
1108 int CL_ParticleEffectIndexForName(const char *name);
1109 const char *CL_ParticleEffectNameForIndex(int i);
1110 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);
1111 void CL_ParseParticleEffect (void);
1112 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);
1113 void CL_ParticleRain (const vec3_t mins, const vec3_t maxs, const vec3_t dir, int count, int colorbase, int type);
1114 void CL_EntityParticles (const entity_t *ent);
1115 void CL_ParticleExplosion (const vec3_t org);
1116 void CL_ParticleExplosion2 (const vec3_t org, int colorStart, int colorLength);
1117 void CL_MoveParticles(void);
1118 void R_MoveExplosions(void);
1119 void R_NewExplosion(const vec3_t org);
1120
1121 #include "cl_screen.h"
1122
1123 #define NUMCROSSHAIRS 32
1124 extern cachepic_t *r_crosshairs[NUMCROSSHAIRS+1];
1125
1126 typedef struct refdef_s
1127 {
1128         // area to render in
1129         int x, y, width, height;
1130         float frustum_x, frustum_y;
1131
1132         // these are set for water warping before
1133         // frustum_x/frustum_y are calculated
1134         float frustumscale_x, frustumscale_y;
1135
1136         // view transform
1137         matrix4x4_t viewentitymatrix;
1138
1139         // which color components to allow (for anaglyph glasses)
1140         int colormask[4];
1141
1142         // fullscreen color blend
1143         float viewblend[4];
1144
1145         // whether to call S_ExtraUpdate during render to reduce sound chop
1146         qboolean extraupdate;
1147
1148         // client gameworld time for rendering time based effects
1149         double time;
1150
1151         // the world
1152         entity_render_t *worldentity;
1153
1154         // same as worldentity->model
1155         model_t *worldmodel;
1156
1157         // renderable entities (excluding world)
1158         entity_render_t **entities;
1159         int numentities;
1160         int maxentities;
1161
1162         // renderable dynamic lights
1163         dlight_t *lights[MAX_DLIGHTS];
1164         int numlights;
1165
1166         // 8.8bit fixed point intensities for light styles
1167         // controls intensity of dynamic lights and lightmap layers
1168         unsigned short  lightstylevalue[256];   // 8.8 fraction of base light value
1169
1170         qboolean draw2dstage;
1171 }
1172 refdef_t;
1173
1174 extern refdef_t r_refdef;
1175
1176 #endif
1177