From 424c6fe878c1d13a872a0e7d12704e888a2ba9e7 Mon Sep 17 00:00:00 2001 From: PabstMirror Date: Fri, 26 Feb 2016 01:37:00 -0600 Subject: [PATCH] Show Cargo Example --- addons/zeus/UI_RscAttributes.hpp | 51 ++++++++++++++++++- addons/zeus/XEH_PREP.hpp | 1 + .../functions/fnc_zeusAttributes_vehCargo.sqf | 14 +++++ 3 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 addons/zeus/functions/fnc_zeusAttributes_vehCargo.sqf diff --git a/addons/zeus/UI_RscAttributes.hpp b/addons/zeus/UI_RscAttributes.hpp index 83f07aa67c..24007c9f5d 100644 --- a/addons/zeus/UI_RscAttributes.hpp +++ b/addons/zeus/UI_RscAttributes.hpp @@ -1,3 +1,4 @@ +class RscControlsGroup; class RscControlsGroupNoScrollbars; class RscText; class RscListbox; @@ -9,7 +10,9 @@ class RscDisplayAttributes { class Controls { class Background; class Title; - class Content; + class Content: RscControlsGroup { + class controls; + }; class ButtonOK; class ButtonCancel; }; @@ -108,3 +111,49 @@ class GVAR(RscDisplayAttributes_globalSetSkill): RscDisplayAttributes { class ButtonCancel: ButtonCancel {}; }; }; + +class GVAR(cargoAttribute): RscControlsGroupNoScrollbars { + onSetFocus = QUOTE(_this call FUNC(zeusAttributes_vehCargo)); + idc = 80085; + x = "7 * ( ((safezoneW / safezoneH) min 1.2) / 40) + (safezoneX + (safezoneW - ((safezoneW / safezoneH) min 1.2))/2)"; + y = "10 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25) + (safezoneY + (safezoneH - ( ((safezoneW / safezoneH) min 1.2) / 1.2))/2)"; + w = "26 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; + h = "3 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + class controls { + class Title: RscText { + idc = -1; + text = "Cargo:"; + x = "0 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; + y = "0 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + w = "10 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; + h = "3 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + colorBackground[] = {0,0,0,0.5}; + }; + class Background: RscText { + idc = -1; + x = "10 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; + y = "0 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + w = "16 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; + h = "2.5 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + colorBackground[] = {1,1,1,0.1}; + }; + class Cargo: RscListBox { + idc = 80086; + x = "10 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; + y = "0 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + w = "16 * ( ((safezoneW / safezoneH) min 1.2) / 40)"; + h = "3 * ( ( ((safezoneW / safezoneH) min 1.2) / 1.2) / 25)"; + }; + + }; +}; + +class RscDisplayAttributesVehicle: RscDisplayAttributes { + class Controls: Controls { + class Content: Content { + class Controls: controls { + class Cargo: GVAR(cargoAttribute) { }; + }; + }; + }; +}; \ No newline at end of file diff --git a/addons/zeus/XEH_PREP.hpp b/addons/zeus/XEH_PREP.hpp index 241cd385a2..96fc87be01 100644 --- a/addons/zeus/XEH_PREP.hpp +++ b/addons/zeus/XEH_PREP.hpp @@ -18,3 +18,4 @@ PREP(setSkillsLocal); PREP(zeus_globalSetSkill); PREP(zeusAttributes); PREP(zeusAttributes_globalSetSkill); +PREP(zeusAttributes_vehCargo); diff --git a/addons/zeus/functions/fnc_zeusAttributes_vehCargo.sqf b/addons/zeus/functions/fnc_zeusAttributes_vehCargo.sqf new file mode 100644 index 0000000000..8c9087e31c --- /dev/null +++ b/addons/zeus/functions/fnc_zeusAttributes_vehCargo.sqf @@ -0,0 +1,14 @@ +#include "script_component.hpp" + +params ["_control"]; +TRACE_1("params",_control); + +private _veh = missionNamespace getVariable ["BIS_fnc_initCuratorAttributes_target", objnull]; +TRACE_1("",_veh); + +private _loaded = _veh getVariable [QEGVAR(cargo,loaded), []]; +TRACE_1("",_loaded); + +{ + ((ctrlParent _control) displayCtrl 80086) lbAdd (str _x); +} forEach _loaded;