]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - client.h
Removed LoadLMPAs8Bit; the menu now uses LoadLMP directly
[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 }
450 client_static_t;
451
452 extern client_static_t  cls;
453
454 //
455 // the client_state_t structure is wiped completely at every
456 // server signon
457 //
458 typedef struct
459 {
460         // true if playing in a local game and no one else is connected
461         int islocalgame;
462
463         // when connecting to the server throw out the first couple move messages
464         // so the player doesn't accidentally do something the first frame
465         int movemessages;
466
467         // send a clc_nop periodically until connected
468         float sendnoptime;
469
470         // current input to send to the server
471         usercmd_t cmd;
472
473 // information for local display
474         // health, etc
475         int stats[MAX_CL_STATS];
476         // last known inventory bit flags, for blinking
477         int olditems;
478         // cl.time of acquiring item, for blinking
479         float item_gettime[32];
480         // last known STAT_ACTIVEWEAPON
481         int activeweapon;
482         // cl.time of changing STAT_ACTIVEWEAPON
483         float weapontime;
484         // use pain anim frame if cl.time < this
485         float faceanimtime;
486
487         // color shifts for damage, powerups
488         cshift_t cshifts[NUM_CSHIFTS];
489         // and content types
490         cshift_t prev_cshifts[NUM_CSHIFTS];
491
492 // the client maintains its own idea of view angles, which are
493 // sent to the server each frame.  The server sets punchangle when
494 // the view is temporarily offset, and an angle reset commands at the start
495 // of each level and after teleporting.
496
497         // mviewangles is read from demo
498         // viewangles is either client controlled or lerped from mviewangles
499         vec3_t mviewangles[2], viewangles;
500         // update by server, used by qc to do weapon recoil
501         vec3_t mpunchangle[2], punchangle;
502         // update by server, can be used by mods to kick view around
503         vec3_t mpunchvector[2], punchvector;
504         // update by server, used for lean+bob (0 is newest)
505         vec3_t mvelocity[2], velocity;
506         // update by server, can be used by mods for zooming
507         vec_t mviewzoom[2], viewzoom;
508
509 // pitch drifting vars
510         float idealpitch;
511         float pitchvel;
512         qboolean nodrift;
513         float driftmove;
514         double laststop;
515
516         // local amount for smoothing stepups
517         //float crouch;
518
519         // sent by server
520         qboolean paused;
521         qboolean onground;
522         qboolean inwater;
523
524         // don't change view angle, full screen, etc
525         int intermission;
526         // latched at intermission start
527         int completed_time;
528
529         // the timestamp of the last two messages
530         double mtime[2];
531
532         // clients view of time, time should be between mtime[0] and mtime[1] to
533         // generate a lerp point for other data, oldtime is the previous frame's
534         // value of time, frametime is the difference between time and oldtime
535         double time, oldtime, frametime;
536
537         // copy of realtime from last recieved message, for net trouble icon
538         float last_received_message;
539
540 // information that is static for the entire time connected to a server
541         struct model_s *model_precache[MAX_MODELS];
542         struct sfx_s *sound_precache[MAX_SOUNDS];
543
544         // for display on solo scoreboard
545         char levelname[40];
546         // cl_entitites[cl.viewentity] = player
547         int viewentity;
548         // the real player entity (normally same as viewentity,
549         // different than viewentity if mod uses chasecam or other tricks)
550         int playerentity;
551         // max players that can be in this game
552         int maxclients;
553         // type of game (deathmatch, coop, singleplayer)
554         int gametype;
555
556 // refresh related state
557
558         // cl_entitites[0].model
559         struct model_s *worldmodel;
560
561         // the gun model
562         entity_t viewent;
563
564         // cd audio
565         int cdtrack, looptrack;
566
567 // frag scoreboard
568
569         // [cl.maxclients]
570         scoreboard_t *scores;
571
572         // protocol version of the server we're connected to
573         int protocol;
574
575         // entity database stuff
576         // latest received entity frame numbers
577 #define LATESTFRAMENUMS 3
578         int latestframenums[LATESTFRAMENUMS];
579         entityframe_database_t *entitydatabase;
580         entityframe4_database_t *entitydatabase4;
581 }
582 client_state_t;
583
584 extern mempool_t *cl_scores_mempool;
585
586 //
587 // cvars
588 //
589 extern cvar_t cl_name;
590 extern cvar_t cl_color;
591 extern cvar_t cl_rate;
592 extern cvar_t cl_pmodel;
593 extern cvar_t cl_playermodel;
594 extern cvar_t cl_playerskin;
595
596 extern cvar_t cl_upspeed;
597 extern cvar_t cl_forwardspeed;
598 extern cvar_t cl_backspeed;
599 extern cvar_t cl_sidespeed;
600
601 extern cvar_t cl_movespeedkey;
602
603 extern cvar_t cl_yawspeed;
604 extern cvar_t cl_pitchspeed;
605
606 extern cvar_t cl_anglespeedkey;
607
608 extern cvar_t cl_autofire;
609
610 extern cvar_t cl_shownet;
611 extern cvar_t cl_nolerp;
612
613 extern cvar_t cl_pitchdriftspeed;
614 extern cvar_t lookspring;
615 extern cvar_t lookstrafe;
616 extern cvar_t sensitivity;
617
618 extern cvar_t freelook;
619
620 extern cvar_t m_pitch;
621 extern cvar_t m_yaw;
622 extern cvar_t m_forward;
623 extern cvar_t m_side;
624
625 extern cvar_t r_draweffects;
626
627 extern cvar_t cl_explosions_alpha_start;
628 extern cvar_t cl_explosions_alpha_end;
629 extern cvar_t cl_explosions_size_start;
630 extern cvar_t cl_explosions_size_end;
631 extern cvar_t cl_explosions_lifetime;
632 extern cvar_t cl_stainmaps;
633 extern cvar_t cl_stainmaps_clearonload;
634
635 extern cvar_t cl_prydoncursor;
636
637 // these are updated by CL_ClearState
638 extern int cl_num_entities;
639 extern int cl_num_static_entities;
640 extern int cl_num_temp_entities;
641 extern int cl_num_brushmodel_entities;
642
643 extern mempool_t *cl_entities_mempool;
644 extern entity_t *cl_entities;
645 extern qbyte *cl_entities_active;
646 extern entity_t *cl_static_entities;
647 extern entity_t *cl_temp_entities;
648 extern entity_render_t **cl_brushmodel_entities;
649 extern cl_effect_t *cl_effects;
650 extern beam_t *cl_beams;
651 extern dlight_t *cl_dlights;
652 extern lightstyle_t *cl_lightstyle;
653
654
655 extern client_state_t cl;
656
657 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);
658 extern void CL_DecayLights (void);
659
660 //=============================================================================
661
662 //
663 // cl_main
664 //
665
666 void CL_Shutdown (void);
667 void CL_Init (void);
668
669 void CL_EstablishConnection(const char *host);
670
671 void CL_Disconnect (void);
672 void CL_Disconnect_f (void);
673
674 void CL_BoundingBoxForEntity(entity_render_t *ent);
675
676 extern cvar_t cl_beams_polygons;
677 extern cvar_t cl_beams_relative;
678 extern cvar_t cl_beams_lightatend;
679
680 //
681 // cl_input
682 //
683 typedef struct
684 {
685         int             down[2];                // key nums holding it down
686         int             state;                  // low bit is down state
687 }
688 kbutton_t;
689
690 extern  kbutton_t       in_mlook, in_klook;
691 extern  kbutton_t       in_strafe;
692 extern  kbutton_t       in_speed;
693
694 void CL_InitInput (void);
695 void CL_SendCmd (void);
696 void CL_SendMove (void);
697
698 void CL_ValidateState(entity_state_t *s);
699 void CL_MoveLerpEntityStates(entity_t *ent);
700 void CL_LerpUpdate(entity_t *e);
701 void CL_ParseTEnt (void);
702 void CL_RelinkBeams (void);
703
704 void CL_ClearTempEntities (void);
705 entity_t *CL_NewTempEntity (void);
706
707 void CL_Effect(vec3_t org, int modelindex, int startframe, int framecount, float framerate);
708
709 void CL_ClearState (void);
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 extern mempool_t *cl_refdef_mempool;
864
865 #include "cgamevm.h"
866
867 #endif
868