ACE3/addons/cargo/functions/fnc_unloadItem.sqf

62 lines
2.0 KiB
Plaintext
Raw Normal View History

2015-08-10 21:07:47 +00:00
/*
* Author: Glowbal, ViperMaul
2015-08-16 20:41:35 +00:00
* Unload object from vehicle.
2015-08-10 21:07:47 +00:00
*
* Arguments:
* 0: Item <OBJECT or STRING>
2015-08-10 21:07:47 +00:00
* 1: Vehicle <OBJECT>
*
* Return value:
* Object unloaded <BOOL>
2015-08-10 21:07:47 +00:00
*
2015-08-16 20:41:35 +00:00
* Example:
* [object, vehicle] call ace_cargo_fnc_unloadItem
*
2015-08-10 21:07:47 +00:00
* Public: No
*/
#include "script_component.hpp"
2016-01-27 00:01:01 +00:00
params ["_item", "_vehicle", ["_unloader", objNull]];
TRACE_3("params",_item,_vehicle,_unloader);
2015-08-10 21:07:47 +00:00
2016-01-27 00:01:01 +00:00
private _itemClass = if (_item isEqualType "") then {_item} else {typeOf _item};
2015-08-10 21:07:47 +00:00
2016-01-27 00:01:01 +00:00
//This covers testing vehicle stability and finding a safe position
private _emptyPosAGL = [_vehicle, _itemClass, _unloader] call EFUNC(common,findUnloadPosition);
TRACE_1("findUnloadPosition",_emptyPosAGL);
2016-01-27 00:01:01 +00:00
if ((count _emptyPosAGL) != 3) exitWith {
TRACE_4("Could not find unload pos",_vehicle,getPosASL _vehicle,isTouchingGround _vehicle,speed _vehicle);
if ((!isNull _unloader) && {_unloader == ACE_player}) then {
//display text saying there are no safe places to exit the vehicle
2016-05-24 13:13:11 +00:00
["ace_displayTextStructured", [localize ELSTRING(common,NoRoomToUnload)]] call CBA_fnc_localEvent;
2015-08-10 21:07:47 +00:00
};
2016-01-27 00:01:01 +00:00
false
2015-08-10 21:07:47 +00:00
};
2016-01-19 03:53:48 +00:00
private _loaded = _vehicle getVariable [QGVAR(loaded), []];
2016-01-27 00:01:01 +00:00
if !(_item in _loaded) exitWith {
ACE_LOGERROR_3("Tried to unload item [%1] not in vehicle[%2] cargo[%3]", _item, _vehicle, _loaded);
false
};
_loaded deleteAt (_loaded find _item);
2015-08-16 20:41:35 +00:00
_vehicle setVariable [QGVAR(loaded), _loaded, true];
2015-08-10 21:07:47 +00:00
2016-01-19 03:53:48 +00:00
private _space = [_vehicle] call FUNC(getCargoSpaceLeft);
private _itemSize = [_item] call FUNC(getSizeItem);
2015-08-16 20:41:35 +00:00
_vehicle setVariable [QGVAR(space), (_space + _itemSize), true];
2015-08-10 21:07:47 +00:00
if (_item isEqualType objNull) then {
detach _item;
// hideObjectGlobal must be executed before setPos to ensure light objects are rendered correctly
// do both on server to ensure they are executed in the correct order
2016-05-24 13:13:11 +00:00
["ace_serverUnloadCargo", [_item, _emptyPosAGL]] call CBA_fnc_serverEvent;
} else {
2016-01-27 00:01:01 +00:00
private _newItem = createVehicle [_item, _emptyPosAGL, [], 0, ""];
_newItem setPosASL (AGLtoASL _emptyPosAGL);
};
true