ACE3/addons/cargo/XEH_postInit.sqf

44 lines
1.7 KiB
Plaintext
Raw Normal View History

#include "script_component.hpp"
2015-08-22 14:45:50 +00:00
["AddCargoByClass", {_this call FUNC(addCargoItem)}] call EFUNC(common,addEventHandler);
["LoadCargo", {
(_this select 0) params ["_item","_vehicle"];
2016-01-19 03:53:48 +00:00
private _loaded = [_item, _vehicle] call FUNC(loadItem);
// Show hint as feedback
2016-01-19 03:53:48 +00:00
private _hint = [LSTRING(LoadingFailed), LSTRING(LoadedItem)] select _loaded;
private _itemName = getText (configFile >> "CfgVehicles" >> typeOf _item >> "displayName");
private _vehicleName = getText (configFile >> "CfgVehicles" >> typeOf _vehicle >> "displayName");
["displayTextStructured", [[_hint, _itemName, _vehicleName], 3.0]] call EFUNC(common,localEvent);
if (_loaded) then {
// Invoke listenable event
["cargoLoaded", [_item, _vehicle]] call EFUNC(common,globalEvent);
};
}] call EFUNC(common,addEventHandler);
["UnloadCargo", {
2016-01-27 00:01:01 +00:00
(_this select 0) params ["_item","_vehicle", ["_unloader", objNull]];
2016-01-27 00:01:01 +00:00
private _unloaded = [_item, _vehicle, _player] call FUNC(unloadItem);
2016-01-19 03:53:48 +00:00
private _itemClass = if (_item isEqualType "") then {_item} else {typeOf _item};
// Show hint as feedback
2016-01-19 03:53:48 +00:00
private _hint = [LSTRING(UnloadingFailed), LSTRING(UnloadedItem)] select _unloaded;
private _itemName = getText (configFile >> "CfgVehicles" >> _itemClass >> "displayName");
private _vehicleName = getText (configFile >> "CfgVehicles" >> typeOf _vehicle >> "displayName");
["displayTextStructured", [[_hint, _itemName, _vehicleName], 3.0]] call EFUNC(common,localEvent);
if (_unloaded) then {
// Invoke listenable event
["cargoUnloaded", [_item, _vehicle]] call EFUNC(common,globalEvent);
};
// TOOO maybe drag/carry the unloaded item?
}] call EFUNC(common,addEventHandler);