ACE3/addons/common/functions/fnc_loadPersonLocal.sqf

44 lines
1.3 KiB
Plaintext
Raw Normal View History

2015-01-16 23:21:47 +00:00
/**
* fn_loadPersonLocal_f.sqf
* @Descr: Load a person, local
* @Author: Glowbal
*
* @Arguments: [unit OBJECT, vehicle OBJECT, caller OBJECT]
* @Return: void
* @PublicAPI: false
*/
#include "script_component.hpp"
private ["_unit","_vehicle","_caller","_handle","_loaded"];
_unit = [_this, 0, ObjNull,[ObjNull]] call BIS_fnc_Param;
_vehicle = [_this, 1, ObjNull,[ObjNull]] call BIS_fnc_Param;
_caller = [_this, 2, ObjNull,[ObjNull]] call BIS_fnc_Param;
if (!alive _unit) then {
_unit = [_unit,_caller] call FUNC(makeCopyOfBody);
2015-01-16 23:21:47 +00:00
};
_unit moveInCargo _vehicle;
_loaded = _vehicle getvariable [QGVAR(loaded_persons),[]];
2015-01-16 23:21:47 +00:00
_loaded pushback _unit;
_vehicle setvariable [QGVAR(loaded_persons),_loaded,true];
2015-01-16 23:21:47 +00:00
if (!([_unit] call FUNC(isAwake))) then {
2015-01-18 19:09:19 +00:00
_handle = [_unit,_vehicle] spawn {
private ["_unit","_vehicle"];
_unit = _this select 0;
_vehicle = _this select 1;
waituntil {vehicle _unit == _vehicle};
sleep 0.5;
2015-05-01 17:12:13 +00:00
//Save the "awake" animation before applying the death animation
if (vehicle _unit == _vehicle) then {
_unit setVariable [QEGVAR(medical,vehicleAwakeAnim), [_vehicle, (animationState _unit)]];
};
2015-05-01 17:58:56 +00:00
[_unit,([_unit] call FUNC(getDeathAnim)), 1, true] call FUNC(doAnimation);
2015-01-18 19:09:19 +00:00
};
2015-01-16 23:21:47 +00:00
} else {
2015-01-18 19:09:19 +00:00
if ([_unit] call FUNC(isArrested)) then {
2015-01-16 23:21:47 +00:00
2015-01-18 19:09:19 +00:00
};
2015-01-16 23:21:47 +00:00
};