2019-05-29 12:06:33 -04:00
|
|
|
#include "common.h"
|
2020-04-17 09:31:11 -04:00
|
|
|
|
2019-05-29 12:06:33 -04:00
|
|
|
#include "Weapon.h"
|
2020-04-15 01:03:53 -04:00
|
|
|
#include "AnimBlendAssociation.h"
|
|
|
|
#include "AudioManager.h"
|
|
|
|
#include "BulletInfo.h"
|
|
|
|
#include "Camera.h"
|
|
|
|
#include "Coronas.h"
|
|
|
|
#include "DMAudio.h"
|
|
|
|
#include "Explosion.h"
|
|
|
|
#include "General.h"
|
|
|
|
#include "Glass.h"
|
|
|
|
#include "Heli.h"
|
|
|
|
#include "ModelIndices.h"
|
|
|
|
#include "Object.h"
|
|
|
|
#include "Pad.h"
|
|
|
|
#include "Particle.h"
|
|
|
|
#include "Ped.h"
|
|
|
|
#include "PointLights.h"
|
|
|
|
#include "Pools.h"
|
|
|
|
#include "ProjectileInfo.h"
|
|
|
|
#include "RpAnimBlend.h"
|
|
|
|
#include "ShotInfo.h"
|
|
|
|
#include "SpecialFX.h"
|
|
|
|
#include "Stats.h"
|
|
|
|
#include "TempColModels.h"
|
2019-06-30 17:50:40 -04:00
|
|
|
#include "Timer.h"
|
2020-06-02 17:34:53 -04:00
|
|
|
#include "Automobile.h"
|
|
|
|
#include "Boat.h"
|
2020-04-15 01:03:53 -04:00
|
|
|
#include "WaterLevel.h"
|
2019-06-30 17:50:40 -04:00
|
|
|
#include "WeaponInfo.h"
|
2019-07-25 11:06:24 -04:00
|
|
|
#include "World.h"
|
2019-05-29 12:06:33 -04:00
|
|
|
|
2020-04-15 12:53:08 -04:00
|
|
|
uint16 gReloadSampleTime[WEAPONTYPE_LAST_WEAPONTYPE] =
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
2020-04-15 12:53:08 -04:00
|
|
|
0, // UNARMED
|
|
|
|
0, // BASEBALLBAT
|
|
|
|
250, // COLT45
|
|
|
|
400, // UZI
|
|
|
|
650, // SHOTGUN
|
|
|
|
300, // AK47
|
|
|
|
300, // M16
|
|
|
|
423, // SNIPERRIFLE
|
|
|
|
400, // ROCKETLAUNCHER
|
|
|
|
0, // FLAMETHROWER
|
|
|
|
0, // MOLOTOV
|
|
|
|
0, // GRENADE
|
|
|
|
0, // DETONATOR
|
|
|
|
0 // HELICANNON
|
2020-04-15 01:03:53 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
CWeaponInfo *
|
|
|
|
CWeapon::GetInfo()
|
|
|
|
{
|
|
|
|
CWeaponInfo *info = CWeaponInfo::GetWeaponInfo(m_eWeaponType);
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(info!=nil);
|
2020-04-15 01:03:53 -04:00
|
|
|
return info;
|
|
|
|
}
|
2019-06-30 17:50:40 -04:00
|
|
|
|
|
|
|
void
|
2020-04-15 01:03:53 -04:00
|
|
|
CWeapon::InitialiseWeapons(void)
|
|
|
|
{
|
|
|
|
CWeaponInfo::Initialise();
|
|
|
|
CShotInfo::Initialise();
|
|
|
|
CExplosion::Initialise();
|
|
|
|
CProjectileInfo::Initialise();
|
|
|
|
CBulletInfo::Initialise();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CWeapon::ShutdownWeapons(void)
|
|
|
|
{
|
|
|
|
CWeaponInfo::Shutdown();
|
|
|
|
CShotInfo::Shutdown();
|
|
|
|
CExplosion::Shutdown();
|
|
|
|
CProjectileInfo::Shutdown();
|
|
|
|
CBulletInfo::Shutdown();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CWeapon::UpdateWeapons(void)
|
|
|
|
{
|
|
|
|
CShotInfo::Update();
|
|
|
|
CExplosion::Update();
|
|
|
|
CProjectileInfo::Update();
|
|
|
|
CBulletInfo::Update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CWeapon::Initialise(eWeaponType type, int32 ammo)
|
2019-06-30 17:50:40 -04:00
|
|
|
{
|
|
|
|
m_eWeaponType = type;
|
|
|
|
m_eWeaponState = WEAPONSTATE_READY;
|
|
|
|
if (ammo > 99999)
|
|
|
|
m_nAmmoTotal = 99999;
|
|
|
|
else
|
|
|
|
m_nAmmoTotal = ammo;
|
|
|
|
m_nAmmoInClip = 0;
|
|
|
|
Reload();
|
|
|
|
m_nTimer = 0;
|
|
|
|
}
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
bool
|
|
|
|
CWeapon::Fire(CEntity *shooter, CVector *fireSource)
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(shooter!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector fireOffset(0.0f, 0.0f, 0.6f);
|
|
|
|
CVector *source = fireSource;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-10-27 20:10:53 -04:00
|
|
|
if (!fireSource)
|
|
|
|
{
|
|
|
|
fireOffset = shooter->GetMatrix() * fireOffset;
|
|
|
|
#ifdef FIX_BUGS
|
2020-04-19 12:34:08 -04:00
|
|
|
static CVector tmp;
|
2020-10-27 20:10:53 -04:00
|
|
|
tmp = fireOffset;
|
2020-04-19 12:34:08 -04:00
|
|
|
source = &tmp;
|
2020-10-27 20:10:53 -04:00
|
|
|
#else
|
|
|
|
source = &fireOffset;
|
|
|
|
#endif
|
|
|
|
|
2020-04-19 12:34:08 -04:00
|
|
|
}
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( m_bAddRotOffset )
|
|
|
|
{
|
|
|
|
float heading = RADTODEG(shooter->GetForward().Heading());
|
|
|
|
float angle = DEGTORAD(heading);
|
|
|
|
(*source).x += -Sin(angle) * 0.15f;
|
|
|
|
(*source).y += Cos(angle) * 0.15f;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( m_eWeaponState != WEAPONSTATE_READY && m_eWeaponState != WEAPONSTATE_FIRING )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bool fired;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( GetInfo()->m_eWeaponFire != WEAPON_FIRE_MELEE )
|
|
|
|
{
|
|
|
|
if ( m_nAmmoInClip <= 0 )
|
|
|
|
return false;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
switch ( m_eWeaponType )
|
|
|
|
{
|
|
|
|
case WEAPONTYPE_SHOTGUN:
|
|
|
|
{
|
|
|
|
fired = FireShotgun(shooter, source);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
case WEAPONTYPE_COLT45:
|
|
|
|
case WEAPONTYPE_UZI:
|
|
|
|
case WEAPONTYPE_AK47:
|
|
|
|
{
|
|
|
|
fired = FireInstantHit(shooter, source);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
case WEAPONTYPE_SNIPERRIFLE:
|
|
|
|
{
|
|
|
|
fired = FireSniper(shooter);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
case WEAPONTYPE_M16:
|
|
|
|
{
|
|
|
|
if ( TheCamera.PlayerWeaponMode.Mode == CCam::MODE_M16_1STPERSON && shooter == FindPlayerPed() )
|
|
|
|
fired = FireM16_1stPerson(shooter);
|
|
|
|
else
|
|
|
|
fired = FireInstantHit(shooter, source);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
case WEAPONTYPE_ROCKETLAUNCHER:
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
if ( shooter->IsPed() && ((CPed*)shooter)->m_pSeekTarget != nil )
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
float distToTarget = (shooter->GetPosition() - ((CPed*)shooter)->m_pSeekTarget->GetPosition()).Magnitude();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( distToTarget > 8.0f || ((CPed*)shooter)->IsPlayer() )
|
|
|
|
fired = FireProjectile(shooter, source, 0.0f);
|
|
|
|
else
|
|
|
|
fired = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
fired = FireProjectile(shooter, source, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
case WEAPONTYPE_MOLOTOV:
|
|
|
|
case WEAPONTYPE_GRENADE:
|
|
|
|
{
|
|
|
|
if ( shooter == FindPlayerPed() )
|
|
|
|
{
|
|
|
|
fired = FireProjectile(shooter, source, ((CPlayerPed*)shooter)->m_fAttackButtonCounter*0.0375f);
|
|
|
|
if ( m_eWeaponType == WEAPONTYPE_GRENADE )
|
|
|
|
CStats::KgsOfExplosivesUsed++;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
else if ( shooter->IsPed() && ((CPed*)shooter)->m_pSeekTarget != nil )
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
float distToTarget = (shooter->GetPosition() - ((CPed*)shooter)->m_pSeekTarget->GetPosition()).Magnitude();
|
|
|
|
float power = clamp((distToTarget-10.0f)*0.02f, 0.2f, 1.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
fired = FireProjectile(shooter, source, power);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
fired = FireProjectile(shooter, source, 0.3f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
case WEAPONTYPE_FLAMETHROWER:
|
|
|
|
{
|
|
|
|
fired = FireAreaEffect(shooter, source);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
case WEAPONTYPE_DETONATOR:
|
|
|
|
{
|
|
|
|
CWorld::UseDetonator(shooter);
|
|
|
|
m_nAmmoTotal = 1;
|
|
|
|
m_nAmmoInClip = m_nAmmoTotal;
|
|
|
|
fired = true;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
case WEAPONTYPE_HELICANNON:
|
|
|
|
{
|
|
|
|
if ( (TheCamera.PlayerWeaponMode.Mode == CCam::MODE_HELICANNON_1STPERSON || TheCamera.PlayerWeaponMode.Mode == CCam::MODE_M16_1STPERSON )
|
|
|
|
&& shooter == FindPlayerPed() )
|
|
|
|
{
|
|
|
|
fired = FireM16_1stPerson(shooter);
|
2020-04-15 12:43:16 -04:00
|
|
|
}
|
2020-04-15 01:03:53 -04:00
|
|
|
else
|
|
|
|
fired = FireInstantHit(shooter, source);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
default:
|
|
|
|
{
|
|
|
|
debug("Unknown weapon type, Weapon.cpp");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-05-24 09:41:29 -04:00
|
|
|
if (fired)
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
bool isPlayer = false;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-05-24 09:41:29 -04:00
|
|
|
if (shooter->IsPed())
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
2020-05-24 09:41:29 -04:00
|
|
|
CPed* shooterPed = (CPed*)shooter;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
shooterPed->bIsShooting = true;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-05-24 09:41:29 -04:00
|
|
|
if (shooterPed->IsPlayer())
|
2020-04-15 01:03:53 -04:00
|
|
|
isPlayer = true;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
DMAudio.PlayOneShot(shooterPed->m_audioEntityId, SOUND_WEAPON_SHOT_FIRED, 0.0f);
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-05-24 09:41:29 -04:00
|
|
|
if (m_nAmmoInClip > 0) m_nAmmoInClip--;
|
|
|
|
if (m_nAmmoTotal > 0 && (m_nAmmoTotal < 25000 || isPlayer)) m_nAmmoTotal--;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-05-24 09:41:29 -04:00
|
|
|
if (m_eWeaponState == WEAPONSTATE_READY && m_eWeaponType == WEAPONTYPE_FLAMETHROWER)
|
2020-04-15 01:03:53 -04:00
|
|
|
DMAudio.PlayOneShot(((CPhysical*)shooter)->m_audioEntityId, SOUND_WEAPON_FLAMETHROWER_FIRE, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
m_eWeaponState = WEAPONSTATE_FIRING;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-05-24 09:41:29 -04:00
|
|
|
if (m_nAmmoInClip == 0)
|
|
|
|
{
|
|
|
|
if (m_nAmmoTotal == 0)
|
|
|
|
return true;
|
2020-04-15 01:03:53 -04:00
|
|
|
|
2020-05-24 09:41:29 -04:00
|
|
|
m_eWeaponState = WEAPONSTATE_RELOADING;
|
|
|
|
m_nTimer = CTimer::GetTimeInMilliseconds() + GetInfo()->m_nReload;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-05-24 09:41:29 -04:00
|
|
|
if (shooter == FindPlayerPed())
|
|
|
|
{
|
|
|
|
if (CWorld::Players[CWorld::PlayerInFocus].m_bFastReload)
|
|
|
|
m_nTimer = CTimer::GetTimeInMilliseconds() + GetInfo()->m_nReload / 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2020-04-15 01:03:53 -04:00
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-05-24 09:41:29 -04:00
|
|
|
m_nTimer = CTimer::GetTimeInMilliseconds() + 1000;
|
|
|
|
if (shooter == FindPlayerPed())
|
|
|
|
CStats::RoundsFiredByPlayer++;
|
2020-04-15 01:03:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( m_eWeaponState != WEAPONSTATE_FIRING )
|
|
|
|
{
|
|
|
|
m_nTimer = CTimer::GetTimeInMilliseconds() + GetInfo()->m_nReload;
|
|
|
|
m_eWeaponState = WEAPONSTATE_FIRING;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
FireMelee(shooter, *source);
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( m_eWeaponType == WEAPONTYPE_UNARMED || m_eWeaponType == WEAPONTYPE_BASEBALLBAT )
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return fired;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CWeapon::FireFromCar(CAutomobile *shooter, bool left)
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(shooter!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( m_eWeaponState != WEAPONSTATE_READY && m_eWeaponState != WEAPONSTATE_FIRING )
|
|
|
|
return false;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( m_nAmmoInClip <= 0 )
|
|
|
|
return false;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( FireInstantHitFromCar(shooter, left) )
|
|
|
|
{
|
|
|
|
DMAudio.PlayOneShot(shooter->m_audioEntityId, SOUND_WEAPON_SHOT_FIRED, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( m_nAmmoInClip > 0 ) m_nAmmoInClip--;
|
|
|
|
if ( m_nAmmoTotal < 25000 && m_nAmmoTotal > 0 ) m_nAmmoTotal--;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
m_eWeaponState = WEAPONSTATE_FIRING;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( m_nAmmoInClip == 0 )
|
|
|
|
{
|
|
|
|
if ( m_nAmmoTotal == 0 )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
m_eWeaponState = WEAPONSTATE_RELOADING;
|
|
|
|
m_nTimer = CTimer::GetTimeInMilliseconds() + GetInfo()->m_nReload;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
return true;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
m_nTimer = CTimer::GetTimeInMilliseconds() + 1000;
|
|
|
|
if ( shooter == FindPlayerVehicle() )
|
|
|
|
CStats::RoundsFiredByPlayer++;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CWeapon::FireMelee(CEntity *shooter, CVector &fireSource)
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(shooter!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CWeaponInfo *info = GetInfo();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
bool anim2Playing = false;
|
|
|
|
if ( RpAnimBlendClumpGetAssociation(shooter->GetClump(), info->m_Anim2ToPlay) )
|
|
|
|
anim2Playing = true;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
ASSERT(shooter->IsPed());
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CPed *shooterPed = (CPed*)shooter;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
for ( int32 i = 0; i < shooterPed->m_numNearPeds; i++ )
|
|
|
|
{
|
|
|
|
CPed *victimPed = shooterPed->m_nearPeds[i];
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(victimPed!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( (victimPed->m_nPedType != shooterPed->m_nPedType || victimPed == shooterPed->m_pSeekTarget)
|
|
|
|
&& victimPed != shooterPed->m_leader || !(CGeneral::GetRandomNumber() & 31) )
|
|
|
|
{
|
|
|
|
bool collided = false;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CColModel *victimPedCol = &CTempColModels::ms_colModelPed1;
|
|
|
|
if ( victimPed->OnGround() || !victimPed->IsPedHeadAbovePos(-0.3f) )
|
|
|
|
victimPedCol = &CTempColModels::ms_colModelPedGroundHit;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
float victimPedRadius = victimPed->GetBoundRadius() + info->m_fRadius;
|
|
|
|
if ( victimPed->bUsesCollision || victimPed->Dead() || victimPed->Driving() )
|
|
|
|
{
|
|
|
|
CVector victimPedPos = victimPed->GetPosition();
|
2020-12-17 19:57:54 -05:00
|
|
|
if ( SQR(victimPedRadius) > (victimPedPos-fireSource).MagnitudeSqr() )
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
CVector collisionDist;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
int32 s = 0;
|
|
|
|
while ( s < victimPedCol->numSpheres )
|
|
|
|
{
|
|
|
|
CColSphere *sphere = &victimPedCol->spheres[s];
|
2020-12-17 19:57:54 -05:00
|
|
|
collisionDist = victimPedPos+sphere->center-fireSource;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( SQR(sphere->radius + info->m_fRadius) > collisionDist.MagnitudeSqr() )
|
|
|
|
{
|
|
|
|
collided = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
s++;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( !(victimPed->IsPlayer() && victimPed->GetPedState() == PED_GETUP) )
|
|
|
|
{
|
|
|
|
if ( collided )
|
|
|
|
{
|
|
|
|
float victimPedHealth = victimPed->m_fHealth;
|
2020-04-15 12:43:16 -04:00
|
|
|
CVector bloodPos = fireSource + (collisionDist*0.7f);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector2D posOffset(shooterPed->GetPosition().x-victimPedPos.x, shooterPed->GetPosition().y-victimPedPos.y);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
int32 localDir = victimPed->GetLocalDirection(posOffset);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
bool isBat = m_eWeaponType == WEAPONTYPE_BASEBALLBAT;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( !victimPed->DyingOrDead() )
|
|
|
|
victimPed->ReactToAttack(shooterPed);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
uint8 hitLevel = HITLEVEL_HIGH;
|
|
|
|
if ( isBat && victimPed->OnGround() )
|
|
|
|
hitLevel = HITLEVEL_GROUND;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
victimPed->StartFightDefend(localDir, hitLevel, 10);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( !victimPed->DyingOrDead() )
|
|
|
|
{
|
|
|
|
if ( shooterPed->IsPlayer() && isBat && anim2Playing )
|
|
|
|
victimPed->InflictDamage(shooterPed, m_eWeaponType, 100.0f, PEDPIECE_TORSO, localDir);
|
|
|
|
else if ( shooterPed->IsPlayer() && ((CPlayerPed*)shooterPed)->m_bAdrenalineActive )
|
|
|
|
victimPed->InflictDamage(shooterPed, m_eWeaponType, 3.5f*info->m_nDamage, PEDPIECE_TORSO, localDir);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( victimPed->IsPlayer() && isBat ) // wtf, it's not fair
|
|
|
|
victimPed->InflictDamage(shooterPed, m_eWeaponType, 2.0f*info->m_nDamage, PEDPIECE_TORSO, localDir);
|
|
|
|
else
|
|
|
|
victimPed->InflictDamage(shooterPed, m_eWeaponType, info->m_nDamage, PEDPIECE_TORSO, localDir);
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( CGame::nastyGame )
|
|
|
|
{
|
|
|
|
if ( victimPed->GetIsOnScreen() )
|
|
|
|
{
|
|
|
|
CVector dir = collisionDist * RecipSqrt(1.0f, 10.0f*collisionDist.MagnitudeSqr());
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_BLOOD, bloodPos, dir);
|
|
|
|
CParticle::AddParticle(PARTICLE_BLOOD, bloodPos, dir);
|
|
|
|
CParticle::AddParticle(PARTICLE_BLOOD, bloodPos, dir);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( isBat )
|
|
|
|
{
|
|
|
|
dir.x += CGeneral::GetRandomNumberInRange(-0.05f, 0.05f);
|
|
|
|
dir.y += CGeneral::GetRandomNumberInRange(-0.05f, 0.05f);
|
|
|
|
CParticle::AddParticle(PARTICLE_BLOOD, bloodPos, dir);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
dir.x += CGeneral::GetRandomNumberInRange(-0.05f, 0.05f);
|
|
|
|
dir.y += CGeneral::GetRandomNumberInRange(-0.05f, 0.05f);
|
|
|
|
CParticle::AddParticle(PARTICLE_BLOOD, bloodPos, dir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( !victimPed->OnGround() )
|
|
|
|
{
|
|
|
|
if ( victimPed->m_fHealth > 0.0f
|
|
|
|
&& (victimPed->m_fHealth < 20.0f && victimPedHealth > 20.0f || isBat && !victimPed->IsPlayer()) )
|
|
|
|
{
|
|
|
|
posOffset.Normalise();
|
|
|
|
victimPed->bIsStanding = false;
|
|
|
|
victimPed->ApplyMoveForce(posOffset.x*-5.0f, posOffset.y*-5.0f, 3.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( isBat && victimPed->IsPlayer() )
|
|
|
|
victimPed->SetFall(3000, AnimationId(ANIM_KO_SKID_FRONT + localDir), false);
|
|
|
|
else
|
|
|
|
victimPed->SetFall(1500, AnimationId(ANIM_KO_SKID_FRONT + localDir), false);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
shooterPed->m_pSeekTarget = victimPed;
|
|
|
|
shooterPed->m_pSeekTarget->RegisterReference(&shooterPed->m_pSeekTarget);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (victimPed->Dying() && !anim2Playing)
|
|
|
|
{
|
|
|
|
posOffset.Normalise();
|
|
|
|
victimPed->bIsStanding = false;
|
|
|
|
victimPed->ApplyMoveForce(posOffset.x*-5.0f, posOffset.y*-5.0f, 3.0f);
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
m_eWeaponState = WEAPONSTATE_MELEE_MADECONTACT;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victimPed->m_nPedType == PEDTYPE_COP )
|
|
|
|
CEventList::RegisterEvent(EVENT_ASSAULT_POLICE, EVENT_ENTITY_PED, victimPed, shooterPed, 2000);
|
|
|
|
else
|
|
|
|
CEventList::RegisterEvent(EVENT_ASSAULT, EVENT_ENTITY_PED, victimPed, shooterPed, 2000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CWeapon::FireInstantHit(CEntity *shooter, CVector *fireSource)
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(shooter!=nil);
|
|
|
|
ASSERT(fireSource!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CWeaponInfo *info = GetInfo();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector source, target;
|
|
|
|
CColPoint point;
|
2020-04-15 12:43:16 -04:00
|
|
|
CEntity *victim = nil;
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
float heading = RADTODEG(shooter->GetForward().Heading());
|
|
|
|
float angle = DEGTORAD(heading);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector2D ahead(-Sin(angle), Cos(angle));
|
|
|
|
ahead.Normalise();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector vel = ((CPed *)shooter)->m_vecMoveSpeed;
|
|
|
|
int32 shooterMoving = false;
|
|
|
|
if ( Abs(vel.x) > 0.0f && Abs(vel.y) > 0.0f )
|
|
|
|
shooterMoving = true;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooter == FindPlayerPed() )
|
|
|
|
{
|
|
|
|
static float prev_heading = 0.0f;
|
|
|
|
prev_heading = ((CPed*)shooter)->m_fRotationCur;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooter->IsPed() && ((CPed *)shooter)->m_pPointGunAt )
|
|
|
|
{
|
|
|
|
CPed *shooterPed = (CPed *)shooter;
|
|
|
|
if ( shooterPed->m_pedIK.m_flags & CPedIK::GUN_POINTED_SUCCESSFULLY )
|
|
|
|
{
|
|
|
|
int32 accuracy = shooterPed->m_wepAccuracy;
|
|
|
|
int32 inaccuracy = 100-accuracy;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( accuracy != 100 )
|
|
|
|
FindPlayerPed(); //what ?
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CPed *threatAttack = (CPed*)shooterPed->m_pPointGunAt;
|
|
|
|
if ( threatAttack->IsPed() )
|
|
|
|
{
|
|
|
|
threatAttack->m_pedIK.GetComponentPosition(target, PED_MID);
|
|
|
|
threatAttack->ReactToPointGun(shooter);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
target = threatAttack->GetPosition();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
target -= *fireSource;
|
|
|
|
target *= info->m_fRange / target.Magnitude();
|
|
|
|
target += *fireSource;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( inaccuracy != 0 )
|
|
|
|
{
|
|
|
|
target.x += CGeneral::GetRandomNumberInRange(-0.2f, 0.2f) * inaccuracy;
|
|
|
|
target.y += CGeneral::GetRandomNumberInRange(-0.2f, 0.2f) * inaccuracy;
|
|
|
|
target.z += CGeneral::GetRandomNumberInRange(-0.1f, 0.1f) * inaccuracy;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CWorld::bIncludeDeadPeds = true;
|
|
|
|
ProcessLineOfSight(*fireSource, target, point, victim, m_eWeaponType, shooter, true, true, true, true, true, true, false);
|
|
|
|
CWorld::bIncludeDeadPeds = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
target.x = info->m_fRange;
|
|
|
|
target.y = 0.0f;
|
|
|
|
target.z = 0.0f;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-23 16:25:18 -04:00
|
|
|
shooterPed->TransformToNode(target, PED_HANDR);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
ProcessLineOfSight(*fireSource, target, point, victim, m_eWeaponType, shooter, true, true, true, true, true, true, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( shooter == FindPlayerPed() && TheCamera.Cams[0].Using3rdPersonMouseCam() )
|
|
|
|
{
|
|
|
|
CVector src, trgt;
|
|
|
|
TheCamera.Find3rdPersonCamTargetVector(info->m_fRange, *fireSource, src, trgt);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CWorld::bIncludeDeadPeds = true;
|
|
|
|
ProcessLineOfSight(src, trgt,point, victim, m_eWeaponType, shooter, true, true, true, true, true, true, false);
|
|
|
|
CWorld::bIncludeDeadPeds = false;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
int32 rotSpeed = 1;
|
|
|
|
if ( m_eWeaponType == WEAPONTYPE_M16 )
|
|
|
|
rotSpeed = 4;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector bulletPos;
|
|
|
|
if ( CHeli::TestBulletCollision(&src, &trgt, &bulletPos, 4) )
|
|
|
|
{
|
|
|
|
for ( int32 i = 0; i < 16; i++ )
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_SPARK, bulletPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.0f, rotSpeed);
|
2020-04-15 01:03:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
float shooterHeading = RADTODEG(shooter->GetForward().Heading());
|
|
|
|
float shooterAngle = DEGTORAD(shooterHeading);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector2D rotOffset(-Sin(shooterAngle), Cos(shooterAngle));
|
|
|
|
rotOffset.Normalise();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
target = *fireSource;
|
2020-04-25 08:37:58 -04:00
|
|
|
target.x += rotOffset.x * info->m_fRange;
|
|
|
|
target.y += rotOffset.y * info->m_fRange;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooter->IsPed() )
|
|
|
|
DoDoomAiming(shooter, fireSource, &target);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
ProcessLineOfSight(*fireSource, target, point, victim, m_eWeaponType, shooter, true, true, true, true, true, true, false);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
int32 rotSpeed = 1;
|
|
|
|
if ( m_eWeaponType == WEAPONTYPE_M16 )
|
|
|
|
rotSpeed = 4;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector bulletPos;
|
|
|
|
if ( CHeli::TestBulletCollision(fireSource, &target, &bulletPos, 4) )
|
|
|
|
{
|
|
|
|
for ( int32 i = 0; i < 16; i++ )
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_SPARK, bulletPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.0f, rotSpeed);
|
2020-04-15 01:03:53 -04:00
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victim && shooter->IsPed() && victim == ((CPed*)shooter)->m_leader )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
CEventList::RegisterEvent(EVENT_GUNSHOT, EVENT_ENTITY_PED, shooter, (CPed *)shooter, 1000);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooter == FindPlayerPed() )
|
|
|
|
{
|
|
|
|
CStats::InstantHitsFiredByPlayer++;
|
|
|
|
if ( !(CTimer::GetFrameCounter() & 3) )
|
|
|
|
MakePedsJumpAtShot((CPhysical*)shooter, fireSource, &target);
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
switch ( m_eWeaponType )
|
|
|
|
{
|
|
|
|
case WEAPONTYPE_AK47:
|
|
|
|
{
|
|
|
|
static uint8 counter = 0;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( !(++counter & 1) )
|
|
|
|
{
|
|
|
|
CPointLights::AddLight(CPointLights::LIGHT_POINT,
|
|
|
|
*fireSource, CVector(0.0f, 0.0f, 0.0f), 5.0f,
|
|
|
|
1.0f, 0.8f, 0.0f, CPointLights::FOG_NONE, false);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector gunflashPos = *fireSource;
|
|
|
|
gunflashPos += CVector(0.06f*ahead.x, 0.06f*ahead.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.10f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos += CVector(0.06f*ahead.x, 0.06f*ahead.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.08f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos += CVector(0.05f*ahead.x, 0.05f*ahead.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.06f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos += CVector(0.04f*ahead.x, 0.04f*ahead.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.04f);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector gunsmokePos = *fireSource;
|
|
|
|
float rnd = CGeneral::GetRandomNumberInRange(0.05f, 0.25f);
|
|
|
|
CParticle::AddParticle(PARTICLE_GUNSMOKE2, gunsmokePos, CVector(ahead.x*rnd, ahead.y*rnd, 0.0f));
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector gunshellPos = *fireSource;
|
|
|
|
gunshellPos -= CVector(0.5f*ahead.x, 0.5f*ahead.y, 0.0f);
|
|
|
|
CVector dir = CrossProduct(CVector(ahead.x, ahead.y, 0.0f), CVector(0.0f, 0.0f, 5.0f));
|
|
|
|
dir.Normalise2D();
|
|
|
|
AddGunshell(shooter, gunshellPos, CVector2D(dir.x, dir.y), 0.018f);
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
case WEAPONTYPE_M16:
|
|
|
|
{
|
|
|
|
static uint8 counter = 0;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( !(++counter & 1) )
|
|
|
|
{
|
|
|
|
CPointLights::AddLight(CPointLights::LIGHT_POINT,
|
|
|
|
*fireSource, CVector(0.0f, 0.0f, 0.0f), 5.0f,
|
|
|
|
1.0f, 0.8f, 0.0f, CPointLights::FOG_NONE, false);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector gunflashPos = *fireSource;
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.08f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos += CVector(0.06f*ahead.x, 0.06f*ahead.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.06f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos += CVector(0.06f*ahead.x, 0.06f*ahead.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.06f);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos = *fireSource;
|
|
|
|
gunflashPos += CVector(-0.1f*ahead.x, -0.1f*ahead.y, 0.0f);
|
|
|
|
gunflashPos.z += 0.04f;
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.04f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos.z += 0.04f;
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.02f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos.z += 0.03f;
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.02f);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos = *fireSource;
|
|
|
|
gunflashPos += CVector(-0.1f*ahead.x, -0.1f*ahead.y, 0.0f);
|
|
|
|
gunflashPos.z -= 0.04f;
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.04f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos.z -= 0.04f;
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.02f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos.z -= 0.03f;
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.02f);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector offset = CrossProduct(CVector(ahead.x, ahead.y, 0.0f), CVector(0.0f, 0.0f, 5.0f));
|
|
|
|
offset.Normalise2D();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos = *fireSource;
|
|
|
|
gunflashPos += CVector(-0.1f*ahead.x, -0.1f*ahead.y, 0.0f);
|
|
|
|
gunflashPos += CVector(0.06f*offset.x, 0.06f*offset.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.04f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos += CVector(0.04f*offset.x, 0.04f*offset.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.03f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos += CVector(0.03f*offset.x, 0.03f*offset.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.02f);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos = *fireSource;
|
|
|
|
gunflashPos += CVector(-0.1f*ahead.x, -0.1f*ahead.y, 0.0f);
|
|
|
|
gunflashPos -= CVector(0.06f*offset.x, 0.06f*offset.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.04f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos -= CVector(0.04f*offset.x, 0.04f*offset.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.03f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos -= CVector(0.03f*offset.x, 0.03f*offset.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.02f);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector gunsmokePos = *fireSource;
|
|
|
|
float rnd = CGeneral::GetRandomNumberInRange(0.05f, 0.25f);
|
|
|
|
CParticle::AddParticle(PARTICLE_GUNSMOKE2, gunsmokePos, CVector(ahead.x*rnd, ahead.y*rnd, 0.0f));
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector gunshellPos = *fireSource;
|
|
|
|
gunshellPos -= CVector(0.65f*ahead.x, 0.65f*ahead.y, 0.0f);
|
|
|
|
CVector dir = CrossProduct(CVector(ahead.x, ahead.y, 0.0f), CVector(0.0f, 0.0f, 5.0f));
|
|
|
|
dir.Normalise2D();
|
|
|
|
AddGunshell(shooter, gunshellPos, CVector2D(dir.x, dir.y), 0.02f);
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
case WEAPONTYPE_UZI:
|
|
|
|
{
|
|
|
|
CPointLights::AddLight(CPointLights::LIGHT_POINT,
|
|
|
|
*fireSource, CVector(0.0f, 0.0f, 0.0f), 5.0f,
|
|
|
|
1.0f, 0.8f, 0.0f, CPointLights::FOG_NONE, false);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector gunflashPos = *fireSource;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooterMoving )
|
|
|
|
gunflashPos += CVector(1.5f*vel.x, 1.5f*vel.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.07f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos += CVector(0.06f*ahead.x, 0.06f*ahead.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.05f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos += CVector(0.04f*ahead.x, 0.04f*ahead.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.04f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos += CVector(0.04f*ahead.x, 0.04f*ahead.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.03f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos += CVector(0.03f*ahead.x, 0.03f*ahead.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.03f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos += CVector(0.03f*ahead.x, 0.03f*ahead.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.02f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos += CVector(0.02f*ahead.x, 0.02f*ahead.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.01f);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector gunsmokePos = *fireSource;
|
|
|
|
float rnd = CGeneral::GetRandomNumberInRange(0.05f, 0.25f);
|
|
|
|
CParticle::AddParticle(PARTICLE_GUNSMOKE2, gunsmokePos, CVector(ahead.x*rnd, ahead.y*rnd, 0.0f));
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector gunshellPos = *fireSource;
|
|
|
|
gunshellPos -= CVector(0.2f*ahead.x, 0.2f*ahead.y, 0.0f);
|
|
|
|
CVector dir = CrossProduct(CVector(ahead.x, ahead.y, 0.0f), CVector(0.0f, 0.0f, 5.0f));
|
|
|
|
dir.Normalise2D();
|
|
|
|
AddGunshell(shooter, gunshellPos, CVector2D(dir.x, dir.y), 0.015f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
case WEAPONTYPE_COLT45:
|
|
|
|
{
|
|
|
|
CPointLights::AddLight(CPointLights::LIGHT_POINT,
|
|
|
|
*fireSource, CVector(0.0f, 0.0f, 0.0f), 5.0f,
|
|
|
|
1.0f, 0.8f, 0.0f, CPointLights::FOG_NONE, false);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector gunflashPos = *fireSource;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooterMoving )
|
|
|
|
gunflashPos += CVector(1.5f*vel.x, 1.5f*vel.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.06f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos += CVector(0.06f*ahead.x, 0.06f*ahead.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.04f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos += CVector(0.04f*ahead.x, 0.04f*ahead.y, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH_NOANIM, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.02f);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector gunsmokePos = *fireSource;
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNSMOKE2, gunsmokePos, CVector(ahead.x*0.10f, ahead.y*0.10f, 0.0f), nil, 0.005f);
|
|
|
|
CParticle::AddParticle(PARTICLE_GUNSMOKE2, gunsmokePos, CVector(ahead.x*0.15f, ahead.y*0.15f, 0.0f), nil, 0.015f);
|
|
|
|
CParticle::AddParticle(PARTICLE_GUNSMOKE2, gunsmokePos, CVector(ahead.x*0.20f, ahead.y*0.20f, 0.0f), nil, 0.025f);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector gunshellPos = *fireSource;
|
|
|
|
gunshellPos -= CVector(0.2f*ahead.x, 0.2f*ahead.y, 0.0f);
|
|
|
|
CVector dir = CrossProduct(CVector(ahead.x, ahead.y, 0.0f), CVector(0.0f, 0.0f, 5.0f));
|
|
|
|
dir.Normalise2D();
|
|
|
|
AddGunshell(shooter, gunshellPos, CVector2D(dir.x, dir.y), 0.015f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-05-11 19:24:57 -04:00
|
|
|
default: break;
|
2020-04-15 01:03:53 -04:00
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
DoBulletImpact(shooter, victim, fireSource, &target, &point, ahead);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CWeapon::AddGunshell(CEntity *shooter, CVector const &source, CVector2D const &direction, float size)
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(shooter!=nil);
|
|
|
|
|
|
|
|
if ( shooter == nil)
|
2020-04-15 01:03:53 -04:00
|
|
|
return;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector dir(direction.x*0.05f, direction.y*0.05f, CGeneral::GetRandomNumberInRange(0.02f, 0.08f));
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
static CVector prevEntityPosition(0.0f, 0.0f, 0.0f);
|
|
|
|
CVector entityPosition = shooter->GetPosition();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector diff = entityPosition - prevEntityPosition;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( Abs(diff.x)+Abs(diff.y)+Abs(diff.z) > 1.5f )
|
|
|
|
{
|
|
|
|
prevEntityPosition = entityPosition;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNSHELL_FIRST,
|
2020-04-15 12:43:16 -04:00
|
|
|
source, dir, nil, size, CGeneral::GetRandomNumberInRange(-20.0f, 20.0f));
|
2020-04-15 01:03:53 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CParticle::AddParticle(PARTICLE_GUNSHELL,
|
2020-04-15 12:43:16 -04:00
|
|
|
source, dir, nil, size, CGeneral::GetRandomNumberInRange(-20.0f, 20.0f));
|
2020-04-15 01:03:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CWeapon::DoBulletImpact(CEntity *shooter, CEntity *victim,
|
|
|
|
CVector *source, CVector *target, CColPoint *point, CVector2D ahead)
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(shooter!=nil);
|
|
|
|
ASSERT(source!=nil);
|
|
|
|
ASSERT(target!=nil);
|
|
|
|
ASSERT(point!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CWeaponInfo *info = GetInfo();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victim )
|
|
|
|
{
|
|
|
|
CGlass::WasGlassHitByBullet(victim, point->point);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 13:58:28 -04:00
|
|
|
CVector traceTarget = point->point;
|
2020-04-15 01:03:53 -04:00
|
|
|
CBulletTraces::AddTrace(source, &traceTarget);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
|
|
|
if ( shooter != nil )
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
if ( shooter == FindPlayerPed() )
|
|
|
|
{
|
|
|
|
if ( victim->IsPed() || victim->IsVehicle() )
|
|
|
|
CStats::InstantHitsHitByPlayer++;
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victim->IsPed() && ((CPed*)shooter)->m_nPedType != ((CPed*)victim)->m_nPedType || ((CPed*)shooter)->m_nPedType == PEDTYPE_PLAYER2 )
|
|
|
|
{
|
|
|
|
CPed *victimPed = (CPed *)victim;
|
2020-07-01 08:28:43 -04:00
|
|
|
if ( !victimPed->DyingOrDead() && victim != shooter )
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
if ( victimPed->DoesLOSBulletHitPed(*point) )
|
|
|
|
{
|
|
|
|
CVector pos = victimPed->GetPosition();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector2D posOffset(source->x-pos.x, source->y-pos.y);
|
|
|
|
int32 localDir = victimPed->GetLocalDirection(posOffset);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
victimPed->ReactToAttack(shooter);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( !victimPed->IsPedInControl() || victimPed->bIsDucking )
|
|
|
|
{
|
|
|
|
victimPed->InflictDamage(shooter, m_eWeaponType, info->m_nDamage, (ePedPieceTypes)point->pieceB, localDir);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( m_eWeaponType == WEAPONTYPE_SHOTGUN || m_eWeaponType == WEAPONTYPE_HELICANNON )
|
|
|
|
{
|
|
|
|
posOffset.Normalise();
|
|
|
|
victimPed->bIsStanding = false;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
victimPed->ApplyMoveForce(posOffset.x*-5.0f, posOffset.y*-5.0f, 5.0f);
|
|
|
|
victimPed->SetFall(1500, AnimationId(ANIM_KO_SKID_FRONT + localDir), false);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
victimPed->InflictDamage(shooter, m_eWeaponType, info->m_nDamage, (ePedPieceTypes)point->pieceB, localDir);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( victimPed->IsPlayer() )
|
|
|
|
{
|
|
|
|
CPlayerPed *victimPlayer = (CPlayerPed *)victimPed;
|
|
|
|
if ( victimPlayer->m_nHitAnimDelayTimer < CTimer::GetTimeInMilliseconds() )
|
|
|
|
{
|
|
|
|
victimPed->ClearAttackByRemovingAnim();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CAnimBlendAssociation *asoc = CAnimManager::AddAnimation(victimPed->GetClump(), ASSOCGRP_STD, AnimationId(ANIM_SHOT_FRONT_PARTIAL + localDir));
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(asoc!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
asoc->blendAmount = 0.0f;
|
|
|
|
asoc->blendDelta = 8.0f;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( m_eWeaponType == WEAPONTYPE_AK47 || m_eWeaponType == WEAPONTYPE_M16 )
|
|
|
|
victimPlayer->m_nHitAnimDelayTimer = CTimer::GetTimeInMilliseconds() + 2500;
|
|
|
|
else
|
|
|
|
victimPlayer->m_nHitAnimDelayTimer = CTimer::GetTimeInMilliseconds() + 1000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
victimPed->ClearAttackByRemovingAnim();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CAnimBlendAssociation *asoc = CAnimManager::AddAnimation(victimPed->GetClump(), ASSOCGRP_STD, AnimationId(ANIM_SHOT_FRONT_PARTIAL + localDir));
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(asoc!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
asoc->blendAmount = 0.0f;
|
|
|
|
asoc->blendDelta = 8.0f;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
victimPed->InflictDamage(shooter, m_eWeaponType, info->m_nDamage, (ePedPieceTypes)point->pieceB, localDir);
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victimPed->m_nPedType == PEDTYPE_COP )
|
|
|
|
CEventList::RegisterEvent(EVENT_SHOOT_COP, EVENT_ENTITY_PED, victim, (CPed*)shooter, 10000);
|
|
|
|
else
|
|
|
|
CEventList::RegisterEvent(EVENT_SHOOT_PED, EVENT_ENTITY_PED, victim, (CPed*)shooter, 10000);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( CGame::nastyGame )
|
|
|
|
{
|
|
|
|
uint8 bloodAmount = 8;
|
|
|
|
if ( m_eWeaponType == WEAPONTYPE_SHOTGUN || m_eWeaponType == WEAPONTYPE_HELICANNON )
|
|
|
|
bloodAmount = 32;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector dir = (point->point - victim->GetPosition()) * 0.01f;
|
|
|
|
dir.z = 0.01f;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victimPed->GetIsOnScreen() )
|
|
|
|
{
|
|
|
|
for ( uint8 i = 0; i < bloodAmount; i++ )
|
|
|
|
CParticle::AddParticle(PARTICLE_BLOOD_SMALL, point->point, dir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( CGame::nastyGame )
|
|
|
|
{
|
|
|
|
CVector dir = (point->point - victim->GetPosition()) * 0.01f;
|
|
|
|
dir.z = 0.01f;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victim->GetIsOnScreen() )
|
|
|
|
{
|
|
|
|
for ( int32 i = 0; i < 8; i++ )
|
|
|
|
CParticle::AddParticle(PARTICLE_BLOOD_SMALL, point->point + CVector(0.0f, 0.0f, 0.15f), dir);
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victimPed->Dead() )
|
|
|
|
{
|
|
|
|
CAnimBlendAssociation *asoc;
|
2020-05-09 03:50:00 -04:00
|
|
|
if ( RpAnimBlendClumpGetFirstAssociation(victimPed->GetClump(), ASSOC_FRONTAL) )
|
2020-04-15 01:03:53 -04:00
|
|
|
asoc = CAnimManager::BlendAnimation(victimPed->GetClump(), ASSOCGRP_STD, ANIM_FLOOR_HIT_F, 8.0f);
|
|
|
|
else
|
|
|
|
asoc = CAnimManager::BlendAnimation(victimPed->GetClump(), ASSOCGRP_STD, ANIM_FLOOR_HIT, 8.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( asoc )
|
|
|
|
{
|
|
|
|
asoc->SetCurrentTime(0.0f);
|
|
|
|
asoc->flags |= ASSOC_RUNNING;
|
|
|
|
asoc->flags &= ~ASSOC_FADEOUTWHENDONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-04-30 09:45:45 -04:00
|
|
|
switch ( victim->GetType() )
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
case ENTITY_TYPE_BUILDING:
|
|
|
|
{
|
|
|
|
for ( int32 i = 0; i < 16; i++ )
|
|
|
|
CParticle::AddParticle(PARTICLE_SPARK, point->point, point->normal*0.05f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-05-11 21:31:11 -04:00
|
|
|
#ifndef FIX_BUGS
|
|
|
|
CVector dist = point->point - (*source);
|
|
|
|
CVector offset = dist - Max(0.2f * dist.Magnitude(), 2.0f) * CVector(ahead.x, ahead.y, 0.0f);
|
|
|
|
CVector smokePos = *source + offset;
|
|
|
|
#else
|
|
|
|
CVector smokePos = point->point;
|
|
|
|
#endif // !FIX_BUGS
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
smokePos.x += CGeneral::GetRandomNumberInRange(-0.2f, 0.2f);
|
|
|
|
smokePos.y += CGeneral::GetRandomNumberInRange(-0.2f, 0.2f);
|
|
|
|
smokePos.z += CGeneral::GetRandomNumberInRange(-0.2f, 0.2f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_BULLETHIT_SMOKE, smokePos, CVector(0.0f, 0.0f, 0.0f));
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_VEHICLE:
|
|
|
|
{
|
|
|
|
((CVehicle *)victim)->InflictDamage(shooter, m_eWeaponType, info->m_nDamage);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
for ( int32 i = 0; i < 16; i++ )
|
|
|
|
CParticle::AddParticle(PARTICLE_SPARK, point->point, point->normal*0.05f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-05-11 21:31:11 -04:00
|
|
|
#ifndef FIX_BUGS
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector dist = point->point - (*source);
|
2020-04-19 12:34:08 -04:00
|
|
|
CVector offset = dist - Max(0.2f*dist.Magnitude(), 0.5f) * CVector(ahead.x, ahead.y, 0.0f);
|
2020-05-11 21:31:11 -04:00
|
|
|
CVector smokePos = *source + offset;
|
|
|
|
#else
|
|
|
|
CVector smokePos = point->point;
|
|
|
|
#endif // !FIX_BUGS
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_BULLETHIT_SMOKE, smokePos, CVector(0.0f, 0.0f, 0.0f));
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooter->IsPed() )
|
|
|
|
{
|
|
|
|
CPed *shooterPed = (CPed *)shooter;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooterPed->bNotAllowedToDuck )
|
|
|
|
{
|
|
|
|
if ( shooterPed->bKindaStayInSamePlace && victim != shooterPed->m_pPointGunAt )
|
|
|
|
{
|
|
|
|
shooterPed->bKindaStayInSamePlace = false;
|
|
|
|
shooterPed->m_duckAndCoverTimer = CTimer::GetTimeInMilliseconds() + 15000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_OBJECT:
|
|
|
|
{
|
|
|
|
for ( int32 i = 0; i < 8; i++ )
|
|
|
|
CParticle::AddParticle(PARTICLE_SPARK, point->point, point->normal*0.05f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CObject *victimObject = (CObject *)victim;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( !victimObject->bInfiniteMass )
|
|
|
|
{
|
2020-10-18 09:40:06 -04:00
|
|
|
if ( victimObject->GetIsStatic() && victimObject->m_fUprootLimit <= 0.0f )
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
2020-10-18 09:40:06 -04:00
|
|
|
victimObject->SetIsStatic(false);
|
2020-04-15 01:03:53 -04:00
|
|
|
victimObject->AddToMovingList();
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-10-18 09:40:06 -04:00
|
|
|
if ( !victimObject->GetIsStatic())
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
CVector moveForce = point->normal*-4.0f;
|
|
|
|
victimObject->ApplyMoveForce(moveForce.x, moveForce.y, moveForce.z);
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-05-11 19:24:57 -04:00
|
|
|
default: break;
|
2020-04-15 01:03:53 -04:00
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-30 09:45:45 -04:00
|
|
|
switch ( victim->GetType() )
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
case ENTITY_TYPE_BUILDING:
|
|
|
|
{
|
|
|
|
PlayOneShotScriptObject(SCRIPT_SOUND_BULLET_HIT_GROUND_1, point->point);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_VEHICLE:
|
|
|
|
{
|
|
|
|
DMAudio.PlayOneShot(((CPhysical*)victim)->m_audioEntityId, SOUND_WEAPON_HIT_VEHICLE, 1.0f);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_PED:
|
|
|
|
{
|
|
|
|
DMAudio.PlayOneShot(((CPhysical*)victim)->m_audioEntityId, SOUND_WEAPON_HIT_PED, 1.0f);
|
|
|
|
((CPed*)victim)->Say(SOUND_PED_BULLET_HIT);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_OBJECT:
|
|
|
|
{
|
|
|
|
PlayOneShotScriptObject(SCRIPT_SOUND_BULLET_HIT_GROUND_2, point->point);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_DUMMY:
|
|
|
|
{
|
|
|
|
PlayOneShotScriptObject(SCRIPT_SOUND_BULLET_HIT_GROUND_3, point->point);
|
|
|
|
break;
|
|
|
|
}
|
2020-05-11 19:24:57 -04:00
|
|
|
default: break;
|
2020-04-15 01:03:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
CBulletTraces::AddTrace(source, target);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooter == FindPlayerPed() )
|
|
|
|
CPad::GetPad(0)->StartShake_Distance(240, 128, FindPlayerPed()->GetPosition().x, FindPlayerPed()->GetPosition().y, FindPlayerPed()->GetPosition().z);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
BlowUpExplosiveThings(victim);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CWeapon::FireShotgun(CEntity *shooter, CVector *fireSource)
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(shooter!=nil);
|
|
|
|
ASSERT(fireSource!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CWeaponInfo *info = GetInfo();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
float heading = RADTODEG(shooter->GetForward().Heading());
|
|
|
|
float angle = DEGTORAD(heading);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector2D rotOffset(-Sin(angle), Cos(angle));
|
|
|
|
rotOffset.Normalise();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector gunflashPos = *fireSource;
|
|
|
|
gunflashPos += CVector(rotOffset.x*0.1f, rotOffset.y*0.1f, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.0f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos += CVector(rotOffset.x*0.1f, rotOffset.y*0.1f, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.15f);
|
2020-04-15 01:03:53 -04:00
|
|
|
gunflashPos += CVector(rotOffset.x*0.1f, rotOffset.y*0.1f, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH, gunflashPos, CVector(0.0f, 0.0f, 0.0f), nil, 0.2f);
|
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH, *fireSource, CVector(0.0f, 0.0f, 0.0f), nil, 0.0f);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector gunsmokePos = *fireSource;
|
2020-04-15 12:43:16 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNSMOKE2, gunsmokePos, CVector(rotOffset.x*0.10f, rotOffset.y*0.10f, 0.0f), nil, 0.1f);
|
|
|
|
CParticle::AddParticle(PARTICLE_GUNSMOKE2, gunsmokePos, CVector(rotOffset.x*0.15f, rotOffset.y*0.15f, 0.0f), nil, 0.1f);
|
|
|
|
CParticle::AddParticle(PARTICLE_GUNSMOKE2, gunsmokePos, CVector(rotOffset.x*0.20f, rotOffset.y*0.20f, 0.0f), nil, 0.1f);
|
|
|
|
CParticle::AddParticle(PARTICLE_GUNSMOKE2, gunsmokePos, CVector(rotOffset.x*0.25f, rotOffset.y*0.25f, 0.0f), nil, 0.1f);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CEventList::RegisterEvent(EVENT_GUNSHOT, EVENT_ENTITY_PED, shooter, (CPed*)shooter, 1000);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CPointLights::AddLight(CPointLights::LIGHT_POINT, *fireSource, CVector(0.0, 0.0, 0.0), 5.0f,
|
|
|
|
1.0f, 0.8f, 0.0f, CPointLights::FOG_NONE, false);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
float shooterAngle;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
|
|
|
if ( shooter->IsPed() && ((CPed*)shooter)->m_pPointGunAt != nil )
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
CEntity *threatAttack = ((CPed*)shooter)->m_pPointGunAt;
|
|
|
|
shooterAngle = CGeneral::GetAngleBetweenPoints(threatAttack->GetPosition().x, threatAttack->GetPosition().y,
|
|
|
|
(*fireSource).x, (*fireSource).y);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
shooterAngle = RADTODEG(shooter->GetForward().Heading());
|
2020-04-15 12:43:16 -04:00
|
|
|
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
for ( int32 i = 0; i < 5; i++ ) // five shoots at once
|
|
|
|
{
|
|
|
|
float shootAngle = DEGTORAD(7.5f*i + shooterAngle - 15.0f);
|
|
|
|
CVector2D shootRot(-Sin(shootAngle), Cos(shootAngle));
|
2020-10-27 20:10:53 -04:00
|
|
|
shootRot.Normalise();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector source, target;
|
|
|
|
CColPoint point;
|
|
|
|
CEntity *victim;
|
|
|
|
|
|
|
|
if ( shooter == FindPlayerPed() && TheCamera.Cams[0].Using3rdPersonMouseCam() )
|
|
|
|
{
|
|
|
|
TheCamera.Find3rdPersonCamTargetVector(1.0f, *fireSource, source, target);
|
|
|
|
CVector Left = CrossProduct(TheCamera.Cams[TheCamera.ActiveCam].Front, TheCamera.Cams[TheCamera.ActiveCam].Up);
|
|
|
|
|
|
|
|
float f = float(i - 2) * (DEGTORAD(7.5f) / 2);
|
|
|
|
target = f * Left + target - source;
|
|
|
|
target *= info->m_fRange;
|
|
|
|
target += source;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
ProcessLineOfSight(source, target, point, victim, m_eWeaponType, shooter, true, true, true, true, true, true, false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
target = *fireSource;
|
|
|
|
target.x += shootRot.x * info->m_fRange;
|
|
|
|
target.y += shootRot.y * info->m_fRange;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooter->IsPed() )
|
|
|
|
{
|
|
|
|
CPed *shooterPed = (CPed *)shooter;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
|
|
|
if ( shooterPed->m_pPointGunAt == nil )
|
2020-04-15 01:03:53 -04:00
|
|
|
DoDoomAiming(shooter, fireSource, &target);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
float distToTarget = (shooterPed->m_pPointGunAt->GetPosition() - (*fireSource)).Magnitude2D();
|
|
|
|
target.z += info->m_fRange / distToTarget * (shooterPed->m_pPointGunAt->GetPosition().z - target.z);
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
ProcessLineOfSight(*fireSource, target, point, victim, m_eWeaponType, shooter, true, true, true, true, true, true, false);
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victim )
|
|
|
|
{
|
|
|
|
CGlass::WasGlassHitByBullet(victim, point.point);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CBulletTraces::AddTrace(fireSource, &point.point);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victim->IsPed() )
|
|
|
|
{
|
|
|
|
CPed *victimPed = (CPed *)victim;
|
|
|
|
if ( !victimPed->OnGround() && victim != shooter && victimPed->DoesLOSBulletHitPed(point) )
|
|
|
|
{
|
|
|
|
bool cantStandup = true;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector pos = victimPed->GetPosition();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector2D posOffset((*fireSource).x-pos.x, (*fireSource).y-pos.y);
|
|
|
|
int32 localDir = victimPed->GetLocalDirection(posOffset);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
victimPed->ReactToAttack(FindPlayerPed());
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
posOffset.Normalise();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victimPed->m_getUpTimer > (CTimer::GetTimeInMilliseconds() - 3000) )
|
|
|
|
cantStandup = false;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victimPed->bIsStanding && cantStandup )
|
|
|
|
{
|
|
|
|
victimPed->bIsStanding = false;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
victimPed->ApplyMoveForce(posOffset.x*-6.0f, posOffset.y*-6.0f, 5.0f);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
victimPed->ApplyMoveForce(posOffset.x*-2.0f, posOffset.y*-2.0f, 0.0f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( cantStandup )
|
|
|
|
victimPed->SetFall(1500, AnimationId(ANIM_KO_SKID_FRONT + localDir), false);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-05-12 15:48:28 -04:00
|
|
|
victimPed->InflictDamage(shooter, m_eWeaponType, info->m_nDamage, (ePedPieceTypes)point.pieceB, localDir);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victimPed->m_nPedType == PEDTYPE_COP )
|
|
|
|
CEventList::RegisterEvent(EVENT_SHOOT_COP, EVENT_ENTITY_PED, victim, (CPed*)shooter, 10000);
|
|
|
|
else
|
|
|
|
CEventList::RegisterEvent(EVENT_SHOOT_PED, EVENT_ENTITY_PED, victim, (CPed*)shooter, 10000);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( CGame::nastyGame )
|
|
|
|
{
|
|
|
|
uint8 bloodAmount = 8;
|
|
|
|
if ( m_eWeaponType == WEAPONTYPE_SHOTGUN )
|
|
|
|
bloodAmount = 32;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector dir = (point.point - victim->GetPosition()) * 0.01f;
|
|
|
|
dir.z = 0.01f;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victimPed->GetIsOnScreen() )
|
|
|
|
{
|
|
|
|
for ( uint8 i = 0; i < bloodAmount; i++ )
|
|
|
|
CParticle::AddParticle(PARTICLE_BLOOD_SMALL, point.point, dir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2020-04-15 12:43:16 -04:00
|
|
|
{
|
2020-04-30 09:45:45 -04:00
|
|
|
switch ( victim->GetType() )
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
case ENTITY_TYPE_VEHICLE:
|
|
|
|
{
|
|
|
|
((CVehicle *)victim)->InflictDamage(shooter, m_eWeaponType, info->m_nDamage);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
for ( int32 i = 0; i < 16; i++ )
|
|
|
|
CParticle::AddParticle(PARTICLE_SPARK, point.point, point.normal*0.05f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-05-11 21:31:11 -04:00
|
|
|
#ifndef FIX_BUGS
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector dist = point.point - (*fireSource);
|
2020-04-19 12:34:08 -04:00
|
|
|
CVector offset = dist - Max(0.2f*dist.Magnitude(), 2.0f) * CVector(shootRot.x, shootRot.y, 0.0f);
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector smokePos = *fireSource + offset;
|
2020-05-11 21:31:11 -04:00
|
|
|
#else
|
|
|
|
CVector smokePos = point.point;
|
|
|
|
#endif
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_BULLETHIT_SMOKE, smokePos, CVector(0.0f, 0.0f, 0.0f));
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
case ENTITY_TYPE_BUILDING:
|
|
|
|
case ENTITY_TYPE_OBJECT:
|
|
|
|
{
|
|
|
|
for ( int32 i = 0; i < 16; i++ )
|
|
|
|
CParticle::AddParticle(PARTICLE_SPARK, point.point, point.normal*0.05f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-05-11 21:31:11 -04:00
|
|
|
#ifndef FIX_BUGS
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector dist = point.point - (*fireSource);
|
2020-04-19 12:34:08 -04:00
|
|
|
CVector offset = dist - Max(0.2f*dist.Magnitude(), 2.0f) * CVector(shootRot.x, shootRot.y, 0.0f);
|
2020-05-11 21:31:11 -04:00
|
|
|
CVector smokePos = *fireSource + offset;
|
|
|
|
#else
|
|
|
|
CVector smokePos = point.point;
|
|
|
|
#endif
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
smokePos.x += CGeneral::GetRandomNumberInRange(-0.2f, 0.2f);
|
|
|
|
smokePos.y += CGeneral::GetRandomNumberInRange(-0.2f, 0.2f);
|
|
|
|
smokePos.z += CGeneral::GetRandomNumberInRange(-0.2f, 0.2f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_BULLETHIT_SMOKE, smokePos, CVector(0.0f, 0.0f, 0.0f));
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victim->IsObject() )
|
|
|
|
{
|
|
|
|
CObject *victimObject = (CObject *)victim;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( !victimObject->bInfiniteMass )
|
|
|
|
{
|
2020-10-18 09:40:06 -04:00
|
|
|
if ( victimObject->GetIsStatic() && victimObject->m_fUprootLimit <= 0.0f )
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
2020-10-18 09:40:06 -04:00
|
|
|
victimObject->SetIsStatic(false);
|
2020-04-15 01:03:53 -04:00
|
|
|
victimObject->AddToMovingList();
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-10-18 09:40:06 -04:00
|
|
|
if ( !victimObject->GetIsStatic())
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
CVector moveForce = point.normal*-5.0f;
|
|
|
|
victimObject->ApplyMoveForce(moveForce.x, moveForce.y, moveForce.z);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-05-11 19:24:57 -04:00
|
|
|
default: break;
|
2020-04-15 01:03:53 -04:00
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-30 09:45:45 -04:00
|
|
|
switch ( victim->GetType() )
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
case ENTITY_TYPE_BUILDING:
|
|
|
|
{
|
|
|
|
PlayOneShotScriptObject(SCRIPT_SOUND_BULLET_HIT_GROUND_1, point.point);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_VEHICLE:
|
|
|
|
{
|
|
|
|
DMAudio.PlayOneShot(((CPhysical*)victim)->m_audioEntityId, SOUND_WEAPON_HIT_VEHICLE, 1.0f);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_PED:
|
|
|
|
{
|
|
|
|
DMAudio.PlayOneShot(((CPhysical*)victim)->m_audioEntityId, SOUND_WEAPON_HIT_PED, 1.0f);
|
|
|
|
((CPed*)victim)->Say(SOUND_PED_BULLET_HIT);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_OBJECT:
|
|
|
|
{
|
|
|
|
PlayOneShotScriptObject(SCRIPT_SOUND_BULLET_HIT_GROUND_2, point.point);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_DUMMY:
|
|
|
|
{
|
|
|
|
PlayOneShotScriptObject(SCRIPT_SOUND_BULLET_HIT_GROUND_3, point.point);
|
|
|
|
break;
|
|
|
|
}
|
2020-05-11 19:24:57 -04:00
|
|
|
default: break;
|
2020-04-15 01:03:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CVector traceTarget = *fireSource;
|
2020-04-19 12:34:08 -04:00
|
|
|
traceTarget += (target - (*fireSource)) * Min(info->m_fRange, 30.0f) / info->m_fRange;
|
2020-04-15 01:03:53 -04:00
|
|
|
CBulletTraces::AddTrace(fireSource, &traceTarget);
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooter == FindPlayerPed() )
|
|
|
|
CPad::GetPad(0)->StartShake_Distance(240, 128, FindPlayerPed()->GetPosition().x, FindPlayerPed()->GetPosition().y, FindPlayerPed()->GetPosition().z);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CWeapon::FireProjectile(CEntity *shooter, CVector *fireSource, float power)
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(shooter!=nil);
|
|
|
|
ASSERT(fireSource!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector source, target;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( m_eWeaponType == WEAPONTYPE_ROCKETLAUNCHER )
|
|
|
|
{
|
|
|
|
source = *fireSource;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooter->IsPed() && ((CPed*)shooter)->IsPlayer() )
|
|
|
|
{
|
|
|
|
int16 mode = TheCamera.Cams[TheCamera.ActiveCam].Mode;
|
|
|
|
if (!( mode == CCam::MODE_M16_1STPERSON
|
|
|
|
|| mode == CCam::MODE_SNIPER
|
|
|
|
|| mode == CCam::MODE_ROCKETLAUNCHER
|
|
|
|
|| mode == CCam::MODE_M16_1STPERSON_RUNABOUT
|
|
|
|
|| mode == CCam::MODE_SNIPER_RUNABOUT
|
|
|
|
|| mode == CCam::MODE_ROCKETLAUNCHER_RUNABOUT) )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
*fireSource += TheCamera.Cams[TheCamera.ActiveCam].Front;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*fireSource += shooter->GetForward();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
target = *fireSource;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
float dot = DotProduct(*fireSource-shooter->GetPosition(), shooter->GetForward());
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( dot < 0.3f )
|
|
|
|
*fireSource += (0.3f-dot) * shooter->GetForward();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
target = *fireSource;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( target.z - shooter->GetPosition().z > 0.0f )
|
|
|
|
target += 0.6f*shooter->GetForward();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
source = *fireSource - shooter->GetPosition();
|
|
|
|
|
|
|
|
source = *fireSource - DotProduct(source, shooter->GetForward()) * shooter->GetForward();
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( !CWorld::GetIsLineOfSightClear(source, target, true, true, false, true, false, false, false) )
|
|
|
|
{
|
|
|
|
if ( m_eWeaponType != WEAPONTYPE_GRENADE )
|
|
|
|
CProjectileInfo::RemoveNotAdd(shooter, m_eWeaponType, *fireSource);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( shooter->IsPed() )
|
|
|
|
{
|
|
|
|
source = shooter->GetPosition() - shooter->GetForward();
|
|
|
|
source.z -= 0.4f;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
|
|
|
if ( !CWorld::TestSphereAgainstWorld(source, 0.5f, nil, false, false, true, false, false, false) )
|
2020-04-15 01:03:53 -04:00
|
|
|
CProjectileInfo::AddProjectile(shooter, m_eWeaponType, source, 0.0f);
|
|
|
|
else
|
|
|
|
CProjectileInfo::RemoveNotAdd(shooter, m_eWeaponType, *fireSource);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
CProjectileInfo::AddProjectile(shooter, m_eWeaponType, *fireSource, power);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CWeapon::GenerateFlameThrowerParticles(CVector pos, CVector dir)
|
|
|
|
{
|
|
|
|
dir *= 0.7f;
|
|
|
|
CParticle::AddParticle(PARTICLE_FIREBALL, pos, dir);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
dir *= 0.7f;
|
|
|
|
CParticle::AddParticle(PARTICLE_FIREBALL, pos, dir);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
dir *= 0.7f;
|
|
|
|
CParticle::AddParticle(PARTICLE_FIREBALL, pos, dir);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
dir *= 0.7f;
|
|
|
|
CParticle::AddParticle(PARTICLE_FIREBALL, pos, dir);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
dir *= 0.7f;
|
|
|
|
CParticle::AddParticle(PARTICLE_FIREBALL, pos, dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CWeapon::FireAreaEffect(CEntity *shooter, CVector *fireSource)
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(shooter!=nil);
|
|
|
|
ASSERT(fireSource!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CWeaponInfo *info = GetInfo();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
float heading = RADTODEG(shooter->GetForward().Heading());
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector source;
|
|
|
|
CVector target;
|
|
|
|
CVector dir;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooter == FindPlayerPed() && TheCamera.Cams[0].Using3rdPersonMouseCam() )
|
|
|
|
{
|
|
|
|
TheCamera.Find3rdPersonCamTargetVector(info->m_fRange, *fireSource, source, target);
|
|
|
|
float norm = (1.0f / info->m_fRange);
|
2020-04-15 12:43:16 -04:00
|
|
|
dir = (target - source) * norm;
|
2020-04-15 01:03:53 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
float angle = DEGTORAD(heading);
|
|
|
|
dir = CVector(-Sin(angle)*0.5f, Cos(angle)*0.5f, 0.0f);
|
|
|
|
target = *fireSource + dir;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CShotInfo::AddShot(shooter, m_eWeaponType, *fireSource, target);
|
|
|
|
CWeapon::GenerateFlameThrowerParticles(*fireSource, dir);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CWeapon::FireSniper(CEntity *shooter)
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(shooter!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
int16 mode = TheCamera.Cams[TheCamera.ActiveCam].Mode;
|
|
|
|
if (!( mode == CCam::MODE_M16_1STPERSON
|
|
|
|
|| mode == CCam::MODE_SNIPER
|
|
|
|
|| mode == CCam::MODE_ROCKETLAUNCHER
|
|
|
|
|| mode == CCam::MODE_M16_1STPERSON_RUNABOUT
|
|
|
|
|| mode == CCam::MODE_SNIPER_RUNABOUT
|
|
|
|
|| mode == CCam::MODE_ROCKETLAUNCHER_RUNABOUT) )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
#ifndef FIX_BUGS
|
|
|
|
CWeaponInfo *info = GetInfo(); //unused
|
|
|
|
#endif
|
|
|
|
|
|
|
|
CCam *cam = &TheCamera.Cams[TheCamera.ActiveCam];
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(cam!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector source = cam->Source;
|
|
|
|
CVector dir = cam->Front;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( DotProduct(dir, CVector(0.0f, -0.9894f, 0.145f)) > 0.997f )
|
|
|
|
CCoronas::bSmallMoon = !CCoronas::bSmallMoon;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
dir.Normalise();
|
|
|
|
dir *= 16.0f;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CBulletInfo::AddBullet(shooter, m_eWeaponType, source, dir);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooter == FindPlayerPed() )
|
2020-04-15 01:13:46 -04:00
|
|
|
CStats::InstantHitsFiredByPlayer++;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooter == FindPlayerPed() )
|
|
|
|
{
|
|
|
|
CPad::GetPad(0)->StartShake_Distance(240, 128,
|
|
|
|
FindPlayerPed()->GetPosition().x,
|
|
|
|
FindPlayerPed()->GetPosition().y,
|
|
|
|
FindPlayerPed()->GetPosition().z);
|
|
|
|
|
|
|
|
CamShakeNoPos(&TheCamera, 0.2f);
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CWeapon::FireM16_1stPerson(CEntity *shooter)
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(shooter!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
int16 mode = TheCamera.Cams[TheCamera.ActiveCam].Mode;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if (!( mode == CCam::MODE_M16_1STPERSON
|
|
|
|
|| mode == CCam::MODE_SNIPER
|
|
|
|
|| mode == CCam::MODE_ROCKETLAUNCHER
|
|
|
|
|| mode == CCam::MODE_M16_1STPERSON_RUNABOUT
|
|
|
|
|| mode == CCam::MODE_SNIPER_RUNABOUT
|
|
|
|
|| mode == CCam::MODE_ROCKETLAUNCHER_RUNABOUT
|
|
|
|
|| mode == CCam::MODE_HELICANNON_1STPERSON) )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CWeaponInfo *info = GetInfo();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CColPoint point;
|
|
|
|
CEntity *victim;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CWorld::bIncludeCarTyres = true;
|
|
|
|
CWorld::pIgnoreEntity = shooter;
|
|
|
|
CWorld::bIncludeDeadPeds = true;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CCam *cam = &TheCamera.Cams[TheCamera.ActiveCam];
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(cam!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector source = cam->Source;
|
|
|
|
CVector target = cam->Front*info->m_fRange + source;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
ProcessLineOfSight(source, target, point, victim, m_eWeaponType, shooter, true, true, true, true, true, true, false);
|
|
|
|
CWorld::bIncludeDeadPeds = false;
|
2020-04-15 12:43:16 -04:00
|
|
|
CWorld::pIgnoreEntity = nil;
|
2020-04-15 01:03:53 -04:00
|
|
|
CWorld::bIncludeCarTyres = false;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector2D front(cam->Front.x, cam->Front.y);
|
|
|
|
front.Normalise();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
DoBulletImpact(shooter, victim, &source, &target, &point, front);
|
|
|
|
|
|
|
|
CVector bulletPos;
|
|
|
|
if ( CHeli::TestBulletCollision(&source, &target, &bulletPos, 4) )
|
|
|
|
{
|
|
|
|
for ( int32 i = 0; i < 16; i++ )
|
|
|
|
CParticle::AddParticle(PARTICLE_SPARK, bulletPos, CVector(0.0f, 0.0f, 0.0f));
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooter == FindPlayerPed() )
|
|
|
|
{
|
2020-09-26 06:30:22 -04:00
|
|
|
#ifdef FIX_BUGS
|
|
|
|
CStats::InstantHitsFiredByPlayer++;
|
|
|
|
#endif
|
2020-04-15 01:03:53 -04:00
|
|
|
CPad::GetPad(0)->StartShake_Distance(240, 128, FindPlayerPed()->GetPosition().x, FindPlayerPed()->GetPosition().y, FindPlayerPed()->GetPosition().z);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( m_eWeaponType == WEAPONTYPE_M16 )
|
|
|
|
{
|
|
|
|
TheCamera.Cams[TheCamera.ActiveCam].Beta += float((CGeneral::GetRandomNumber() & 127) - 64) * 0.0003f;
|
|
|
|
TheCamera.Cams[TheCamera.ActiveCam].Alpha += float((CGeneral::GetRandomNumber() & 127) - 64) * 0.0003f;
|
|
|
|
}
|
|
|
|
else if ( m_eWeaponType == WEAPONTYPE_HELICANNON )
|
|
|
|
{
|
|
|
|
TheCamera.Cams[TheCamera.ActiveCam].Beta += float((CGeneral::GetRandomNumber() & 127) - 64) * 0.0001f;
|
|
|
|
TheCamera.Cams[TheCamera.ActiveCam].Alpha += float((CGeneral::GetRandomNumber() & 127) - 64) * 0.0001f;
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CWeapon::FireInstantHitFromCar(CAutomobile *shooter, bool left)
|
|
|
|
{
|
|
|
|
CWeaponInfo *info = GetInfo();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVehicleModelInfo *modelInfo = shooter->GetModelInfo();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector source, target;
|
|
|
|
if ( left )
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
source = shooter->GetMatrix() * CVector(-shooter->GetColModel()->boundingBox.max.x + -0.2f,
|
2020-06-02 17:34:53 -04:00
|
|
|
float(CGeneral::GetRandomNumber() & 255) * 0.001f + modelInfo->GetFrontSeatPosn().y,
|
|
|
|
modelInfo->GetFrontSeatPosn().z + 0.5f);
|
2020-04-15 01:03:53 -04:00
|
|
|
source += CTimer::GetTimeStep() * shooter->m_vecMoveSpeed;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
target = shooter->GetMatrix() * CVector(-info->m_fRange,
|
2020-06-02 17:34:53 -04:00
|
|
|
modelInfo->GetFrontSeatPosn().y,
|
|
|
|
modelInfo->GetFrontSeatPosn().z + 0.5f);
|
2020-04-15 01:03:53 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
source = shooter->GetMatrix() * CVector(shooter->GetColModel()->boundingBox.max.x + 0.2f,
|
2020-06-02 17:34:53 -04:00
|
|
|
float(CGeneral::GetRandomNumber() & 255) * 0.001f + modelInfo->GetFrontSeatPosn().y,
|
|
|
|
modelInfo->GetFrontSeatPosn().z + 0.5f);
|
2020-04-15 01:03:53 -04:00
|
|
|
source += CTimer::GetTimeStep() * shooter->m_vecMoveSpeed;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
target = shooter->GetMatrix() * CVector(info->m_fRange,
|
2020-06-02 17:34:53 -04:00
|
|
|
modelInfo->GetFrontSeatPosn().y,
|
|
|
|
modelInfo->GetFrontSeatPosn().z + 0.5f);
|
2020-04-15 01:03:53 -04:00
|
|
|
}
|
|
|
|
#undef FRONTSEATPOS
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( TheCamera.GetLookingLRBFirstPerson() && !left )
|
|
|
|
{
|
|
|
|
source -= 0.3f * shooter->GetForward();
|
|
|
|
target -= 0.3f * shooter->GetForward();
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
target += CVector(float(CGeneral::GetRandomNumber()&255)*0.01f-1.28f,
|
|
|
|
float(CGeneral::GetRandomNumber()&255)*0.01f-1.28f,
|
|
|
|
float(CGeneral::GetRandomNumber()&255)*0.01f-1.28f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
DoDriveByAutoAiming(FindPlayerPed(), &source, &target);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CEventList::RegisterEvent(EVENT_GUNSHOT, EVENT_ENTITY_PED, FindPlayerPed(), FindPlayerPed(), 1000);
|
|
|
|
|
|
|
|
if ( !TheCamera.GetLookingLRBFirstPerson() )
|
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH, source, CVector(0.0f, 0.0f, 0.0f));
|
|
|
|
else
|
|
|
|
CamShakeNoPos(&TheCamera, 0.01f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CEventList::RegisterEvent(EVENT_GUNSHOT, EVENT_ENTITY_VEHICLE, shooter, FindPlayerPed(), 1000);
|
|
|
|
|
|
|
|
CPointLights::AddLight(CPointLights::LIGHT_POINT, source, CVector(0.0f, 0.0f, 0.0f), 5.0f,
|
|
|
|
1.0f, 0.8f, 0.0f, CPointLights::FOG_NONE, false);
|
|
|
|
|
|
|
|
CColPoint point;
|
|
|
|
CEntity *victim;
|
|
|
|
ProcessLineOfSight(source, target, point, victim, m_eWeaponType, shooter, true, true, true, true, true, true, false);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( !(CTimer::GetFrameCounter() & 3) )
|
|
|
|
MakePedsJumpAtShot(shooter, &source, &target);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victim )
|
|
|
|
{
|
|
|
|
CVector traceTarget = point.point;
|
|
|
|
CBulletTraces::AddTrace(&source, &traceTarget);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victim->IsPed() )
|
|
|
|
{
|
|
|
|
CPed *victimPed = (CPed*)victim;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( !victimPed->DyingOrDead() && victim != (CEntity *)shooter )
|
|
|
|
{
|
|
|
|
CVector pos = victimPed->GetPosition();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector2D posOffset(source.x-pos.x, source.y-pos.y);
|
|
|
|
int32 localDir = victimPed->GetLocalDirection(posOffset);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
victimPed->ReactToAttack(FindPlayerPed());
|
|
|
|
victimPed->ClearAttackByRemovingAnim();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CAnimBlendAssociation *asoc = CAnimManager::AddAnimation(victimPed->GetClump(), ASSOCGRP_STD, AnimationId(ANIM_SHOT_FRONT_PARTIAL + localDir));
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(asoc!=nil);
|
2020-04-15 01:03:53 -04:00
|
|
|
asoc->blendAmount = 0.0f;
|
|
|
|
asoc->blendDelta = 8.0f;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
victimPed->InflictDamage(shooter, WEAPONTYPE_UZI_DRIVEBY, 3*info->m_nDamage, (ePedPieceTypes)point.pieceB, localDir);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
pos.z += 0.8f;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victimPed->GetIsOnScreen() )
|
|
|
|
{
|
|
|
|
if ( CGame::nastyGame )
|
|
|
|
{
|
|
|
|
for ( int32 i = 0; i < 4; i++ )
|
|
|
|
{
|
|
|
|
CVector dir;
|
|
|
|
dir.x = CGeneral::GetRandomNumberInRange(-0.1f, 0.1f);
|
|
|
|
dir.y = CGeneral::GetRandomNumberInRange(-0.1f, 0.1f);
|
|
|
|
dir.z = CGeneral::GetRandomNumberInRange(-0.1f, 0.1f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_BLOOD, pos, dir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victimPed->m_nPedType == PEDTYPE_COP )
|
|
|
|
CEventList::RegisterEvent(EVENT_SHOOT_COP, EVENT_ENTITY_PED, victimPed, FindPlayerPed(), 10000);
|
|
|
|
else
|
|
|
|
CEventList::RegisterEvent(EVENT_SHOOT_PED, EVENT_ENTITY_PED, victimPed, FindPlayerPed(), 10000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( victim->IsVehicle() )
|
|
|
|
((CVehicle *)victim)->InflictDamage(FindPlayerPed(), WEAPONTYPE_UZI_DRIVEBY, info->m_nDamage);
|
|
|
|
else
|
|
|
|
CGlass::WasGlassHitByBullet(victim, point.point);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-30 09:45:45 -04:00
|
|
|
switch ( victim->GetType() )
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
case ENTITY_TYPE_BUILDING:
|
|
|
|
{
|
|
|
|
PlayOneShotScriptObject(SCRIPT_SOUND_BULLET_HIT_GROUND_1, point.point);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_VEHICLE:
|
|
|
|
{
|
|
|
|
DMAudio.PlayOneShot(((CPhysical*)victim)->m_audioEntityId, SOUND_WEAPON_HIT_VEHICLE, 1.0f);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_PED:
|
|
|
|
{
|
|
|
|
DMAudio.PlayOneShot(((CPhysical*)victim)->m_audioEntityId, SOUND_WEAPON_HIT_PED, 1.0f);
|
|
|
|
((CPed*)victim)->Say(SOUND_PED_BULLET_HIT);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_OBJECT:
|
|
|
|
{
|
|
|
|
PlayOneShotScriptObject(SCRIPT_SOUND_BULLET_HIT_GROUND_2, point.point);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_DUMMY:
|
|
|
|
{
|
|
|
|
PlayOneShotScriptObject(SCRIPT_SOUND_BULLET_HIT_GROUND_3, point.point);
|
|
|
|
break;
|
|
|
|
}
|
2020-05-11 19:24:57 -04:00
|
|
|
default: break;
|
2020-04-15 01:03:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
float norm = 30.0f/info->m_fRange;
|
|
|
|
CVector traceTarget = (target-source)*norm + source;
|
|
|
|
CBulletTraces::AddTrace(&source, &traceTarget);
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooter == FindPlayerVehicle() )
|
|
|
|
CPad::GetPad(0)->StartShake_Distance(240, 128, FindPlayerVehicle()->GetPosition().x, FindPlayerVehicle()->GetPosition().y, FindPlayerVehicle()->GetPosition().z);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CWeapon::DoDoomAiming(CEntity *shooter, CVector *source, CVector *target)
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(shooter!=nil);
|
|
|
|
ASSERT(source!=nil);
|
|
|
|
ASSERT(target !=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
#ifndef FIX_BUGS
|
|
|
|
CEntity entity; // unused
|
|
|
|
#endif
|
|
|
|
|
|
|
|
CPed *shooterPed = (CPed*)shooter;
|
|
|
|
if ( shooterPed->IsPed() && shooterPed->bCrouchWhenShooting )
|
|
|
|
return;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
int16 lastEntity;
|
|
|
|
CEntity *entities[16];
|
|
|
|
CWorld::FindObjectsInRange(*source, (*target-*source).Magnitude(), true, &lastEntity, 15, entities, false, true, true, false, false);
|
|
|
|
|
|
|
|
float closestEntityDist = 10000.0f;
|
|
|
|
int16 closestEntity;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
for ( int32 i = 0; i < lastEntity; i++ )
|
|
|
|
{
|
|
|
|
CEntity *victim = entities[i];
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(victim!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( (CEntity*)shooterPed != victim && shooterPed->CanSeeEntity(victim, DEGTORAD(22.5f)) )
|
|
|
|
{
|
2020-04-30 09:45:45 -04:00
|
|
|
if ( !(victim->GetStatus() == STATUS_TRAIN_MOVING
|
|
|
|
|| victim->GetStatus() == STATUS_TRAIN_NOT_MOVING
|
|
|
|
|| victim->GetStatus() == STATUS_HELI
|
|
|
|
|| victim->GetStatus() == STATUS_PLANE) )
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
float distToVictim = (shooterPed->GetPosition()-victim->GetPosition()).Magnitude2D();
|
|
|
|
float distToVictimZ = Abs(shooterPed->GetPosition().z-victim->GetPosition().z);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( 1.5f*distToVictimZ < distToVictim )
|
|
|
|
{
|
|
|
|
float entityDist = Sqrt(SQR(distToVictim) + SQR(distToVictimZ));
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( entityDist < closestEntityDist )
|
|
|
|
{
|
|
|
|
closestEntityDist = entityDist;
|
|
|
|
closestEntity = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( closestEntityDist < DOOMAUTOAIMING_MAXDIST )
|
|
|
|
{
|
|
|
|
CEntity *victim = entities[closestEntity];
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(victim !=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
float distToTarget = (*target - *source).Magnitude2D();
|
|
|
|
float distToSource = (victim->GetPosition() - *source).Magnitude2D();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
float victimZ = victim->GetPosition().z + 0.3f;
|
|
|
|
if ( victim->IsPed() )
|
|
|
|
{
|
|
|
|
if ( ((CPed*)victim)->bIsDucking )
|
|
|
|
victimZ -= 0.8f;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
(*target).z = (distToTarget / distToSource) * (victimZ - (*source).z) + (*source).z;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CWeapon::DoTankDoomAiming(CEntity *shooter, CEntity *driver, CVector *source, CVector *target)
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(shooter!=nil);
|
|
|
|
ASSERT(driver!=nil);
|
|
|
|
ASSERT(source!=nil);
|
|
|
|
ASSERT(target!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
#ifndef FIX_BUGS
|
|
|
|
CEntity entity; // unused
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int16 lastEntity;
|
|
|
|
CEntity *entities[16];
|
|
|
|
CWorld::FindObjectsInRange(*source, (*target-*source).Magnitude(), true, &lastEntity, 15, entities, false, true, false, false, false);
|
|
|
|
|
|
|
|
float closestEntityDist = 10000.0f;
|
|
|
|
int16 closestEntity;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
float normZ = (target->z - source->z) / (*target-*source).Magnitude();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
for ( int32 i = 0; i < lastEntity; i++ )
|
|
|
|
{
|
|
|
|
CEntity *victim = entities[i];
|
2020-04-15 12:43:16 -04:00
|
|
|
|
|
|
|
ASSERT(victim!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooter != victim && driver != victim )
|
2020-04-15 12:43:16 -04:00
|
|
|
{
|
2020-04-30 09:45:45 -04:00
|
|
|
if ( !(victim->GetStatus() == STATUS_TRAIN_MOVING
|
|
|
|
|| victim->GetStatus() == STATUS_TRAIN_NOT_MOVING
|
|
|
|
|| victim->GetStatus() == STATUS_HELI
|
|
|
|
|| victim->GetStatus() == STATUS_PLANE) )
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
if ( !(victim->IsVehicle() && victim->bRenderScorched) )
|
|
|
|
{
|
|
|
|
float distToVictim = (shooter->GetPosition()-victim->GetPosition()).Magnitude2D();
|
|
|
|
float distToVictimZ = Abs(shooter->GetPosition().z - (distToVictim*normZ + victim->GetPosition().z));
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( 3.0f*distToVictimZ < distToVictim )
|
|
|
|
{
|
2020-04-19 12:34:08 -04:00
|
|
|
CVector tmp = CVector(victim->GetPosition().x, victim->GetPosition().y, 0.0f);
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( CCollision::DistToLine(source, target,
|
2020-04-19 12:34:08 -04:00
|
|
|
&tmp) < victim->GetBoundRadius()*3.0f )
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
float vehicleDist = Sqrt(SQR(distToVictim) + SQR(distToVictimZ));
|
|
|
|
if ( vehicleDist < closestEntityDist )
|
|
|
|
{
|
|
|
|
closestEntityDist = vehicleDist;
|
|
|
|
closestEntity = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( closestEntityDist < DOOMAUTOAIMING_MAXDIST )
|
|
|
|
{
|
|
|
|
CEntity *victim = entities[closestEntity];
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(victim!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
float distToTarget = (*target - *source).Magnitude2D();
|
|
|
|
float distToSource = (victim->GetPosition() - *source).Magnitude2D();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
(*target).z = (distToTarget / distToSource) * (0.3f + victim->GetPosition().z - (*source).z) + (*source).z;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CWeapon::DoDriveByAutoAiming(CEntity *shooter, CVector *source, CVector *target)
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(shooter!=nil);
|
|
|
|
ASSERT(source!=nil);
|
|
|
|
ASSERT(target!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
#ifndef FIX_BUGS
|
|
|
|
CEntity entity; // unused
|
|
|
|
#endif
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CPed *shooterPed = (CPed*)shooter;
|
|
|
|
if ( shooterPed->IsPed() && shooterPed->bCrouchWhenShooting )
|
|
|
|
return;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
int16 lastEntity;
|
|
|
|
CEntity *entities[16];
|
|
|
|
CWorld::FindObjectsInRange(*source, (*target-*source).Magnitude(), true, &lastEntity, 15, entities, false, false, true, false, false);
|
|
|
|
|
|
|
|
float closestEntityDist = 10000.0f;
|
|
|
|
int16 closestEntity;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
for ( int32 i = 0; i < lastEntity; i++ )
|
|
|
|
{
|
|
|
|
CEntity *victim = entities[i];
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(victim!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( shooter != victim )
|
|
|
|
{
|
|
|
|
float lineDist = CCollision::DistToLine(source, target, &victim->GetPosition());
|
|
|
|
float distToVictim = (victim->GetPosition() - shooter->GetPosition()).Magnitude();
|
|
|
|
float pedDist = 0.15f*distToVictim + lineDist;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( DotProduct((*target-*source), victim->GetPosition()-*source) > 0.0f && pedDist < closestEntityDist)
|
|
|
|
{
|
|
|
|
closestEntity = i;
|
|
|
|
closestEntityDist = pedDist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( closestEntityDist < DRIVEBYAUTOAIMING_MAXDIST )
|
|
|
|
{
|
|
|
|
CEntity *victim = entities[closestEntity];
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(victim!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
float distToTarget = (*source - *target).Magnitude();
|
|
|
|
float distToSource = (*source - victim->GetPosition()).Magnitude();
|
|
|
|
*target = (distToTarget / distToSource) * (victim->GetPosition() - *source) + *source;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-30 17:50:40 -04:00
|
|
|
void
|
|
|
|
CWeapon::Reload(void)
|
|
|
|
{
|
|
|
|
if (m_nAmmoTotal == 0)
|
|
|
|
return;
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CWeaponInfo *info = GetInfo();
|
2019-06-30 17:50:40 -04:00
|
|
|
|
|
|
|
if (m_nAmmoTotal >= info->m_nAmountofAmmunition)
|
|
|
|
m_nAmmoInClip = info->m_nAmountofAmmunition;
|
|
|
|
else
|
|
|
|
m_nAmmoInClip = m_nAmmoTotal;
|
|
|
|
}
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
void
|
|
|
|
CWeapon::Update(int32 audioEntity)
|
2019-07-15 08:11:40 -04:00
|
|
|
{
|
2020-04-15 01:03:53 -04:00
|
|
|
switch ( m_eWeaponState )
|
|
|
|
{
|
|
|
|
case WEAPONSTATE_MELEE_MADECONTACT:
|
|
|
|
{
|
|
|
|
m_eWeaponState = WEAPONSTATE_READY;
|
|
|
|
break;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
case WEAPONSTATE_FIRING:
|
|
|
|
{
|
|
|
|
if ( m_eWeaponType == WEAPONTYPE_SHOTGUN && AEHANDLE_IS_OK(audioEntity) )
|
|
|
|
{
|
|
|
|
uint32 timePassed = m_nTimer - gReloadSampleTime[WEAPONTYPE_SHOTGUN];
|
|
|
|
if ( CTimer::GetPreviousTimeInMilliseconds() < timePassed && CTimer::GetTimeInMilliseconds() >= timePassed )
|
|
|
|
DMAudio.PlayOneShot(audioEntity, SOUND_WEAPON_RELOAD, 0.0f);
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( CTimer::GetTimeInMilliseconds() > m_nTimer )
|
|
|
|
{
|
|
|
|
if ( GetInfo()->m_eWeaponFire != WEAPON_FIRE_MELEE && m_nAmmoTotal == 0 )
|
|
|
|
m_eWeaponState = WEAPONSTATE_OUT_OF_AMMO;
|
|
|
|
else
|
|
|
|
m_eWeaponState = WEAPONSTATE_READY;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
case WEAPONSTATE_RELOADING:
|
|
|
|
{
|
|
|
|
if ( AEHANDLE_IS_OK(audioEntity) && m_eWeaponType < WEAPONTYPE_LAST_WEAPONTYPE )
|
|
|
|
{
|
|
|
|
uint32 timePassed = m_nTimer - gReloadSampleTime[m_eWeaponType];
|
|
|
|
if ( CTimer::GetPreviousTimeInMilliseconds() < timePassed && CTimer::GetTimeInMilliseconds() >= timePassed )
|
|
|
|
DMAudio.PlayOneShot(audioEntity, SOUND_WEAPON_RELOAD, 0.0f);
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( CTimer::GetTimeInMilliseconds() > m_nTimer )
|
|
|
|
{
|
|
|
|
Reload();
|
|
|
|
m_eWeaponState = WEAPONSTATE_READY;
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2020-05-11 19:24:57 -04:00
|
|
|
default: break;
|
2020-04-15 01:03:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
FireOneInstantHitRound(CVector *source, CVector *target, int32 damage)
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(source!=nil);
|
|
|
|
ASSERT(target!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_GUNFLASH, *source, CVector(0.0f, 0.0f, 0.0f));
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CPointLights::AddLight(CPointLights::LIGHT_POINT,
|
|
|
|
*source, CVector(0.0f, 0.0f, 0.0f), 5.0f,
|
|
|
|
1.0f, 0.8f, 0.0f, CPointLights::FOG_NONE, false);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CColPoint point;
|
|
|
|
CEntity *victim;
|
|
|
|
CWorld::ProcessLineOfSight(*source, *target, point, victim, true, true, true, true, true, true, false);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 14:29:00 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_HELI_ATTACK, *source, ((*target) - (*source)) * 0.15f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victim )
|
|
|
|
{
|
|
|
|
if ( victim->IsPed() )
|
|
|
|
{
|
|
|
|
CPed *victimPed = (CPed *)victim;
|
|
|
|
if ( !victimPed->DyingOrDead() )
|
|
|
|
{
|
|
|
|
CVector pos = victimPed->GetPosition();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector2D posOffset((*source).x-pos.x, (*source).y-pos.y);
|
|
|
|
int32 localDir = victimPed->GetLocalDirection(posOffset);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
victimPed->ClearAttackByRemovingAnim();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CAnimBlendAssociation *asoc = CAnimManager::AddAnimation(victimPed->GetClump(), ASSOCGRP_STD, AnimationId(ANIM_SHOT_FRONT_PARTIAL + localDir));
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(asoc!=nil);
|
2020-04-15 01:03:53 -04:00
|
|
|
asoc->blendAmount = 0.0f;
|
|
|
|
asoc->blendDelta = 8.0f;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
|
|
|
victimPed->InflictDamage(nil, WEAPONTYPE_UZI, damage, (ePedPieceTypes)point.pieceB, localDir);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
pos.z += 0.8f;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( victimPed->GetIsOnScreen() )
|
|
|
|
{
|
|
|
|
if ( CGame::nastyGame )
|
|
|
|
{
|
|
|
|
for ( int32 i = 0; i < 4; i++ )
|
|
|
|
{
|
|
|
|
CVector dir;
|
|
|
|
dir.x = CGeneral::GetRandomNumberInRange(-0.1f, 0.1f);
|
|
|
|
dir.y = CGeneral::GetRandomNumberInRange(-0.1f, 0.1f);
|
|
|
|
dir.z = CGeneral::GetRandomNumberInRange(-0.1f, 0.1f);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CParticle::AddParticle(PARTICLE_BLOOD, pos, dir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( victim->IsVehicle() )
|
2020-04-15 12:43:16 -04:00
|
|
|
((CVehicle *)victim)->InflictDamage(nil, WEAPONTYPE_UZI, damage);
|
2020-04-15 01:03:53 -04:00
|
|
|
//BUG ? no CGlass::WasGlassHitByBullet
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-30 09:45:45 -04:00
|
|
|
switch ( victim->GetType() )
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
|
|
|
case ENTITY_TYPE_BUILDING:
|
|
|
|
{
|
|
|
|
PlayOneShotScriptObject(SCRIPT_SOUND_BULLET_HIT_GROUND_1, point.point);
|
|
|
|
CParticle::AddParticle(PARTICLE_SMOKE, point.point, CVector(0.0f, 0.0f, 0.01f));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_VEHICLE:
|
|
|
|
{
|
|
|
|
DMAudio.PlayOneShot(((CPhysical*)victim)->m_audioEntityId, SOUND_WEAPON_HIT_VEHICLE, 1.0f);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_PED:
|
|
|
|
{
|
|
|
|
DMAudio.PlayOneShot(((CPhysical*)victim)->m_audioEntityId, SOUND_WEAPON_HIT_PED, 1.0f);
|
|
|
|
((CPed*)victim)->Say(SOUND_PED_BULLET_HIT);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_OBJECT:
|
|
|
|
{
|
|
|
|
PlayOneShotScriptObject(SCRIPT_SOUND_BULLET_HIT_GROUND_2, point.point);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ENTITY_TYPE_DUMMY:
|
|
|
|
{
|
|
|
|
PlayOneShotScriptObject(SCRIPT_SOUND_BULLET_HIT_GROUND_3, point.point);
|
|
|
|
break;
|
|
|
|
}
|
2020-05-11 19:24:57 -04:00
|
|
|
default: break;
|
2020-04-15 01:03:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
float waterLevel;
|
|
|
|
if ( CWaterLevel::GetWaterLevel((*target).x, (*target).y, (*target).z + 10.0f, &waterLevel, false) )
|
|
|
|
{
|
|
|
|
CParticle::AddParticle(PARTICLE_BOAT_SPLASH, CVector((*target).x, (*target).y, waterLevel), CVector(0.0f, 0.0f, 0.01f));
|
|
|
|
PlayOneShotScriptObject(SCRIPT_SOUND_BULLET_HIT_WATER, point.point); // no sound(empty)
|
|
|
|
}
|
|
|
|
}
|
2019-07-15 08:11:40 -04:00
|
|
|
}
|
|
|
|
|
2019-07-05 18:44:49 -04:00
|
|
|
bool
|
|
|
|
CWeapon::IsTypeMelee(void)
|
|
|
|
{
|
|
|
|
return m_eWeaponType == WEAPONTYPE_UNARMED || m_eWeaponType == WEAPONTYPE_BASEBALLBAT;
|
|
|
|
}
|
|
|
|
|
2019-07-25 11:06:24 -04:00
|
|
|
bool
|
2020-04-15 01:03:53 -04:00
|
|
|
CWeapon::IsType2Handed(void)
|
|
|
|
{
|
|
|
|
return m_eWeaponType >= WEAPONTYPE_SHOTGUN && m_eWeaponType <= WEAPONTYPE_FLAMETHROWER && m_eWeaponType != WEAPONTYPE_ROCKETLAUNCHER;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CWeapon::MakePedsJumpAtShot(CPhysical *shooter, CVector *source, CVector *target)
|
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(shooter!=nil);
|
|
|
|
ASSERT(source!=nil);
|
|
|
|
ASSERT(target!=nil);
|
|
|
|
|
2020-04-19 12:34:08 -04:00
|
|
|
float minx = Min(source->x, target->x) - 2.0f;
|
|
|
|
float maxx = Max(source->x, target->x) + 2.0f;
|
|
|
|
float miny = Min(source->y, target->y) - 2.0f;
|
|
|
|
float maxy = Max(source->y, target->y) + 2.0f;
|
|
|
|
float minz = Min(source->z, target->z) - 2.0f;
|
|
|
|
float maxz = Max(source->z, target->z) + 2.0f;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
for ( int32 i = CPools::GetPedPool()->GetSize() - 1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
CPed *ped = CPools::GetPedPool()->GetSlot(i);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( ped )
|
|
|
|
{
|
|
|
|
if ( ped->GetPosition().x > minx && ped->GetPosition().x < maxx
|
|
|
|
&& ped->GetPosition().y > miny && ped->GetPosition().y < maxy
|
|
|
|
&& ped->GetPosition().z > minz && ped->GetPosition().z < maxz )
|
|
|
|
{
|
2020-04-15 22:07:32 -04:00
|
|
|
if ( ped != FindPlayerPed() && !((uint8)(ped->m_randomSeed ^ CGeneral::GetRandomNumber()) & 31) )
|
2020-04-15 01:03:53 -04:00
|
|
|
ped->SetEvasiveDive(shooter, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CWeapon::HitsGround(CEntity *holder, CVector *fireSource, CEntity *aimingTo)
|
2019-07-25 11:06:24 -04:00
|
|
|
{
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(holder!=nil);
|
|
|
|
ASSERT(aimingTo!=nil);
|
|
|
|
|
2019-07-25 11:06:24 -04:00
|
|
|
if (!holder->IsPed() || !((CPed*)holder)->m_pSeekTarget)
|
|
|
|
return false;
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CWeaponInfo *info = GetInfo();
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector adjustedOffset = info->m_vecFireOffset;
|
2019-07-25 11:06:24 -04:00
|
|
|
adjustedOffset.z += 0.6f;
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CVector source, target;
|
2019-07-25 11:06:24 -04:00
|
|
|
CEntity *foundEnt = nil;
|
|
|
|
CColPoint foundCol;
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if (fireSource)
|
|
|
|
source = *fireSource;
|
2019-07-25 11:06:24 -04:00
|
|
|
else
|
2020-04-15 01:03:53 -04:00
|
|
|
source = holder->GetMatrix() * adjustedOffset;
|
2019-07-25 11:06:24 -04:00
|
|
|
|
|
|
|
CEntity *aimEntity = aimingTo ? aimingTo : ((CPed*)holder)->m_pSeekTarget;
|
2020-04-15 12:43:16 -04:00
|
|
|
ASSERT(aimEntity!=nil);
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
target = aimEntity->GetPosition();
|
|
|
|
target.z += 0.6f;
|
2019-07-25 11:06:24 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CWorld::ProcessLineOfSight(source, target, foundCol, foundEnt, true, false, false, false, false, false, false);
|
2019-07-25 11:06:24 -04:00
|
|
|
if (foundEnt && foundEnt->IsBuilding()) {
|
|
|
|
// That was supposed to be Magnitude, according to leftover code in assembly
|
2020-04-15 01:03:53 -04:00
|
|
|
float diff = (foundCol.point.z - source.z);
|
2019-07-25 11:06:24 -04:00
|
|
|
if (diff < 0.0f && diff > -3.0f)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
void
|
|
|
|
CWeapon::BlowUpExplosiveThings(CEntity *thing)
|
|
|
|
{
|
|
|
|
if ( thing )
|
|
|
|
{
|
|
|
|
CObject *object = (CObject*)thing;
|
|
|
|
int32 mi = object->GetModelIndex();
|
|
|
|
if ( IsExplosiveThingModel(mi) && !object->bHasBeenDamaged )
|
|
|
|
{
|
|
|
|
object->bHasBeenDamaged = true;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
CExplosion::AddExplosion(object, FindPlayerPed(), EXPLOSION_BARREL, object->GetPosition()+CVector(0.0f,0.0f,0.5f), 100);
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
if ( MI_EXPLODINGBARREL == mi )
|
|
|
|
object->m_vecMoveSpeed.z += 0.75f;
|
|
|
|
else
|
|
|
|
object->m_vecMoveSpeed.z += 0.45f;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
object->m_vecMoveSpeed.x += float((CGeneral::GetRandomNumber()&255) - 128) * 0.0002f;
|
|
|
|
object->m_vecMoveSpeed.y += float((CGeneral::GetRandomNumber()&255) - 128) * 0.0002f;
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-10-18 09:40:06 -04:00
|
|
|
if ( object->GetIsStatic())
|
2020-04-15 01:03:53 -04:00
|
|
|
{
|
2020-10-18 09:40:06 -04:00
|
|
|
object->SetIsStatic(false);
|
2020-04-15 01:03:53 -04:00
|
|
|
object->AddToMovingList();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-07 09:23:09 -05:00
|
|
|
bool
|
|
|
|
CWeapon::HasWeaponAmmoToBeUsed(void)
|
|
|
|
{
|
|
|
|
switch (m_eWeaponType) {
|
|
|
|
case WEAPONTYPE_UNARMED:
|
|
|
|
case WEAPONTYPE_BASEBALLBAT:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return m_nAmmoTotal != 0;
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 12:43:16 -04:00
|
|
|
|
2020-11-19 14:12:20 -05:00
|
|
|
bool
|
|
|
|
CPed::IsPedDoingDriveByShooting(void)
|
|
|
|
{
|
|
|
|
if (FindPlayerPed() == this && GetWeapon()->m_eWeaponType == WEAPONTYPE_UZI) {
|
|
|
|
if (TheCamera.Cams[TheCamera.ActiveCam].LookingLeft || TheCamera.Cams[TheCamera.ActiveCam].LookingRight)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-15 01:03:53 -04:00
|
|
|
bool
|
|
|
|
CWeapon::ProcessLineOfSight(CVector const &point1, CVector const &point2, CColPoint &point, CEntity *&entity, eWeaponType type, CEntity *shooter, bool checkBuildings, bool checkVehicles, bool checkPeds, bool checkObjects, bool checkDummies, bool ignoreSeeThrough, bool ignoreSomeObjects)
|
|
|
|
{
|
|
|
|
return CWorld::ProcessLineOfSight(point1, point2, point, entity, checkBuildings, checkVehicles, checkPeds, checkObjects, checkDummies, ignoreSeeThrough, ignoreSomeObjects);
|
2020-05-02 11:02:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef COMPATIBLE_SAVES
|
2020-05-13 09:24:00 -04:00
|
|
|
#define CopyFromBuf(buf, data) memcpy(&data, buf, sizeof(data)); SkipSaveBuf(buf, sizeof(data));
|
|
|
|
#define CopyToBuf(buf, data) memcpy(buf, &data, sizeof(data)); SkipSaveBuf(buf, sizeof(data));
|
2020-05-02 11:02:17 -04:00
|
|
|
void
|
|
|
|
CWeapon::Save(uint8*& buf)
|
|
|
|
{
|
2020-05-13 09:24:00 -04:00
|
|
|
CopyToBuf(buf, m_eWeaponType);
|
|
|
|
CopyToBuf(buf, m_eWeaponState);
|
|
|
|
CopyToBuf(buf, m_nAmmoInClip);
|
|
|
|
CopyToBuf(buf, m_nAmmoTotal);
|
|
|
|
CopyToBuf(buf, m_nTimer);
|
|
|
|
CopyToBuf(buf, m_bAddRotOffset);
|
2020-05-02 11:02:17 -04:00
|
|
|
SkipSaveBuf(buf, 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CWeapon::Load(uint8*& buf)
|
|
|
|
{
|
2020-05-13 09:24:00 -04:00
|
|
|
CopyFromBuf(buf, m_eWeaponType);
|
|
|
|
CopyFromBuf(buf, m_eWeaponState);
|
|
|
|
CopyFromBuf(buf, m_nAmmoInClip);
|
|
|
|
CopyFromBuf(buf, m_nAmmoTotal);
|
|
|
|
CopyFromBuf(buf, m_nTimer);
|
|
|
|
CopyFromBuf(buf, m_bAddRotOffset);
|
2020-05-02 11:02:17 -04:00
|
|
|
SkipSaveBuf(buf, 3);
|
|
|
|
}
|
2020-05-13 09:24:00 -04:00
|
|
|
|
|
|
|
#undef CopyFromBuf
|
|
|
|
#undef CopyToBuf
|
2020-05-02 11:02:17 -04:00
|
|
|
#endif
|