2015-03-20 02:32:44 +00:00
|
|
|
/*
|
2015-03-24 04:18:00 +00:00
|
|
|
* Author: esteldunedain
|
2015-03-20 02:32:44 +00:00
|
|
|
* Removes an action from a class
|
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Arguments:
|
2015-03-20 02:32:44 +00:00
|
|
|
* 0: TypeOf of the class <STRING>
|
|
|
|
* 1: Type of action, 0 for actions, 1 for self-actions <NUMBER>
|
|
|
|
* 2: Full path of the new action <ARRAY>
|
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Return Value:
|
2015-03-20 02:32:44 +00:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [typeOf cursorTarget, 0,["ACE_TapShoulderRight","VulcanPinch"]] call ace_interact_menu_fnc_removeActionFromClass;
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-08-04 22:46:57 +00:00
|
|
|
params ["_objectType", "_typeNum", "_fullPath"];
|
2015-03-20 02:32:44 +00:00
|
|
|
|
2016-03-06 05:22:38 +00:00
|
|
|
private _res = _fullPath call FUNC(splitPath);
|
2015-08-04 22:46:57 +00:00
|
|
|
_res params ["_parentPath", "_actionName"];
|
2015-03-20 02:32:44 +00:00
|
|
|
|
2016-03-06 05:22:38 +00:00
|
|
|
private _namespace = [GVAR(ActNamespace), GVAR(ActSelfNamespace)] select _typeNum;
|
|
|
|
private _actionTrees = _namespace getVariable _objectType;
|
|
|
|
if (isNil "_actionTrees") then {
|
|
|
|
_actionTrees = [];
|
|
|
|
};
|
2015-03-20 02:32:44 +00:00
|
|
|
|
2016-03-06 05:22:38 +00:00
|
|
|
private _parentNode = [_actionTrees, _parentPath] call FUNC(findActionNode);
|
2015-03-20 02:32:44 +00:00
|
|
|
if (isNil {_parentNode}) exitWith {};
|
|
|
|
|
|
|
|
// Iterate through children of the father
|
2016-03-06 05:22:38 +00:00
|
|
|
private _found = false;
|
2015-03-20 02:32:44 +00:00
|
|
|
{
|
|
|
|
if (((_x select 0) select 0) == _actionName) exitWith {
|
2015-07-28 22:26:23 +00:00
|
|
|
TRACE_2("Deleting Action", _forEachIndex, _x);
|
|
|
|
_found = true;
|
2015-03-20 02:32:44 +00:00
|
|
|
(_parentNode select 1) deleteAt _forEachIndex;
|
|
|
|
};
|
|
|
|
} forEach (_parentNode select 1);
|
|
|
|
|
2015-07-28 22:26:23 +00:00
|
|
|
if (!_found) then {
|
|
|
|
WARNING("Failed to find action to delete");
|
|
|
|
};
|