mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-04-04 07:35:25 +00:00
98 lines
2.4 KiB
C++
98 lines
2.4 KiB
C++
//====== Copyright © 1996-2005, Valve Corporation, All rights reserved. =======
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================
|
|
|
|
#ifndef TF_WEAPON_PIPEBOMBLAUNCHER_H
|
|
#define TF_WEAPON_PIPEBOMBLAUNCHER_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "tf_weaponbase_gun.h"
|
|
#include "tf_weapon_grenade_pipebomb.h"
|
|
|
|
// Client specific.
|
|
#ifdef CLIENT_DLL
|
|
#define CTFPipebombLauncher C_TFPipebombLauncher
|
|
#endif
|
|
|
|
//=============================================================================
|
|
//
|
|
// TF Weapon Pipebomb Launcher.
|
|
//
|
|
#ifdef GAME_DLL
|
|
class CTFPipebombLauncher : public CTFWeaponBaseGun, public ITFChargeUpWeapon, public IEntityListener
|
|
#else
|
|
class CTFPipebombLauncher : public CTFWeaponBaseGun, public ITFChargeUpWeapon
|
|
#endif
|
|
{
|
|
public:
|
|
|
|
DECLARE_CLASS( CTFPipebombLauncher, CTFWeaponBaseGun );
|
|
DECLARE_NETWORKCLASS();
|
|
DECLARE_PREDICTABLE();
|
|
|
|
// Server specific.
|
|
#ifdef GAME_DLL
|
|
DECLARE_DATADESC();
|
|
#endif
|
|
|
|
CTFPipebombLauncher();
|
|
~CTFPipebombLauncher();
|
|
|
|
virtual void Spawn( void );
|
|
virtual int GetWeaponID( void ) const { return TF_WEAPON_PIPEBOMBLAUNCHER; }
|
|
virtual CBaseEntity *FireProjectile( CTFPlayer *pPlayer );
|
|
virtual void ItemBusyFrame( void );
|
|
virtual void SecondaryAttack();
|
|
|
|
virtual bool Holster( CBaseCombatWeapon *pSwitchingTo );
|
|
virtual bool Deploy( void );
|
|
virtual void PrimaryAttack( void );
|
|
virtual void WeaponIdle( void );
|
|
virtual float GetProjectileSpeed( void );
|
|
virtual bool Reload( void );
|
|
virtual void WeaponReset( void );
|
|
|
|
public:
|
|
// ITFChargeUpWeapon
|
|
virtual float GetChargeBeginTime( void ) { return m_flChargeBeginTime; }
|
|
virtual float GetChargeMaxTime( void );
|
|
int GetPipeBombCount( void ) { return m_iPipebombCount; }
|
|
|
|
void LaunchGrenade( void );
|
|
bool DetonateRemotePipebombs( bool bFizzle );
|
|
void AddPipeBomb( CTFGrenadePipebombProjectile *pBomb );
|
|
void DeathNotice( CBaseEntity *pVictim );
|
|
|
|
|
|
|
|
#ifdef GAME_DLL
|
|
void UpdateOnRemove( void );
|
|
|
|
|
|
|
|
private:
|
|
|
|
// This is here so we can network the pipebomb count for prediction purposes
|
|
CNetworkVar( int, m_iPipebombCount );
|
|
#endif
|
|
|
|
#ifdef CLIENT_DLL
|
|
int m_iPipebombCount;
|
|
#endif
|
|
|
|
// List of active pipebombs
|
|
typedef CHandle<CTFGrenadePipebombProjectile> PipebombHandle;
|
|
CUtlVector<PipebombHandle> m_Pipebombs;
|
|
|
|
float m_flChargeBeginTime;
|
|
float m_flLastDenySoundTime;
|
|
|
|
CTFPipebombLauncher( const CTFPipebombLauncher & ) {}
|
|
};
|
|
|
|
#endif // TF_WEAPON_PIPEBOMBLAUNCHER_H
|