ACE3/addons/common/functions/fnc_getAllDefinedSetVariables.sqf
johnb432 8f46ffd8d5
General - Change count to forEach where appropriate (#9890)
count -> forEach

Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
2024-04-04 08:15:26 -03:00

41 lines
912 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Glowbal
* Returns an 2d array of all variables that have been set on the object
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Limiting Category (default: "") <STRING>
*
* Return Value:
* Variable Data <ARRAY>
* 0: Name <STRING>
* 1: typeName <STRING>
* 2: value <ANY>
* 3: publicFlag <BOOL>
* 4: peristentFlag <BOOL>
*
* Example:
* [bob, ""] call ace_common_fnc_getAllDefinedSetVariables
*
* Public: Yes
*/
params ["_object", ["_category", ""]];
if (isNil QGVAR(OBJECT_VARIABLES_STORAGE)) exitWith {[]};
private _return = [];
{
private _val = _object getVariable (_x select 0);
if (!isNil "_val") then {
if (_category == "" || _category == _x select 3) then {
_return pushBack [_x select 0, typeName _val, _val, _x select 2, _x select 5];
};
};
} forEach GVAR(OBJECT_VARIABLES_STORAGE);
_return