cs16-client-legacy/cl_dll
a1batross 3f021e4dcd Fix first run check 2016-12-10 01:39:49 +03:00
..
cs_wpn Fix #210 #212 2016-10-29 00:41:13 +03:00
events Try to fix muzzleflash related bug, remove tracerCount declaration in events, simple and undone implementation of gunsmoke 2016-10-26 21:13:23 +03:00
hud Fix first run check 2016-12-10 01:39:49 +03:00
include Ignore HTML'ed MOTD 2016-12-10 00:56:02 +03:00
studio Add checks in StudioRender, fix strange crashes 2016-10-27 00:42:54 +03:00
Android.mk Refactoring. Remove anti-invisible players, models will be checked by server 2016-08-07 22:49:24 +06:00
CMakeLists.txt Draw BOT in ping for bots. 2016-11-17 16:15:22 +03:00
Makefile Android makefiles 2015-10-27 10:02:12 +06:00
Makefile.mingw Update Makefile for MinGW (#194) 2016-08-05 19:45:57 +06:00
cdll_int.cpp Use BotVoice in HUD_VoiceStatus 2016-09-21 21:46:04 +03:00
cl_dll.dsp HLSDK 2.3 metamod 2015-10-25 16:13:41 +06:00
com_weapons.cpp Remove uneeded stubs, will be inlined now 2016-10-10 18:52:20 +03:00
demo.cpp Refactor some things, rewrite parsemsg for using BufferReader class 2016-07-07 23:37:15 +06:00
draw_util.cpp Coloring in scoreboard. Disabled by default. 2016-10-12 00:43:50 +03:00
entity.cpp Optimize NVG, new cvar: cl_fancy_nvg, default: 0 2016-10-15 00:51:50 +03:00
ev_common.cpp Use pmove system from ReGameDLL_CS 2016-07-04 00:45:00 +06:00
ev_hldm.cpp CP1251->UTF-8 2016-03-05 22:29:55 +03:00
in_camera.cpp Refactor some things, rewrite parsemsg for using BufferReader class 2016-07-07 23:37:15 +06:00
input.cpp Update script. Shutdown method for CHudBase. Fix BufferReader constructor call. Use pregenerated textures in radar. 2016-09-16 22:23:18 +03:00
input_sdl.cpp Refactor some things, rewrite parsemsg for using BufferReader class 2016-07-07 23:37:15 +06:00
input_xash3d.cpp Check first run of the game. TODO: add proper tutorial, nickname changing to prevent tons of talats 2016-12-10 00:56:58 +03:00
inputw32.cpp Fix spelling mistakes 2016-04-18 23:49:19 +01:00
rain.cpp Tune up rain code 2016-10-29 01:13:50 +03:00
readme.txt Fix spelling mistakes 2016-04-18 23:49:19 +01:00
tri.cpp Optimize NVG, new cvar: cl_fancy_nvg, default: 0 2016-10-15 00:51:50 +03:00
unicode_strtools.cpp MinGW build fixes (#187) 2016-06-25 18:59:14 +03:00
util.cpp Inline little functions 2016-07-08 19:14:05 +06:00
vgui_parser.cpp Fix rubbish in localizer 2016-04-03 21:49:54 +03:00
view.cpp Remove ev_punchangle 2016-10-22 04:11:22 +03:00

readme.txt

  client dll readme.txt
-------------------------

This file details the structure of the half-life client dll,  and
how it communicates with the half-life game engine.


Engine callback functions:

Drawing functions:
	HSPRITE SPR_Load( char *picname );
		Loads a sprite into memory, and returns a handle to it.

	int  SPR_Frames( HSPRITE sprite );
		Returns the number of frames stored in the specified sprite.

	int  SPR_Height( HSPRITE x, int frame )
		Returns the height, in pixels, of a sprite at the specified frame.  
		Returns 0 is the frame number or the sprite handle is invalid.

	int  SPR_Width( HSPRITE x, int f )
		Returns the width, in pixels, of a sprite at the specified frame.  
		Returns 0 is the frame number or the sprite handle is invalid.

	int  SPR_Set( HSPRITE sprite, int r, int g, int b );
		Prepares a sprite about to be drawn.  RBG color values are applied to the sprite at this time.


	void  SPR_Draw( int frame, int x, int y );
		Precondition:  SPR_Set has already been called for a sprite.
		Draws the currently active sprite to the screen,  at position (x,y), where (0,0) is
		the top left-hand corner of the screen.


	void  SPR_DrawHoles( int frame, int x, int y );
		Precondition:  SPR_Set has already been called for a sprite.
		Draws the currently active sprite to the screen.  Color index #255 is treated as transparent.

	void  SPR_DrawAdditive( int frame, int x, int y );
		Precondition:  SPR_Set has already been called for a sprite.
		Draws the currently active sprite to the screen,  adding it's color values to the background.

	void  SPR_EnableScissor( int x, int y, int width, int height );
		Creates a clipping rectangle.  No pixels will be drawn outside the specified area.  Will
		stay in effect until either the next frame,  or SPR_DisableScissor is called.

	void  SPR_DisableScissor( void );
		Disables the effect of an SPR_EnableScissor call.

	int	 IsHighRes( void );
		returns 1 if the res mode is 640x480 or higher;  0 otherwise.

	int	 ScreenWidth( void );
		returns the screen width, in pixels.

	int	 ScreenHeight( void );
		returns the screen height, in pixels.

// Sound functions
	void PlaySound( char *szSound, int volume )
		plays the sound 'szSound' at the specified volume.  Loads the sound if it hasn't been cached.
		If it can't find the sound,  it displays an error message and plays no sound.

	void PlaySound( int iSound, int volume )
		Precondition:  iSound has been precached.
		Plays the sound, from the precache list.


// Communication functions
	void  SendClientCmd( char *szCmdString );
		sends a command to the server,  just as if the client had typed the szCmdString at the console.

	char *GetPlayerName( int entity_number );
		returns a pointer to a string, that contains the name of the specified client.  
		Returns NULL if the entity_number is not a client.
		

	DECLARE_MESSAGE(),  HOOK_MESSAGE()
		These two macros bind the message sending between the entity DLL and the client DLL to
		the CHud object.

		HOOK_MESSAGE( message_name )
			 This is used inside CHud::Init().  It calls into the engine to hook that message
			 from the incoming message stream.
			 Precondition:  There must be a function of name UserMsg_message_name declared
			 for CHud.  Eg,  CHud::UserMsg_Health() must be declared if you want to 
			 use HOOK_MESSAGE( Health );

		DECLARE_MESSAGE( message_name )
			For each HOOK_MESSAGE you must have an equivalent DECLARE_MESSAGE.  This creates
			a function which passes the hooked messages into the CHud object.


	HOOK_COMMAND(),  DECLARE_COMMAND()
		These two functions declare and hook console commands into the client dll.
		
		HOOK_COMMAND( char *command, command_name )
			Whenever the user types the 'command' at the console,  the function 'command_name'
			will be called.
			Precondition: There must be a function of the name UserCmd_command_name declared
			for CHud. Eg,  CHud::UserMsg_ShowScores() must be declared if you want to
			use HOOK_COMMAND( "+showscores", ShowScores );

		DECLARE_COMMAND( command_name )
			For each HOOK_COMMAND you must have an equivalent DECLARE_COMMAND.  This creates
			a function which passes the hooked commands into the CHud object.