]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - client.h
fixed a bug in CL_ParseClientdata that was breaking on hipnotic demos
[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 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         // based on worldtolight this transforms -1 to +1 to 0 to 1 for purposes
87         // of attenuation texturing in full 3D (Z result often ignored)
88         matrix4x4_t matrix_worldtoattenuationxyz;
89         // this transforms only the Z to S, and T is always 0.5
90         matrix4x4_t matrix_worldtoattenuationz;
91         // typically 1 1 1, can be lower (dim) or higher (overbright)
92         vec3_t color;
93         // size of the light (remove?)
94         vec_t radius;
95         // light filter
96         char cubemapname[64];
97         // light style to monitor for brightness
98         int style;
99         // whether light should render shadows
100         int shadow;
101         // intensity of corona to render
102         vec_t corona;
103         // radius scale of corona to render (1.0 means same as light radius)
104         vec_t coronasizescale;
105         // ambient intensity to render
106         vec_t ambientscale;
107         // diffuse intensity to render
108         vec_t diffusescale;
109         // specular intensity to render
110         vec_t specularscale;
111         // LIGHTFLAG_* flags
112         int flags;
113
114         // generated properties
115         // used only for shadow volumes
116         vec3_t shadoworigin;
117         // culling
118         vec3_t cullmins;
119         vec3_t cullmaxs;
120         // culling
121         //vec_t cullradius;
122         // squared cullradius
123         //vec_t cullradius2;
124
125         // lightmap renderer stuff (remove someday!)
126         // the size of the light
127         vec_t lightmap_cullradius;
128         // the size of the light, squared
129         vec_t lightmap_cullradius2;
130         // the brightness of the light
131         vec3_t lightmap_light;
132         // to avoid sudden brightness change at cullradius, subtract this
133         vec_t lightmap_subtract;
134
135         // static light info
136         // true if this light should be compiled as a static light
137         int isstatic;
138         // true if this is a compiled world light, cleared if the light changes
139         int compiled;
140         // premade shadow volumes and lit surfaces to render for world entity
141         shadowmesh_t *static_meshchain_shadow;
142         shadowmesh_t *static_meshchain_light;
143         // used for visibility testing (more exact than bbox)
144         int static_numclusters;
145         int static_numclusterpvsbytes;
146         int *static_clusterlist;
147         qbyte *static_clusterpvs;
148 }
149 rtlight_t;
150
151 typedef struct dlight_s
152 {
153         // destroy light after this time
154         // (dlight only)
155         vec_t die;
156         // the entity that owns this light (can be NULL)
157         // (dlight only)
158         struct entity_render_s *ent;
159         // location
160         // (worldlight: saved to .rtlights file)
161         vec3_t origin;
162         // worldlight orientation
163         // (worldlight only)
164         // (worldlight: saved to .rtlights file)
165         vec3_t angles;
166         // dlight orientation/scaling/location
167         // (dlight only)
168         matrix4x4_t matrix;
169         // color of light
170         // (worldlight: saved to .rtlights file)
171         vec3_t color;
172         // cubemap number to use on this light
173         // (dlight only)
174         int cubemapnum;
175         // cubemap name to use on this light
176         // (worldlight only)
177         // (worldlight: saved to .rtlights file)
178         char cubemapname[64];
179         // make light flash while selected
180         // (worldlight only)
181         int selected;
182         // brightness (not really radius anymore)
183         // (worldlight: saved to .rtlights file)
184         vec_t radius;
185         // drop radius this much each second
186         // (dlight only)
187         vec_t decay;
188         // light style which controls intensity of this light
189         // (worldlight: saved to .rtlights file)
190         int style;
191         // cast shadows
192         // (worldlight: saved to .rtlights file)
193         int shadow;
194         // corona intensity
195         // (worldlight: saved to .rtlights file)
196         vec_t corona;
197         // radius scale of corona to render (1.0 means same as light radius)
198         // (worldlight: saved to .rtlights file)
199         vec_t coronasizescale;
200         // ambient intensity to render
201         // (worldlight: saved to .rtlights file)
202         vec_t ambientscale;
203         // diffuse intensity to render
204         // (worldlight: saved to .rtlights file)
205         vec_t diffusescale;
206         // specular intensity to render
207         // (worldlight: saved to .rtlights file)
208         vec_t specularscale;
209         // LIGHTFLAG_* flags
210         // (worldlight: saved to .rtlights file)
211         int flags;
212         // linked list of world lights
213         // (worldlight only)
214         struct dlight_s *next;
215         // embedded rtlight struct for renderer
216         // (renderer only)
217         rtlight_t rtlight;
218 }
219 dlight_t;
220
221 typedef struct frameblend_s
222 {
223         int frame;
224         float lerp;
225 }
226 frameblend_t;
227
228 // LordHavoc: this struct is intended for the renderer but some fields are
229 // used by the client.
230 typedef struct entity_render_s
231 {
232         // location
233         vec3_t origin;
234         // orientation
235         vec3_t angles;
236         // transform matrix for model to world
237         matrix4x4_t matrix;
238         // transform matrix for world to model
239         matrix4x4_t inversematrix;
240         // opacity (alpha) of the model
241         float alpha;
242         // size the model is shown
243         float scale;
244
245         // NULL = no model
246         model_t *model;
247         // current uninterpolated animation frame (for things which do not use interpolation)
248         int frame;
249         // entity shirt and pants colors
250         int colormap;
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         // baseline state (default values)
321         entity_state_t state_baseline;
322         // previous state (interpolating from this)
323         entity_state_t state_previous;
324         // current state (interpolating to this)
325         entity_state_t state_current;
326
327         // used for regenerating parts of render
328         entity_persistent_t persistent;
329
330         // the only data the renderer should know about
331         entity_render_t render;
332 }
333 entity_t;
334
335 typedef struct
336 {
337         vec3_t  viewangles;
338
339 // intended velocities
340         float   forwardmove;
341         float   sidemove;
342         float   upmove;
343
344         vec3_t  cursor_screen;
345         vec3_t  cursor_start;
346         vec3_t  cursor_end;
347         vec3_t  cursor_impact;
348         vec3_t  cursor_normal;
349         vec_t   cursor_fraction;
350         int             cursor_entitynumber;
351 } usercmd_t;
352
353 typedef struct
354 {
355         int             length;
356         char    map[MAX_STYLESTRING];
357 } lightstyle_t;
358
359 typedef struct
360 {
361         char    name[MAX_SCOREBOARDNAME];
362         int             frags;
363         int             colors; // two 4 bit fields
364 } scoreboard_t;
365
366 typedef struct
367 {
368         int             destcolor[3];
369         int             percent;                // 0-256
370 } cshift_t;
371
372 #define CSHIFT_CONTENTS 0
373 #define CSHIFT_DAMAGE   1
374 #define CSHIFT_BONUS    2
375 #define CSHIFT_POWERUP  3
376 #define CSHIFT_VCSHIFT  4
377 #define NUM_CSHIFTS             5
378
379 #define NAME_LENGTH     64
380
381
382 //
383 // client_state_t should hold all pieces of the client state
384 //
385
386 #define SIGNONS         4                       // signon messages to receive before connected
387
388 #define MAX_DEMOS               8
389 #define MAX_DEMONAME    16
390
391 typedef enum
392 {
393         ca_dedicated,           // a dedicated server with no ability to start a client
394         ca_disconnected,        // full screen console with no connection
395         ca_connected            // valid netcon, talking to a server
396 }
397 cactive_t;
398
399 //
400 // the client_static_t structure is persistent through an arbitrary number
401 // of server connections
402 //
403 typedef struct
404 {
405         cactive_t state;
406
407 // demo loop control
408         // -1 = don't play demos
409         int demonum;
410         // list of demos in loop
411         char demos[MAX_DEMOS][MAX_DEMONAME];
412         // the actively playing demo (set by CL_PlayDemo_f)
413         char demoname[64];
414
415 // demo recording info must be here, because record is started before
416 // entering a map (and clearing client_state_t)
417         qboolean demorecording;
418         qboolean demoplayback;
419         qboolean timedemo;
420         // -1 = use normal cd track
421         int forcetrack;
422         qfile_t *demofile;
423         // to meter out one message a frame
424         int td_lastframe;
425         // host_framecount at start
426         int td_startframe;
427         // realtime at second frame of timedemo (LordHavoc: changed to double)
428         double td_starttime;
429         // LordHavoc: for measuring maxfps
430         double td_minframetime;
431         // LordHavoc: for measuring minfps
432         double td_maxframetime;
433         // LordHavoc: pausedemo
434         qboolean demopaused;
435
436         qboolean connect_trying;
437         int connect_remainingtries;
438         double connect_nextsendtime;
439         lhnetsocket_t *connect_mysocket;
440         lhnetaddress_t connect_address;
441
442 // connection information
443         // 0 to SIGNONS
444         int signon;
445         // network connection
446         netconn_t *netcon;
447         // writing buffer to send to server
448         sizebuf_t message;
449         qbyte message_buf[1024];
450 }
451 client_static_t;
452
453 extern client_static_t  cls;
454
455 //
456 // the client_state_t structure is wiped completely at every
457 // server signon
458 //
459 typedef struct
460 {
461         // true if playing in a local game and no one else is connected
462         int islocalgame;
463
464         // when connecting to the server throw out the first couple move messages
465         // so the player doesn't accidentally do something the first frame
466         int movemessages;
467
468         // send a clc_nop periodically until connected
469         float sendnoptime;
470
471         // current input to send to the server
472         usercmd_t cmd;
473
474 // information for local display
475         // health, etc
476         int stats[MAX_CL_STATS];
477         // last known inventory bit flags, for blinking
478         int olditems;
479         // cl.time of acquiring item, for blinking
480         float item_gettime[32];
481         // last known STAT_ACTIVEWEAPON
482         int activeweapon;
483         // cl.time of changing STAT_ACTIVEWEAPON
484         float weapontime;
485         // use pain anim frame if cl.time < this
486         float faceanimtime;
487
488         // color shifts for damage, powerups
489         cshift_t cshifts[NUM_CSHIFTS];
490         // and content types
491         cshift_t prev_cshifts[NUM_CSHIFTS];
492
493 // the client maintains its own idea of view angles, which are
494 // sent to the server each frame.  The server sets punchangle when
495 // the view is temporarily offset, and an angle reset commands at the start
496 // of each level and after teleporting.
497
498         // mviewangles is read from demo
499         // viewangles is either client controlled or lerped from mviewangles
500         vec3_t mviewangles[2], viewangles;
501         // update by server, used by qc to do weapon recoil
502         vec3_t mpunchangle[2], punchangle;
503         // update by server, can be used by mods to kick view around
504         vec3_t mpunchvector[2], punchvector;
505         // update by server, used for lean+bob (0 is newest)
506         vec3_t mvelocity[2], velocity;
507         // update by server, can be used by mods for zooming
508         vec_t mviewzoom[2], viewzoom;
509
510 // pitch drifting vars
511         float idealpitch;
512         float pitchvel;
513         qboolean nodrift;
514         float driftmove;
515         double laststop;
516
517         // local amount for smoothing stepups
518         //float crouch;
519
520         // sent by server
521         qboolean paused;
522         qboolean onground;
523         qboolean inwater;
524
525         // don't change view angle, full screen, etc
526         int intermission;
527         // latched at intermission start
528         int completed_time;
529
530         // the timestamp of the last two messages
531         double mtime[2];
532
533         // clients view of time, time should be between mtime[0] and mtime[1] to
534         // generate a lerp point for other data, oldtime is the previous frame's
535         // value of time, frametime is the difference between time and oldtime
536         double time, oldtime, frametime;
537
538         // copy of realtime from last recieved message, for net trouble icon
539         float last_received_message;
540
541 // information that is static for the entire time connected to a server
542         struct model_s *model_precache[MAX_MODELS];
543         struct sfx_s *sound_precache[MAX_SOUNDS];
544
545         // for display on solo scoreboard
546         char levelname[40];
547         // cl_entitites[cl.viewentity] = player
548         int viewentity;
549         // the real player entity (normally same as viewentity,
550         // different than viewentity if mod uses chasecam or other tricks)
551         int playerentity;
552         // max players that can be in this game
553         int maxclients;
554         // type of game (deathmatch, coop, singleplayer)
555         int gametype;
556
557 // refresh related state
558
559         // cl_entitites[0].model
560         struct model_s *worldmodel;
561
562         // the gun model
563         entity_t viewent;
564
565         // cd audio
566         int cdtrack, looptrack;
567
568 // frag scoreboard
569
570         // [cl.maxclients]
571         scoreboard_t *scores;
572
573         // protocol version of the server we're connected to
574         int protocol;
575
576         // entity database stuff
577         // latest received entity frame numbers
578 #define LATESTFRAMENUMS 3
579         int latestframenums[LATESTFRAMENUMS];
580         entityframe_database_t *entitydatabase;
581         entityframe4_database_t *entitydatabase4;
582 }
583 client_state_t;
584
585 //
586 // cvars
587 //
588 extern cvar_t cl_name;
589 extern cvar_t cl_color;
590 extern cvar_t cl_rate;
591 extern cvar_t cl_pmodel;
592 extern cvar_t cl_playermodel;
593 extern cvar_t cl_playerskin;
594
595 extern cvar_t cl_upspeed;
596 extern cvar_t cl_forwardspeed;
597 extern cvar_t cl_backspeed;
598 extern cvar_t cl_sidespeed;
599
600 extern cvar_t cl_movespeedkey;
601
602 extern cvar_t cl_yawspeed;
603 extern cvar_t cl_pitchspeed;
604
605 extern cvar_t cl_anglespeedkey;
606
607 extern cvar_t cl_autofire;
608
609 extern cvar_t cl_shownet;
610 extern cvar_t cl_nolerp;
611
612 extern cvar_t cl_pitchdriftspeed;
613 extern cvar_t lookspring;
614 extern cvar_t lookstrafe;
615 extern cvar_t sensitivity;
616
617 extern cvar_t freelook;
618
619 extern cvar_t m_pitch;
620 extern cvar_t m_yaw;
621 extern cvar_t m_forward;
622 extern cvar_t m_side;
623
624 extern cvar_t r_draweffects;
625
626 extern cvar_t cl_explosions_alpha_start;
627 extern cvar_t cl_explosions_alpha_end;
628 extern cvar_t cl_explosions_size_start;
629 extern cvar_t cl_explosions_size_end;
630 extern cvar_t cl_explosions_lifetime;
631 extern cvar_t cl_stainmaps;
632 extern cvar_t cl_stainmaps_clearonload;
633
634 extern cvar_t cl_prydoncursor;
635
636 // these are updated by CL_ClearState
637 extern int cl_num_entities;
638 extern int cl_num_static_entities;
639 extern int cl_num_temp_entities;
640 extern int cl_num_brushmodel_entities;
641
642 extern mempool_t *cl_mempool;
643 extern entity_t *cl_entities;
644 extern qbyte *cl_entities_active;
645 extern entity_t *cl_static_entities;
646 extern entity_t *cl_temp_entities;
647 extern int *cl_brushmodel_entities;
648 extern cl_effect_t *cl_effects;
649 extern beam_t *cl_beams;
650 extern dlight_t *cl_dlights;
651 extern lightstyle_t *cl_lightstyle;
652
653
654 extern client_state_t cl;
655
656 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);
657 extern void CL_DecayLights (void);
658
659 //=============================================================================
660
661 //
662 // cl_main
663 //
664
665 void CL_Shutdown (void);
666 void CL_Init (void);
667
668 void CL_EstablishConnection(const char *host);
669
670 void CL_Disconnect (void);
671 void CL_Disconnect_f (void);
672
673 void CL_BoundingBoxForEntity(entity_render_t *ent);
674
675 extern cvar_t cl_beams_polygons;
676 extern cvar_t cl_beams_relative;
677 extern cvar_t cl_beams_lightatend;
678
679 //
680 // cl_input
681 //
682 typedef struct
683 {
684         int             down[2];                // key nums holding it down
685         int             state;                  // low bit is down state
686 }
687 kbutton_t;
688
689 extern  kbutton_t       in_mlook, in_klook;
690 extern  kbutton_t       in_strafe;
691 extern  kbutton_t       in_speed;
692
693 void CL_InitInput (void);
694 void CL_SendCmd (void);
695 void CL_SendMove (void);
696
697 void CL_ValidateState(entity_state_t *s);
698 void CL_MoveLerpEntityStates(entity_t *ent);
699 void CL_LerpUpdate(entity_t *e);
700 void CL_ParseTEnt (void);
701 void CL_RelinkBeams (void);
702
703 void CL_ClearTempEntities (void);
704 entity_t *CL_NewTempEntity (void);
705
706 void CL_Effect(vec3_t org, int modelindex, int startframe, int framecount, float framerate);
707
708 void CL_ClearState (void);
709 void CL_ExpandEntities(int num);
710
711
712 int  CL_ReadFromServer (void);
713 void CL_WriteToServer (void);
714 void CL_BaseMove (void);
715
716
717 float CL_KeyState (kbutton_t *key);
718 const char *Key_KeynumToString (int keynum);
719 int Key_StringToKeynum (const char *str);
720
721 //
722 // cl_demo.c
723 //
724 void CL_StopPlayback(void);
725 void CL_ReadDemoMessage(void);
726 void CL_WriteDemoMessage(void);
727
728 void CL_NextDemo(void);
729 void CL_Stop_f(void);
730 void CL_Record_f(void);
731 void CL_PlayDemo_f(void);
732 void CL_TimeDemo_f(void);
733
734 //
735 // cl_parse.c
736 //
737 void CL_Parse_Init(void);
738 void CL_Parse_Shutdown(void);
739 void CL_ParseServerMessage(void);
740 void CL_Parse_DumpPacket(void);
741
742 //
743 // view
744 //
745 void V_StartPitchDrift (void);
746 void V_StopPitchDrift (void);
747
748 void V_Init (void);
749 float V_CalcRoll (vec3_t angles, vec3_t velocity);
750 void V_UpdateBlends (void);
751 void V_ParseDamage (void);
752
753
754 //
755 // cl_tent
756 //
757 void CL_InitTEnts (void);
758
759 //
760 // cl_part
761 //
762
763 extern cvar_t cl_particles;
764 extern cvar_t cl_particles_quality;
765 extern cvar_t cl_particles_size;
766 extern cvar_t cl_particles_bloodshowers;
767 extern cvar_t cl_particles_blood;
768 extern cvar_t cl_particles_blood_alpha;
769 extern cvar_t cl_particles_blood_bloodhack;
770 extern cvar_t cl_particles_bulletimpacts;
771 extern cvar_t cl_particles_explosions_bubbles;
772 extern cvar_t cl_particles_explosions_smoke;
773 extern cvar_t cl_particles_explosions_sparks;
774 extern cvar_t cl_particles_explosions_shell;
775 extern cvar_t cl_particles_smoke;
776 extern cvar_t cl_particles_smoke_alpha;
777 extern cvar_t cl_particles_smoke_alphafade;
778 extern cvar_t cl_particles_sparks;
779 extern cvar_t cl_particles_bubbles;
780 extern cvar_t cl_decals;
781 extern cvar_t cl_decals_time;
782 extern cvar_t cl_decals_fadetime;
783
784 void CL_Particles_Clear(void);
785 void CL_Particles_Init(void);
786 void CL_Particles_Shutdown(void);
787
788 void CL_ParseParticleEffect (void);
789 void CL_RunParticleEffect (vec3_t org, vec3_t dir, int color, int count);
790 void CL_RocketTrail (vec3_t start, vec3_t end, int type, int color, entity_t *ent);
791 void CL_SparkShower (vec3_t org, vec3_t dir, int count, vec_t gravityscale);
792 void CL_Smoke (vec3_t org, vec3_t dir, int count);
793 void CL_BulletMark (vec3_t org);
794 void CL_PlasmaBurn (vec3_t org);
795 void CL_BloodPuff (vec3_t org, vec3_t vel, int count);
796 void CL_Stardust (vec3_t mins, vec3_t maxs, int count);
797 void CL_FlameCube (vec3_t mins, vec3_t maxs, int count);
798 void CL_Flames (vec3_t org, vec3_t vel, int count);
799 void CL_BloodShower (vec3_t mins, vec3_t maxs, float velspeed, int count);
800 void CL_ParticleCube (vec3_t mins, vec3_t maxs, vec3_t dir, int count, int colorbase, int gravity, int randomvel);
801 void CL_ParticleRain (vec3_t mins, vec3_t maxs, vec3_t dir, int count, int colorbase, int type);
802 void CL_EntityParticles (entity_t *ent);
803 void CL_BlobExplosion (vec3_t org);
804 void CL_ParticleExplosion (vec3_t org);
805 void CL_ParticleExplosion2 (vec3_t org, int colorStart, int colorLength);
806 void CL_LavaSplash (vec3_t org);
807 void CL_TeleportSplash (vec3_t org);
808 void CL_BeamParticle (const vec3_t start, const vec3_t end, vec_t radius, float red, float green, float blue, float alpha, float lifetime);
809 void CL_Tei_Smoke(const vec3_t pos, const vec3_t dir, int count);
810 void CL_Tei_PlasmaHit(const vec3_t pos, const vec3_t dir, int count);
811 void CL_MoveParticles(void);
812 void R_MoveExplosions(void);
813 void R_NewExplosion(vec3_t org);
814
815 #include "cl_screen.h"
816
817 typedef struct
818 {
819         // area to render in
820         int x, y, width, height;
821         float fov_x, fov_y;
822
823         // these are set for water warping before
824         // fov_x/fov_y are calculated
825         float fovscale_x, fovscale_y;
826
827         // view transform
828         matrix4x4_t viewentitymatrix;
829
830         // which color components to allow (for anaglyph glasses)
831         int colormask[4];
832
833         // fullscreen color blend
834         float viewblend[4];
835
836         // whether to call S_ExtraUpdate during render to reduce sound chop
837         qboolean extraupdate;
838
839         // client gameworld time for rendering time based effects
840         double time;
841
842         // the world
843         entity_render_t *worldentity;
844
845         // same as worldentity->model
846         model_t *worldmodel;
847
848         // renderable entities (excluding world)
849         entity_render_t **entities;
850         int numentities;
851         int maxentities;
852
853         // 2D art drawing queue
854         // TODO: get rid of this
855         qbyte *drawqueue;
856         int drawqueuesize;
857         int maxdrawqueuesize;
858 }
859 refdef_t;
860
861 refdef_t r_refdef;
862
863 #include "cgamevm.h"
864
865 #endif
866