mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-04-04 07:35:25 +00:00
132 lines
2.9 KiB
C++
132 lines
2.9 KiB
C++
//====== Copyright © 1996-2005, Valve Corporation, All rights reserved. =======
|
|
//
|
|
// TF Base Projectile
|
|
//
|
|
//=============================================================================
|
|
#ifndef TF_BASE_PROJECTILE_H
|
|
#define TF_BASE_PROJECTILE_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "cbase.h"
|
|
#include "tf_shareddefs.h"
|
|
|
|
// Client specific.
|
|
#ifdef CLIENT_DLL
|
|
#include "c_baseanimating.h"
|
|
#include "tempent.h"
|
|
// Server specific.
|
|
#else
|
|
#include "baseanimating.h"
|
|
#include "iscorer.h"
|
|
#endif
|
|
|
|
#ifdef CLIENT_DLL
|
|
#define CTFBaseProjectile C_TFBaseProjectile
|
|
C_LocalTempEntity *ClientsideProjectileCallback( const CEffectData &data, float flGravityBase, const char *pszParticleName = NULL );
|
|
#endif
|
|
|
|
/*
|
|
CTFBaseProjectile
|
|
|
|
|
|- CTFProjectile_Nail
|
|
|- CTFProjectile_Dart
|
|
|- CTFBaseRocket
|
|
|
|
|
|- Soldier rocket
|
|
|- Pyro rocket
|
|
*/
|
|
|
|
//=============================================================================
|
|
//
|
|
// Generic projectile
|
|
//
|
|
class CTFBaseProjectile : public CBaseAnimating
|
|
#if !defined( CLIENT_DLL )
|
|
, public IScorer
|
|
#endif
|
|
{
|
|
public:
|
|
|
|
DECLARE_CLASS( CTFBaseProjectile, CBaseAnimating );
|
|
DECLARE_NETWORKCLASS();
|
|
|
|
CTFBaseProjectile();
|
|
~CTFBaseProjectile();
|
|
|
|
void Precache( void );
|
|
void Spawn( void );
|
|
|
|
virtual int GetWeaponID( void ) const { return m_iWeaponID; }
|
|
void SetWeaponID( int iID ) { m_iWeaponID = iID; }
|
|
|
|
bool IsCritical( void ) { return m_bCritical; }
|
|
virtual void SetCritical( bool bCritical ) { m_bCritical = bCritical; }
|
|
|
|
private:
|
|
|
|
int m_iWeaponID;
|
|
bool m_bCritical;
|
|
|
|
protected:
|
|
|
|
// Networked.
|
|
CNetworkVector( m_vInitialVelocity );
|
|
|
|
static CTFBaseProjectile *Create( const char *pszClassname, const Vector &vecOrigin,
|
|
const QAngle &vecAngles, CBaseEntity *pOwner, float flVelocity, short iProjModelIndex, const char *pszDispatchEffect = NULL, CBaseEntity *pScorer = NULL, bool bCritical = false );
|
|
|
|
virtual const char *GetProjectileModelName( void );
|
|
virtual float GetGravity( void ) { return 0.001f; }
|
|
|
|
#ifdef CLIENT_DLL
|
|
|
|
public:
|
|
|
|
virtual int DrawModel( int flags );
|
|
virtual void PostDataUpdate( DataUpdateType_t type );
|
|
|
|
private:
|
|
|
|
float m_flSpawnTime;
|
|
|
|
#else
|
|
|
|
public:
|
|
|
|
DECLARE_DATADESC();
|
|
|
|
#if !defined( CLIENT_DLL )
|
|
// IScorer interface
|
|
virtual CBasePlayer *GetScorer( void );
|
|
virtual CBasePlayer *GetAssistant( void ) { return NULL; }
|
|
#endif
|
|
|
|
void SetScorer( CBaseEntity *pScorer );
|
|
|
|
virtual void ProjectileTouch( CBaseEntity *pOther );
|
|
|
|
virtual float GetDamage() { return m_flDamage; }
|
|
virtual void SetDamage(float flDamage) { m_flDamage = flDamage; }
|
|
|
|
virtual Vector GetDamageForce( void );
|
|
virtual int GetDamageType( void );
|
|
|
|
unsigned int PhysicsSolidMaskForEntity( void ) const;
|
|
|
|
void SetupInitialTransmittedGrenadeVelocity( const Vector &velocity ) { m_vInitialVelocity = velocity; }
|
|
|
|
protected:
|
|
|
|
void FlyThink( void );
|
|
|
|
protected:
|
|
float m_flDamage;
|
|
|
|
CBaseHandle m_Scorer;
|
|
|
|
#endif // ndef CLIENT_DLL
|
|
};
|
|
|
|
#endif //TF_BASE_PROJECTILE_H
|