mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
68 lines
1.9 KiB
Plaintext
68 lines
1.9 KiB
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Glowbal
|
|
* Start load item.
|
|
*
|
|
* Arguments:
|
|
* 0: Player <OBJECT>
|
|
* 1: Object <OBJECT>
|
|
* 2: Vehicle <OBJECT> (Optional)
|
|
*
|
|
* Return Value:
|
|
* Load ProgressBar Started <BOOL>
|
|
*
|
|
* Example:
|
|
* [player, cursorTarget] call ace_cargo_fnc_startLoadIn
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_player", "_object", ["_cargoVehicle", objNull]];
|
|
TRACE_3("params",_player,_object,_cargoVehicle);
|
|
|
|
private _vehicle = _cargoVehicle;
|
|
if (isNull _vehicle) then {
|
|
{
|
|
if ([_object, _x] call FUNC(canLoadItemIn)) exitWith {_vehicle = _x};
|
|
} forEach (nearestObjects [_player, GVAR(cargoHolderTypes), (MAX_LOAD_DISTANCE + 10)]);
|
|
};
|
|
|
|
if (isNull _vehicle) exitWith {
|
|
TRACE_3("Could not find vehicle",_player,_object,_vehicle);
|
|
false
|
|
};
|
|
|
|
private _return = false;
|
|
// Start progress bar
|
|
if ([_object, _vehicle] call FUNC(canLoadItemIn)) then {
|
|
[_player, _object, true] call EFUNC(common,claim);
|
|
private _size = [_object] call FUNC(getSizeItem);
|
|
|
|
[
|
|
GVAR(loadTimeCoefficient) * _size,
|
|
[_object, _vehicle],
|
|
{
|
|
TRACE_1("load finish",_this);
|
|
[objNull, _this select 0 select 0, true] call EFUNC(common,claim);
|
|
["ace_loadCargo", _this select 0] call CBA_fnc_localEvent;
|
|
},
|
|
{
|
|
TRACE_1("load fail",_this);
|
|
[objNull, _this select 0 select 0, true] call EFUNC(common,claim);
|
|
},
|
|
localize LSTRING(LoadingItem),
|
|
{
|
|
(_this select 0) params ["_item", "_target"];
|
|
(alive _target) && {locked _target < 2} && {alive _item}
|
|
&& {([_item, _target] call EFUNC(interaction,getInteractionDistance)) < MAX_LOAD_DISTANCE}
|
|
},
|
|
["isNotSwimming"]
|
|
] call EFUNC(common,progressBar);
|
|
_return = true;
|
|
} else {
|
|
private _displayName = [_object, true] call FUNC(getNameItem);
|
|
[[LSTRING(LoadingFailed), _displayName], 3] call EFUNC(common,displayTextStructured);
|
|
};
|
|
|
|
_return
|