2015-05-10 20:17:50 +00:00
|
|
|
/*
|
|
|
|
* Author: PabstMirror
|
|
|
|
* Finds next valid index for the device array.
|
|
|
|
*
|
|
|
|
* Arguments:
|
2015-09-18 13:40:51 +00:00
|
|
|
* 0: Offset from currentIndex (use 1 to find next valid after current) or a displayName string (default: 0)<STRING, NUMBER>
|
2015-05-10 20:17:50 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2015-05-10 21:54:24 +00:00
|
|
|
* The new index (-1 if no valid) <NUMBER>
|
2015-05-10 20:17:50 +00:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [] call ace_common_fnc_deviceKeyFindValidIndex
|
2015-05-12 02:49:13 +00:00
|
|
|
* ["kestral4500"] call ace_common_fnc_deviceKeyFindValidIndex
|
2015-05-10 20:17:50 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-05-10 19:59:53 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-09-18 13:40:51 +00:00
|
|
|
params [["_searchOffsetOrName", 0]];
|
2015-05-12 02:49:13 +00:00
|
|
|
|
2015-09-18 13:40:51 +00:00
|
|
|
private ["_validIndex", "_realIndex"];
|
2015-05-10 19:59:53 +00:00
|
|
|
|
|
|
|
_validIndex = -1;
|
2015-05-12 02:49:13 +00:00
|
|
|
|
2015-11-20 17:40:31 +00:00
|
|
|
if (_searchOffsetOrName isEqualType "") then {
|
2015-05-12 02:49:13 +00:00
|
|
|
{
|
2015-09-18 13:40:51 +00:00
|
|
|
if (_x select 0 == _searchOffsetOrName) exitWith {
|
2015-05-12 02:49:13 +00:00
|
|
|
_validIndex = _forEachIndex;
|
|
|
|
};
|
|
|
|
} forEach GVAR(deviceKeyHandlingArray);
|
|
|
|
} else {
|
2015-09-18 13:40:51 +00:00
|
|
|
if (count GVAR(deviceKeyHandlingArray) > 0) then {
|
|
|
|
_baseIndex = [GVAR(deviceKeyCurrentIndex) + _searchOffsetOrName, 0] select (GVAR(deviceKeyCurrentIndex) == -1);
|
|
|
|
|
|
|
|
for "_offset" from _baseIndex to (count GVAR(deviceKeyHandlingArray) - 1 + _baseIndex) do {
|
2015-05-12 02:49:13 +00:00
|
|
|
_realIndex = _offset % (count GVAR(deviceKeyHandlingArray));
|
2015-09-18 13:40:51 +00:00
|
|
|
|
2015-05-12 02:49:13 +00:00
|
|
|
if ([] call ((GVAR(deviceKeyHandlingArray) select _realIndex) select 2)) exitWith {
|
|
|
|
_validIndex = _realIndex;
|
|
|
|
};
|
2015-05-10 21:54:24 +00:00
|
|
|
};
|
2015-05-10 19:59:53 +00:00
|
|
|
};
|
|
|
|
};
|
2015-05-10 21:54:24 +00:00
|
|
|
|
2015-05-10 19:59:53 +00:00
|
|
|
GVAR(deviceKeyCurrentIndex) = _validIndex;
|
2015-05-12 02:49:13 +00:00
|
|
|
|
|
|
|
GVAR(deviceKeyCurrentIndex)
|