ACE3/addons/missileguidance/functions/fnc_gps_attackOnFired.sqf
Brandon Danyluk aea24c6de4 Better attack angle calculation. Does not get exactly right, but works for all cases.
Need to implement a PID controller navigation type to get a correct attack angle
2021-04-20 15:31:38 -06:00

24 lines
656 B
Plaintext

#include "script_component.hpp"
/*
* Author: Brandon (TCVM)
* Sets up wireGuided state arrays (called from missileGuidance's onFired).
*
* Arguments:
* Guidance Arg Array <ARRAY>
*
* Return Value:
* None
*
* Example:
* [] call ace_missileguidance_fnc_wire_onFired
*
* Public: No
*/
params ["_firedEH", "", "", "", "_stateParams", "", ""];
_stateParams params ["", "", "_attackProfileStateParams"];
_firedEH params ["_shooter","","","","_ammo","","_projectile"];
_attackProfileStateParams set [0, [] call FUNC(gps_getAttackData)];
_attackProfileStateParams set [1, (getPosASL _projectile) select 2];
_attackProfileStateParams set [2, false];