ACE3/addons/tacticalladder/functions/fnc_confirmTLdeploy.sqf

42 lines
959 B
Plaintext

/*
* Author: Rocko, Ruthberg, commy2
* Confirm tactical ladder deployment
*
* Arguments:
* 0: unit <OBJECT>
* 1: ladder <OBJECT>
*
* Return Value:
* Success <BOOL>
*
* Example:
* [_ladder] call ace_tacticalladder_fnc_confirmTLdeploy
*
* Public: No
*/
#include "script_component.hpp"
params ["_unit", "_ladder"];
// enable running again
[_unit, "ACE_Ladder", false] call EFUNC(common,setForceWalkStatus);
private ["_pos1", "_pos2"];
_pos1 = getPosASL _ladder;
_pos2 = AGLToASL (_ladder modelToWorld (_ladder selectionPosition "check2"));
if (lineIntersects [_pos1, _pos2, _ladder]) exitWith {false};
detach _ladder;
// remove mouse buttons and hint
call EFUNC(interaction,hideMouseHint);
[_unit, "DefaultAction", _unit getVariable [QGVAR(Deploy), -1]] call EFUNC(common,removeActionEventHandler);
[_unit, "zoomtemp", _unit getVariable [QGVAR(Cancel), -1]] call EFUNC(common,removeActionEventHandler);
GVAR(ladder) = objNull;
true