2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-08-10 21:07:47 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
2015-08-16 20:41:35 +00:00
|
|
|
* Start load item.
|
2015-08-10 21:07:47 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2016-01-19 03:53:48 +00:00
|
|
|
* 0: Player <OBJECT>
|
|
|
|
* 1: Object <OBJECT>
|
2017-05-31 15:02:25 +00:00
|
|
|
* 2: Vehicle <OBJECT> (Optional)
|
2015-08-10 21:07:47 +00:00
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Return Value:
|
2016-01-19 03:53:48 +00:00
|
|
|
* Load ProgressBar Started <BOOL>
|
2015-08-10 21:07:47 +00:00
|
|
|
*
|
2015-08-16 20:41:35 +00:00
|
|
|
* Example:
|
2016-01-19 03:53:48 +00:00
|
|
|
* [player, cursorTarget] call ace_cargo_fnc_startLoadIn
|
2015-08-16 20:41:35 +00:00
|
|
|
*
|
2015-08-10 21:07:47 +00:00
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2017-05-31 15:02:25 +00:00
|
|
|
params ["_player", "_object", ["_cargoVehicle", objNull]];
|
|
|
|
TRACE_3("params",_player,_object,_cargoVehicle);
|
2015-08-10 21:07:47 +00:00
|
|
|
|
2017-05-31 15:02:25 +00:00
|
|
|
private _vehicle = _cargoVehicle;
|
|
|
|
if (isNull _vehicle) then {
|
2015-08-14 20:01:14 +00:00
|
|
|
{
|
2015-09-27 16:19:40 +00:00
|
|
|
if ([_object, _x] call FUNC(canLoadItemIn)) exitWith {_vehicle = _x};
|
2017-11-10 14:28:12 +00:00
|
|
|
} forEach (nearestObjects [_player, GVAR(cargoHolderTypes), (MAX_LOAD_DISTANCE + 10)]);
|
2015-08-14 20:01:14 +00:00
|
|
|
};
|
|
|
|
|
2016-01-19 03:53:48 +00:00
|
|
|
if (isNull _vehicle) exitWith {
|
|
|
|
TRACE_3("Could not find vehicle",_player,_object,_vehicle);
|
|
|
|
false
|
|
|
|
};
|
2015-08-16 20:48:52 +00:00
|
|
|
|
2016-01-27 20:56:25 +00:00
|
|
|
private _return = false;
|
2015-09-27 16:19:40 +00:00
|
|
|
// Start progress bar
|
|
|
|
if ([_object, _vehicle] call FUNC(canLoadItemIn)) then {
|
2017-11-29 20:07:30 +00:00
|
|
|
[_player, _object, true] call EFUNC(common,claim);
|
2016-01-19 03:53:48 +00:00
|
|
|
private _size = [_object] call FUNC(getSizeItem);
|
2015-09-27 16:19:40 +00:00
|
|
|
|
2016-02-23 23:24:51 +00:00
|
|
|
[
|
2018-10-13 16:59:16 +00:00
|
|
|
GVAR(loadTimeCoefficient) * _size,
|
2017-11-29 20:07:30 +00:00
|
|
|
[_object, _vehicle],
|
|
|
|
{
|
2019-02-23 00:54:55 +00:00
|
|
|
TRACE_1("load finish",_this);
|
2017-11-29 20:07:30 +00:00
|
|
|
[objNull, _this select 0 select 0, true] call EFUNC(common,claim);
|
|
|
|
["ace_loadCargo", _this select 0] call CBA_fnc_localEvent;
|
|
|
|
},
|
2019-02-23 00:54:55 +00:00
|
|
|
{
|
|
|
|
TRACE_1("load fail",_this);
|
|
|
|
[objNull, _this select 0 select 0, true] call EFUNC(common,claim)
|
|
|
|
},
|
2017-10-01 18:38:11 +00:00
|
|
|
localize LSTRING(LoadingItem),
|
2019-02-23 00:54:55 +00:00
|
|
|
{
|
|
|
|
(_this select 0) params ["_item", "_target"];
|
|
|
|
(alive _target) && {locked _target < 2} && {alive _item}
|
|
|
|
&& {([_item, _target] call EFUNC(interaction,getInteractionDistance)) < MAX_LOAD_DISTANCE}
|
|
|
|
},
|
2017-10-01 18:38:11 +00:00
|
|
|
["isNotSwimming"]
|
2016-02-23 23:24:51 +00:00
|
|
|
] call EFUNC(common,progressBar);
|
2016-01-19 03:53:48 +00:00
|
|
|
_return = true;
|
2015-09-27 16:19:40 +00:00
|
|
|
} else {
|
2016-01-19 03:53:48 +00:00
|
|
|
private _displayName = getText (configFile >> "CfgVehicles" >> typeOf _object >> "displayName");
|
2015-09-27 16:19:40 +00:00
|
|
|
|
2018-10-13 03:37:05 +00:00
|
|
|
[[LSTRING(LoadingFailed), _displayName], 3] call EFUNC(common,displayTextStructured);
|
2015-09-27 16:19:40 +00:00
|
|
|
};
|
2016-01-19 03:53:48 +00:00
|
|
|
|
|
|
|
_return
|