mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
|
#include "script_component.hpp"
|
||
|
/*
|
||
|
* Author: Brandon (TCVM)
|
||
|
* Sets up SACLOS state arrays (called from missileGuidance's onFired).
|
||
|
*
|
||
|
* Arguments:
|
||
|
* Guidance Arg Array <ARRAY>
|
||
|
*
|
||
|
* Return Value:
|
||
|
* None
|
||
|
*
|
||
|
* Example:
|
||
|
* [] call ace_hot_fnc_SACLOS_onFired
|
||
|
*
|
||
|
* Public: No
|
||
|
*/
|
||
|
params ["_firedEH", "", "", "", "_stateParams"];
|
||
|
_firedEH params ["_shooter","_weapon","","","","","_projectile"];
|
||
|
_stateParams params ["", "_seekerStateParams"];
|
||
|
|
||
|
private _config = ([_projectile] call CBA_fnc_getObjectConfig) >> "ace_missileguidance";
|
||
|
private _distanceAheadOfMissile = [_config >> "missileLeadDistance", "NUMBER", DEFAULT_LEAD_DISTANCE] call CBA_fnc_getConfigEntry;
|
||
|
|
||
|
if (_shooter isKindOf "Plane") then { WARNING("SACLOS fired from planes unsupported"); };
|
||
|
|
||
|
private _turretPath = [_shooter, _weapon] call CBA_fnc_turretPathWeapon;
|
||
|
private _turretConfig = [_shooter, _turretPath] call CBA_fnc_getTurret;
|
||
|
private _memoryPointGunnerOptics = getText(_turretConfig >> "memoryPointGunnerOptics");
|
||
|
private _animationSourceBody = getText(_turretConfig >> "animationSourceBody");
|
||
|
private _animationSourceGun = getText(_turretConfig >> "animationSourceGun");
|
||
|
_seekerStateParams set [0, _memoryPointGunnerOptics];
|
||
|
_seekerStateParams set [1, _animationSourceBody];
|
||
|
_seekerStateParams set [2, _animationSourceGun];
|
||
|
_seekerStateParams set [3, _distanceAheadOfMissile];
|
||
|
|