ACE3/addons/interact_menu/functions/fnc_splitPath.sqf

32 lines
638 B
Plaintext
Raw Normal View History

#include "..\script_component.hpp"
/*
2015-03-24 04:18:00 +00:00
* Author: esteldunedain
* Take full path and split it between parent path and action name
*
2016-06-18 09:50:41 +00:00
* Arguments:
* Full path of the action to remove <ARRAY>
*
2016-06-18 09:50:41 +00:00
* Return Value:
* 0: Parent path <ARRAY>
* 1: Action name <STRING>
*
* Example:
* [[path]] call ACE_interact_menu_fnc_splitPath
*
* Public: No
*/
2016-01-08 04:43:37 +00:00
private _parentPath = [];
_parentPath append _this;
private _count = count _this;
private _actionName = if (_count > 0) then {
_parentPath deleteAt (_count - 1) // TODO: replace with _parentPath deleteAt [-1] and drop _count in 2.18
2015-03-21 12:37:01 +00:00
} else {
""
2015-03-21 12:37:01 +00:00
};
[_parentPath, _actionName]