2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-11-29 23:14:46 +00:00
|
|
|
/*
|
|
|
|
* Author: BaerMitUmlaut
|
|
|
|
* Handles ropes breaking when deployed.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: RopeBreak EH arguments <ARRAY>
|
|
|
|
* 1: Part of rope ("top" or "bottom") <STRING>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
|
|
|
* [[array]], "top"] call ace_fastroping_fnc_onRopeBreak
|
|
|
|
*
|
2015-11-29 23:14:46 +00:00
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
params ["_ehArgs", "_part"];
|
|
|
|
_ehArgs params ["_rope", "_helper1", "_helper2"];
|
|
|
|
|
|
|
|
if (_part == "bottom") then {
|
|
|
|
_helper2 = (ropeAttachedObjects _helper1) select 0;
|
|
|
|
};
|
|
|
|
|
2017-09-21 14:16:04 +00:00
|
|
|
private _vehicle = attachedTo _helper2;
|
2015-11-29 23:14:46 +00:00
|
|
|
if (isNil "_vehicle") exitWith {}; //Exit when vehicle got destroyed
|
|
|
|
if (_vehicle isKindOf "ACE_friesBase") then {
|
|
|
|
_vehicle = attachedTo _vehicle;
|
|
|
|
};
|
|
|
|
|
2017-09-21 14:16:04 +00:00
|
|
|
private _deployedRopes = _vehicle getVariable [QGVAR(deployedRopes), []];
|
|
|
|
private _brokenRope = [];
|
2015-11-29 23:14:46 +00:00
|
|
|
{
|
2015-11-30 17:35:34 +00:00
|
|
|
if ((_x select 1 == _rope) || {(_x select 2 == _rope)}) exitWith {
|
2015-11-29 23:14:46 +00:00
|
|
|
_brokenRope = _x;
|
|
|
|
};
|
|
|
|
} forEach _deployedRopes;
|
2018-04-12 15:23:18 +00:00
|
|
|
_brokenRope set [6, true];
|
2015-11-29 23:14:46 +00:00
|
|
|
_vehicle setVariable [QGVAR(deployedRopes), _deployedRopes, true];
|
|
|
|
|
2017-09-21 14:16:04 +00:00
|
|
|
private _unit = {
|
2015-11-29 23:14:46 +00:00
|
|
|
if (_x isKindOf "CAManBase") exitWith {_x};
|
|
|
|
} forEach (attachedObjects (_brokenRope select 3));
|
|
|
|
|
2020-02-11 22:42:25 +00:00
|
|
|
if (!isNil "_unit") then {
|
2015-11-29 23:14:46 +00:00
|
|
|
if (_part == "top") then {
|
|
|
|
detach _unit;
|
|
|
|
} else {
|
|
|
|
//TODO: ???
|
|
|
|
//Rope might break at the very bottom
|
|
|
|
//-> letting the unit fall is not always ideal
|
|
|
|
};
|
|
|
|
};
|