You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.7 KiB
78 lines
1.7 KiB
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
|
||
|
#include "cbase.h"
|
||
|
#include "dod_stickgrenade.h"
|
||
|
#include "dod_shareddefs.h"
|
||
|
|
||
|
#define GRENADE_MODEL "models/Weapons/w_stick.mdl"
|
||
|
|
||
|
LINK_ENTITY_TO_CLASS( grenade_frag_ger, CDODStickGrenade );
|
||
|
PRECACHE_WEAPON_REGISTER( grenade_frag_ger );
|
||
|
|
||
|
CDODStickGrenade* CDODStickGrenade::Create(
|
||
|
const Vector &position,
|
||
|
const QAngle &angles,
|
||
|
const Vector &velocity,
|
||
|
const AngularImpulse &angVelocity,
|
||
|
CBaseCombatCharacter *pOwner,
|
||
|
float timer,
|
||
|
DODWeaponID weaponID )
|
||
|
{
|
||
|
CDODStickGrenade *pGrenade = (CDODStickGrenade*)CBaseEntity::Create( "grenade_frag_ger", position, angles, pOwner );
|
||
|
|
||
|
Assert( pGrenade );
|
||
|
|
||
|
if( !pGrenade )
|
||
|
return NULL;
|
||
|
|
||
|
IPhysicsObject *pPhysicsObject = pGrenade->VPhysicsGetObject();
|
||
|
if ( pPhysicsObject )
|
||
|
{
|
||
|
pPhysicsObject->AddVelocity( &velocity, &angVelocity );
|
||
|
}
|
||
|
|
||
|
pGrenade->SetupInitialTransmittedGrenadeVelocity( velocity );
|
||
|
|
||
|
// Who threw this grenade
|
||
|
pGrenade->SetThrower( pOwner );
|
||
|
|
||
|
pGrenade->ChangeTeam( pOwner->GetTeamNumber() );
|
||
|
|
||
|
// How long until we explode
|
||
|
pGrenade->SetDetonateTimerLength( timer );
|
||
|
|
||
|
// Save the weapon id for stats purposes
|
||
|
pGrenade->m_EmitterWeaponID = weaponID;
|
||
|
|
||
|
return pGrenade;
|
||
|
}
|
||
|
|
||
|
void CDODStickGrenade::Spawn()
|
||
|
{
|
||
|
SetModel( GRENADE_MODEL );
|
||
|
BaseClass::Spawn();
|
||
|
}
|
||
|
|
||
|
void CDODStickGrenade::Precache()
|
||
|
{
|
||
|
PrecacheModel( GRENADE_MODEL );
|
||
|
|
||
|
PrecacheScriptSound( "HEGrenade.Bounce" );
|
||
|
|
||
|
BaseClass::Precache();
|
||
|
}
|
||
|
|
||
|
void CDODStickGrenade::BounceSound( void )
|
||
|
{
|
||
|
EmitSound( "HEGrenade.Bounce" );
|
||
|
}
|
||
|
|
||
|
//Pass the classname of the exploding version of this grenade.
|
||
|
char *CDODStickGrenade::GetExplodingClassname()
|
||
|
{
|
||
|
return "weapon_frag_ger_live";
|
||
|
}
|