mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-04-04 07:35:25 +00:00
126 lines
3.5 KiB
C++
126 lines
3.5 KiB
C++
//====== Copyright © 1996-2005, Valve Corporation, All rights reserved. =======
|
|
//
|
|
//
|
|
//=============================================================================
|
|
#include "cbase.h"
|
|
#include "tf_weapon_pistol.h"
|
|
#include "tf_fx_shared.h"
|
|
#include "in_buttons.h"
|
|
|
|
// Client specific.
|
|
#ifdef CLIENT_DLL
|
|
#include "c_tf_player.h"
|
|
// Server specific.
|
|
#else
|
|
#include "tf_player.h"
|
|
#endif
|
|
|
|
//=============================================================================
|
|
//
|
|
// Weapon Pistol tables.
|
|
//
|
|
IMPLEMENT_NETWORKCLASS_ALIASED( TFPistol, DT_WeaponPistol )
|
|
|
|
BEGIN_NETWORK_TABLE_NOBASE( CTFPistol, DT_PistolLocalData )
|
|
#if !defined( CLIENT_DLL )
|
|
SendPropTime( SENDINFO( m_flSoonestPrimaryAttack ) ),
|
|
#else
|
|
RecvPropTime( RECVINFO( m_flSoonestPrimaryAttack ) ),
|
|
#endif
|
|
END_NETWORK_TABLE()
|
|
|
|
BEGIN_NETWORK_TABLE( CTFPistol, DT_WeaponPistol )
|
|
#if !defined( CLIENT_DLL )
|
|
SendPropDataTable( "PistolLocalData", 0, &REFERENCE_SEND_TABLE( DT_PistolLocalData ), SendProxy_SendLocalWeaponDataTable ),
|
|
#else
|
|
RecvPropDataTable( "PistolLocalData", 0, 0, &REFERENCE_RECV_TABLE( DT_PistolLocalData ) ),
|
|
#endif
|
|
END_NETWORK_TABLE()
|
|
|
|
BEGIN_PREDICTION_DATA( CTFPistol )
|
|
#ifdef CLIENT_DLL
|
|
DEFINE_PRED_FIELD( m_flSoonestPrimaryAttack, FIELD_FLOAT, FTYPEDESC_INSENDTABLE ),
|
|
#endif
|
|
END_PREDICTION_DATA()
|
|
|
|
LINK_ENTITY_TO_CLASS( tf_weapon_pistol, CTFPistol );
|
|
PRECACHE_WEAPON_REGISTER( tf_weapon_pistol );
|
|
|
|
// Server specific.
|
|
#ifndef CLIENT_DLL
|
|
BEGIN_DATADESC( CTFPistol )
|
|
END_DATADESC()
|
|
#endif
|
|
|
|
//============================
|
|
|
|
IMPLEMENT_NETWORKCLASS_ALIASED( TFPistol_Scout, DT_WeaponPistol_Scout )
|
|
|
|
BEGIN_NETWORK_TABLE( CTFPistol_Scout, DT_WeaponPistol_Scout )
|
|
END_NETWORK_TABLE()
|
|
|
|
BEGIN_PREDICTION_DATA( CTFPistol_Scout )
|
|
END_PREDICTION_DATA()
|
|
|
|
LINK_ENTITY_TO_CLASS( tf_weapon_pistol_scout, CTFPistol_Scout );
|
|
PRECACHE_WEAPON_REGISTER( tf_weapon_pistol_scout );
|
|
|
|
//=============================================================================
|
|
//
|
|
// Weapon Pistol functions.
|
|
//
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose:
|
|
//-----------------------------------------------------------------------------
|
|
CTFPistol::CTFPistol( void )
|
|
{
|
|
m_flSoonestPrimaryAttack = gpGlobals->curtime;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: Allows firing as fast as button is pressed
|
|
//-----------------------------------------------------------------------------
|
|
void CTFPistol::ItemPostFrame( void )
|
|
{
|
|
CBasePlayer *pOwner = ToBasePlayer( GetOwner() );
|
|
if ( pOwner == NULL )
|
|
return;
|
|
|
|
BaseClass::ItemPostFrame();
|
|
|
|
if ( m_bInReload )
|
|
return;
|
|
|
|
//Allow a refire as fast as the player can click
|
|
if ( ( ( pOwner->m_nButtons & IN_ATTACK ) == false ) && ( m_flSoonestPrimaryAttack < gpGlobals->curtime ) )
|
|
{
|
|
m_flNextPrimaryAttack = gpGlobals->curtime - 0.1f;
|
|
}
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose:
|
|
//-----------------------------------------------------------------------------
|
|
void CTFPistol::PrimaryAttack( void )
|
|
{
|
|
m_flSoonestPrimaryAttack = gpGlobals->curtime + PISTOL_FASTEST_REFIRE_TIME;
|
|
#if 0
|
|
CBasePlayer *pOwner = ToBasePlayer( GetOwner() );
|
|
|
|
if( pOwner )
|
|
{
|
|
// Each time the player fires the pistol, reset the view punch. This prevents
|
|
// the aim from 'drifting off' when the player fires very quickly. This may
|
|
// not be the ideal way to achieve this, but it's cheap and it works, which is
|
|
// great for a feature we're evaluating. (sjb)
|
|
//pOwner->ViewPunchReset();
|
|
}
|
|
#endif
|
|
|
|
if ( !CanAttack() )
|
|
return;
|
|
|
|
BaseClass::PrimaryAttack();
|
|
}
|