1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- #include "macro.sqf"
- /*
- @version: 1.2
- @file_name: fn_loadoutInfo.sqf
- @file_author: TAW_Tonic
- @file_edit: 6/5/2013
- @file_description: Pulls up the selected saved slots loadout.
- */
- private["_control","_slot","_type","_loadout"];
- _type = _this select 0;
- disableSerialization;
- switch (_type) do
- {
- case 0: {_control = VAS_getControl(VAS_save_Display,VAS_save_fetch); _slot = lbCurSel VAS_save_list;};
- case 1: {_control = VAS_getControl(VAS_load_Display,VAS_load_fetch); _slot = lbCurSel VAS_load_list};
- };
- lbClear _control;
- if(_slot == -1) exitWith {hint "You didn't select a slot!";}; //No slot selected
- if(vas_disableLoadSave) then
- {
- _loadout = missionNamespace getVariable format["vas_gear_new_%1",_slot];
- }
- else
- {
- _loadout = profileNamespace getVariable format["vas_gear_new_%1",_slot];
- };
- if(isNil {_loadout}) exitWith {(VAS_getControl(VAS_save_Display,VAS_save_text)) ctrlSetText "Custom Loadout Name";}; //No information in this slot.
- if(_type == 0) then
- {
- (VAS_getControl(VAS_save_Display,VAS_save_text)) ctrlSetText (_loadout select 0);
- };
- // Original Code
- /*
- {
- switch(typeName _x) do
- {
- case "STRING":
- {
- _details = [_x] call VAS_fnc_fetchCfgDetails;
- if(count _details > 0) then
- {
- _control lbAdd format["%1", (_details select 1)];
- _control lbSetPicture [(lbSize _control)-1,(_details select 2)];
- };
- };
-
- case "ARRAY":
- {
- {
- _details = [_x] call VAS_fnc_fetchCfgDetails;
- if(count _details > 0) then
- {
- _control lbAdd format["%1", (_details select 1)];
- _control lbSetPicture [(lbSize _control)-1,(_details select 2)];
- };
- } foreach _x;
- };
- };
- } foreach _loadout;
- */
- // Modified Code by naong
- private ["_listItems","_loadout_array","_className","_name"];
- _loadout_array = [];
- {
- switch(typeName _x) do {
- case "STRING": {
- _loadout_array = _loadout_array + [_x];
- };
- case "ARRAY": {
- {
- _loadout_array = _loadout_array + [_x];
- } forEach _x;
- };
- };
- } forEach _loadout;
- _listItems = [];
- {
- _className = _x;
- _details = [_x] call VAS_fnc_fetchCfgDetails;
- if(count _details > 0) then {
- _name = (_details select 1);
- if (_listItems find _name < 1) then {
- _control lbAdd format["[%1] %2",({_x == _className} count _loadout_array),_name];
- _control lbSetPicture [(lbSize _control)-1,(_details select 2)];
- _listItems = _listItems + [_name];
- };
- };
- } forEach _loadout_array;
|