ACE3/addons/quickmount/functions/fnc_canShowFreeSeats.sqf
2019-03-21 21:29:51 -05:00

46 lines
1011 B
Plaintext

#include "script_component.hpp"
/*
* Author: Dystopian
* Checks if Free Seats menu can be shown.
*
* Arguments:
* 0: Vehicle <OBJECT>
* 1: Unit <OBJECT>
* 2: Args <ARRAY>
*
* Return Value:
* Can show menu <BOOL>
*
* Example:
* [cursorObject, player] call ace_quickmount_fnc_canShowFreeSeats
*
* Public: No
*/
params ["_vehicle", "_unit", "_args"];
_args set [0, []];
private _isInVehicle = _unit in _vehicle;
GVAR(enabled)
&& {
GVAR(enableMenu) == 3
|| {_isInVehicle && {GVAR(enableMenu) == 2}}
|| {!_isInVehicle && {GVAR(enableMenu) == 1}}
}
&& {alive _vehicle}
&& {2 > locked _vehicle}
&& {
-1 == crew _vehicle findIf {alive _x}
|| {0.6 <= side group _unit getFriend side group _vehicle}
}
&& {
0.3 < vectorUp _vehicle select 2 // moveIn* and GetIn* don't work for flipped vehicles
|| {_vehicle isKindOf "Air"} // except Air
}
&& {
private _subActions = _this call FUNC(addFreeSeatsActions);
_args set [0, _subActions];
!([] isEqualTo _subActions)
}