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>
|
2015-08-10 21:07:47 +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
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
params ["_player", "_object"];
|
2016-01-19 03:53:48 +00:00
|
|
|
TRACE_2("params",_player,_object);
|
2015-08-10 21:07:47 +00:00
|
|
|
|
2016-01-19 03:53:48 +00:00
|
|
|
private _vehicle = [_player] call FUNC(findNearestVehicle);
|
2015-08-10 21:07:47 +00:00
|
|
|
|
2016-01-19 03:53:48 +00:00
|
|
|
if ((isNull _vehicle) || {_vehicle isKindOf "Cargo_Base_F"}) 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};
|
2015-11-30 16:23:48 +00:00
|
|
|
} forEach (nearestObjects [_player, ["Cargo_base_F", "Land_PaperBox_closed_F"], MAX_LOAD_DISTANCE]);
|
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-19 03:53:48 +00:00
|
|
|
_return = false;
|
2015-09-27 16:19:40 +00:00
|
|
|
// Start progress bar
|
|
|
|
if ([_object, _vehicle] call FUNC(canLoadItemIn)) then {
|
2016-01-19 03:53:48 +00:00
|
|
|
private _size = [_object] call FUNC(getSizeItem);
|
2015-09-27 16:19:40 +00:00
|
|
|
|
|
|
|
[5 * _size, [_object,_vehicle], "LoadCargo", {}, localize LSTRING(LoadingItem)] 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
|
|
|
|
|
|
|
["displayTextStructured", [[LSTRING(LoadingFailed), _displayName], 3.0]] call EFUNC(common,localEvent);
|
|
|
|
};
|
2016-01-19 03:53:48 +00:00
|
|
|
|
|
|
|
_return
|