ACE3/addons/optionsmenu/functions/fnc_serverSettingsMenuUpdateList.sqf
Dedmen Miller 81e02a7336 Refactor private ARRAY to private keyword (#5598)
* Everything

* Fixed missing ;

* Fix missing ; and double private

* Fixed cannot isNull on number

* Turn _temparture back to isNil

* Fix error from merge
2017-10-10 09:39:59 -05:00

94 lines
3.2 KiB
Plaintext

/*
* Author: Glowbal
* Updates the setting when the client has selected a new value. Saves to profilenamespace.
*
* Arguments:
* 0: Update the keylist as well <BOOL>
*
* Return Value:
* None
*
* Example:
* [false] call ACE_optionsmenu_fnc_settingsMenuUpdateList
*
* Public: No
*/
#include "script_component.hpp"
params [["_updateKeyView", true, [true]]];
disableSerialization;
private _settingsMenu = uiNamespace getVariable 'ACE_serverSettingsMenu';
private _ctrlList = _settingsMenu displayCtrl 200;
lnbClear _ctrlList;
private _selectedCategory = GVAR(categories) select GVAR(currentCategorySelection);
switch (GVAR(optionMenu_openTab)) do {
case (MENU_TAB_SERVER_OPTIONS): {
{
if (_selectedCategory == "" || {_selectedCategory == (_x select 8)}) then {
private _settingName = if ((_x select 3) != "") then {
(_x select 3);
} else {
(_x select 0);
};
private _settingsValue = _x select 9;
// Created disable/enable options for bools
private _settingsText = if ((_x select 1) == "BOOL") then {
[(localize ELSTRING(common,No)), (localize ELSTRING(common,Yes))] select _settingsValue;
} else {
(_x select 5) select _settingsValue;
};
private _added = _ctrlList lnbAddRow [_settingName, _settingsText];
_ctrlList lnbSetValue [[_added, 0], _forEachIndex];
};
}forEach GVAR(serverSideOptions);
};
case (MENU_TAB_SERVER_COLORS): {
{
if (_selectedCategory == "" || {_selectedCategory == (_x select 8)}) then {
private _color = +(_x select 9);
{
_color set [_forEachIndex, ((round (_x * 100))/100)];
} forEach _color;
private _settingsColor = str _color;
private _settingName = if ((_x select 3) != "") then {
(_x select 3);
} else {
(_x select 0);
};
private _added = _ctrlList lnbAddRow [_settingName, _settingsColor];
_ctrlList lnbSetColor [[_added, 1], (_x select 9)];
_ctrlList lnbSetValue [[_added, 0], _forEachIndex];
};
}forEach GVAR(serverSideColors);
};
case (MENU_TAB_SERVER_VALUES): {
{
if (_selectedCategory == "" || {_selectedCategory == (_x select 8)}) then {
private _settingName = if ((_x select 3) != "") then {
(_x select 3);
} else {
(_x select 0);
};
private _settingsValue = _x select 9;
if (!(_settingsValue isEqualType "")) then {
_settingsValue = format["%1", _settingsValue];
};
private _added = _ctrlList lnbAddRow [_settingName, _settingsValue];
_ctrlList lnbSetValue [[_added, 0], _forEachIndex];
};
}forEach GVAR(serverSideValues);
};
};
if (_updateKeyView) then {
[] call FUNC(serverSettingsMenuUpdateKeyView);
};