ACE3/addons/missileguidance/functions/fnc_doAttackProfile.sqf

41 lines
1.3 KiB
Plaintext
Raw Normal View History

2016-10-12 22:35:24 +00:00
/*
* Author: jaynus / nou, PabstMirror
* Do attack profile with a valid seeker target location
*
* Arguments:
* 0: Seeker Target PosASL <ARRAY>
* 1: Guidance Arg Array <ARRAY>
* 2: Seeker State <ARRAY>
*
* Return Value:
* Missile Aim PosASL <ARRAY>
*
* Example:
* [[1,2,3], [], []] call ace_missileguidance_fnc_doAttackProfile;
*
* Public: No
*/
// #define DEBUG_MODE_FULL
2016-05-30 16:37:03 +00:00
#include "script_component.hpp"
2016-10-12 22:35:24 +00:00
params ["_seekerTargetPos", "_args"];
_args params ["", "_launchParams"];
_launchParams params ["", "", "", "_attackProfileName"];
2016-05-30 16:37:03 +00:00
2016-10-12 22:35:24 +00:00
private _attackProfileFunction = getText (configFile >> QGVAR(AttackProfiles) >> _attackProfileName >> "functionName");
2016-05-30 16:37:03 +00:00
2016-10-12 22:35:24 +00:00
private _attackProfilePos = _this call (missionNamespace getVariable _attackProfileFunction);
2016-05-30 16:37:03 +00:00
2016-10-12 22:35:24 +00:00
if ((isNil "_attackProfilePos") || {(vectorMagnitude _attackProfilePos) == 0}) exitWith {
ERROR_1("attack profile returned bad pos",_attackProfilePos);
[0,0,0]
2016-05-30 16:37:03 +00:00
};
2016-10-12 22:35:24 +00:00
#ifdef DRAW_GUIDANCE_INFO
drawLine3D [(ASLtoAGL _attackProfilePos), (ASLtoAGL _seekerTargetPos), [0,1,1,1]];
drawIcon3D ["\a3\ui_f\data\IGUI\Cfg\Cursors\selectover_ca.paa", [0,0,1,1], ASLtoAGL _attackProfilePos, 0.5, 0.5, 0, _attackProfileName, 1, 0.025, "TahomaB"];
#endif
2016-05-30 16:37:03 +00:00
2016-10-12 22:35:24 +00:00
TRACE_2("return",_attackProfilePos,_attackProfileName);
2016-05-30 16:37:03 +00:00
_attackProfilePos;