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