X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=client.h;h=026fe499df7be5534fc7b5d4f82302d9186e5d4f;hb=23d5c3831efc94514ac26195e80fd595b533af78;hp=4bd1738da9fe70a783279f91c7c1631d6b4f480d;hpb=cba26ab3d813afe55eb989007d8bd00dba810630;p=xonotic%2Fdarkplaces.git diff --git a/client.h b/client.h index 4bd1738d..026fe499 100644 --- a/client.h +++ b/client.h @@ -943,6 +943,7 @@ typedef struct client_state_s float sensitivityscale; csqc_vidvars_t csqc_vidvars; //[515]: these parms must be set to true by default qboolean csqc_wantsmousemove; + qboolean csqc_paused; // vortex: int because could be flags struct model_s *csqc_model_precache[MAX_MODELS]; // local amount for smoothing stepups @@ -1270,6 +1271,7 @@ extern cvar_t m_side; extern cvar_t cl_autodemo; extern cvar_t cl_autodemo_nameformat; +extern cvar_t cl_autodemo_delete; extern cvar_t r_draweffects; @@ -1282,6 +1284,7 @@ extern cvar_t cl_stainmaps; extern cvar_t cl_stainmaps_clearonload; extern cvar_t cl_prydoncursor; +extern cvar_t cl_prydoncursor_notrace; extern cvar_t cl_locs_enable; @@ -1729,6 +1732,15 @@ typedef struct r_refdef_s qboolean fogenabled; qboolean oldgl_fogenable; + // new flexible texture height fog (overrides normal fog) + char fog_height_texturename[64]; // note: must be 64 for the sscanf code + unsigned char *fog_height_table1d; + unsigned char *fog_height_table2d; + int fog_height_tablesize; // enable + float fog_height_tablescale; + float fog_height_texcoordscale; + char fogheighttexturename[64]; // detects changes to active fog height texture + qboolean draw2dstage; // true during envmap command capture