ACE3/addons/missileguidance/functions/fnc_doSeekerSearch.sqf

30 lines
1.0 KiB
Plaintext
Raw Normal View History

2015-04-08 21:31:44 +00:00
//#define DEBUG_MODE_FULL
2015-04-08 15:01:39 +00:00
#include "script_component.hpp"
EXPLODE_7_PVT(((_this select 1) select 0),_shooter,_weapon,_muzzle,_mode,_ammo,_magazine,_projectile);
2015-04-18 17:53:21 +00:00
private["_seekerProfilePos", "_i", "_launchParams", "_seekerType", "_seekerTypeName", "_seekerTypesCfg", "_testName", "_testProfile"];
2015-04-08 15:01:39 +00:00
_launchParams = ((_this select 1) select 1);
_seekerTypeName = _launchParams select 2;
2015-04-08 15:35:24 +00:00
TRACE_1("Seeker type", _seekerTypeName);
2015-04-08 15:35:24 +00:00
_seekerTypesCfg = ( configFile >> QGVAR(SeekerTypes) );
2015-04-08 15:01:39 +00:00
_seekerType = nil;
for [{_i=0}, {_i< (count _seekerTypesCfg) }, {_i=_i+1}] do {
_testProfile = _seekerTypesCfg select _i;
_testName = configName _testProfile;
TRACE_3("", _testName, _testProfile, _seekerTypesCfg);
if( _testName == _seekerTypeName) exitWith {
_seekerType = _seekerTypesCfg select _i;
};
};
_seekerProfilePos = [0,0,0];
if(!isNil "_seekerType") then {
_seekerProfilePos = _this call (missionNamespace getVariable (getText (_seekerType >> "functionName")));
};
_seekerProfilePos;