mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
cd30b09b4f
* Convert ACE_settings to CBA_settings * Run Modules Globaly, BWC for SetSetting * Add support for string settings * ACE_ServerSettings warning * Add handler for global setting being changed * Add deprecated and replaced not to Settings Framework doc * Remove options menu UI, Move Debug and HeadBug Fix to Options in Pause Menu * Change modules scope to 1 * Disable debug
64 lines
2.2 KiB
Plaintext
64 lines
2.2 KiB
Plaintext
/*
|
|
* Author: PabstMirror
|
|
* Read settins from paramsArray that have a ACE_setting = 1.
|
|
* Happens before modules but after all other configs (for force priority)
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [] call ace_common_fnc_readSettingsFromParamsArray
|
|
*
|
|
* Public: No
|
|
*/
|
|
#define DEBUG_MODE_FULL
|
|
#include "script_component.hpp"
|
|
|
|
//paramsArray is a normal variable not a command
|
|
private _paramsArray = missionnamespace getVariable ["paramsArray", []];
|
|
|
|
TRACE_1("Reading missionConfigFile params",_paramsArray);
|
|
|
|
{
|
|
private _config = (missionConfigFile >> "params") select _forEachIndex;
|
|
if ((getNumber (_config >> "ACE_setting")) > 0) then {
|
|
private _settingName = configName _config;
|
|
private _settingValue = _x;
|
|
private _title = getText (_config >> "title");
|
|
|
|
TRACE_3("ace_setting",_title,_settingName,_settingValue);
|
|
|
|
// Check if the variable is already defined
|
|
if (isNil _settingName) exitWith {
|
|
ERROR_1("readSettingsFromParamsArray - param [%1] is not an ace_setting", _settingName);
|
|
};
|
|
|
|
// The setting is not forced, so update the value
|
|
// Read entry and cast it to the correct type from the existing variable
|
|
private _validValue = false;
|
|
switch (true) do {
|
|
case (_typeName == "SCALAR"): {_validValue = true;};
|
|
case (_typeName == "BOOL"): {
|
|
_settingValue = _settingValue > 0;
|
|
_validValue = true;
|
|
};
|
|
//TODO: Handle ARRAY,COLOR,STRING??? (bool/scalar covers most important settings)
|
|
};
|
|
|
|
if (!_validValue) exitWith {
|
|
WARNING_3("readSettingsFromParamsArray - param [%1] type not valid [%2] - expected type [%3]", _settingName,_settingValue,_typeName);
|
|
};
|
|
|
|
if ([_settingName, "mission"] call CBA_settings_fnc_isForced) then {
|
|
WARNING_1("Setting [%1] - Already Forced",_settingName);
|
|
};
|
|
|
|
// Set the setting as a mission setting and force it
|
|
TRACE_2("setSettingMission from module",_settingName,_value);
|
|
["CBA_settings_setSettingMission", [_settingName, _value, true]] call CBA_fnc_localEvent;
|
|
};
|
|
} forEach _paramsArray;
|