2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2016-10-12 22:35:24 +00:00
|
|
|
/*
|
|
|
|
* Author: jaynus / nou
|
|
|
|
* Attack profile: Javelin Dir
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Seeker Target PosASL <ARRAY>
|
|
|
|
* 1: Guidance Arg Array <ARRAY>
|
|
|
|
* 2: Attack Profile State <ARRAY>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Missile Aim PosASL <ARRAY>
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [[1,2,3], [], []] call ace_missileguidance_fnc_attackProfile_JAV_DIR;
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2016-05-30 16:37:03 +00:00
|
|
|
|
|
|
|
#define STAGE_LAUNCH 1
|
|
|
|
#define STAGE_CLIMB 2
|
|
|
|
#define STAGE_COAST 3
|
|
|
|
#define STAGE_TERMINAL 4
|
|
|
|
|
2016-10-12 22:35:24 +00:00
|
|
|
params ["_seekerTargetPos", "_args", "_attackProfileStateParams"];
|
|
|
|
_args params ["_firedEH"];
|
|
|
|
_firedEH params ["_shooter","","","","","","_projectile"];
|
2016-05-30 16:37:03 +00:00
|
|
|
|
2016-11-15 02:19:24 +00:00
|
|
|
if (_seekerTargetPos isEqualTo [0,0,0]) exitWith {_seekerTargetPos};
|
|
|
|
|
2016-10-12 22:35:24 +00:00
|
|
|
if (_attackProfileStateParams isEqualTo []) then {
|
|
|
|
_attackProfileStateParams set [0, STAGE_LAUNCH];
|
2016-05-30 16:37:03 +00:00
|
|
|
};
|
|
|
|
|
2016-10-12 22:35:24 +00:00
|
|
|
private _shooterPos = getPosASL _shooter;
|
|
|
|
private _projectilePos = getPosASL _projectile;
|
2016-05-30 16:37:03 +00:00
|
|
|
|
2016-10-12 22:35:24 +00:00
|
|
|
private _distanceToTarget = _projectilePos vectorDistance _seekerTargetPos;
|
|
|
|
private _distanceToShooter = _projectilePos vectorDistance _shooterPos;
|
|
|
|
private _distanceShooterToTarget = _shooterPos vectorDistance _seekerTargetPos;
|
2016-05-30 16:37:03 +00:00
|
|
|
|
2024-02-05 17:04:24 +00:00
|
|
|
TRACE_2("",_distanceToTarget,_distanceToShooter);
|
2016-05-30 16:37:03 +00:00
|
|
|
|
|
|
|
// Add height depending on distance for compensate
|
2016-10-12 22:35:24 +00:00
|
|
|
private _returnTargetPos = _seekerTargetPos;
|
2016-05-30 16:37:03 +00:00
|
|
|
|
2016-10-12 22:35:24 +00:00
|
|
|
switch (_attackProfileStateParams select 0) do {
|
2016-05-30 16:37:03 +00:00
|
|
|
case STAGE_LAUNCH: {
|
|
|
|
TRACE_1("STAGE_LAUNCH","");
|
2016-10-12 22:35:24 +00:00
|
|
|
if (_distanceToShooter < 10) then {
|
2016-10-08 10:55:30 +00:00
|
|
|
_returnTargetPos = _seekerTargetPos vectorAdd [0,0,_distanceToTarget*2];
|
2016-05-30 16:37:03 +00:00
|
|
|
} else {
|
2016-10-12 22:35:24 +00:00
|
|
|
_attackProfileStateParams set [0, STAGE_CLIMB];
|
2016-05-30 16:37:03 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
case STAGE_CLIMB: {
|
|
|
|
TRACE_1("STAGE_CLIMB","");
|
2016-10-12 22:35:24 +00:00
|
|
|
private _cruisAlt = 60 * (_distanceShooterToTarget/2000);
|
2016-05-30 16:37:03 +00:00
|
|
|
|
2016-10-12 22:35:24 +00:00
|
|
|
if ( ((ASLToAGL _projectilePos) select 2) - ((ASLToAGL _seekerTargetPos) select 2) >= _cruisAlt) then {
|
|
|
|
_attackProfileStateParams set [0, STAGE_TERMINAL];
|
2016-05-30 16:37:03 +00:00
|
|
|
} else {
|
2016-10-08 10:55:30 +00:00
|
|
|
_returnTargetPos = _seekerTargetPos vectorAdd [0,0,_distanceToTarget*1.5];
|
2016-05-30 16:37:03 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
case STAGE_TERMINAL: {
|
|
|
|
TRACE_1("STAGE_TERMINAL","");
|
|
|
|
_returnTargetPos = _seekerTargetPos;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-02-05 17:04:24 +00:00
|
|
|
TRACE_1("Adjusted target position",_returnTargetPos);
|
2016-09-04 14:44:22 +00:00
|
|
|
_returnTargetPos;
|