diff options
author | Andrey Nazarov <skuller@skuller.net> | 2008-04-23 15:02:41 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2008-04-23 15:02:41 +0000 |
commit | 49e6170b49fbb933eddec6d0e3f946320c68832f (patch) | |
tree | 88d228d6f89103710074fdba041ce80584d5caa6 /source/cl_local.h | |
parent | 8c795585fb0c6c9178d9981f6943da04b7279205 (diff) |
Added `dumpents' server command.
Added support for `cl_noskins' value of 2 (default all female
skins to `female/athena', all male skins to `male/grunt').
Renamed `scoreshot' command to `aashot', added `aadump' command.
Fixed several alignment issues on ARM architecture.
Server browser menu now indicates full and password protected
servers with color codes.
Implemented history search in console with Ctrl+R, Ctrl+S.
Removed `cl_railtrail_alpha' variable, all `cl_rail*_color' variables now
accept colors in #RRGGBBAA format.
Added `map_override' cvar (enables loading map entity lump from
external maps/*.ent file).
Made `quit' command accept extra arguments.
Made `draw' command accept arbitrary colors in #RRGGBBAA format.
Fixed debian packages.
Diffstat (limited to 'source/cl_local.h')
-rw-r--r-- | source/cl_local.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/source/cl_local.h b/source/cl_local.h index 6baaf50..9b57cef 100644 --- a/source/cl_local.h +++ b/source/cl_local.h @@ -316,14 +316,6 @@ extern cvar_t *cl_showclamp; extern cvar_t *cl_vwep; -extern cvar_t *cl_railtrail_type; -extern cvar_t *cl_railtrail_time; -extern cvar_t *cl_railtrail_alpha; -extern cvar_t *cl_railcore_color; -extern cvar_t *cl_railcore_width; -extern cvar_t *cl_railspiral_color; -extern cvar_t *cl_railspiral_radius; - extern cvar_t *cl_disable_particles; extern cvar_t *cl_disable_explosions; @@ -434,6 +426,7 @@ typedef struct cparticle_s // PGM // ======== +void CL_InitEffects (void); void CL_ClearEffects (void); void CL_ClearTEnts (void); void CL_BlasterTrail (vec3_t start, vec3_t end); @@ -541,7 +534,8 @@ void CL_DeltaFrame( void ); extern int gun_frame; extern qhandle_t gun_model; -void V_Init (void); +void V_Init( void ); +void V_Shutdown( void ); void V_RenderView( void ); void V_AddEntity (entity_t *ent); void V_AddParticle( particle_t *p ); @@ -632,7 +626,7 @@ void Con_ClearNotify_f( void ); void Con_ToggleConsole_f (void); void Con_Close( void ); void Con_SkipNotify( qboolean skip ); -void Con_SetupDC( void ); +void Con_RegisterMedia( void ); void Key_Console( int key ); void Key_Message( int key ); @@ -672,6 +666,7 @@ extern int scr_hudWidth; extern int scr_hudHeight; void SCR_Init (void); +void SCR_Shutdown( void ); void SCR_UpdateScreen (void); void SCR_SizeUp( void ); void SCR_SizeDown( void ); @@ -703,6 +698,7 @@ void SCR_FinishCinematic( void ); // cl_draw.c // void SCR_InitDraw( void ); +void SCR_ShutdownDraw( void ); void SCR_Draw2D( void ); void SCR_LoadingString( const char *string ); float SCR_FadeAlpha( unsigned startTime, unsigned visTime, unsigned fadeTime ); @@ -739,6 +735,10 @@ int Key_EnumBindings( int key, const char *binding ); void Key_FillAPI( keyAPI_t *api ); +// +// cl_aastat.c +// +void CL_InitAscii( void ); |