mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-04-04 07:35:25 +00:00
120 lines
2.6 KiB
C++
120 lines
2.6 KiB
C++
//====== Copyright © 1996-2005, Valve Corporation, All rights reserved. =======//
|
|
//
|
|
// Purpose: TF Base Rockets.
|
|
//
|
|
//=============================================================================//
|
|
#ifndef TF_WEAPONBASE_ROCKET_H
|
|
#define TF_WEAPONBASE_ROCKET_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "cbase.h"
|
|
#include "tf_shareddefs.h"
|
|
// Client specific.
|
|
#ifdef CLIENT_DLL
|
|
#include "c_baseanimating.h"
|
|
// Server specific.
|
|
#else
|
|
#include "baseanimating.h"
|
|
#include "smoke_trail.h"
|
|
#endif
|
|
|
|
#ifdef CLIENT_DLL
|
|
#define CTFBaseRocket C_TFBaseRocket
|
|
#endif
|
|
|
|
#define TF_ROCKET_RADIUS (110.0f * 1.1f) //radius * TF scale up factor
|
|
|
|
//=============================================================================
|
|
//
|
|
// TF Base Rocket.
|
|
//
|
|
class CTFBaseRocket : public CBaseAnimating
|
|
{
|
|
|
|
//=============================================================================
|
|
//
|
|
// Shared (client/server).
|
|
//
|
|
public:
|
|
|
|
DECLARE_CLASS( CTFBaseRocket, CBaseAnimating );
|
|
DECLARE_NETWORKCLASS();
|
|
|
|
CTFBaseRocket();
|
|
~CTFBaseRocket();
|
|
|
|
void Precache( void );
|
|
void Spawn( void );
|
|
|
|
protected:
|
|
|
|
// Networked.
|
|
CNetworkVector( m_vInitialVelocity );
|
|
|
|
//=============================================================================
|
|
//
|
|
// Client specific.
|
|
//
|
|
#ifdef CLIENT_DLL
|
|
|
|
public:
|
|
|
|
virtual int DrawModel( int flags );
|
|
virtual void PostDataUpdate( DataUpdateType_t type );
|
|
|
|
private:
|
|
|
|
float m_flSpawnTime;
|
|
|
|
//=============================================================================
|
|
//
|
|
// Server specific.
|
|
//
|
|
#else
|
|
|
|
public:
|
|
|
|
DECLARE_DATADESC();
|
|
|
|
static CTFBaseRocket *Create( const char *szClassname, const Vector &vecOrigin, const QAngle &vecAngles, CBaseEntity *pOwner = NULL );
|
|
|
|
virtual void RocketTouch( CBaseEntity *pOther );
|
|
void Explode( trace_t *pTrace, CBaseEntity *pOther );
|
|
|
|
virtual float GetDamage() { return m_flDamage; }
|
|
virtual int GetDamageType() { return g_aWeaponDamageTypes[ GetWeaponID() ]; }
|
|
virtual void SetDamage(float flDamage) { m_flDamage = flDamage; }
|
|
virtual float GetRadius() { return TF_ROCKET_RADIUS; }
|
|
void DrawRadius( float flRadius );
|
|
|
|
unsigned int PhysicsSolidMaskForEntity( void ) const;
|
|
|
|
void SetupInitialTransmittedGrenadeVelocity( const Vector &velocity ) { m_vInitialVelocity = velocity; }
|
|
|
|
virtual int GetWeaponID( void ) const { return TF_WEAPON_ROCKETLAUNCHER; }
|
|
|
|
virtual CBaseEntity *GetEnemy( void ) { return m_hEnemy; }
|
|
|
|
void SetHomingTarget( CBaseEntity *pHomingTarget );
|
|
|
|
protected:
|
|
|
|
void FlyThink( void );
|
|
|
|
protected:
|
|
|
|
// Not networked.
|
|
float m_flDamage;
|
|
|
|
float m_flCollideWithTeammatesTime;
|
|
bool m_bCollideWithTeammates;
|
|
|
|
|
|
CHandle<CBaseEntity> m_hEnemy;
|
|
|
|
#endif
|
|
};
|
|
|
|
#endif // TF_WEAPONBASE_ROCKET_H
|