2015-04-12 23:19:18 +00:00
|
|
|
//#define DEBUG_MODE_FULL
|
2015-04-04 23:55:53 +00:00
|
|
|
#include "script_component.hpp"
|
2015-04-12 23:18:39 +00:00
|
|
|
TRACE_1("enter", _this);
|
2015-04-04 23:55:53 +00:00
|
|
|
|
2015-04-11 20:37:55 +00:00
|
|
|
#define __TRACKINTERVAL 0 // how frequent the check should be.
|
2015-04-11 19:42:30 +00:00
|
|
|
#define __LOCKONTIME 3.0 // Lock on won't occur sooner
|
2015-04-06 16:22:43 +00:00
|
|
|
#define __LOCKONTIMERANDOM 0.3 // Deviation in lock on time
|
|
|
|
#define __SENSORSQUARE 1 // Locking on sensor square side in angles
|
2015-04-04 23:55:53 +00:00
|
|
|
|
2015-04-11 17:44:13 +00:00
|
|
|
#define __OffsetX ((ctrlPosition __JavelinIGUITargetingLineV) select 0) - 0.5
|
|
|
|
#define __OffsetY ((ctrlPosition __JavelinIGUITargetingLineH) select 1) - 0.5
|
|
|
|
|
2015-04-12 23:18:39 +00:00
|
|
|
private["_isJavelin", "_args", "_lastTick", "_runTime", "_soundTime", "_lockTime", "_newTarget", "_currentTarget", "_range", "_pos", "_targetArray"];
|
|
|
|
|
|
|
|
if( ! ([ (configFile >> "CfgWeapons" >> (currentWeapon (vehicle ACE_player)) ), "launch_Titan_base"] call EFUNC(common,inheritsFrom))
|
|
|
|
|| { (vehicle ACE_player) != ACE_player }
|
|
|
|
) exitWith {
|
|
|
|
__JavelinIGUITargeting ctrlShow false;
|
|
|
|
__JavelinIGUITargetingGate ctrlShow false;
|
|
|
|
__JavelinIGUITargetingLines ctrlShow false;
|
|
|
|
__JavelinIGUITargetingConstraints ctrlShow false;
|
|
|
|
|
|
|
|
[(_this select 1)] call cba_fnc_removePerFrameHandler;
|
|
|
|
uiNamespace setVariable["ACE_RscOptics_javelin_PFH", nil];
|
|
|
|
};
|
2015-04-04 23:55:53 +00:00
|
|
|
|
|
|
|
// Reset arguments if we havnt rendered in over a second
|
|
|
|
_args = uiNamespace getVariable[QGVAR(arguments), [] ];
|
|
|
|
if( (count _args) > 0) then {
|
|
|
|
_lastTick = _args select 0;
|
|
|
|
if(diag_tickTime - _lastTick > 1) then {
|
|
|
|
[] call FUNC(onOpticLoad);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-04-12 23:18:39 +00:00
|
|
|
TRACE_1("Running", "Running");
|
|
|
|
|
2015-04-04 23:55:53 +00:00
|
|
|
// Pull the arguments
|
|
|
|
_currentTarget = _args select 1;
|
2015-04-05 18:51:39 +00:00
|
|
|
_runTime = _args select 2;
|
|
|
|
_lockTime = _args select 3;
|
|
|
|
_soundTime = _args select 4;
|
2015-04-04 23:55:53 +00:00
|
|
|
|
|
|
|
// Find a target within the optic range
|
|
|
|
_newTarget = objNull;
|
2015-04-06 16:22:43 +00:00
|
|
|
|
2015-04-05 18:51:39 +00:00
|
|
|
// Bail on fast movement
|
2015-04-06 16:22:43 +00:00
|
|
|
if ((velocity ACE_player) distance [0,0,0] > 0.5 && {cameraView == "GUNNER"} && {cameraOn == ACE_player}) exitWith { // keep it steady.
|
2015-04-05 18:51:39 +00:00
|
|
|
ACE_player switchCamera "INTERNAL";
|
|
|
|
};
|
|
|
|
|
2015-04-10 17:42:02 +00:00
|
|
|
// Refresh the firemode
|
|
|
|
[] call FUNC(showFireMode);
|
2015-04-05 18:51:39 +00:00
|
|
|
|
2015-04-04 23:55:53 +00:00
|
|
|
_range = parseNumber (ctrlText __JavelinIGUIRangefinder);
|
2015-04-13 15:59:36 +00:00
|
|
|
TRACE_1("Viewing range", _range);
|
2015-04-04 23:55:53 +00:00
|
|
|
if (_range > 50 && {_range < 2500}) then {
|
|
|
|
_pos = positionCameraToWorld [0,0,_range];
|
|
|
|
_targetArray = _pos nearEntities ["AllVehicles", _range/25];
|
2015-04-13 15:59:36 +00:00
|
|
|
TRACE_1("Searching at range", _targetArray);
|
2015-04-04 23:55:53 +00:00
|
|
|
if (count (_targetArray) > 0) then {
|
|
|
|
_newTarget = _targetArray select 0;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
if (isNull _newTarget) then {
|
|
|
|
_newTarget = cursorTarget;
|
|
|
|
};
|
|
|
|
|
2015-04-11 20:37:55 +00:00
|
|
|
// Create constants
|
|
|
|
_constraintTop = __ConstraintTop;
|
|
|
|
_constraintLeft = __ConstraintLeft;
|
|
|
|
_constraintBottom = __ConstraintBottom;
|
|
|
|
_constraintRight = __ConstraintRight;
|
|
|
|
|
|
|
|
_offsetX = __OffsetX;
|
|
|
|
_offsetY = __OffsetY;
|
|
|
|
|
|
|
|
__JavelinIGUITargeting ctrlShow true;
|
|
|
|
__JavelinIGUITargetingConstrains ctrlShow true;
|
|
|
|
|
2015-04-13 15:59:36 +00:00
|
|
|
_zamerny = if (_currentTarget isKindOf "CAManBase") then {_currentTarget selectionPosition "body"} else {_currentTarget selectionPosition "zamerny"};
|
|
|
|
_randomPosWithinBounds = [(_zamerny select 0) + 1 - (random 2.0),(_zamerny select 1) + 1 - (random 2.0),(_zamerny select 2) + 0.5 - (random 1.0)];
|
|
|
|
|
|
|
|
_apos = worldToScreen (_currentTarget modelToWorld _randomPosWithinBounds);
|
|
|
|
|
|
|
|
_aposX = 0;
|
|
|
|
_aposY = 0;
|
|
|
|
if (count _apos < 2) then {
|
|
|
|
_aposX = 1;
|
|
|
|
_aposY = 0;
|
|
|
|
} else {
|
|
|
|
_aposX = (_apos select 0) + _offsetX;
|
|
|
|
_aposY = (_apos select 1) + _offsetY;
|
|
|
|
};
|
|
|
|
|
2015-04-04 23:55:53 +00:00
|
|
|
if (isNull _newTarget) then {
|
|
|
|
// No targets found
|
|
|
|
_currentTarget = objNull;
|
2015-04-05 18:51:39 +00:00
|
|
|
_lockTime = 0;
|
|
|
|
|
2015-04-04 23:55:53 +00:00
|
|
|
__JavelinIGUISeek ctrlSetTextColor __ColorGray;
|
|
|
|
__JavelinIGUINFOV ctrlSetTextColor __ColorGreen;
|
2015-04-12 23:18:39 +00:00
|
|
|
__JavelinIGUITargeting ctrlShow false;
|
2015-04-04 23:55:53 +00:00
|
|
|
__JavelinIGUITargetingGate ctrlShow false;
|
|
|
|
__JavelinIGUITargetingLines ctrlShow false;
|
2015-04-12 23:18:39 +00:00
|
|
|
__JavelinIGUITargetingConstraints ctrlShow false;
|
2015-04-04 23:55:53 +00:00
|
|
|
|
2015-04-09 02:51:21 +00:00
|
|
|
ACE_player setVariable ["ace_missileguidance_target",nil, false];
|
2015-04-04 23:55:53 +00:00
|
|
|
|
|
|
|
// Disallow fire
|
2015-04-06 16:22:43 +00:00
|
|
|
//if (ACE_player ammo "Javelin" > 0 || {ACE_player ammo "ACE_Javelin_Direct" > 0}) then {ACE_player setWeaponReloadingTime //[player, "Javelin", 0.2];};
|
2015-04-04 23:55:53 +00:00
|
|
|
} else {
|
2015-04-05 18:51:39 +00:00
|
|
|
if (_newTarget distance ACE_player < 2500
|
2015-04-12 23:18:39 +00:00
|
|
|
&& {(call CBA_fnc_getFoV) select 1 > 9}
|
|
|
|
&& { (currentVisionMode ACE_player == 2)}
|
|
|
|
&& GVAR(isLockKeyDown)
|
2015-04-04 23:55:53 +00:00
|
|
|
) then {
|
2015-04-05 18:51:39 +00:00
|
|
|
// Lock on after 3 seconds
|
|
|
|
if(_currentTarget != _newTarget) then {
|
|
|
|
TRACE_1("New Target, reseting locking", _newTarget);
|
|
|
|
_lockTime = diag_tickTime;
|
|
|
|
_currentTarget = _newTarget;
|
|
|
|
|
|
|
|
playSound "ACE_Javelin_Locking";
|
|
|
|
} else {
|
2015-04-11 19:42:30 +00:00
|
|
|
if(diag_tickTime - _lockTime > __LOCKONTIME) then {
|
2015-04-05 18:51:39 +00:00
|
|
|
TRACE_2("LOCKED!", _currentTarget, _lockTime);
|
2015-04-10 21:20:06 +00:00
|
|
|
|
2015-04-05 18:51:39 +00:00
|
|
|
__JavelinIGUISeek ctrlSetTextColor __ColorGreen;
|
|
|
|
__JavelinIGUINFOV ctrlSetTextColor __ColorNull;
|
2015-04-12 23:18:39 +00:00
|
|
|
|
2015-04-11 18:17:34 +00:00
|
|
|
__JavelinIGUITargeting ctrlShow true;
|
2015-04-12 23:18:39 +00:00
|
|
|
__JavelinIGUITargetingConstrains ctrlShow false;
|
2015-04-10 21:20:06 +00:00
|
|
|
__JavelinIGUITargetingGate ctrlShow true;
|
|
|
|
__JavelinIGUITargetingLines ctrlShow true;
|
2015-04-13 15:59:36 +00:00
|
|
|
|
2015-04-10 21:20:06 +00:00
|
|
|
// Move target marker to coords.
|
2015-04-13 15:59:36 +00:00
|
|
|
//__JavelinIGUITargetingLineV ctrlSetPosition [_aposX,ctrlPosition __JavelinIGUITargetingLineV select 1];
|
|
|
|
//__JavelinIGUITargetingLineH ctrlSetPosition [ctrlPosition __JavelinIGUITargetingLineH select 0,_aposY];
|
|
|
|
//{_x ctrlCommit __TRACKINTERVAL} forEach [__JavelinIGUITargetingLineH,__JavelinIGUITargetingLineV];
|
2015-04-10 21:20:06 +00:00
|
|
|
|
|
|
|
_boundsInput = if (_currentTarget isKindOf "CAManBase") then {
|
|
|
|
[_currentTarget,[-1,-1,-2],_currentTarget selectionPosition "body"];
|
|
|
|
} else {
|
|
|
|
[_currentTarget,[-1,-1,-2],_currentTarget selectionPosition "zamerny"];
|
|
|
|
};
|
|
|
|
|
2015-04-11 17:44:13 +00:00
|
|
|
_bpos = _boundsInput call EFUNC(common,worldToScreenBounds);
|
|
|
|
|
2015-04-10 21:20:06 +00:00
|
|
|
_minX = ((_bpos select 0) + _offsetX) max _constraintLeft;
|
|
|
|
_minY = ((_bpos select 1) + _offsetY) max _constraintTop;
|
|
|
|
_maxX = ((_bpos select 2) + _offsetX) min (_constraintRight - 0.025*(3/4)*SafezoneH);
|
|
|
|
_maxY = ((_bpos select 3) + _offsetY) min (_constraintBottom - 0.025*SafezoneH);
|
|
|
|
|
2015-04-11 17:44:13 +00:00
|
|
|
TRACE_4("", _boundsInput, _bpos, _minX, _minY);
|
|
|
|
|
2015-04-10 21:20:06 +00:00
|
|
|
__JavelinIGUITargetingGateTL ctrlSetPosition [_minX,_minY];
|
|
|
|
__JavelinIGUITargetingGateTR ctrlSetPosition [_maxX,_minY];
|
|
|
|
__JavelinIGUITargetingGateBL ctrlSetPosition [_minX,_maxY];
|
|
|
|
__JavelinIGUITargetingGateBR ctrlSetPosition [_maxX,_maxY];
|
|
|
|
|
|
|
|
{_x ctrlCommit __TRACKINTERVAL} forEach [__JavelinIGUITargetingGateTL,__JavelinIGUITargetingGateTR,__JavelinIGUITargetingGateBL,__JavelinIGUITargetingGateBR];
|
|
|
|
|
2015-04-09 02:51:21 +00:00
|
|
|
ACE_player setVariable["ace_missileguidance_target", _currentTarget, false];
|
2015-04-05 18:51:39 +00:00
|
|
|
|
|
|
|
if(diag_tickTime > _soundTime) then {
|
|
|
|
playSound "ACE_Javelin_Locked";
|
|
|
|
_soundTime = diag_tickTime + 0.25;
|
|
|
|
};
|
|
|
|
} else {
|
2015-04-11 20:37:55 +00:00
|
|
|
__JavelinIGUITargeting ctrlShow true;
|
|
|
|
__JavelinIGUITargetingGate ctrlShow true;
|
2015-04-13 15:59:36 +00:00
|
|
|
__JavelinIGUITargetingConstrains ctrlShow true;
|
2015-04-11 20:37:55 +00:00
|
|
|
__JavelinIGUITargetingLines ctrlShow false;
|
|
|
|
|
|
|
|
ACE_player setVariable["ace_missileguidance_target", nil, false];
|
|
|
|
|
|
|
|
_boundsInput = if (_currentTarget isKindOf "CAManBase") then {
|
|
|
|
[_newTarget,[-1,-1,-2],_currentTarget selectionPosition "body"];
|
|
|
|
} else {
|
|
|
|
[_newTarget,[-1,-1,-1],_currentTarget selectionPosition "zamerny"];
|
|
|
|
};
|
|
|
|
|
|
|
|
_bpos = _boundsInput call EFUNC(common,worldToScreenBounds);
|
|
|
|
|
|
|
|
_minX = ((_bpos select 0) + _offsetX) max _constraintLeft;
|
|
|
|
_minY = ((_bpos select 1) + _offsetY) max _constraintTop;
|
|
|
|
_maxX = ((_bpos select 2) + _offsetX) min (_constraintRight - 0.025*(3/4)*SafezoneH);
|
|
|
|
_maxY = ((_bpos select 3) + _offsetY) min (_constraintBottom - 0.025*SafezoneH);
|
|
|
|
|
2015-04-13 15:59:36 +00:00
|
|
|
TRACE_4("", _boundsInput, _bpos, _minX, _minY);
|
|
|
|
|
2015-04-11 20:37:55 +00:00
|
|
|
__JavelinIGUITargetingGateTL ctrlSetPosition [_minX,_minY];
|
|
|
|
__JavelinIGUITargetingGateTR ctrlSetPosition [_maxX,_minY];
|
|
|
|
__JavelinIGUITargetingGateBL ctrlSetPosition [_minX,_maxY];
|
|
|
|
__JavelinIGUITargetingGateBR ctrlSetPosition [_maxX,_maxY];
|
|
|
|
|
|
|
|
{_x ctrlCommit __TRACKINTERVAL} forEach [__JavelinIGUITargetingGateTL,__JavelinIGUITargetingGateTR,__JavelinIGUITargetingGateBL,__JavelinIGUITargetingGateBR];
|
|
|
|
|
2015-04-05 18:51:39 +00:00
|
|
|
if(diag_tickTime > _soundTime) then {
|
|
|
|
playSound "ACE_Javelin_Locking";
|
|
|
|
_soundTime = diag_tickTime + 0.25;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2015-04-04 23:55:53 +00:00
|
|
|
} else {
|
|
|
|
// Something is wrong with our seek
|
|
|
|
_currentTarget = objNull;
|
2015-04-12 23:18:39 +00:00
|
|
|
ACE_player setVariable["ace_missileguidance_target", nil, false];
|
|
|
|
|
2015-04-04 23:55:53 +00:00
|
|
|
__JavelinIGUISeek ctrlSetTextColor __ColorGray;
|
|
|
|
__JavelinIGUINFOV ctrlSetTextColor __ColorGray;
|
2015-04-12 23:18:39 +00:00
|
|
|
__JavelinIGUITargeting ctrlShow false;
|
2015-04-04 23:55:53 +00:00
|
|
|
__JavelinIGUITargetingGate ctrlShow false;
|
|
|
|
__JavelinIGUITargetingLines ctrlShow false;
|
|
|
|
|
2015-04-09 02:51:21 +00:00
|
|
|
ACE_player setVariable ["ace_missileguidance_target",nil, false];
|
2015-04-04 23:55:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-04-05 18:51:39 +00:00
|
|
|
//TRACE_2("", _newTarget, _currentTarget);
|
2015-04-04 23:55:53 +00:00
|
|
|
|
2015-04-05 00:15:59 +00:00
|
|
|
// Save arguments for next run
|
2015-04-04 23:55:53 +00:00
|
|
|
_args set[0, diag_tickTime];
|
|
|
|
_args set[1, _currentTarget];
|
2015-04-05 18:51:39 +00:00
|
|
|
_args set[2, _runTime];
|
|
|
|
_args set[3, _lockTime];
|
|
|
|
_args set[4, _soundTime];
|
2015-04-04 23:55:53 +00:00
|
|
|
|
|
|
|
uiNamespace setVariable[QGVAR(arguments), _args ];
|