1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
#include "MissileLauncher.h"
#include "WeaponDef.h"
#include "Game/TraceRay.h"
#include "Map/Ground.h"
#include "Sim/Projectiles/WeaponProjectiles/WeaponProjectileFactory.h"
#include "Sim/Units/Unit.h"
#include "Sim/Units/UnitDef.h"
CR_BIND_DERIVED(CMissileLauncher, CWeapon, (NULL, NULL))
CR_REG_METADATA(CMissileLauncher, )
CMissileLauncher::CMissileLauncher(CUnit* owner, const WeaponDef* def): CWeapon(owner, def)
{
}
void CMissileLauncher::UpdateWantedDir()
{
CWeapon::UpdateWantedDir();
if (weaponDef->trajectoryHeight > 0.0f) {
wantedDir.y += weaponDef->trajectoryHeight;
wantedDir.Normalize();
}
}
void CMissileLauncher::FireImpl(const bool scriptCall)
{
float3 dir = currentTargetPos - weaponMuzzlePos;
const float dist = dir.LengthNormalize();
if (onlyForward) {
dir = owner->frontdir;
} else if (weaponDef->fixedLauncher) {
dir = weaponDir;
} else if (weaponDef->trajectoryHeight > 0.0f) {
dir.y += weaponDef->trajectoryHeight;
dir.Normalize();
}
dir += (gs->randVector() * SprayAngleExperience() + SalvoErrorExperience());
dir.Normalize();
float3 startSpeed = dir * weaponDef->startvelocity;
// NOTE: why only for SAMT units?
if (onlyForward && owner->unitDef->IsStrafingAirUnit())
startSpeed += owner->speed;
ProjectileParams params = GetProjectileParams();
params.pos = weaponMuzzlePos;
params.end = currentTargetPos;
params.speed = startSpeed;
params.ttl = weaponDef->flighttime == 0? std::ceil(std::max(dist, range) / projectileSpeed + 25 * weaponDef->selfExplode): weaponDef->flighttime;
WeaponProjectileFactory::LoadProjectile(params);
}
bool CMissileLauncher::HaveFreeLineOfFire(const float3 pos, const SWeaponTarget& trg, bool useMuzzle) const
{
// do a different test depending on if the missile has high
// trajectory (parabolic vs. linear ground intersection)
if (weaponDef->trajectoryHeight <= 0.0f)
return CWeapon::HaveFreeLineOfFire(pos, trg);
float3 dir(pos - weaponMuzzlePos);
float3 flatDir(dir.x, 0, dir.z);
dir.SafeNormalize();
float flatLength = flatDir.Length();
if (flatLength == 0)
return true;
flatDir /= flatLength;
const float linear = dir.y + weaponDef->trajectoryHeight;
const float quadratic = -weaponDef->trajectoryHeight / flatLength;
const float groundDist = ((avoidFlags & Collision::NOGROUND) == 0)?
CGround::TrajectoryGroundCol(weaponMuzzlePos, flatDir, flatLength, linear, quadratic):
-1.0f;
if (groundDist > 0.0f)
return false;
if (TraceRay::TestTrajectoryCone(weaponMuzzlePos, flatDir, flatLength,
linear, quadratic, 0, owner->allyteam, avoidFlags, owner)) {
return false;
}
return true;
}
|