Transfer old client settings to CBA (#5882)

* Transfer old client settings to CBA

* Remove cleanup code
This commit is contained in:
PabstMirror 2017-12-10 12:13:17 -06:00 committed by GitHub
parent a38afac04b
commit be67cf0737
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 45 additions and 2 deletions

View File

@ -3,6 +3,7 @@ TRACE_1("",QUOTE(ADDON));
PREP(cbaSettings);
PREP(cbaSettings_loadFromConfig);
PREP(cbaSettings_settingChanged);
PREP(cbaSettings_transferUserSettings);
PREP(actionKeysNamesConverted);
PREP(addCanInteractWithCondition);

View File

@ -180,8 +180,8 @@ private _previousVersion = profileNamespace getVariable ["ACE_VersionNumberStrin
// check previous version number from profile
if (_currentVersion != _previousVersion) then {
// do something
INFO_2("Updating ACE from [%1] to [%2]",_previousVersion,_currentVersion);
[_previousVersion] call FUNC(cbaSettings_transferUserSettings);
profileNamespace setVariable ["ACE_VersionNumberString", _currentVersion];
};

View File

@ -0,0 +1,42 @@
/*
* Author: PabstMirror
* Transfers a client's old ace settings to cba
*
* Arguments:
* 0: Old Version <STRING>
*
* Return Value:
* None
*
* Example:
* ["3.11.0"] call ace_common_fnc_cbaSettings_transferUserSettings
*
* Public: No
*/
#include "script_component.hpp"
if (!hasInterface) exitWith {};
params [["_lastVersion", "", [""]]];
if ((parseNumber _lastVersion) >= 3.12) exitWith {};
INFO("-Transfering old ACE_Settings to CBA-");
private _aceSettings = configProperties [configFile >> "ACE_Settings", "isClass _x"];
{
private _settingName = configName _x;
private _isClientSettable = (getNumber (_x >> "isClientSettable")) > 0;
private _profileVar = profileNamespace getVariable _settingName;
if (!isNil "_profileVar") then {
private _currentValue = [_settingName, "client"] call CBA_settings_fnc_get;
if (_isClientSettable && {!(_currentValue isEqualTo _profileVar)}) then {
// CBA_settings_fnc_set will do type checking for the old profile var
private _ret = [_settingName, _profileVar, 0, "client", true] call CBA_settings_fnc_set;
INFO_3("Transfering setting [%1: %2] returned %3", _settingName, _profileVar, _ret);
};
};
} forEach _aceSettings;
INFO("-Finished Transfering-");