Portable Half-Life SDK. GoldSource and Xash3D. Crossplatform.
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.

266 lines
7.1 KiB

9 years ago
/***
*
* Copyright (c) 1996-2002, Valve LLC. All rights reserved.
*
* This product contains software technology licensed from Id
* Software, Inc. ("Id Technology"). Id Technology (c) 1996 Id Software, Inc.
* All Rights Reserved.
*
* Use, distribution, and modification of this source code and/or resulting
* object code is restricted to non-commercial enhancements to products from
* Valve LLC. All other use, distribution, or modification is prohibited
* without written permission from Valve LLC.
*
****/
#if !defined( OEM_BUILD )
#include "extdll.h"
#include "util.h"
#include "cbase.h"
#include "monsters.h"
#include "weapons.h"
#include "nodes.h"
#include "player.h"
#include "gamerules.h"
#ifndef CLIENT_DLL
LINK_ENTITY_TO_CLASS( laser_spot, CLaserSpot )
9 years ago
//=========================================================
//=========================================================
CLaserSpot *CLaserSpot::CreateSpot( void )
{
CLaserSpot *pSpot = GetClassPtr( (CLaserSpot *)NULL );
pSpot->Spawn();
8 years ago
pSpot->pev->classname = MAKE_STRING( "laser_spot" );
9 years ago
return pSpot;
}
//=========================================================
//=========================================================
void CLaserSpot::Spawn( void )
{
8 years ago
Precache();
9 years ago
pev->movetype = MOVETYPE_NONE;
pev->solid = SOLID_NOT;
pev->rendermode = kRenderGlow;
pev->renderfx = kRenderFxNoDissipation;
pev->renderamt = 255;
8 years ago
SET_MODEL( ENT( pev ), "sprites/laserdot.spr" );
9 years ago
UTIL_SetOrigin( pev, pev->origin );
}
9 years ago
//=========================================================
// Suspend- make the laser sight invisible.
//=========================================================
void CLaserSpot::Suspend( float flSuspendTime )
{
pev->effects |= EF_NODRAW;
8 years ago
9 years ago
SetThink( &CLaserSpot::Revive );
pev->nextthink = gpGlobals->time + flSuspendTime;
}
//=========================================================
// Revive - bring a suspended laser sight back.
//=========================================================
void CLaserSpot::Revive( void )
{
pev->effects &= ~EF_NODRAW;
SetThink( NULL );
}
void CLaserSpot::Precache( void )
{
8 years ago
PRECACHE_MODEL( "sprites/laserdot.spr" );
}
9 years ago
LINK_ENTITY_TO_CLASS( rpg_rocket, CRpgRocket )
9 years ago
//=========================================================
//=========================================================
CRpgRocket *CRpgRocket::CreateRpgRocket( Vector vecOrigin, Vector vecAngles, CBaseEntity *pOwner, CRpg *pLauncher )
{
CRpgRocket *pRocket = GetClassPtr( (CRpgRocket *)NULL );
UTIL_SetOrigin( pRocket->pev, vecOrigin );
pRocket->pev->angles = vecAngles;
pRocket->Spawn();
pRocket->SetTouch( &CRpgRocket::RocketTouch );
pRocket->m_hLauncher = pLauncher;// remember what RPG fired me.
pLauncher->m_cActiveRockets++;// register this missile as active for the launcher
9 years ago
pRocket->pev->owner = pOwner->edict();
return pRocket;
}
//=========================================================
//=========================================================
8 years ago
void CRpgRocket::Spawn( void )
9 years ago
{
8 years ago
Precache();
9 years ago
// motor
pev->movetype = MOVETYPE_BOUNCE;
pev->solid = SOLID_BBOX;
8 years ago
SET_MODEL( ENT( pev ), "models/rpgrocket.mdl" );
UTIL_SetSize( pev, Vector( 0, 0, 0 ), Vector( 0, 0, 0 ) );
9 years ago
UTIL_SetOrigin( pev, pev->origin );
8 years ago
pev->classname = MAKE_STRING( "rpg_rocket" );
9 years ago
SetThink( &CRpgRocket::IgniteThink );
SetTouch( &CGrenade::ExplodeTouch );
pev->angles.x -= 30.0f;
9 years ago
UTIL_MakeVectors( pev->angles );
pev->angles.x = -( pev->angles.x + 30.0f );
9 years ago
pev->velocity = gpGlobals->v_forward * 250.0f;
pev->gravity = 0.5f;
9 years ago
pev->nextthink = gpGlobals->time + 0.4f;
9 years ago
pev->dmg = gSkillData.plrDmgRPG;
}
//=========================================================
//=========================================================
8 years ago
void CRpgRocket::RocketTouch( CBaseEntity *pOther )
9 years ago
{
if( CRpg* pLauncher = (CRpg*)( (CBaseEntity*)( m_hLauncher ) ) )
9 years ago
{
// my launcher is still around, tell it I'm dead.
pLauncher->m_cActiveRockets--;
9 years ago
}
STOP_SOUND( edict(), CHAN_VOICE, "weapons/rocket1.wav" );
ExplodeTouch( pOther );
}
//=========================================================
//=========================================================
8 years ago
void CRpgRocket::Precache( void )
9 years ago
{
8 years ago
PRECACHE_MODEL( "models/rpgrocket.mdl" );
m_iTrail = PRECACHE_MODEL( "sprites/smoke.spr" );
PRECACHE_SOUND( "weapons/rocket1.wav" );
9 years ago
}
8 years ago
void CRpgRocket::IgniteThink( void )
9 years ago
{
// pev->movetype = MOVETYPE_TOSS;
pev->movetype = MOVETYPE_FLY;
pev->effects |= EF_LIGHT;
// make rocket sound
EMIT_SOUND( ENT( pev ), CHAN_VOICE, "weapons/rocket1.wav", 1, 0.5f );
9 years ago
// rocket trail
MESSAGE_BEGIN( MSG_BROADCAST, SVC_TEMPENTITY );
WRITE_BYTE( TE_BEAMFOLLOW );
8 years ago
WRITE_SHORT( entindex() ); // entity
WRITE_SHORT( m_iTrail ); // model
9 years ago
WRITE_BYTE( 40 ); // life
WRITE_BYTE( 5 ); // width
WRITE_BYTE( 224 ); // r, g, b
WRITE_BYTE( 224 ); // r, g, b
WRITE_BYTE( 255 ); // r, g, b
WRITE_BYTE( 255 ); // brightness
MESSAGE_END(); // move PHS/PVS data sending into here (SEND_ALL, SEND_PVS, SEND_PHS)
m_flIgniteTime = gpGlobals->time;
// set to follow laser spot
SetThink( &CRpgRocket::FollowThink );
pev->nextthink = gpGlobals->time + 0.1f;
9 years ago
}
8 years ago
void CRpgRocket::FollowThink( void )
9 years ago
{
CBaseEntity *pOther = NULL;
Vector vecTarget;
Vector vecDir;
float flDist, flMax, flDot;
TraceResult tr;
UTIL_MakeAimVectors( pev->angles );
vecTarget = gpGlobals->v_forward;
flMax = 4096;
// Examine all entities within a reasonable radius
8 years ago
while( ( pOther = UTIL_FindEntityByClassname( pOther, "laser_spot" ) ) != NULL )
9 years ago
{
8 years ago
UTIL_TraceLine( pev->origin, pOther->pev->origin, dont_ignore_monsters, ENT( pev ), &tr );
9 years ago
// ALERT( at_console, "%f\n", tr.flFraction );
if( tr.flFraction >= 0.9f )
9 years ago
{
vecDir = pOther->pev->origin - pev->origin;
8 years ago
flDist = vecDir.Length();
vecDir = vecDir.Normalize();
9 years ago
flDot = DotProduct( gpGlobals->v_forward, vecDir );
8 years ago
if( ( flDot > 0 ) && ( flDist * ( 1 - flDot ) < flMax ) )
9 years ago
{
8 years ago
flMax = flDist * ( 1 - flDot );
9 years ago
vecTarget = vecDir;
}
}
}
pev->angles = UTIL_VecToAngles( vecTarget );
// this acceleration and turning math is totally wrong, but it seems to respond well so don't change it.
float flSpeed = pev->velocity.Length();
if( gpGlobals->time - m_flIgniteTime < 1.0f )
9 years ago
{
pev->velocity = pev->velocity * 0.2f + vecTarget * ( flSpeed * 0.8f + 400.0f );
8 years ago
if( pev->waterlevel == 3 )
9 years ago
{
// go slow underwater
if( pev->velocity.Length() > 300.0f )
9 years ago
{
pev->velocity = pev->velocity.Normalize() * 300.0f;
9 years ago
}
UTIL_BubbleTrail( pev->origin - pev->velocity * 0.1f, pev->origin, 4 );
9 years ago
}
else
{
if( pev->velocity.Length() > 2000.0f )
9 years ago
{
pev->velocity = pev->velocity.Normalize() * 2000.0f;
9 years ago
}
}
}
else
{
8 years ago
if( pev->effects & EF_LIGHT )
9 years ago
{
pev->effects = 0;
8 years ago
STOP_SOUND( ENT( pev ), CHAN_VOICE, "weapons/rocket1.wav" );
9 years ago
}
pev->velocity = pev->velocity * 0.2f + vecTarget * flSpeed * 0.798f;
if( pev->waterlevel == 0 && pev->velocity.Length() < 1500.0f )
9 years ago
{
if( CRpg *pLauncher = (CRpg*)( (CBaseEntity*)( m_hLauncher ) ) )
{
// my launcher is still around, tell it I'm dead.
pLauncher->m_cActiveRockets--;
}
8 years ago
Detonate();
9 years ago
}
}
// ALERT( at_console, "%.0f\n", flSpeed );
pev->nextthink = gpGlobals->time + 0.1f;
9 years ago
}
#endif
#endif