2015-08-08 06:26:15 +00:00
|
|
|
/*
|
2015-08-10 06:45:43 +00:00
|
|
|
* Author: Dslyecxi, MikeMatrix
|
2015-08-08 06:26:15 +00:00
|
|
|
* Initializes Settings for the groups modules and transcodes settings to a useable format.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Logic <LOGIC>
|
|
|
|
* 1: Units <ARRAY>
|
|
|
|
* 2: Activated <BOOL>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [module, [player], true] call ace_map_gestures_fnc_moduleGroupSettings
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
params ["_logic", "_units", "_activated"];
|
2016-10-27 17:54:58 +00:00
|
|
|
TRACE_3("params",_logic,_units,_activated);
|
2015-08-08 06:26:15 +00:00
|
|
|
|
2016-10-27 17:54:58 +00:00
|
|
|
if (!_activated) exitWith {};
|
2015-08-08 06:26:15 +00:00
|
|
|
|
2015-08-24 15:03:47 +00:00
|
|
|
// Transcode string setting into usable array. Example: "1,1,1,1" -> [1, 1, 1, 1]
|
2016-10-27 17:54:58 +00:00
|
|
|
private _leadColor = call compile ("[" + (_logic getVariable ["leadColor", ""]) + "]");
|
2015-08-10 17:04:49 +00:00
|
|
|
if (!([_leadColor] call FUNC(isValidColorArray))) exitWith {ERROR("leadColor is not a valid color array.")};
|
2016-10-27 17:54:58 +00:00
|
|
|
private _color = call compile ("[" + (_logic getVariable ["color", ""]) + "]");
|
2015-08-10 17:04:49 +00:00
|
|
|
if (!([_color] call FUNC(isValidColorArray))) exitWith {ERROR("color is not a valid color array.")};
|
2015-08-08 06:26:15 +00:00
|
|
|
|
2015-08-24 15:03:47 +00:00
|
|
|
// Add all synchronized groups and reference custom configuration for them
|
2015-08-08 06:26:15 +00:00
|
|
|
{
|
2016-10-27 17:54:58 +00:00
|
|
|
[group _x, _leadColor, _color] call FUNC(addGroupColorMapping);
|
2016-07-30 15:17:52 +00:00
|
|
|
} forEach _units;
|