ACE3/addons/common/functions/fnc_setSetting.sqf

37 lines
1.2 KiB
Plaintext
Raw Normal View History

2015-01-30 21:56:45 +00:00
/*
2015-03-24 04:18:00 +00:00
* Author: esteldunedain
* 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
*
* Example:
* ["ace_map_gestures_enabled", true, false, true] call ace_common_fnc_setSetting
*
2015-01-30 21:56:45 +00:00
* Public: No
*/
#define DEBUG_MODE_FULL
2015-01-30 21:56:45 +00:00
#include "script_component.hpp"
2015-09-19 21:18:07 +00:00
params ["_name", "_value", ["_force", false], ["_broadcastChanges", false]];
TRACE_4("setSetting",_name,_value,_force,_broadcastChanges);
2015-05-14 18:06:06 +00:00
if (!isServer) exitWith {};
if (!_broadcastChanges) exitWith {
ERROR_1("Setting [%1] - SetSetting no longer supports non-global settings",_name);
};
if ([_settingName, "mission"] call CBA_settings_fnc_isForced) then {
WARNING_1("Setting [%1] - Already mission forced - Ignoring",_settingName);
};
2015-09-19 21:18:07 +00:00
[QGVAR(setSetting), [_name, _value], (format [QGVAR(setSetting_%1), _name])] call CBA_fnc_globalEventJIP;