mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-04-04 07:35:25 +00:00
76 lines
1.9 KiB
C++
76 lines
1.9 KiB
C++
//====== Copyright © 1996-2005, Valve Corporation, All rights reserved. =======
|
|
//
|
|
// Purpose: Weapon Base Gun
|
|
//
|
|
//=============================================================================
|
|
|
|
#ifndef TF_WEAPONBASE_GUN_H
|
|
#define TF_WEAPONBASE_GUN_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "tf_shareddefs.h"
|
|
#include "tf_weaponbase.h"
|
|
|
|
#if defined( CLIENT_DLL )
|
|
#define CTFWeaponBaseGun C_TFWeaponBaseGun
|
|
#endif
|
|
|
|
#define ZOOM_CONTEXT "ZoomContext"
|
|
#define ZOOM_REZOOM_TIME 1.4f
|
|
|
|
//=============================================================================
|
|
//
|
|
// Weapon Base Melee Gun
|
|
//
|
|
class CTFWeaponBaseGun : public CTFWeaponBase
|
|
{
|
|
public:
|
|
|
|
DECLARE_CLASS( CTFWeaponBaseGun, CTFWeaponBase );
|
|
DECLARE_NETWORKCLASS();
|
|
DECLARE_PREDICTABLE();
|
|
#if !defined( CLIENT_DLL )
|
|
DECLARE_DATADESC();
|
|
#endif
|
|
|
|
CTFWeaponBaseGun();
|
|
|
|
virtual void PrimaryAttack();
|
|
virtual void SecondaryAttack( void );
|
|
virtual bool Holster( CBaseCombatWeapon *pSwitchingTo );
|
|
|
|
// Derived classes call this to fire a bullet.
|
|
//bool TFBaseGunFire( void );
|
|
|
|
virtual void DoFireEffects();
|
|
|
|
void ToggleZoom( void );
|
|
|
|
virtual CBaseEntity *FireProjectile( CTFPlayer *pPlayer );
|
|
void GetProjectileFireSetup( CTFPlayer *pPlayer, Vector vecOffset, Vector *vecSrc, QAngle *angForward, bool bHitTeammates = true );
|
|
|
|
void FireBullet( CTFPlayer *pPlayer );
|
|
CBaseEntity *FireRocket( CTFPlayer *pPlayer );
|
|
CBaseEntity *FireNail( CTFPlayer *pPlayer, int iSpecificNail );
|
|
CBaseEntity *FirePipeBomb( CTFPlayer *pPlayer, bool bRemoteDetonate );
|
|
|
|
virtual float GetWeaponSpread( void );
|
|
virtual float GetProjectileSpeed( void );
|
|
|
|
void UpdatePunchAngles( CTFPlayer *pPlayer );
|
|
virtual float GetProjectileDamage( void );
|
|
|
|
virtual void ZoomIn( void );
|
|
virtual void ZoomOut( void );
|
|
void ZoomOutIn( void );
|
|
|
|
virtual void PlayWeaponShootSound( void );
|
|
|
|
private:
|
|
|
|
CTFWeaponBaseGun( const CTFWeaponBaseGun & );
|
|
};
|
|
|
|
#endif // TF_WEAPONBASE_GUN_H
|