ACE3/addons/zeus/functions/fnc_ui_attributeCargo.sqf

37 lines
903 B
Plaintext
Raw Normal View History

/*
* Author: PabstMirror, mharis001
* Initalises the ace_cargo attribute of the zeus vehicle attributes display
* (the display shown on double click)
*
* Arguments:
* 0: ace_cargo controls group <CONTROL>
*
* Return Value:
* None
*
* Example:
* [CONTROL] call ace_zeus_fnc_ui_attributeCargo
*
* Public: No
*/
2016-02-26 07:37:00 +00:00
#include "script_component.hpp"
params ["_control"];
TRACE_1("params",_control);
private _veh = GETMVAR(BIS_fnc_initCuratorAttributes_target,objNull);
2016-02-26 07:37:00 +00:00
TRACE_1("",_veh);
private _loaded = _veh getVariable [QEGVAR(cargo,loaded), []];
TRACE_1("",_loaded);
_control ctrlRemoveAllEventHandlers "setFocus";
private _listbox = _control controlsGroupCtrl 80086;
2016-02-26 07:37:00 +00:00
{
private _class = if (_x isEqualType "") then {_x} else {typeOf _x};
private _displayName = getText (configFile >> "CfgVehicles" >> _class >> "displayName");
_listbox lbAdd _displayName;
2016-02-26 07:37:00 +00:00
} forEach _loaded;