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