]> git.xonotic.org Git - xonotic/darkplaces.git/blob - client.h
QW support getting closer
[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 // LordHavoc: this affects the lighting scale of the whole game
30 #define LIGHTOFFSET 1024.0f
31 // max lights shining on one entity
32 #define MAXENTLIGHTS 128
33
34 // flags for rtlight rendering
35 #define LIGHTFLAG_NORMALMODE 1
36 #define LIGHTFLAG_REALTIMEMODE 2
37
38 typedef struct effect_s
39 {
40         int active;
41         vec3_t origin;
42         float starttime;
43         float framerate;
44         int modelindex;
45         int startframe;
46         int endframe;
47         // these are for interpolation
48         int frame;
49         double frame1time;
50         double frame2time;
51 }
52 cl_effect_t;
53
54 typedef struct beam_s
55 {
56         int             entity;
57         // draw this as lightning polygons, or a model?
58         int             lightning;
59         struct model_s  *model;
60         float   endtime;
61         vec3_t  start, end;
62         // if this beam is owned by an entity, this is the beam start relative to
63         // that entity's matrix for per frame start updates
64         vec3_t  relativestart;
65         vec3_t  relativeend;
66         // indicates whether relativestart is valid
67         int     relativestartvalid;
68 }
69 beam_t;
70
71 typedef struct rtlight_s
72 {
73         // shadow volumes are done entirely in model space, so there are no matrices for dealing with them...  they just use the origin
74
75         // note that the world to light matrices are inversely scaled (divided) by lightradius
76
77         // core properties
78         // matrix for transforming world coordinates to light filter coordinates
79         matrix4x4_t matrix_worldtolight;
80         // typically 1 1 1, can be lower (dim) or higher (overbright)
81         vec3_t color;
82         // size of the light (remove?)
83         vec_t radius;
84         // light filter
85         char cubemapname[64];
86         // light style to monitor for brightness
87         int style;
88         // whether light should render shadows
89         int shadow;
90         // intensity of corona to render
91         vec_t corona;
92         // radius scale of corona to render (1.0 means same as light radius)
93         vec_t coronasizescale;
94         // ambient intensity to render
95         vec_t ambientscale;
96         // diffuse intensity to render
97         vec_t diffusescale;
98         // specular intensity to render
99         vec_t specularscale;
100         // LIGHTFLAG_* flags
101         int flags;
102
103         // generated properties
104         // used only for shadow volumes
105         vec3_t shadoworigin;
106         // culling
107         vec3_t cullmins;
108         vec3_t cullmaxs;
109         // culling
110         //vec_t cullradius;
111         // squared cullradius
112         //vec_t cullradius2;
113
114         // rendering properties, updated each time a light is rendered
115         // this is rtlight->color * d_lightstylevalue
116         vec3_t currentcolor;
117         // this is R_Shadow_Cubemap(rtlight->cubemapname)
118         rtexture_t *currentcubemap;
119
120         // lightmap renderer stuff (remove someday!)
121         // the size of the light
122         vec_t lightmap_cullradius;
123         // the size of the light, squared
124         vec_t lightmap_cullradius2;
125         // the brightness of the light
126         vec3_t lightmap_light;
127         // to avoid sudden brightness change at cullradius, subtract this
128         vec_t lightmap_subtract;
129
130         // static light info
131         // true if this light should be compiled as a static light
132         int isstatic;
133         // true if this is a compiled world light, cleared if the light changes
134         int compiled;
135         // premade shadow volumes to render for world entity
136         shadowmesh_t *static_meshchain_shadow;
137         // used for visibility testing (more exact than bbox)
138         int static_numleafs;
139         int static_numleafpvsbytes;
140         int *static_leaflist;
141         unsigned char *static_leafpvs;
142         // surfaces seen by light
143         int static_numsurfaces;
144         int *static_surfacelist;
145 }
146 rtlight_t;
147
148 typedef struct dlight_s
149 {
150         // destroy light after this time
151         // (dlight only)
152         vec_t die;
153         // the entity that owns this light (can be NULL)
154         // (dlight only)
155         struct entity_render_s *ent;
156         // location
157         // (worldlight: saved to .rtlights file)
158         vec3_t origin;
159         // worldlight orientation
160         // (worldlight only)
161         // (worldlight: saved to .rtlights file)
162         vec3_t angles;
163         // dlight orientation/scaling/location
164         // (dlight only)
165         matrix4x4_t matrix;
166         // color of light
167         // (worldlight: saved to .rtlights file)
168         vec3_t color;
169         // cubemap number to use on this light
170         // (dlight only)
171         int cubemapnum;
172         // cubemap name to use on this light
173         // (worldlight only)
174         // (worldlight: saved to .rtlights file)
175         char cubemapname[64];
176         // make light flash while selected
177         // (worldlight only)
178         int selected;
179         // brightness (not really radius anymore)
180         // (worldlight: saved to .rtlights file)
181         vec_t radius;
182         // drop radius this much each second
183         // (dlight only)
184         vec_t decay;
185         // light style which controls intensity of this light
186         // (worldlight: saved to .rtlights file)
187         int style;
188         // cast shadows
189         // (worldlight: saved to .rtlights file)
190         int shadow;
191         // corona intensity
192         // (worldlight: saved to .rtlights file)
193         vec_t corona;
194         // radius scale of corona to render (1.0 means same as light radius)
195         // (worldlight: saved to .rtlights file)
196         vec_t coronasizescale;
197         // ambient intensity to render
198         // (worldlight: saved to .rtlights file)
199         vec_t ambientscale;
200         // diffuse intensity to render
201         // (worldlight: saved to .rtlights file)
202         vec_t diffusescale;
203         // specular intensity to render
204         // (worldlight: saved to .rtlights file)
205         vec_t specularscale;
206         // LIGHTFLAG_* flags
207         // (worldlight: saved to .rtlights file)
208         int flags;
209         // linked list of world lights
210         // (worldlight only)
211         struct dlight_s *next;
212         // embedded rtlight struct for renderer
213         // (renderer only)
214         rtlight_t rtlight;
215 }
216 dlight_t;
217
218 typedef struct frameblend_s
219 {
220         int frame;
221         float lerp;
222 }
223 frameblend_t;
224
225 // LordHavoc: this struct is intended for the renderer but some fields are
226 // used by the client.
227 typedef struct entity_render_s
228 {
229         // location
230         vec3_t origin;
231         // orientation
232         vec3_t angles;
233         // transform matrix for model to world
234         matrix4x4_t matrix;
235         // transform matrix for world to model
236         matrix4x4_t inversematrix;
237         // opacity (alpha) of the model
238         float alpha;
239         // size the model is shown
240         float scale;
241
242         // NULL = no model
243         model_t *model;
244         // current uninterpolated animation frame (for things which do not use interpolation)
245         int frame;
246         // entity shirt and pants colors (-1 if not colormapped)
247         int colormap;
248         // literal colors for renderer
249         vec3_t colormap_pantscolor;
250         vec3_t colormap_shirtcolor;
251         // light, particles, etc
252         int effects;
253         // for Alias models
254         int skinnum;
255         // render flags
256         int flags;
257
258         // colormod tinting of models
259         float colormod[3];
260
261         // interpolated animation
262
263         // frame that the model is interpolating from
264         int frame1;
265         // frame that the model is interpolating to
266         int frame2;
267         // interpolation factor, usually computed from frame2time
268         float framelerp;
269         // time frame1 began playing (for framegroup animations)
270         double frame1time;
271         // time frame2 began playing (for framegroup animations)
272         double frame2time;
273
274         // calculated by the renderer (but not persistent)
275
276         // if visframe == r_framecount, it is visible
277         int visframe;
278         // calculated during R_AddModelEntities
279         vec3_t mins, maxs;
280         // 4 frame numbers (-1 if not used) and their blending scalers (0-1), if interpolation is not desired, use frame instead
281         frameblend_t frameblend[4];
282
283         // caching results of static light traces (this is semi-persistent)
284         double entlightstime;
285         vec3_t entlightsorigin;
286         int entlightsframe;
287         int numentlights;
288         unsigned short entlights[MAXENTLIGHTS];
289 }
290 entity_render_t;
291
292 typedef struct entity_persistent_s
293 {
294         int linkframe;
295
296         vec3_t trail_origin;
297
298         // particle trail
299         float trail_time;
300
301         // muzzleflash fading
302         float muzzleflash;
303
304         // interpolated movement
305
306         // start time of move
307         float lerpstarttime;
308         // time difference from start to end of move
309         float lerpdeltatime;
310         // the move itself, start and end
311         float oldorigin[3];
312         float oldangles[3];
313         float neworigin[3];
314         float newangles[3];
315 }
316 entity_persistent_t;
317
318 typedef struct entity_s
319 {
320         qboolean csqc;
321         // baseline state (default values)
322         entity_state_t state_baseline;
323         // previous state (interpolating from this)
324         entity_state_t state_previous;
325         // current state (interpolating to this)
326         entity_state_t state_current;
327
328         // used for regenerating parts of render
329         entity_persistent_t persistent;
330
331         // the only data the renderer should know about
332         entity_render_t render;
333 }
334 entity_t;
335
336 typedef struct usercmd_s
337 {
338         vec3_t  viewangles;
339
340 // intended velocities
341         float   forwardmove;
342         float   sidemove;
343         float   upmove;
344
345         vec3_t  cursor_screen;
346         vec3_t  cursor_start;
347         vec3_t  cursor_end;
348         vec3_t  cursor_impact;
349         vec3_t  cursor_normal;
350         vec_t   cursor_fraction;
351         int             cursor_entitynumber;
352
353         double time;
354         double receivetime;
355         int buttons;
356         int impulse;
357         int sequence;
358         qboolean applied; // if false we're still accumulating a move
359 } usercmd_t;
360
361 typedef struct lightstyle_s
362 {
363         int             length;
364         char    map[MAX_STYLESTRING];
365 } lightstyle_t;
366
367 typedef struct scoreboard_s
368 {
369         char    name[MAX_SCOREBOARDNAME];
370         int             frags;
371         int             colors; // two 4 bit fields
372         // QW fields:
373         int             qw_userid;
374         char    qw_userinfo[MAX_USERINFO_STRING];
375         float   qw_entertime;
376         int             qw_ping;
377         int             qw_packetloss;
378         int             qw_spectator;
379         char    qw_skin[MAX_QPATH];
380         cachepic_t *qw_skin_cachepic; // skins are loaded as cachepics
381 } scoreboard_t;
382
383 typedef struct cshift_s
384 {
385         int             destcolor[3];
386         int             percent;                // 0-256
387 } cshift_t;
388
389 #define CSHIFT_CONTENTS 0
390 #define CSHIFT_DAMAGE   1
391 #define CSHIFT_BONUS    2
392 #define CSHIFT_POWERUP  3
393 #define CSHIFT_VCSHIFT  4
394 #define NUM_CSHIFTS             5
395
396 #define NAME_LENGTH     64
397
398
399 //
400 // client_state_t should hold all pieces of the client state
401 //
402
403 #define SIGNONS         4                       // signon messages to receive before connected
404
405 #define MAX_DEMOS               8
406 #define MAX_DEMONAME    16
407
408 typedef enum cactive_e
409 {
410         ca_dedicated,           // a dedicated server with no ability to start a client
411         ca_disconnected,        // full screen console with no connection
412         ca_connected            // valid netcon, talking to a server
413 }
414 cactive_t;
415
416 typedef enum qw_downloadtype_e
417 {
418         dl_none,
419         dl_single,
420         dl_skin,
421         dl_model,
422         dl_sound
423 }
424 qw_downloadtype_t;
425
426 //
427 // the client_static_t structure is persistent through an arbitrary number
428 // of server connections
429 //
430 typedef struct client_static_s
431 {
432         cactive_t state;
433
434 // demo loop control
435         // -1 = don't play demos
436         int demonum;
437         // list of demos in loop
438         char demos[MAX_DEMOS][MAX_DEMONAME];
439         // the actively playing demo (set by CL_PlayDemo_f)
440         char demoname[64];
441
442 // demo recording info must be here, because record is started before
443 // entering a map (and clearing client_state_t)
444         qboolean demorecording;
445         qboolean demoplayback;
446         qboolean timedemo;
447         // -1 = use normal cd track
448         int forcetrack;
449         qfile_t *demofile;
450         // to meter out one message a frame
451         int td_lastframe;
452         // host_framecount at start
453         int td_startframe;
454         // realtime at second frame of timedemo (LordHavoc: changed to double)
455         double td_starttime;
456         // LordHavoc: for measuring maxfps
457         double td_minframetime;
458         // LordHavoc: for measuring minfps
459         double td_maxframetime;
460         // LordHavoc: pausedemo
461         qboolean demopaused;
462
463         qboolean connect_trying;
464         int connect_remainingtries;
465         double connect_nextsendtime;
466         lhnetsocket_t *connect_mysocket;
467         lhnetaddress_t connect_address;
468         // protocol version of the server we're connected to
469         // (kept outside client_state_t because it's used between levels)
470         protocolversion_t protocol;
471
472 // connection information
473         // 0 to SIGNONS
474         int signon;
475         // network connection
476         netconn_t *netcon;
477
478         // quakeworld stuff below
479
480         // value of "qport" cvar at time of connection
481         int qw_qport;
482
483         // current file download buffer (only saved when file is completed)
484         char qw_downloadname[MAX_QPATH];
485         unsigned char *qw_downloadmemory;
486         int qw_downloadmemorycursize;
487         int qw_downloadmemorymaxsize;
488         int qw_downloadnumber;
489         int qw_downloadpercent;
490         qw_downloadtype_t qw_downloadtype;
491
492         // current file upload buffer (for uploading screenshots to server)
493         unsigned char *qw_uploaddata;
494         int qw_uploadsize;
495         int qw_uploadpos;
496
497         // user infostring
498         // this normally contains the following keys in quakeworld:
499         // password spectator name team skin topcolor bottomcolor rate noaim msg *ver *ip
500         char userinfo[MAX_USERINFO_STRING];
501 }
502 client_static_t;
503
504 extern client_static_t  cls;
505
506 typedef struct client_movementqueue_s
507 {
508         double time;
509         float frametime;
510         int sequence;
511         float viewangles[3];
512         float move[3];
513         qboolean jump;
514         qboolean crouch;
515 }
516 client_movementqueue_t;
517
518 //[515]: csqc
519 typedef struct
520 {
521         qboolean drawworld;
522         qboolean drawenginesbar;
523         qboolean drawcrosshair;
524 }csqc_vidvars_t;
525
526 //
527 // the client_state_t structure is wiped completely at every
528 // server signon
529 //
530 typedef struct client_state_s
531 {
532         // true if playing in a local game and no one else is connected
533         int islocalgame;
534
535         // when connecting to the server throw out the first couple move messages
536         // so the player doesn't accidentally do something the first frame
537         int movemessages;
538
539         // send a clc_nop periodically until connected
540         float sendnoptime;
541
542         // current input to send to the server
543         usercmd_t cmd;
544
545 // information for local display
546         // health, etc
547         int stats[MAX_CL_STATS];
548         // last known inventory bit flags, for blinking
549         int olditems;
550         // cl.time of acquiring item, for blinking
551         float item_gettime[32];
552         // last known STAT_ACTIVEWEAPON
553         int activeweapon;
554         // cl.time of changing STAT_ACTIVEWEAPON
555         float weapontime;
556         // use pain anim frame if cl.time < this
557         float faceanimtime;
558
559         // color shifts for damage, powerups
560         cshift_t cshifts[NUM_CSHIFTS];
561         // and content types
562         cshift_t prev_cshifts[NUM_CSHIFTS];
563
564 // the client maintains its own idea of view angles, which are
565 // sent to the server each frame.  The server sets punchangle when
566 // the view is temporarily offset, and an angle reset commands at the start
567 // of each level and after teleporting.
568
569         // mviewangles is read from demo
570         // viewangles is either client controlled or lerped from mviewangles
571         vec3_t mviewangles[2], viewangles;
572         // update by server, used by qc to do weapon recoil
573         vec3_t mpunchangle[2], punchangle;
574         // update by server, can be used by mods to kick view around
575         vec3_t mpunchvector[2], punchvector;
576         // update by server, used for lean+bob (0 is newest)
577         vec3_t mvelocity[2], velocity;
578         // update by server, can be used by mods for zooming
579         vec_t mviewzoom[2], viewzoom;
580
581         // client movement simulation
582         // these fields are only updated by CL_ClientMovement (called by CL_SendMove after parsing each network packet)
583         qboolean movement;
584         // this is set true by svc_time parsing and causes a new movement to be
585         // queued for prediction purposes
586         qboolean movement_needupdate;
587         // indicates the queue has been updated and should be replayed
588         qboolean movement_replay;
589         // simulated data (this is valid even if cl.movement is false)
590         vec3_t movement_origin;
591         vec3_t movement_oldorigin;
592         vec3_t movement_velocity;
593         // queue of proposed moves
594         int movement_numqueue;
595         client_movementqueue_t movement_queue[64];
596         int movesequence;
597         int servermovesequence;
598
599 // pitch drifting vars
600         float idealpitch;
601         float pitchvel;
602         qboolean nodrift;
603         float driftmove;
604         double laststop;
605
606 //[515]: added for csqc purposes
607         float sensitivityscale;
608         csqc_vidvars_t csqc_vidvars;    //[515]: these parms must be set to true by default
609         qboolean csqc_wantsmousemove;
610         struct model_s *csqc_model_precache[MAX_MODELS];
611
612         // local amount for smoothing stepups
613         //float crouch;
614
615         // sent by server
616         qboolean paused;
617         qboolean onground;
618         qboolean inwater;
619
620         // used by bob
621         qboolean oldonground;
622         double lastongroundtime;
623         double hitgroundtime;
624
625         // don't change view angle, full screen, etc
626         int intermission;
627         // latched at intermission start
628         int completed_time;
629
630         // the timestamp of the last two messages
631         double mtime[2];
632
633         // clients view of time, time should be between mtime[0] and mtime[1] to
634         // generate a lerp point for other data, oldtime is the previous frame's
635         // value of time, frametime is the difference between time and oldtime
636         double time, oldtime, frametime;
637
638         // copy of realtime from last recieved message, for net trouble icon
639         float last_received_message;
640
641 // information that is static for the entire time connected to a server
642         struct model_s *model_precache[MAX_MODELS];
643         struct sfx_s *sound_precache[MAX_SOUNDS];
644
645         // FIXME: this is a lot of memory to be keeping around, this really should be dynamically allocated and freed somehow
646         char model_name[MAX_MODELS][MAX_QPATH];
647         char sound_name[MAX_SOUNDS][MAX_QPATH];
648
649         // for display on solo scoreboard
650         char levelname[40];
651         // cl_entitites[cl.viewentity] = player
652         int viewentity;
653         // the real player entity (normally same as viewentity,
654         // different than viewentity if mod uses chasecam or other tricks)
655         int playerentity;
656         // max players that can be in this game
657         int maxclients;
658         // type of game (deathmatch, coop, singleplayer)
659         int gametype;
660
661         // models and sounds used by engine code (particularly cl_parse.c)
662         model_t *model_bolt;
663         model_t *model_bolt2;
664         model_t *model_bolt3;
665         model_t *model_beam;
666         sfx_t *sfx_wizhit;
667         sfx_t *sfx_knighthit;
668         sfx_t *sfx_tink1;
669         sfx_t *sfx_ric1;
670         sfx_t *sfx_ric2;
671         sfx_t *sfx_ric3;
672         sfx_t *sfx_r_exp3;
673
674 // refresh related state
675
676         // cl_entitites[0].model
677         struct model_s *worldmodel;
678
679         // the gun model
680         entity_t viewent;
681
682         // cd audio
683         int cdtrack, looptrack;
684
685 // frag scoreboard
686
687         // [cl.maxclients]
688         scoreboard_t *scores;
689
690         // entity database stuff
691         // latest received entity frame numbers
692 #define LATESTFRAMENUMS 3
693         int latestframenums[LATESTFRAMENUMS];
694         entityframe_database_t *entitydatabase;
695         entityframe4_database_t *entitydatabase4;
696         entityframeqw_database_t *entitydatabaseqw;
697
698         // quakeworld stuff
699
700         // local copy of the server infostring
701         char qw_serverinfo[MAX_SERVERINFO_STRING];
702
703         // used during connect
704         int qw_servercount;
705
706         // indicates whether the player is spectating
707         qboolean qw_spectator;
708
709         // movement parameters for client prediction
710         float qw_movevars_gravity;
711         float qw_movevars_stopspeed;
712         float qw_movevars_maxspeed; // can change during play
713         float qw_movevars_spectatormaxspeed;
714         float qw_movevars_accelerate;
715         float qw_movevars_airaccelerate;
716         float qw_movevars_wateraccelerate;
717         float qw_movevars_friction;
718         float qw_movevars_waterfriction;
719         float qw_movevars_entgravity; // can change during play
720
721         // models used by qw protocol
722         int qw_modelindex_spike;
723         int qw_modelindex_player;
724         int qw_modelindex_flag;
725         int qw_modelindex_s_explod;
726
727         vec3_t qw_intermission_origin;
728         vec3_t qw_intermission_angles;
729
730         // 255 is the most nails the QW protocol could send
731         int qw_num_nails;
732         vec_t qw_nails[255][6];
733 }
734 client_state_t;
735
736 //
737 // cvars
738 //
739 extern cvar_t cl_name;
740 extern cvar_t cl_color;
741 extern cvar_t cl_rate;
742 extern cvar_t cl_pmodel;
743 extern cvar_t cl_playermodel;
744 extern cvar_t cl_playerskin;
745
746 extern cvar_t rcon_password;
747 extern cvar_t rcon_address;
748
749 extern cvar_t cl_upspeed;
750 extern cvar_t cl_forwardspeed;
751 extern cvar_t cl_backspeed;
752 extern cvar_t cl_sidespeed;
753
754 extern cvar_t cl_movespeedkey;
755
756 extern cvar_t cl_yawspeed;
757 extern cvar_t cl_pitchspeed;
758
759 extern cvar_t cl_anglespeedkey;
760
761 extern cvar_t cl_autofire;
762
763 extern cvar_t csqc_progname;    //[515]: csqc crc check and right csprogs name according to progs.dat
764 extern cvar_t csqc_progcrc;
765
766 extern cvar_t cl_shownet;
767 extern cvar_t cl_nolerp;
768
769 extern cvar_t cl_pitchdriftspeed;
770 extern cvar_t lookspring;
771 extern cvar_t lookstrafe;
772 extern cvar_t sensitivity;
773
774 extern cvar_t freelook;
775
776 extern cvar_t m_pitch;
777 extern cvar_t m_yaw;
778 extern cvar_t m_forward;
779 extern cvar_t m_side;
780
781 extern cvar_t r_draweffects;
782
783 extern cvar_t cl_explosions_alpha_start;
784 extern cvar_t cl_explosions_alpha_end;
785 extern cvar_t cl_explosions_size_start;
786 extern cvar_t cl_explosions_size_end;
787 extern cvar_t cl_explosions_lifetime;
788 extern cvar_t cl_stainmaps;
789 extern cvar_t cl_stainmaps_clearonload;
790
791 extern cvar_t cl_prydoncursor;
792
793 extern vec3_t cl_playerstandmins;
794 extern vec3_t cl_playerstandmaxs;
795 extern vec3_t cl_playercrouchmins;
796 extern vec3_t cl_playercrouchmaxs;
797
798 extern mempool_t *cl_mempool;
799
800 extern int cl_max_entities;
801 extern int cl_max_csqcentities;
802 extern int cl_max_static_entities;
803 extern int cl_max_temp_entities;
804 extern int cl_max_effects;
805 extern int cl_max_beams;
806 extern int cl_max_dlights;
807 extern int cl_max_lightstyle;
808 extern int cl_max_brushmodel_entities;
809 extern int cl_activedlights;
810
811 extern entity_t *cl_entities;
812 extern entity_t *cl_csqcentities;       //[515]: csqc
813 extern unsigned char *cl_entities_active;
814 extern unsigned char *cl_csqcentities_active;   //[515]: csqc
815 extern entity_t *cl_static_entities;
816 extern entity_t *cl_temp_entities;
817 extern cl_effect_t *cl_effects;
818 extern beam_t *cl_beams;
819 extern dlight_t *cl_dlights;
820 extern lightstyle_t *cl_lightstyle;
821 extern int *cl_brushmodel_entities;
822
823 // these are updated by CL_ClearState
824 extern int cl_num_entities;
825 extern int cl_num_csqcentities; //[515]: csqc
826 extern int cl_num_static_entities;
827 extern int cl_num_temp_entities;
828 extern int cl_num_brushmodel_entities;
829
830 extern char qw_emodel_name[], qw_pmodel_name[], qw_prespawn_name[], qw_modellist_name[], qw_soundlist_name[];
831
832 extern client_state_t cl;
833
834 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);
835
836 //=============================================================================
837
838 //
839 // cl_main
840 //
841
842 void CL_Shutdown (void);
843 void CL_Init (void);
844
845 void CL_EstablishConnection(const char *host);
846
847 void CL_Disconnect (void);
848 void CL_Disconnect_f (void);
849
850 void CL_BoundingBoxForEntity(entity_render_t *ent);
851
852 extern cvar_t cl_beams_polygons;
853 extern cvar_t cl_beams_relative;
854 extern cvar_t cl_beams_lightatend;
855
856 //
857 // cl_input
858 //
859 typedef struct kbutton_s
860 {
861         int             down[2];                // key nums holding it down
862         int             state;                  // low bit is down state
863 }
864 kbutton_t;
865
866 extern  kbutton_t       in_mlook, in_klook;
867 extern  kbutton_t       in_strafe;
868 extern  kbutton_t       in_speed;
869
870 void CL_InitInput (void);
871 void CL_SendMove (void);
872
873 void CL_ValidateState(entity_state_t *s);
874 void CL_MoveLerpEntityStates(entity_t *ent);
875 void CL_LerpUpdate(entity_t *e);
876 void CL_ParseTEnt (void);
877 void CL_RelinkBeams (void);
878
879 void CL_ClearTempEntities (void);
880 entity_t *CL_NewTempEntity (void);
881
882 void CL_Effect(vec3_t org, int modelindex, int startframe, int framecount, float framerate);
883
884 void CL_ClearState (void);
885 void CL_ExpandEntities(int num);
886
887
888 int  CL_ReadFromServer (void);
889 void CL_WriteToServer (void);
890 void CL_Move (void);
891 extern qboolean cl_ignoremousemove;
892
893
894 float CL_KeyState (kbutton_t *key);
895 const char *Key_KeynumToString (int keynum);
896 int Key_StringToKeynum (const char *str);
897
898 //
899 // cl_demo.c
900 //
901 void CL_StopPlayback(void);
902 void CL_ReadDemoMessage(void);
903 void CL_WriteDemoMessage(void);
904
905 void CL_NextDemo(void);
906 void CL_Stop_f(void);
907 void CL_Record_f(void);
908 void CL_PlayDemo_f(void);
909 void CL_TimeDemo_f(void);
910
911 //
912 // cl_parse.c
913 //
914 void CL_Parse_Init(void);
915 void CL_Parse_Shutdown(void);
916 void CL_ParseServerMessage(void);
917 void CL_Parse_DumpPacket(void);
918 void CL_Parse_ErrorCleanUp(void);
919 void QW_CL_StartUpload(unsigned char *data, int size);
920 extern cvar_t qport;
921
922 //
923 // view
924 //
925 void V_StartPitchDrift (void);
926 void V_StopPitchDrift (void);
927
928 void V_Init (void);
929 float V_CalcRoll (vec3_t angles, vec3_t velocity);
930 void V_UpdateBlends (void);
931 void V_ParseDamage (void);
932
933 //
934 // cl_part
935 //
936
937 extern cvar_t cl_particles;
938 extern cvar_t cl_particles_quality;
939 extern cvar_t cl_particles_size;
940 extern cvar_t cl_particles_quake;
941 extern cvar_t cl_particles_bloodshowers;
942 extern cvar_t cl_particles_blood;
943 extern cvar_t cl_particles_blood_alpha;
944 extern cvar_t cl_particles_blood_bloodhack;
945 extern cvar_t cl_particles_bulletimpacts;
946 extern cvar_t cl_particles_explosions_bubbles;
947 extern cvar_t cl_particles_explosions_smoke;
948 extern cvar_t cl_particles_explosions_sparks;
949 extern cvar_t cl_particles_explosions_shell;
950 extern cvar_t cl_particles_smoke;
951 extern cvar_t cl_particles_smoke_alpha;
952 extern cvar_t cl_particles_smoke_alphafade;
953 extern cvar_t cl_particles_sparks;
954 extern cvar_t cl_particles_bubbles;
955 extern cvar_t cl_decals;
956 extern cvar_t cl_decals_time;
957 extern cvar_t cl_decals_fadetime;
958
959 void CL_Particles_Clear(void);
960 void CL_Particles_Init(void);
961 void CL_Particles_Shutdown(void);
962
963 void CL_ParseParticleEffect (void);
964 void CL_RunParticleEffect (vec3_t org, vec3_t dir, int color, int count);
965 void CL_RocketTrail (vec3_t start, vec3_t end, int type, int color, entity_t *ent);
966 void CL_SparkShower (vec3_t org, vec3_t dir, int count, vec_t gravityscale, vec_t radius);
967 void CL_Smoke (vec3_t org, vec3_t dir, int count, vec_t radius);
968 void CL_BulletMark (vec3_t org);
969 void CL_PlasmaBurn (vec3_t org);
970 void CL_BloodPuff (vec3_t org, vec3_t vel, int count);
971 void CL_Stardust (vec3_t mins, vec3_t maxs, int count);
972 void CL_FlameCube (vec3_t mins, vec3_t maxs, int count);
973 void CL_Flames (vec3_t org, vec3_t vel, int count);
974 void CL_BloodShower (vec3_t mins, vec3_t maxs, float velspeed, int count);
975 void CL_ParticleCube (vec3_t mins, vec3_t maxs, vec3_t dir, int count, int colorbase, int gravity, int randomvel);
976 void CL_ParticleRain (vec3_t mins, vec3_t maxs, vec3_t dir, int count, int colorbase, int type);
977 void CL_EntityParticles (entity_t *ent);
978 void CL_BlobExplosion (vec3_t org);
979 void CL_ParticleExplosion (vec3_t org);
980 void CL_ParticleExplosion2 (vec3_t org, int colorStart, int colorLength);
981 void CL_LavaSplash (vec3_t org);
982 void CL_TeleportSplash (vec3_t org);
983 void CL_BeamParticle (const vec3_t start, const vec3_t end, vec_t radius, float red, float green, float blue, float alpha, float lifetime);
984 void CL_Tei_Smoke(const vec3_t pos, const vec3_t dir, int count);
985 void CL_Tei_PlasmaHit(const vec3_t pos, const vec3_t dir, int count);
986 void CL_MoveParticles(void);
987 void R_MoveExplosions(void);
988 void R_NewExplosion(vec3_t org);
989
990 #include "cl_screen.h"
991
992 typedef struct refdef_s
993 {
994         // area to render in
995         int x, y, width, height;
996         float frustum_x, frustum_y;
997
998         // these are set for water warping before
999         // frustum_x/frustum_y are calculated
1000         float frustumscale_x, frustumscale_y;
1001
1002         // view transform
1003         matrix4x4_t viewentitymatrix;
1004
1005         // which color components to allow (for anaglyph glasses)
1006         int colormask[4];
1007
1008         // fullscreen color blend
1009         float viewblend[4];
1010
1011         // whether to call S_ExtraUpdate during render to reduce sound chop
1012         qboolean extraupdate;
1013
1014         // client gameworld time for rendering time based effects
1015         double time;
1016
1017         // the world
1018         entity_render_t *worldentity;
1019
1020         // same as worldentity->model
1021         model_t *worldmodel;
1022
1023         // renderable entities (excluding world)
1024         entity_render_t **entities;
1025         int numentities;
1026         int maxentities;
1027
1028         // renderable dynamic lights
1029         dlight_t *lights[MAX_DLIGHTS];
1030         int numlights;
1031
1032         // 8.8bit fixed point intensities for light styles
1033         // controls intensity of dynamic lights and lightmap layers
1034         unsigned short  lightstylevalue[256];   // 8.8 fraction of base light value
1035
1036         // 2D art drawing queue
1037         // TODO: get rid of this
1038         unsigned char *drawqueue;
1039         int drawqueuesize;
1040         int maxdrawqueuesize;
1041 }
1042 refdef_t;
1043
1044 extern refdef_t r_refdef;
1045
1046 #include "cgamevm.h"
1047
1048 #endif
1049