2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-05-25 16:41:24 +00:00
|
|
|
/*
|
|
|
|
* Author: ViperMaul
|
|
|
|
* Unload a person from a vehicle, local
|
|
|
|
*
|
|
|
|
* Arguments:
|
2017-09-22 15:33:08 +00:00
|
|
|
* 0: Unit to unload <OBJECT>
|
2016-01-27 00:01:01 +00:00
|
|
|
* 1: Vehicle <OBJECT>
|
2017-09-22 15:33:08 +00:00
|
|
|
* 2: Unloader (player) <OBJECT> (default: objNull)
|
2015-05-25 16:41:24 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2017-09-22 15:33:08 +00:00
|
|
|
* Succesfully unloaded person <BOOL>
|
2015-05-25 16:41:24 +00:00
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
2020-04-25 06:41:45 +00:00
|
|
|
* [bob, car, bob] call ace_common_fnc_unloadPersonLocal
|
2017-06-08 13:31:51 +00:00
|
|
|
*
|
2015-05-25 16:41:24 +00:00
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2016-04-08 18:43:26 +00:00
|
|
|
#define GROUP_SWITCH_ID QFUNC(loadPerson)
|
2015-05-25 16:41:24 +00:00
|
|
|
|
2016-01-27 00:01:01 +00:00
|
|
|
params ["_unit", "_vehicle", ["_unloader", objNull]];
|
2019-09-05 20:56:53 +00:00
|
|
|
TRACE_3("unloadpersonLocal",_unit,_vehicle,_unloader);
|
2015-09-18 17:12:38 +00:00
|
|
|
|
2016-01-27 00:01:01 +00:00
|
|
|
//This covers testing vehicle stability and finding a safe position
|
|
|
|
private _emptyPos = [_vehicle, (typeOf _unit), _unloader] call EFUNC(common,findUnloadPosition);
|
|
|
|
TRACE_1("findUnloadPosition",_emptyPos);
|
2019-09-05 20:56:53 +00:00
|
|
|
if (_emptyPos isEqualTo []) then {
|
|
|
|
_emptyPos = [_vehicle, (typeOf _unit), _unloader] call EFUNC(common,findUnloadPosition);
|
|
|
|
TRACE_1("findUnloadPosition 2nd attempt",_emptyPos);
|
|
|
|
if (_emptyPos isEqualTo []) then {
|
|
|
|
_emptyPos = [_vehicle, (typeOf _unit), _unloader] call EFUNC(common,findUnloadPosition);
|
|
|
|
TRACE_1("findUnloadPosition 3rd attempt",_emptyPos);
|
|
|
|
};
|
|
|
|
};
|
2015-05-25 16:41:24 +00:00
|
|
|
|
2016-01-27 00:01:01 +00:00
|
|
|
if (count _emptyPos != 3) exitwith {
|
2016-10-02 10:55:31 +00:00
|
|
|
WARNING_4("Could not find unload pos %1-ASL: %2 isTouchingGround: %3 Speed: %4",_vehicle, getPosASL _vehicle, isTouchingGround _vehicle, speed _vehicle);
|
2016-01-27 00:01:01 +00:00
|
|
|
if ((!isNull _unloader) && {[_unloader] call FUNC(isPlayer)}) then {
|
|
|
|
//display text saying there are no safe places to exit the vehicle
|
2016-06-04 10:12:56 +00:00
|
|
|
[QGVAR(displayTextStructured), [localize LSTRING(NoRoomToUnload)], [_unloader]] call CBA_fnc_targetEvent;
|
2015-09-18 17:12:38 +00:00
|
|
|
};
|
2015-08-26 13:20:11 +00:00
|
|
|
false
|
|
|
|
};
|
2015-06-23 23:11:00 +00:00
|
|
|
|
2015-05-25 16:41:24 +00:00
|
|
|
unassignVehicle _unit;
|
2015-06-11 22:56:11 +00:00
|
|
|
[_unit] orderGetIn false;
|
2015-09-18 17:12:38 +00:00
|
|
|
|
2017-09-26 22:45:10 +00:00
|
|
|
TRACE_1("Ejecting", alive _unit);
|
2021-07-23 22:25:00 +00:00
|
|
|
private _vehicle = vehicle _unit;
|
|
|
|
if (local _vehicle) then {
|
|
|
|
_unit action ["Eject", _vehicle];
|
|
|
|
// Failsafe - sometimes eject alone doesn't work, but moveOut does
|
|
|
|
[{
|
|
|
|
params ["_unit"];
|
2015-09-18 17:12:38 +00:00
|
|
|
|
2021-07-23 22:25:00 +00:00
|
|
|
if (vehicle _unit != _unit) then {
|
|
|
|
WARNING_1("UnloadPersonLocal [%1] did not eject normally",_unit);
|
|
|
|
moveOut _unit;
|
|
|
|
};
|
|
|
|
}, [_unit], 1] call CBA_fnc_waitAndExecute;
|
2020-11-15 18:57:27 +00:00
|
|
|
|
2021-07-23 22:25:00 +00:00
|
|
|
} else {
|
|
|
|
moveOut _unit;
|
|
|
|
};
|
2020-11-15 18:57:27 +00:00
|
|
|
|
2015-09-18 17:12:38 +00:00
|
|
|
[{
|
2019-09-05 20:56:53 +00:00
|
|
|
params ["_unit", "_emptyPos"];
|
|
|
|
(alive _unit) && {(vehicle _unit) != _unit}
|
|
|
|
}, {
|
|
|
|
params ["_unit", "_emptyPos"];
|
|
|
|
TRACE_2("success",_unit,_emptyPos);
|
2015-09-18 17:12:38 +00:00
|
|
|
_unit setPosASL AGLToASL _emptyPos;
|
2019-09-05 20:56:53 +00:00
|
|
|
}, [_unit, _emptyPos], 2, {
|
|
|
|
params ["_unit", "_emptyPos"];
|
|
|
|
if (!alive _unit) exitWith {};
|
|
|
|
WARNING_2("timeout %1->%2",_unit,vehicle _unit);
|
|
|
|
}] call CBA_fnc_waitUntilAndExecute;
|
2015-05-25 16:41:24 +00:00
|
|
|
|
|
|
|
[_unit, false, GROUP_SWITCH_ID, side group _unit] call FUNC(switchToGroupSide);
|
|
|
|
|
2015-08-26 13:20:11 +00:00
|
|
|
true
|