ACE3/addons/concertina_wire/functions/fnc_dismount.sqf

38 lines
930 B
Plaintext
Raw Normal View History

/*
* Author: Ruthberg
*
* Start dismounting the concertina wire
*
* Arguments:
* 0: wire <OBJECT>
* 1: unit <OBJECT>
*
* Return Value:
* None
2015-08-09 00:19:34 +00:00
*
* Public: No
*/
2015-06-04 15:11:09 +00:00
#include "script_component.hpp"
// If the cursorMenu is open, the loading bar will fail. If we execute the function one frame later, it will work fine
2015-11-30 16:14:05 +00:00
if (uiNamespace getVariable [QEGVAR(interact_menu,cursorMenuOpened),false]) exitWith {
2015-06-04 15:11:09 +00:00
[{
_this call FUNC(dismount);
}, _this] call CBA_fnc_execNextFrame;
2015-06-04 15:11:09 +00:00
};
2015-08-09 00:19:34 +00:00
params ["_wire", "_unit"];
2015-06-04 15:11:09 +00:00
private _config = (configFile >> "CfgVehicles" >> typeOf _unit);
private _delay = [120, 60] select (getNumber (_config >> "engineer") == 1 || {getNumber (_config >> "canDeactivateMines") == 1});
2015-06-04 15:11:09 +00:00
// TODO: Animation?
[
_delay,
[_wire],
{(_this select 0) call FUNC(dismountSuccess)},
{},
localize "STR_ACE_UNROLLWIRE",
{true},
["isnotinside"]
] call EFUNC(common,progressBar);