]> icculus.org git repositories - divverent/darkplaces.git/blob - client.h
reenabled the 'stick in place if stuck in a solid' code, but changed it to only apply...
[divverent/darkplaces.git] / client.h
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 // client.h
21
22 #ifndef CLIENT_H
23 #define CLIENT_H
24
25 #include "matrixlib.h"
26
27 // LordHavoc: 256 dynamic lights
28 #define MAX_DLIGHTS 256
29
30 // 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           friction; // how much air friction affects this object (objects with a low mass/size ratio tend to get more air friction)
593         unsigned char           color[4];
594         unsigned short owner; // decal stuck to this entity
595         model_t         *ownermodel; // model the decal is stuck to (used to make sure the entity is still alive)
596         vec3_t          relativeorigin; // decal at this location in entity's coordinate space
597         vec3_t          relativedirection; // decal oriented this way relative to entity's coordinate space
598 }
599 particle_t;
600
601 //
602 // the client_state_t structure is wiped completely at every
603 // server signon
604 //
605 typedef struct client_state_s
606 {
607         // true if playing in a local game and no one else is connected
608         int islocalgame;
609
610         // when connecting to the server throw out the first couple move messages
611         // so the player doesn't accidentally do something the first frame
612         int movemessages;
613
614         // send a clc_nop periodically until connected
615         float sendnoptime;
616
617         // current input to send to the server
618         usercmd_t cmd;
619
620 // information for local display
621         // health, etc
622         int stats[MAX_CL_STATS];
623         // last known inventory bit flags, for blinking
624         int olditems;
625         // cl.time of acquiring item, for blinking
626         float item_gettime[32];
627         // last known STAT_ACTIVEWEAPON
628         int activeweapon;
629         // cl.time of changing STAT_ACTIVEWEAPON
630         float weapontime;
631         // use pain anim frame if cl.time < this
632         float faceanimtime;
633
634         // color shifts for damage, powerups
635         cshift_t cshifts[NUM_CSHIFTS];
636         // and content types
637         cshift_t prev_cshifts[NUM_CSHIFTS];
638
639 // the client maintains its own idea of view angles, which are
640 // sent to the server each frame.  The server sets punchangle when
641 // the view is temporarily offset, and an angle reset commands at the start
642 // of each level and after teleporting.
643
644         // mviewangles is read from demo
645         // viewangles is either client controlled or lerped from mviewangles
646         vec3_t mviewangles[2], viewangles;
647         // update by server, used by qc to do weapon recoil
648         vec3_t mpunchangle[2], punchangle;
649         // update by server, can be used by mods to kick view around
650         vec3_t mpunchvector[2], punchvector;
651         // update by server, used for lean+bob (0 is newest)
652         vec3_t mvelocity[2], velocity;
653         // update by server, can be used by mods for zooming
654         vec_t mviewzoom[2], viewzoom;
655
656         // client movement simulation
657         // these fields are only updated by CL_ClientMovement (called by CL_SendMove after parsing each network packet)
658         qboolean movement;
659         // this is set true by svc_time parsing and causes a new movement to be
660         // queued for prediction purposes
661         qboolean movement_needupdate;
662         // indicates the queue has been updated and should be replayed
663         qboolean movement_replay;
664         // simulated data (this is valid even if cl.movement is false)
665         vec3_t movement_origin;
666         vec3_t movement_oldorigin;
667         vec3_t movement_velocity;
668         // queue of proposed moves
669         int movement_numqueue;
670         client_movementqueue_t movement_queue[64];
671         int movesequence;
672         int servermovesequence;
673
674 // pitch drifting vars
675         float idealpitch;
676         float pitchvel;
677         qboolean nodrift;
678         float driftmove;
679         double laststop;
680
681 //[515]: added for csqc purposes
682         float sensitivityscale;
683         csqc_vidvars_t csqc_vidvars;    //[515]: these parms must be set to true by default
684         qboolean csqc_wantsmousemove;
685         struct model_s *csqc_model_precache[MAX_MODELS];
686
687         // local amount for smoothing stepups
688         //float crouch;
689
690         // sent by server
691         qboolean paused;
692         qboolean onground;
693         qboolean inwater;
694
695         // used by bob
696         qboolean oldonground;
697         double lastongroundtime;
698         double hitgroundtime;
699
700         // don't change view angle, full screen, etc
701         int intermission;
702         // latched at intermission start
703         double completed_time;
704
705         // the timestamp of the last two messages
706         double mtime[2];
707
708         // clients view of time, time should be between mtime[0] and mtime[1] to
709         // generate a lerp point for other data, oldtime is the previous frame's
710         // value of time, frametime is the difference between time and oldtime
711         double time, oldtime;
712         // how long it has been since the previous client frame in real time
713         // (not game time, for that use cl.time - cl.oldtime)
714         double realframetime;
715
716         // copy of realtime from last recieved message, for net trouble icon
717         float last_received_message;
718
719 // information that is static for the entire time connected to a server
720         struct model_s *model_precache[MAX_MODELS];
721         struct sfx_s *sound_precache[MAX_SOUNDS];
722
723         // FIXME: this is a lot of memory to be keeping around, this really should be dynamically allocated and freed somehow
724         char model_name[MAX_MODELS][MAX_QPATH];
725         char sound_name[MAX_SOUNDS][MAX_QPATH];
726
727         // for display on solo scoreboard
728         char levelname[40];
729         // cl_entitites[cl.viewentity] = player
730         int viewentity;
731         // the real player entity (normally same as viewentity,
732         // different than viewentity if mod uses chasecam or other tricks)
733         int playerentity;
734         // max players that can be in this game
735         int maxclients;
736         // type of game (deathmatch, coop, singleplayer)
737         int gametype;
738
739         // models and sounds used by engine code (particularly cl_parse.c)
740         model_t *model_bolt;
741         model_t *model_bolt2;
742         model_t *model_bolt3;
743         model_t *model_beam;
744         sfx_t *sfx_wizhit;
745         sfx_t *sfx_knighthit;
746         sfx_t *sfx_tink1;
747         sfx_t *sfx_ric1;
748         sfx_t *sfx_ric2;
749         sfx_t *sfx_ric3;
750         sfx_t *sfx_r_exp3;
751
752 // refresh related state
753
754         // cl_entitites[0].model
755         struct model_s *worldmodel;
756
757         // the gun model
758         entity_t viewent;
759
760         // cd audio
761         int cdtrack, looptrack;
762
763 // frag scoreboard
764
765         // [cl.maxclients]
766         scoreboard_t *scores;
767
768         // entity database stuff
769         // latest received entity frame numbers
770 #define LATESTFRAMENUMS 3
771         int latestframenums[LATESTFRAMENUMS];
772         entityframe_database_t *entitydatabase;
773         entityframe4_database_t *entitydatabase4;
774         entityframeqw_database_t *entitydatabaseqw;
775
776         // keep track of quake entities because they need to be killed if they get stale
777         int lastquakeentity;
778         unsigned char isquakeentity[MAX_EDICTS];
779
780         // bounding boxes for clientside movement
781         vec3_t playerstandmins;
782         vec3_t playerstandmaxs;
783         vec3_t playercrouchmins;
784         vec3_t playercrouchmaxs;
785
786         int max_entities;
787         int max_csqcentities;
788         int max_static_entities;
789         int max_temp_entities;
790         int max_effects;
791         int max_beams;
792         int max_dlights;
793         int max_lightstyle;
794         int max_brushmodel_entities;
795         int max_particles;
796
797         entity_t *entities;
798         entity_t *csqcentities; //[515]: csqc
799         unsigned char *entities_active;
800         unsigned char *csqcentities_active;     //[515]: csqc
801         entity_t *static_entities;
802         entity_t *temp_entities;
803         cl_effect_t *effects;
804         beam_t *beams;
805         dlight_t *dlights;
806         lightstyle_t *lightstyle;
807         int *brushmodel_entities;
808         particle_t *particles;
809
810         int num_entities;
811         int num_csqcentities;   //[515]: csqc
812         int num_static_entities;
813         int num_temp_entities;
814         int num_brushmodel_entities;
815         int num_effects;
816         int num_beams;
817         int num_dlights;
818         int num_particles;
819
820         int free_particle;
821
822         // quakeworld stuff
823
824         // local copy of the server infostring
825         char qw_serverinfo[MAX_SERVERINFO_STRING];
826
827         // time of last qw "pings" command sent to server while showing scores
828         double last_ping_request;
829
830         // used during connect
831         int qw_servercount;
832
833         // updated from serverinfo
834         int qw_teamplay;
835
836         // indicates whether the player is spectating
837         qboolean qw_spectator;
838
839         // movement parameters for client prediction
840         float qw_movevars_gravity;
841         float qw_movevars_stopspeed;
842         float qw_movevars_maxspeed; // can change during play
843         float qw_movevars_spectatormaxspeed;
844         float qw_movevars_accelerate;
845         float qw_movevars_airaccelerate;
846         float qw_movevars_wateraccelerate;
847         float qw_movevars_friction;
848         float qw_movevars_waterfriction;
849         float qw_movevars_entgravity; // can change during play
850
851         // models used by qw protocol
852         int qw_modelindex_spike;
853         int qw_modelindex_player;
854         int qw_modelindex_flag;
855         int qw_modelindex_s_explod;
856
857         vec3_t qw_intermission_origin;
858         vec3_t qw_intermission_angles;
859
860         // 255 is the most nails the QW protocol could send
861         int qw_num_nails;
862         vec_t qw_nails[255][6];
863
864         float qw_weaponkick;
865
866         int qw_validsequence;
867
868         qw_usercmd_t qw_moves[QW_UPDATE_BACKUP];
869
870         int qw_deltasequence[QW_UPDATE_BACKUP];
871 }
872 client_state_t;
873
874 //
875 // cvars
876 //
877 extern cvar_t cl_name;
878 extern cvar_t cl_color;
879 extern cvar_t cl_rate;
880 extern cvar_t cl_pmodel;
881 extern cvar_t cl_playermodel;
882 extern cvar_t cl_playerskin;
883
884 extern cvar_t rcon_password;
885 extern cvar_t rcon_address;
886
887 extern cvar_t cl_upspeed;
888 extern cvar_t cl_forwardspeed;
889 extern cvar_t cl_backspeed;
890 extern cvar_t cl_sidespeed;
891
892 extern cvar_t cl_movespeedkey;
893
894 extern cvar_t cl_yawspeed;
895 extern cvar_t cl_pitchspeed;
896
897 extern cvar_t cl_anglespeedkey;
898
899 extern cvar_t cl_autofire;
900
901 extern cvar_t csqc_progname;    //[515]: csqc crc check and right csprogs name according to progs.dat
902 extern cvar_t csqc_progcrc;
903
904 extern cvar_t cl_shownet;
905 extern cvar_t cl_nolerp;
906
907 extern cvar_t cl_pitchdriftspeed;
908 extern cvar_t lookspring;
909 extern cvar_t lookstrafe;
910 extern cvar_t sensitivity;
911
912 extern cvar_t freelook;
913
914 extern cvar_t m_pitch;
915 extern cvar_t m_yaw;
916 extern cvar_t m_forward;
917 extern cvar_t m_side;
918
919 extern cvar_t cl_autodemo;
920 extern cvar_t cl_autodemo_nameformat;
921
922 extern cvar_t r_draweffects;
923
924 extern cvar_t cl_explosions_alpha_start;
925 extern cvar_t cl_explosions_alpha_end;
926 extern cvar_t cl_explosions_size_start;
927 extern cvar_t cl_explosions_size_end;
928 extern cvar_t cl_explosions_lifetime;
929 extern cvar_t cl_stainmaps;
930 extern cvar_t cl_stainmaps_clearonload;
931
932 extern cvar_t cl_prydoncursor;
933
934 extern client_state_t cl;
935
936 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);
937
938 //=============================================================================
939
940 //
941 // cl_main
942 //
943
944 void CL_Shutdown (void);
945 void CL_Init (void);
946
947 void CL_EstablishConnection(const char *host);
948
949 void CL_Disconnect (void);
950 void CL_Disconnect_f (void);
951
952 void CL_BoundingBoxForEntity(entity_render_t *ent);
953
954 extern cvar_t cl_beams_polygons;
955 extern cvar_t cl_beams_relative;
956 extern cvar_t cl_beams_lightatend;
957
958 //
959 // cl_input
960 //
961 typedef struct kbutton_s
962 {
963         int             down[2];                // key nums holding it down
964         int             state;                  // low bit is down state
965 }
966 kbutton_t;
967
968 extern  kbutton_t       in_mlook, in_klook;
969 extern  kbutton_t       in_strafe;
970 extern  kbutton_t       in_speed;
971
972 void CL_InitInput (void);
973 void CL_SendMove (void);
974
975 void CL_ValidateState(entity_state_t *s);
976 void CL_MoveLerpEntityStates(entity_t *ent);
977 void CL_LerpUpdate(entity_t *e);
978 void CL_ParseTEnt (void);
979 void CL_RelinkBeams (void);
980
981 void CL_ClearTempEntities (void);
982 entity_t *CL_NewTempEntity (void);
983
984 void CL_Effect(vec3_t org, int modelindex, int startframe, int framecount, float framerate);
985
986 void CL_ClearState (void);
987 void CL_ExpandEntities(int num);
988
989
990 int  CL_ReadFromServer (void);
991 void CL_WriteToServer (void);
992 void CL_Move (void);
993 extern qboolean cl_ignoremousemove;
994
995
996 float CL_KeyState (kbutton_t *key);
997 const char *Key_KeynumToString (int keynum);
998 int Key_StringToKeynum (const char *str);
999
1000 //
1001 // cl_demo.c
1002 //
1003 void CL_StopPlayback(void);
1004 void CL_ReadDemoMessage(void);
1005 void CL_WriteDemoMessage(void);
1006
1007 void CL_NextDemo(void);
1008 void CL_Stop_f(void);
1009 void CL_Record_f(void);
1010 void CL_PlayDemo_f(void);
1011 void CL_TimeDemo_f(void);
1012
1013 //
1014 // cl_parse.c
1015 //
1016 void CL_Parse_Init(void);
1017 void CL_Parse_Shutdown(void);
1018 void CL_ParseServerMessage(void);
1019 void CL_Parse_DumpPacket(void);
1020 void CL_Parse_ErrorCleanUp(void);
1021 void QW_CL_StartUpload(unsigned char *data, int size);
1022 extern cvar_t qport;
1023
1024 //
1025 // view
1026 //
1027 void V_StartPitchDrift (void);
1028 void V_StopPitchDrift (void);
1029
1030 void V_Init (void);
1031 float V_CalcRoll (vec3_t angles, vec3_t velocity);
1032 void V_UpdateBlends (void);
1033 void V_ParseDamage (void);
1034
1035 //
1036 // cl_part
1037 //
1038
1039 extern cvar_t cl_particles;
1040 extern cvar_t cl_particles_quality;
1041 extern cvar_t cl_particles_size;
1042 extern cvar_t cl_particles_quake;
1043 extern cvar_t cl_particles_blood;
1044 extern cvar_t cl_particles_blood_alpha;
1045 extern cvar_t cl_particles_blood_bloodhack;
1046 extern cvar_t cl_particles_bulletimpacts;
1047 extern cvar_t cl_particles_explosions_bubbles;
1048 extern cvar_t cl_particles_explosions_smoke;
1049 extern cvar_t cl_particles_explosions_sparks;
1050 extern cvar_t cl_particles_explosions_shell;
1051 extern cvar_t cl_particles_smoke;
1052 extern cvar_t cl_particles_smoke_alpha;
1053 extern cvar_t cl_particles_smoke_alphafade;
1054 extern cvar_t cl_particles_sparks;
1055 extern cvar_t cl_particles_bubbles;
1056 extern cvar_t cl_decals;
1057 extern cvar_t cl_decals_time;
1058 extern cvar_t cl_decals_fadetime;
1059
1060 void CL_Particles_Clear(void);
1061 void CL_Particles_Init(void);
1062 void CL_Particles_Shutdown(void);
1063
1064 typedef enum effectnameindex_s
1065 {
1066         EFFECT_NONE,
1067         EFFECT_TE_GUNSHOT,
1068         EFFECT_TE_GUNSHOTQUAD,
1069         EFFECT_TE_SPIKE,
1070         EFFECT_TE_SPIKEQUAD,
1071         EFFECT_TE_SUPERSPIKE,
1072         EFFECT_TE_SUPERSPIKEQUAD,
1073         EFFECT_TE_WIZSPIKE,
1074         EFFECT_TE_KNIGHTSPIKE,
1075         EFFECT_TE_VORESPIKE,
1076         EFFECT_TE_EXPLOSION,
1077         EFFECT_TE_EXPLOSIONQUAD,
1078         EFFECT_TE_TAREXPLOSION,
1079         EFFECT_TE_TELEPORT,
1080         EFFECT_TE_LAVASPLASH,
1081         EFFECT_TE_SMALLFLASH,
1082         EFFECT_TE_FLAMEJET,
1083         EFFECT_EF_FLAME,
1084         EFFECT_TE_BLOOD,
1085         EFFECT_TE_SPARK,
1086         EFFECT_TE_PLASMABURN,
1087         EFFECT_TE_TEI_G3,
1088         EFFECT_TE_TEI_SMOKE,
1089         EFFECT_TE_TEI_BIGEXPLOSION,
1090         EFFECT_TE_TEI_PLASMAHIT,
1091         EFFECT_EF_STARDUST,
1092         EFFECT_TR_ROCKET,
1093         EFFECT_TR_GRENADE,
1094         EFFECT_TR_BLOOD,
1095         EFFECT_TR_WIZSPIKE,
1096         EFFECT_TR_SLIGHTBLOOD,
1097         EFFECT_TR_KNIGHTSPIKE,
1098         EFFECT_TR_VORESPIKE,
1099         EFFECT_TR_NEHAHRASMOKE,
1100         EFFECT_TR_NEXUIZPLASMA,
1101         EFFECT_TR_GLOWTRAIL,
1102         EFFECT_SVC_PARTICLE,
1103         EFFECT_TOTAL
1104 }
1105 effectnameindex_t;
1106
1107 int CL_ParticleEffectIndexForName(const char *name);
1108 const char *CL_ParticleEffectNameForIndex(int i);
1109 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);
1110 void CL_ParseParticleEffect (void);
1111 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);
1112 void CL_ParticleRain (const vec3_t mins, const vec3_t maxs, const vec3_t dir, int count, int colorbase, int type);
1113 void CL_EntityParticles (const entity_t *ent);
1114 void CL_ParticleExplosion (const vec3_t org);
1115 void CL_ParticleExplosion2 (const vec3_t org, int colorStart, int colorLength);
1116 void CL_MoveParticles(void);
1117 void R_MoveExplosions(void);
1118 void R_NewExplosion(const vec3_t org);
1119
1120 #include "cl_screen.h"
1121
1122 #define NUMCROSSHAIRS 32
1123 extern cachepic_t *r_crosshairs[NUMCROSSHAIRS+1];
1124
1125 typedef struct refdef_s
1126 {
1127         // area to render in
1128         int x, y, width, height;
1129         float frustum_x, frustum_y;
1130
1131         // these are set for water warping before
1132         // frustum_x/frustum_y are calculated
1133         float frustumscale_x, frustumscale_y;
1134
1135         // view transform
1136         matrix4x4_t viewentitymatrix;
1137
1138         // which color components to allow (for anaglyph glasses)
1139         int colormask[4];
1140
1141         // fullscreen color blend
1142         float viewblend[4];
1143
1144         // whether to call S_ExtraUpdate during render to reduce sound chop
1145         qboolean extraupdate;
1146
1147         // client gameworld time for rendering time based effects
1148         double time;
1149
1150         // the world
1151         entity_render_t *worldentity;
1152
1153         // same as worldentity->model
1154         model_t *worldmodel;
1155
1156         // renderable entities (excluding world)
1157         entity_render_t **entities;
1158         int numentities;
1159         int maxentities;
1160
1161         // renderable dynamic lights
1162         dlight_t *lights[MAX_DLIGHTS];
1163         int numlights;
1164
1165         // 8.8bit fixed point intensities for light styles
1166         // controls intensity of dynamic lights and lightmap layers
1167         unsigned short  lightstylevalue[256];   // 8.8 fraction of base light value
1168
1169         qboolean draw2dstage;
1170 }
1171 refdef_t;
1172
1173 extern refdef_t r_refdef;
1174
1175 #endif
1176