ACE3/addons/refuel/functions/fnc_canDisconnect.sqf

30 lines
745 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
2015-08-13 17:33:55 +00:00
/*
* Author: GitHawk
* Check if a unit can disconnect a fuel nozzle
*
* Arguments:
2015-08-20 20:10:26 +00:00
* 0: Unit <OBJECT>
* 1: Nozzle <OBJECT>
2015-08-13 17:33:55 +00:00
*
* Return Value:
2015-08-14 01:18:54 +00:00
* Can disconnect <BOOL>
2015-08-13 17:33:55 +00:00
*
* Example:
2015-08-20 20:10:26 +00:00
* [player, nozzle] call ace_refuel_fnc_canDisconnect
2015-08-13 17:33:55 +00:00
*
2015-08-14 01:18:54 +00:00
* Public: No
2015-08-13 17:33:55 +00:00
*/
params [["_unit", objNull, [objNull]], ["_nozzle", objNull, [objNull]]];
2015-08-13 17:33:55 +00:00
2015-08-20 20:10:26 +00:00
if (isNull _unit ||
{isNull _nozzle} ||
{!(_unit isKindOf "CAManBase")} ||
{!local _unit} ||
{!isNull (_unit getVariable [QGVAR(nozzle), objNull])} ||
2015-08-20 20:10:26 +00:00
{(_nozzle distance _unit) > REFUEL_ACTION_DISTANCE}) exitWith {false};
2015-08-13 17:33:55 +00:00
private _sink = _nozzle getVariable [QGVAR(sink), objNull];
2015-08-20 20:10:26 +00:00
!((isNull _sink) || {_nozzle getVariable [QGVAR(isRefueling), false]})