2015-04-10 19:40:58 +00:00
|
|
|
//#define DEBUG_MODE_FULL
|
2015-01-11 18:24:19 +00:00
|
|
|
#include "script_component.hpp"
|
2015-04-08 15:19:19 +00:00
|
|
|
|
|
|
|
// Bail if guidance is disabled
|
|
|
|
if(!GVAR(enabled)) exitWith { false };
|
2015-01-11 18:24:19 +00:00
|
|
|
|
2015-04-08 15:01:39 +00:00
|
|
|
// Bail on locality of the projectile, it should be local to us
|
|
|
|
if(!local _projectile) exitWith { false };
|
2015-01-20 04:16:33 +00:00
|
|
|
|
2015-04-08 15:01:39 +00:00
|
|
|
private["_config", "_enabled", "_target", "_seekerType", "_attackProfile"];
|
2015-04-08 15:19:19 +00:00
|
|
|
PARAMS_7(_shooter,_weapon,_muzzle,_mode,_ammo,_magazine,_projectile);
|
2015-04-07 05:38:34 +00:00
|
|
|
|
2015-04-09 02:51:21 +00:00
|
|
|
// Bail on not missile
|
|
|
|
if(! (_ammo isKindOf "MissileBase") ) exitWith { false };
|
|
|
|
|
2015-04-08 15:01:39 +00:00
|
|
|
_config = configFile >> "CfgAmmo" >> _ammo >> "ACE_MissileGuidance";
|
|
|
|
_enabled = getNumber ( _config >> "enabled");
|
2015-01-20 04:16:33 +00:00
|
|
|
|
2015-04-08 15:01:39 +00:00
|
|
|
// Bail if guidance is not enabled
|
|
|
|
if(isNil "_enabled" || {_enabled != 1}) exitWith { false };
|
2015-04-07 05:38:34 +00:00
|
|
|
|
2015-04-08 22:52:58 +00:00
|
|
|
_target = (vehicle _shooter) getVariable [QGVAR(target), nil];
|
|
|
|
_seekerType = (vehicle _shooter) getVariable [QGVAR(seekerType), nil];
|
|
|
|
_attackProfile = (vehicle _shooter) getVariable [QGVAR(attackProfile), nil];
|
2015-04-09 02:51:21 +00:00
|
|
|
_lockMode = (vehicle _shooter) getVariable [QGVAR(lockMode), nil];
|
|
|
|
|
2015-04-08 21:31:44 +00:00
|
|
|
TRACE_3("Begin guidance", _target, _seekerType, _attackProfile);
|
2015-04-08 15:01:39 +00:00
|
|
|
|
|
|
|
if ( isNil "_seekerType" || { ! ( _seekerType in (getArray (_config >> "seekerTypes" ) ) ) } ) then {
|
|
|
|
_seekerType = getText (_config >> "defaultSeekerType");
|
|
|
|
};
|
|
|
|
if ( isNil "_attackProfile" || { ! ( _attackProfile in (getArray (_config >> "attackProfiles" ) ) ) } ) then {
|
|
|
|
_attackProfile = getText (_config >> "defaultAttackProfile");
|
2015-04-09 02:51:21 +00:00
|
|
|
};
|
|
|
|
if ( isNil "_lockMode" || { ! ( _lockMode in (getArray (_config >> "seekerLockModes" ) ) ) } ) then {
|
|
|
|
_lockMode = getText (_config >> "defaultSeekerLockMode");
|
|
|
|
};
|
2015-04-08 15:01:39 +00:00
|
|
|
|
2015-04-10 19:40:58 +00:00
|
|
|
// If we didn't get a target, try to fall back on tab locking
|
|
|
|
if(isNil "_target") then {
|
|
|
|
_canUseLock = getNumber (_config >> "canVanillaLock");
|
|
|
|
if(_canUseLock > 0) then {
|
|
|
|
// @TODO: Get vanilla target
|
|
|
|
_vanillaTarget = cursorTarget;
|
|
|
|
|
|
|
|
TRACE_1("Using Vanilla Locking", _vanillaTarget);
|
|
|
|
if(!isNil "_vanillaTarget") then {
|
|
|
|
_target = _vanillaTarget;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-04-08 15:01:39 +00:00
|
|
|
TRACE_4("Beginning ACE guidance system",_target,_ammo,_seekerType,_attackProfile);
|
2015-04-09 20:03:28 +00:00
|
|
|
[FUNC(guidancePFH), 0, [_this,
|
2015-04-08 15:01:39 +00:00
|
|
|
[ACE_player,
|
|
|
|
[_target, _targetPos, _launchPos],
|
|
|
|
_seekerType,
|
2015-04-09 02:51:21 +00:00
|
|
|
_attackProfile,
|
|
|
|
_lockMode
|
2015-04-08 15:01:39 +00:00
|
|
|
],
|
|
|
|
[
|
|
|
|
getNumber ( _config >> "minDeflection" ),
|
|
|
|
getNumber ( _config >> "maxDeflection" ),
|
|
|
|
getNumber ( _config >> "incDeflection" )
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getNumber ( _config >> "seekerAngle" ),
|
|
|
|
getNumber ( _config >> "seekerAccuracy" ),
|
|
|
|
getNumber ( _config >> "seekerMaxRange" )
|
2015-04-08 22:34:59 +00:00
|
|
|
],
|
2015-04-13 16:56:15 +00:00
|
|
|
[ diag_tickTime, [], [] ]
|
2015-04-08 15:01:39 +00:00
|
|
|
]
|
|
|
|
] call cba_fnc_addPerFrameHandler;
|
2015-04-10 18:37:03 +00:00
|
|
|
|
|
|
|
/* Clears locking settings
|
|
|
|
(vehicle _shooter) setVariable [QGVAR(target), nil];
|
|
|
|
(vehicle _shooter) setVariable [QGVAR(seekerType), nil];
|
|
|
|
(vehicle _shooter) setVariable [QGVAR(attackProfile), nil];
|
|
|
|
(vehicle _shooter) setVariable [QGVAR(lockMode), nil];
|
|
|
|
*/
|