-
Notifications
You must be signed in to change notification settings - Fork 740
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Transfer old client settings to CBA (#5882)
* Transfer old client settings to CBA * Remove cleanup code
- Loading branch information
1 parent
a38afac
commit be67cf0
Showing
3 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
addons/common/functions/fnc_cbaSettings_transferUserSettings.sqf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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-"); |