ACE3/addons/slideshow/functions/fnc_makeList.sqf

57 lines
1.4 KiB
Plaintext
Raw Normal View History

2015-06-27 02:11:57 +00:00
/*
* Author: Jonpas
* Makes a list from a string using comma as a delimiter, optionally remove whitespace and check each for object existence.
*
* Arguments:
* 0: Text <STRING>
* 1: Trim Whitespace <BOOL>
2015-06-27 02:11:57 +00:00
* 2: Check Nil <BOOL>
*
* Return Value:
* Parsed List <ARRAY>
*
* Example:
* ["text", true, false] call ace_slideshow_fnc_makeList
2015-06-27 02:11:57 +00:00
*
* Public: No
*/
#include "script_component.hpp"
private ["_splittedList", "_listTrimmedWhitespace", "_nilCheckPassedList"];
2015-09-02 20:51:31 +00:00
params ["_list", "_trimWhitespace", "_checkNil"];
2015-06-27 02:11:57 +00:00
// Split using comma delimiter
_splittedList = [_list, ","] call BIS_fnc_splitString;
// Remove whitespace
_listTrimmedWhitespace = [];
if (_trimWhitespace) then {
2015-06-27 02:11:57 +00:00
{
_listTrimmedWhitespace pushBack ([_x] call CBA_fnc_trim);
2015-08-07 10:11:34 +00:00
nil
} count _splittedList;
_list = _listTrimmedWhitespace;
2015-06-27 02:11:57 +00:00
};
// Check for object existence
_nilCheckPassedList = "";
if (_checkNil) then {
{
if !(isNil _x) then {
if (_nilCheckPassedList == "") then {
_nilCheckPassedList = _x;
} else {
_nilCheckPassedList = _nilCheckPassedList + "," + _x;
};
};
2015-08-07 10:11:34 +00:00
} count _list;
2015-06-27 02:11:57 +00:00
// Add Array characters and parse into array
_list = "[" + _nilCheckPassedList + "]";
_list = [] call compile _list;
};
TRACE_4("Lists",_splittedList,_listTrimmedWhitespace,_nilCheckPassedList,_list);
2015-06-27 02:11:57 +00:00
2015-08-07 10:11:34 +00:00
_list // return