Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
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.
|
|
|
|
//========= Copyright <EFBFBD> 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
|
|
|
//
|
|
|
|
|
// Purpose:
|
|
|
|
|
//
|
|
|
|
|
// $Workfile: $
|
|
|
|
|
// $Date: $
|
|
|
|
|
// $NoKeywords: $
|
|
|
|
|
//=============================================================================//
|
|
|
|
|
#include "cbase.h"
|
|
|
|
|
#include "entitylist.h"
|
|
|
|
|
|
|
|
|
|
// memdbgon must be the last include file in a .cpp file!!!
|
|
|
|
|
#include "tier0/memdbgon.h"
|
|
|
|
|
|
|
|
|
|
//=========================================================
|
|
|
|
|
// Multiplayer intermission spots.
|
|
|
|
|
//=========================================================
|
|
|
|
|
class CInfoIntermission:public CPointEntity
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
DECLARE_CLASS( CInfoIntermission, CPointEntity );
|
|
|
|
|
|
|
|
|
|
void Spawn( void );
|
|
|
|
|
void Think( void );
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void CInfoIntermission::Spawn( void )
|
|
|
|
|
{
|
|
|
|
|
SetSolid( SOLID_NONE );
|
|
|
|
|
AddEffects( EF_NODRAW );
|
|
|
|
|
SetLocalAngles( vec3_angle );
|
|
|
|
|
SetNextThink( gpGlobals->curtime + 2 );// let targets spawn !
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CInfoIntermission::Think ( void )
|
|
|
|
|
{
|
|
|
|
|
CBaseEntity *pTarget;
|
|
|
|
|
|
|
|
|
|
// find my target
|
|
|
|
|
pTarget = gEntList.FindEntityByName( NULL, m_target );
|
|
|
|
|
|
|
|
|
|
if ( pTarget )
|
|
|
|
|
{
|
|
|
|
|
Vector dir = pTarget->GetLocalOrigin() - GetLocalOrigin();
|
|
|
|
|
VectorNormalize( dir );
|
|
|
|
|
QAngle angles;
|
|
|
|
|
VectorAngles( dir, angles );
|
|
|
|
|
SetLocalAngles( angles );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LINK_ENTITY_TO_CLASS( info_intermission, CInfoIntermission );
|