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
|
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
#include "StarburstLauncher.h"
#include "WeaponDef.h"
#include "WeaponMemPool.h"
#include "Game/TraceRay.h"
#include "Map/Ground.h"
#include "Sim/Projectiles/WeaponProjectiles/WeaponProjectileFactory.h"
#include "Sim/Units/Unit.h"
CR_BIND_DERIVED_POOL(CStarburstLauncher, CWeapon, , weaponMemPool.alloc, weaponMemPool.free)
CR_REG_METADATA(CStarburstLauncher, (
CR_MEMBER(uptime),
CR_MEMBER(tracking)
))
CStarburstLauncher::CStarburstLauncher(CUnit* owner, const WeaponDef* def): CWeapon(owner, def)
{
// null happens when loading
if (def != nullptr) {
tracking = weaponDef->turnrate * def->tracks;
uptime = (def->uptime * GAME_SPEED);
}
}
void CStarburstLauncher::FireImpl(const bool scriptCall)
{
const float3 speed = ((weaponDef->fixedLauncher)? weaponDir: UpVector) * weaponDef->startvelocity;
const float3 aimError = (gsRNG.NextVector() * SprayAngleExperience() + SalvoErrorExperience());
ProjectileParams params = GetProjectileParams();
params.pos = weaponMuzzlePos + UpVector * 2.0f;
params.end = currentTargetPos;
params.speed = speed;
params.error = aimError;
params.ttl = 200; //???
params.tracking = tracking;
params.maxRange = (weaponDef->flighttime > 0 || weaponDef->fixedLauncher)? MAX_PROJECTILE_RANGE: range;
WeaponProjectileFactory::LoadProjectile(params);
}
bool CStarburstLauncher::HaveFreeLineOfFire(const float3 srcPos, const float3 tgtPos, const SWeaponTarget& trg) const
{
const float3& wdir = weaponDef->fixedLauncher? weaponDir: UpVector;
if (TraceRay::TestCone(srcPos, wdir, 100.0f, 0.0f, owner->allyteam, avoidFlags, owner))
return false;
return true;
}
float CStarburstLauncher::GetRange2D(const float yDiff) const
{
return range + (yDiff * weaponDef->heightmod);
}
|