158 lines
3.2 KiB
C++
158 lines
3.2 KiB
C++
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
|
||
//
|
||
// Purpose: Defuser kit that drops from counter-strike CTS
|
||
//
|
||
//=============================================================================//
|
||
|
||
#include "cbase.h"
|
||
#include "items.h"
|
||
#include "cs_player.h"
|
||
#include "cs_gamerules.h"
|
||
#include "cs_entity_spotting.h"
|
||
|
||
class CItemDefuser : public CItem
|
||
{
|
||
public:
|
||
DECLARE_CLASS( CItemDefuser, CItem );
|
||
|
||
CItemDefuser();
|
||
~CItemDefuser();
|
||
|
||
void Spawn( void );
|
||
void Precache( void );
|
||
void DefuserTouch( CBaseEntity *pOther );
|
||
void ActivateThink( void );
|
||
|
||
DECLARE_DATADESC();
|
||
};
|
||
|
||
LINK_ENTITY_TO_CLASS( item_defuser, CItemDefuser );
|
||
LINK_ENTITY_TO_CLASS( item_cutters, CItemDefuser );
|
||
PRECACHE_REGISTER(item_defuser);
|
||
|
||
|
||
BEGIN_DATADESC( CItemDefuser )
|
||
|
||
//Functions
|
||
DEFINE_THINKFUNC( ActivateThink ),
|
||
DEFINE_ENTITYFUNC( DefuserTouch ),
|
||
|
||
END_DATADESC()
|
||
|
||
Vector g_vecDefuserPosition = vec3_origin;
|
||
CBaseEntity* g_pDefuserEntity = NULL;
|
||
|
||
|
||
CItemDefuser::CItemDefuser()
|
||
{
|
||
g_pDefuserEntity = this;
|
||
SetSpotRules( CCSEntitySpotting::SPOT_RULE_T | CCSEntitySpotting::SPOT_RULE_ALWAYS_SEEN_BY_CT );
|
||
}
|
||
|
||
CItemDefuser::~CItemDefuser()
|
||
{
|
||
if ( g_pDefuserEntity == this )
|
||
{
|
||
g_pDefuserEntity = NULL;
|
||
g_vecDefuserPosition = vec3_origin;
|
||
}
|
||
}
|
||
|
||
void CItemDefuser::Spawn( void )
|
||
{
|
||
Precache( );
|
||
SetModel( "models/weapons/w_defuser.mdl" );
|
||
BaseClass::Spawn();
|
||
|
||
#if !defined( CLIENT_DLL )
|
||
|
||
if ( mp_defuser_allocation.GetInt() == DefuserAllocation::Random )
|
||
{
|
||
IGameEvent * event = gameeventmanager->CreateEvent( "defuser_dropped" );
|
||
if ( event )
|
||
{
|
||
event->SetInt( "entityid", entindex() );
|
||
event->SetInt( "priority", 0 ); //defuser_dropped
|
||
|
||
gameeventmanager->FireEvent( event );
|
||
}
|
||
}
|
||
|
||
g_vecDefuserPosition = GetAbsOrigin();
|
||
|
||
#endif
|
||
|
||
SetNextThink( gpGlobals->curtime + 0.5f );
|
||
SetThink( &CItemDefuser::ActivateThink );
|
||
|
||
SetTouch( NULL );
|
||
}
|
||
|
||
void CItemDefuser::Precache( void )
|
||
{
|
||
PrecacheModel( "models/weapons/w_defuser.mdl" );
|
||
|
||
PrecacheScriptSound( "BaseCombatCharacter.ItemPickup2" );
|
||
}
|
||
|
||
void CItemDefuser::ActivateThink( void )
|
||
{
|
||
//since we can't stop the item from being touched while its in the air,
|
||
//activate 1 second after being dropped
|
||
|
||
SetTouch( &CItemDefuser::DefuserTouch );
|
||
SetThink( NULL );
|
||
}
|
||
|
||
void CItemDefuser::DefuserTouch( CBaseEntity *pOther )
|
||
{
|
||
if ( !pOther->IsPlayer() )
|
||
{
|
||
return;
|
||
}
|
||
|
||
//if( GetFlags() & FL_ONGROUND )
|
||
{
|
||
CCSPlayer *pPlayer = (CCSPlayer *)pOther;
|
||
|
||
if ( !pPlayer )
|
||
{
|
||
Assert( false );
|
||
return;
|
||
}
|
||
|
||
if( pPlayer->GetTeamNumber() == TEAM_CT && !pPlayer->HasDefuser() )
|
||
{
|
||
// [dwenger] Added for fun-fact support
|
||
pPlayer->GiveDefuser( true );
|
||
|
||
#if !defined( CLIENT_DLL )
|
||
|
||
if ( mp_defuser_allocation.GetInt() == DefuserAllocation::Random )
|
||
{
|
||
IGameEvent * event = gameeventmanager->CreateEvent( "defuser_pickup" );
|
||
if ( event )
|
||
{
|
||
event->SetInt( "entityid", entindex() );
|
||
event->SetInt( "userid", pPlayer->GetUserID() );
|
||
event->SetInt( "priority", 0 ); //defuser_pickup
|
||
gameeventmanager->FireEvent( event );
|
||
}
|
||
}
|
||
|
||
#endif
|
||
|
||
// if ( pPlayer->IsDead() == false )
|
||
// {
|
||
// CBroadcastRecipientFilter filter;
|
||
// EmitSound( filter, entindex(), "BaseCombatCharacter.ItemPickup2" );
|
||
// }
|
||
|
||
UTIL_Remove( this );
|
||
return;
|
||
}
|
||
}
|
||
}
|
||
|
||
|