2018-09-17 19:19:29 +00:00
|
|
|
#define DEBUG_MODE_FULL
|
|
|
|
#include "script_component.hpp"
|
2015-01-30 21:56:45 +00:00
|
|
|
/*
|
2015-03-24 04:18:00 +00:00
|
|
|
* Author: esteldunedain
|
2015-02-03 04:45:04 +00:00
|
|
|
* Change the value of an existing setting if it was not previously forced. Force if neccesary.
|
|
|
|
* If executed on clients it has local effect.
|
|
|
|
* If executed on server it can have global effect if the last parameter is set to true.
|
2015-01-30 21:56:45 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2015-09-19 21:18:07 +00:00
|
|
|
* 0: Setting name <STRING>
|
|
|
|
* 1: Value <ANY>
|
|
|
|
* 2: Force it? (default: false) <BOOL>
|
|
|
|
* 3: Broadcast the change to all clients (default: false) <BOOL>
|
2015-01-30 21:56:45 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
2015-10-18 23:49:03 +00:00
|
|
|
* Example:
|
|
|
|
* ["ace_map_gestures_enabled", true, false, true] call ace_common_fnc_setSetting
|
|
|
|
*
|
2015-01-30 21:56:45 +00:00
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2015-09-19 21:18:07 +00:00
|
|
|
params ["_name", "_value", ["_force", false], ["_broadcastChanges", false]];
|
2017-11-11 19:21:55 +00:00
|
|
|
TRACE_4("setSetting",_name,_value,_force,_broadcastChanges);
|
2015-05-14 18:06:06 +00:00
|
|
|
|
2017-11-11 19:21:55 +00:00
|
|
|
if (!isServer) exitWith {};
|
|
|
|
if (!_broadcastChanges) exitWith {
|
|
|
|
ERROR_1("Setting [%1] - SetSetting no longer supports non-global settings",_name);
|
2015-10-18 23:49:03 +00:00
|
|
|
};
|
2015-02-03 04:45:04 +00:00
|
|
|
|
2017-11-11 19:21:55 +00:00
|
|
|
if ([_settingName, "mission"] call CBA_settings_fnc_isForced) then {
|
|
|
|
WARNING_1("Setting [%1] - Already mission forced - Ignoring",_settingName);
|
2015-02-03 05:51:41 +00:00
|
|
|
};
|
2015-09-19 21:18:07 +00:00
|
|
|
|
2017-11-11 19:21:55 +00:00
|
|
|
[QGVAR(setSetting), [_name, _value], (format [QGVAR(setSetting_%1), _name])] call CBA_fnc_globalEventJIP;
|