2019-10-16 17:53:25 -04:00
|
|
|
#include "common.h"
|
2020-04-17 09:31:11 -04:00
|
|
|
|
2020-01-11 06:30:17 -05:00
|
|
|
#include "Camera.h"
|
|
|
|
#include "General.h"
|
|
|
|
#include "Heli.h"
|
|
|
|
#include "ModelIndices.h"
|
|
|
|
#include "Particle.h"
|
|
|
|
#include "Ped.h"
|
|
|
|
#include "Plane.h"
|
2019-10-16 17:53:25 -04:00
|
|
|
#include "ProjectileInfo.h"
|
|
|
|
#include "Projectile.h"
|
2020-01-11 06:30:17 -05:00
|
|
|
#include "Explosion.h"
|
|
|
|
#include "Weapon.h"
|
|
|
|
#include "World.h"
|
2019-10-16 17:53:25 -04:00
|
|
|
|
2020-04-15 18:56:15 -04:00
|
|
|
CProjectileInfo gaProjectileInfo[NUM_PROJECTILES];
|
|
|
|
CProjectile *CProjectileInfo::ms_apProjectile[NUM_PROJECTILES];
|
2020-01-07 10:26:23 -05:00
|
|
|
|
2020-01-11 06:30:17 -05:00
|
|
|
void
|
|
|
|
CProjectileInfo::Initialise()
|
|
|
|
{
|
|
|
|
debug("Initialising CProjectileInfo...\n");
|
|
|
|
|
|
|
|
for (int i = 0; i < ARRAY_SIZE(ms_apProjectile); i++) {
|
|
|
|
ms_apProjectile[i] = nil;
|
|
|
|
gaProjectileInfo[i].m_eWeaponType = WEAPONTYPE_GRENADE;
|
|
|
|
gaProjectileInfo[i].m_pSource = nil;
|
|
|
|
gaProjectileInfo[i].m_nExplosionTime = 0;
|
|
|
|
gaProjectileInfo[i].m_bInUse = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
debug("CProjectileInfo ready\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CProjectileInfo::Shutdown()
|
|
|
|
{
|
|
|
|
debug("Shutting down CProjectileInfo...\n");
|
|
|
|
debug("CProjectileInfo shut down\n");
|
|
|
|
}
|
2020-01-07 10:26:23 -05:00
|
|
|
|
|
|
|
CProjectileInfo*
|
|
|
|
CProjectileInfo::GetProjectileInfo(int32 id)
|
|
|
|
{
|
|
|
|
return &gaProjectileInfo[id];
|
|
|
|
}
|
2020-01-11 06:30:17 -05:00
|
|
|
|
|
|
|
bool
|
|
|
|
CProjectileInfo::AddProjectile(CEntity *entity, eWeaponType weapon, CVector pos, float speed)
|
|
|
|
{
|
|
|
|
int8 SpecialCollisionResponseCase = COLLRESPONSE_NONE;
|
|
|
|
bool gravity = true;
|
|
|
|
CMatrix matrix;
|
|
|
|
float elasticity = 0.75f;
|
|
|
|
CPed* ped = (CPed*)entity;
|
|
|
|
int time;
|
|
|
|
CVector velocity;
|
|
|
|
|
|
|
|
switch (weapon)
|
|
|
|
{
|
|
|
|
case WEAPONTYPE_ROCKETLAUNCHER:
|
|
|
|
{
|
|
|
|
float vy = 1.25f;
|
|
|
|
time = CTimer::GetTimeInMilliseconds() + 1400;
|
|
|
|
if (ped->IsPlayer()) {
|
|
|
|
matrix.GetForward() = TheCamera.Cams[TheCamera.ActiveCam].Front;
|
|
|
|
matrix.GetUp() = TheCamera.Cams[TheCamera.ActiveCam].Up;
|
|
|
|
matrix.GetRight() = CrossProduct(TheCamera.Cams[TheCamera.ActiveCam].Up, TheCamera.Cams[TheCamera.ActiveCam].Front);
|
|
|
|
matrix.GetPosition() = pos;
|
|
|
|
} else if (ped->m_pSeekTarget != nil) {
|
|
|
|
float ry = CGeneral::GetRadianAngleBetweenPoints(1.0f, ped->m_pSeekTarget->GetPosition().z, 1.0f, pos.z);
|
2020-01-12 06:31:04 -05:00
|
|
|
float rz = Atan2(-ped->GetForward().x, ped->GetForward().y);
|
2020-01-11 06:30:17 -05:00
|
|
|
vy = 0.35f * speed + 0.15f;
|
|
|
|
matrix.SetTranslate(0.0f, 1.0f, 1.0f);
|
|
|
|
matrix.Rotate(0.0f, ry, rz);
|
|
|
|
matrix.GetPosition() += pos;
|
|
|
|
} else {
|
|
|
|
matrix = ped->GetMatrix();
|
|
|
|
}
|
|
|
|
velocity = Multiply3x3(matrix, CVector(0.0f, vy, 0.0f));
|
|
|
|
gravity = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case WEAPONTYPE_FLAMETHROWER:
|
|
|
|
Error("Undefined projectile type, AddProjectile, ProjectileInfo.cpp");
|
|
|
|
break;
|
|
|
|
case WEAPONTYPE_MOLOTOV:
|
|
|
|
{
|
|
|
|
time = CTimer::GetTimeInMilliseconds() + 2000;
|
|
|
|
float scale = 0.22f * speed + 0.15f;
|
2020-01-13 09:56:47 -05:00
|
|
|
if (scale < 0.2f)
|
2020-01-11 06:30:17 -05:00
|
|
|
scale = 0.2f;
|
2020-01-12 06:31:04 -05:00
|
|
|
float angle = Atan2(-ped->GetForward().x, ped->GetForward().y);
|
2020-01-11 06:30:17 -05:00
|
|
|
matrix.SetTranslate(0.0f, 0.0f, 0.0f);
|
|
|
|
matrix.RotateZ(angle);
|
|
|
|
matrix.GetPosition() += pos;
|
|
|
|
velocity.x = -1.0f * scale * Sin(angle);
|
|
|
|
velocity.y = scale * Cos(angle);
|
|
|
|
velocity.z = (0.2f * speed + 0.4f) * scale;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case WEAPONTYPE_GRENADE:
|
|
|
|
{
|
|
|
|
time = CTimer::GetTimeInMilliseconds() + 2000;
|
|
|
|
float scale = 0.0f;
|
|
|
|
if (speed != 0.0f)
|
|
|
|
scale = 0.22f * speed + 0.15f;
|
2020-01-12 06:31:04 -05:00
|
|
|
float angle = Atan2(-ped->GetForward().x, ped->GetForward().y);
|
2020-01-11 06:30:17 -05:00
|
|
|
matrix.SetTranslate(0.0f, 0.0f, 0.0f);
|
|
|
|
matrix.RotateZ(angle);
|
|
|
|
matrix.GetPosition() += pos;
|
|
|
|
SpecialCollisionResponseCase = COLLRESPONSE_UNKNOWN5;
|
|
|
|
velocity.x = -1.0f * scale * Sin(angle);
|
|
|
|
velocity.y = scale * Cos(angle);
|
|
|
|
velocity.z = (0.4f * speed + 0.4f) * scale;
|
|
|
|
elasticity = 0.5f;
|
|
|
|
break;
|
|
|
|
}
|
2020-05-11 19:24:57 -04:00
|
|
|
default: break;
|
2020-01-11 06:30:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
while (gaProjectileInfo[i].m_bInUse && i < ARRAY_SIZE(gaProjectileInfo)) i++;
|
|
|
|
|
|
|
|
if (i == ARRAY_SIZE(gaProjectileInfo))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
switch (weapon)
|
|
|
|
{
|
|
|
|
case WEAPONTYPE_ROCKETLAUNCHER:
|
|
|
|
ms_apProjectile[i] = new CProjectile(MI_MISSILE);
|
|
|
|
break;
|
|
|
|
case WEAPONTYPE_FLAMETHROWER:
|
|
|
|
break;
|
|
|
|
case WEAPONTYPE_MOLOTOV:
|
|
|
|
ms_apProjectile[i] = new CProjectile(MI_MOLOTOV);
|
|
|
|
break;
|
|
|
|
case WEAPONTYPE_GRENADE:
|
|
|
|
ms_apProjectile[i] = new CProjectile(MI_GRENADE);
|
|
|
|
break;
|
2020-05-11 19:24:57 -04:00
|
|
|
default: break;
|
2020-01-11 06:30:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ms_apProjectile[i] == nil)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
gaProjectileInfo[i].m_eWeaponType = weapon;
|
|
|
|
gaProjectileInfo[i].m_pSource = ped;
|
|
|
|
ms_apProjectile[i]->GetMatrix() = matrix;
|
|
|
|
ms_apProjectile[i]->SetMoveSpeed(velocity);
|
|
|
|
ms_apProjectile[i]->bAffectedByGravity = gravity;
|
|
|
|
|
|
|
|
gaProjectileInfo[i].m_nExplosionTime = time;
|
|
|
|
ms_apProjectile[i]->m_fElasticity = elasticity;
|
|
|
|
ms_apProjectile[i]->m_nSpecialCollisionResponseCases = SpecialCollisionResponseCase;
|
|
|
|
|
|
|
|
gaProjectileInfo[i].m_bInUse = true;
|
|
|
|
CWorld::Add(ms_apProjectile[i]);
|
|
|
|
|
|
|
|
gaProjectileInfo[i].m_vecPos = ms_apProjectile[i]->GetPosition();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CProjectileInfo::RemoveProjectile(CProjectileInfo *info, CProjectile *projectile)
|
|
|
|
{
|
|
|
|
RemoveNotAdd(info->m_pSource, info->m_eWeaponType, projectile->GetPosition());
|
|
|
|
|
|
|
|
info->m_bInUse = false;
|
|
|
|
CWorld::Remove(projectile);
|
|
|
|
delete projectile;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-01-12 06:31:04 -05:00
|
|
|
CProjectileInfo::RemoveNotAdd(CEntity *entity, eWeaponType weaponType, CVector pos)
|
2020-01-11 06:30:17 -05:00
|
|
|
{
|
|
|
|
switch (weaponType)
|
|
|
|
{
|
|
|
|
case WEAPONTYPE_GRENADE:
|
|
|
|
CExplosion::AddExplosion(nil, entity, EXPLOSION_GRENADE, pos, 0);
|
|
|
|
break;
|
|
|
|
case WEAPONTYPE_MOLOTOV:
|
|
|
|
CExplosion::AddExplosion(nil, entity, EXPLOSION_MOLOTOV, pos, 0);
|
|
|
|
break;
|
|
|
|
case WEAPONTYPE_ROCKETLAUNCHER:
|
|
|
|
CExplosion::AddExplosion(nil, entity, EXPLOSION_ROCKET, pos, 0);
|
|
|
|
break;
|
2020-05-11 19:24:57 -04:00
|
|
|
default: break;
|
2020-01-11 06:30:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CProjectileInfo::Update()
|
|
|
|
{
|
|
|
|
for (int i = 0; i < ARRAY_SIZE(gaProjectileInfo); i++) {
|
|
|
|
if (!gaProjectileInfo[i].m_bInUse) continue;
|
|
|
|
|
|
|
|
CPed *ped = (CPed*)gaProjectileInfo[i].m_pSource;
|
2020-04-30 09:45:45 -04:00
|
|
|
if (ped != nil && ped->IsPed() && !ped->IsPointerValid())
|
2020-01-11 06:30:17 -05:00
|
|
|
gaProjectileInfo[i].m_pSource = nil;
|
|
|
|
|
|
|
|
if (ms_apProjectile[i] == nil) {
|
|
|
|
gaProjectileInfo[i].m_bInUse = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gaProjectileInfo[i].m_eWeaponType == WEAPONTYPE_ROCKETLAUNCHER) {
|
|
|
|
CParticle::AddParticle(PARTICLE_SMOKE, ms_apProjectile[i]->GetPosition(), CVector(0.0f, 0.0f, 0.0f));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CTimer::GetTimeInMilliseconds() <= gaProjectileInfo[i].m_nExplosionTime) {
|
|
|
|
if (gaProjectileInfo[i].m_eWeaponType == WEAPONTYPE_ROCKETLAUNCHER) {
|
|
|
|
CVector pos = ms_apProjectile[i]->GetPosition();
|
|
|
|
CWorld::pIgnoreEntity = ms_apProjectile[i];
|
|
|
|
if (ms_apProjectile[i]->bHasCollided
|
|
|
|
|| !CWorld::GetIsLineOfSightClear(gaProjectileInfo[i].m_vecPos, pos, true, true, true, true, false, false)
|
|
|
|
|| gaProjectileInfo[i].m_eWeaponType == WEAPONTYPE_ROCKETLAUNCHER && (CHeli::TestRocketCollision(&pos) || CPlane::TestRocketCollision(&pos))) {
|
|
|
|
RemoveProjectile(&gaProjectileInfo[i], ms_apProjectile[i]);
|
|
|
|
}
|
|
|
|
CWorld::pIgnoreEntity = nil;
|
|
|
|
} else if (gaProjectileInfo[i].m_eWeaponType == WEAPONTYPE_MOLOTOV) {
|
|
|
|
CVector pos = ms_apProjectile[i]->GetPosition();
|
|
|
|
CWorld::pIgnoreEntity = ms_apProjectile[i];
|
|
|
|
|
|
|
|
if (gaProjectileInfo[i].m_pSource == nil
|
|
|
|
|| ((gaProjectileInfo[i].m_vecPos - gaProjectileInfo[i].m_pSource->GetPosition()).MagnitudeSqr() >= 2.0f))
|
|
|
|
{
|
|
|
|
if (ms_apProjectile[i]->bHasCollided
|
|
|
|
|| !CWorld::GetIsLineOfSightClear(gaProjectileInfo[i].m_vecPos, pos, true, true, true, true, false, false)
|
|
|
|
|| gaProjectileInfo[i].m_eWeaponType == WEAPONTYPE_ROCKETLAUNCHER && (CHeli::TestRocketCollision(&pos) || CPlane::TestRocketCollision(&pos))) {
|
|
|
|
RemoveProjectile(&gaProjectileInfo[i], ms_apProjectile[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CWorld::pIgnoreEntity = nil;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
RemoveProjectile(&gaProjectileInfo[i], ms_apProjectile[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
gaProjectileInfo[i].m_vecPos = ms_apProjectile[i]->GetPosition();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
CProjectileInfo::IsProjectileInRange(float x1, float x2, float y1, float y2, float z1, float z2, bool remove)
|
|
|
|
{
|
|
|
|
bool result = false;
|
|
|
|
for (int i = 0; i < ARRAY_SIZE(ms_apProjectile); i++) {
|
|
|
|
if (gaProjectileInfo[i].m_bInUse) {
|
|
|
|
if (gaProjectileInfo[i].m_eWeaponType == WEAPONTYPE_ROCKETLAUNCHER || gaProjectileInfo[i].m_eWeaponType == WEAPONTYPE_MOLOTOV || gaProjectileInfo[i].m_eWeaponType == WEAPONTYPE_GRENADE) {
|
2020-04-30 06:48:01 -04:00
|
|
|
const CVector &pos = ms_apProjectile[i]->GetPosition();
|
2020-01-11 06:30:17 -05:00
|
|
|
if (pos.x >= x1 && pos.x <= x2 && pos.y >= y1 && pos.y <= y2 && pos.z >= z1 && pos.z <= z2) {
|
|
|
|
result = true;
|
|
|
|
if (remove) {
|
|
|
|
gaProjectileInfo[i].m_bInUse = false;
|
|
|
|
CWorld::Remove(ms_apProjectile[i]);
|
|
|
|
delete ms_apProjectile[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CProjectileInfo::RemoveAllProjectiles()
|
|
|
|
{
|
|
|
|
for (int i = 0; i < ARRAY_SIZE(ms_apProjectile); i++) {
|
|
|
|
if (gaProjectileInfo[i].m_bInUse) {
|
|
|
|
gaProjectileInfo[i].m_bInUse = false;
|
|
|
|
CWorld::Remove(ms_apProjectile[i]);
|
|
|
|
delete ms_apProjectile[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2020-01-12 06:31:04 -05:00
|
|
|
CProjectileInfo::RemoveIfThisIsAProjectile(CObject *object)
|
2020-01-11 06:30:17 -05:00
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
while (ms_apProjectile[i++] != object) {
|
|
|
|
if (i >= ARRAY_SIZE(ms_apProjectile))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
gaProjectileInfo[i].m_bInUse = false;
|
|
|
|
CWorld::Remove(ms_apProjectile[i]);
|
|
|
|
delete ms_apProjectile[i];
|
|
|
|
ms_apProjectile[i] = nil;
|
|
|
|
return true;
|
|
|
|
}
|