2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2015-03-20 02:32:44 +00:00
|
|
|
/*
|
2015-03-24 04:18:00 +00:00
|
|
|
* Author: esteldunedain
|
2024-08-05 09:38:46 +00:00
|
|
|
* Removes an action from a class.
|
2015-03-20 02:32:44 +00:00
|
|
|
*
|
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>
|
2024-08-05 09:38:46 +00:00
|
|
|
* 3: Remove action from child classes <BOOL> (default: false)
|
2015-03-20 02:32:44 +00:00
|
|
|
*
|
2016-06-18 09:50:41 +00:00
|
|
|
* Return Value:
|
2015-03-20 02:32:44 +00:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
2024-08-05 09:38:46 +00:00
|
|
|
* [typeOf cursorTarget, 0, ["ACE_TapShoulderRight", "VulcanPinch"]] call ace_interact_menu_fnc_removeActionFromClass;
|
2015-03-20 02:32:44 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2024-08-05 09:38:46 +00:00
|
|
|
params ["_objectType", "_typeNum", "_fullPath", ["_useInheritance", false, [false]]];
|
2015-03-20 02:32:44 +00:00
|
|
|
|
2024-05-22 01:18:32 +00:00
|
|
|
_objectType = _objectType call EFUNC(common,getConfigName);
|
|
|
|
|
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
|
|
|
|
2024-08-05 09:38:46 +00:00
|
|
|
if (_useInheritance) exitWith {
|
|
|
|
// Only need to run for classes that have already been initialized
|
|
|
|
{
|
|
|
|
[_x, _typeNum, _fullPath] call FUNC(removeActionFromClass);
|
|
|
|
} forEach (GVAR(inheritedClassesAll) select {_x isKindOf _objectType});
|
|
|
|
|
|
|
|
// Find same path and actionName, and check if it's a parent class, needs to be checked for all classes
|
|
|
|
private _index = GVAR(inheritedActionsAll) findIf {
|
|
|
|
_x params ["_currentType", "", "_currentParentPath", "_currentAction"];
|
|
|
|
|
|
|
|
[_objectType isKindOf _currentType, _currentParentPath, _currentAction select 0] isEqualTo [true, _parentPath, _actionName]
|
|
|
|
};
|
|
|
|
|
|
|
|
// Add to exclude classes
|
|
|
|
if (_index != -1) then {
|
|
|
|
(GVAR(inheritedActionsAll) select _index select 4) pushBackUnique _objectType;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Children of CAManBase need special treatment because of inheritedActionsMan array
|
|
|
|
if (_objectType isKindOf "CAManBase") then {
|
|
|
|
private _index = GVAR(inheritedActionsMan) findIf {
|
|
|
|
_x params ["", "_currentParentPath", "_currentAction"];
|
|
|
|
|
|
|
|
[_currentParentPath, _currentAction select 0] isEqualTo [_parentPath, _actionName]
|
|
|
|
};
|
|
|
|
|
|
|
|
// Different index because array doesn't include _objectType
|
|
|
|
if (_index != -1) then {
|
|
|
|
(GVAR(inheritedActionsMan) select _index select 3) pushBackUnique _objectType;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-03-06 05:22:38 +00:00
|
|
|
private _namespace = [GVAR(ActNamespace), GVAR(ActSelfNamespace)] select _typeNum;
|
2024-05-22 01:18:32 +00:00
|
|
|
private _actionTrees = _namespace getOrDefault [_objectType, []];
|
2015-03-20 02:32:44 +00:00
|
|
|
|
2016-03-06 05:22:38 +00:00
|
|
|
private _parentNode = [_actionTrees, _parentPath] call FUNC(findActionNode);
|
2024-05-22 01:18:32 +00:00
|
|
|
if (isNil "_parentNode") exitWith {};
|
2015-03-20 02:32:44 +00:00
|
|
|
|
|
|
|
// 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 {
|
2024-02-05 17:04:24 +00:00
|
|
|
TRACE_2("Deleting Action",_forEachIndex,_x);
|
2015-07-28 22:26:23 +00:00
|
|
|
_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");
|
|
|
|
};
|