mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-04-04 07:35:25 +00:00
83 lines
1.9 KiB
C++
83 lines
1.9 KiB
C++
//====== Copyright © 1996-2005, Valve Corporation, All rights reserved. =======
|
|
//
|
|
// TF Rocket Launcher
|
|
//
|
|
//=============================================================================
|
|
#ifndef TF_WEAPON_ROCKETLAUNCHER_H
|
|
#define TF_WEAPON_ROCKETLAUNCHER_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "tf_weaponbase_gun.h"
|
|
#include "tf_weaponbase_rocket.h"
|
|
|
|
// Client specific.
|
|
#ifdef CLIENT_DLL
|
|
#define CTFRocketLauncher C_TFRocketLauncher
|
|
#endif
|
|
|
|
//=============================================================================
|
|
//
|
|
// TF Weapon Rocket Launcher.
|
|
//
|
|
class CTFRocketLauncher : public CTFWeaponBaseGun
|
|
{
|
|
public:
|
|
|
|
DECLARE_CLASS( CTFRocketLauncher, CTFWeaponBaseGun );
|
|
DECLARE_NETWORKCLASS();
|
|
DECLARE_PREDICTABLE();
|
|
|
|
// Server specific.
|
|
#ifdef GAME_DLL
|
|
DECLARE_DATADESC();
|
|
#endif
|
|
|
|
CTFRocketLauncher();
|
|
~CTFRocketLauncher();
|
|
|
|
#ifndef CLIENT_DLL
|
|
virtual void Precache();
|
|
#endif
|
|
virtual int GetWeaponID( void ) const { return TF_WEAPON_ROCKETLAUNCHER; }
|
|
virtual CBaseEntity *FireProjectile( CTFPlayer *pPlayer );
|
|
virtual void ItemPostFrame( void );
|
|
virtual bool Deploy( void );
|
|
virtual bool DefaultReload( int iClipSize1, int iClipSize2, int iActivity );
|
|
|
|
#ifdef CLIENT_DLL
|
|
virtual void CreateMuzzleFlashEffects( C_BaseEntity *pAttachEnt, int nIndex );
|
|
//virtual void DrawCrosshair( void );
|
|
#endif
|
|
|
|
private:
|
|
float m_flShowReloadHintAt;
|
|
|
|
//CNetworkVar( bool, m_bLockedOn );
|
|
|
|
CTFRocketLauncher( const CTFRocketLauncher & ) {}
|
|
};
|
|
|
|
// Server specific
|
|
#ifdef GAME_DLL
|
|
|
|
//=============================================================================
|
|
//
|
|
// Generic rocket.
|
|
//
|
|
class CTFRocket : public CTFBaseRocket
|
|
{
|
|
public:
|
|
|
|
DECLARE_CLASS( CTFRocket, CTFBaseRocket );
|
|
|
|
// Creation.
|
|
static CTFRocket *Create( const Vector &vecOrigin, const QAngle &vecAngles, CBaseEntity *pOwner = NULL );
|
|
virtual void Spawn();
|
|
virtual void Precache();
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif // TF_WEAPON_ROCKETLAUNCHER_H
|