ACE3/addons/markers/functions/fnc_getEnabledChannels.sqf

54 lines
1.2 KiB
Plaintext
Raw Normal View History

#include "script_component.hpp"
2015-12-10 14:32:31 +00:00
/*
* Author: commy2, Timi007
2015-12-10 14:32:31 +00:00
* Return enabled channels.
*
* Arguments:
* 0: false - use channel id, true - use localized channel names <BOOl> (default: false)
*
* Return Value:
* Enabled Channels <ARRAY>
*
* Example:
* [false] call ACE_markers_fnc_getEnabledChannels
*
2015-12-10 14:32:31 +00:00
* Public: No
*/
params [["_localize", false, [false]]];
private _currentChannel = currentChannel;
private _enabledChannels = [];
if (_localize) then {
if (setCurrentChannel 0) then {
_enabledChannels pushBack localize "str_channel_global";
};
if (setCurrentChannel 1) then {
_enabledChannels pushBack localize "str_channel_side";
};
if (setCurrentChannel 2) then {
_enabledChannels pushBack localize "str_channel_command";
};
if (setCurrentChannel 3) then {
_enabledChannels pushBack localize "str_channel_group";
};
if (setCurrentChannel 4) then {
_enabledChannels pushBack localize "str_channel_vehicle";
};
} else {
for "_i" from 0 to 4 do {
2015-12-10 14:32:31 +00:00
if (setCurrentChannel _i) then {
_enabledChannels pushBack _i;
};
};
};
setCurrentChannel _currentChannel;
_enabledChannels