mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e2ac18a05d
* advanced_ballistics * advanced_fatigue * advanced_throwing * ai * aircraft * arsenal * atragmx * attach * backpacks * ballistics * captives * cargo * chemlights * common * concertina_wire * cookoff * dagr * disarming * disposable * dogtags * dragging * explosives * fastroping * fcs * finger * frag * gestures * gforces * goggles * grenades * gunbag * hearing * hitreactions * huntir * interact_menu * interaction * inventory * kestrel4500 * laser * laserpointer * logistics_uavbattery * logistics_wirecutter * magazinerepack * map * map_gestures * maptools * markers * medical * medical_ai * medical_blood * medical_menu * microdagr * minedetector * missileguidance * missionmodules * mk6mortar * modules * movement * nametags * nightvision * nlaw * optics * optionsmenu * overheating * overpressure * parachute * pylons * quickmount * rangecard * rearm * recoil * refuel * reload * reloadlaunchers * repair * respawn * safemode * sandbag * scopes * slideshow * spectator * spottingscope * switchunits * tacticalladder * tagging * trenches * tripod * ui * vector * vehiclelock * vehicles * viewdistance * weaponselect * weather * winddeflection * yardage450 * zeus * arsenal defines.hpp * optionals * DEBUG_MODE_FULL 1 * DEBUG_MODE_FULL 2 * Manual fixes * Add SQF Validator check for #include after block comment * explosives fnc_openTimerUI * fix uniqueItems
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: esteldunedain
|
|
* Removes an action from a class
|
|
*
|
|
* Arguments:
|
|
* 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>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [typeOf cursorTarget, 0,["ACE_TapShoulderRight","VulcanPinch"]] call ace_interact_menu_fnc_removeActionFromClass;
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_objectType", "_typeNum", "_fullPath"];
|
|
|
|
private _res = _fullPath call FUNC(splitPath);
|
|
_res params ["_parentPath", "_actionName"];
|
|
|
|
private _namespace = [GVAR(ActNamespace), GVAR(ActSelfNamespace)] select _typeNum;
|
|
private _actionTrees = _namespace getVariable _objectType;
|
|
if (isNil "_actionTrees") then {
|
|
_actionTrees = [];
|
|
};
|
|
|
|
private _parentNode = [_actionTrees, _parentPath] call FUNC(findActionNode);
|
|
if (isNil {_parentNode}) exitWith {};
|
|
|
|
// Iterate through children of the father
|
|
private _found = false;
|
|
{
|
|
if (((_x select 0) select 0) == _actionName) exitWith {
|
|
TRACE_2("Deleting Action", _forEachIndex, _x);
|
|
_found = true;
|
|
(_parentNode select 1) deleteAt _forEachIndex;
|
|
};
|
|
} forEach (_parentNode select 1);
|
|
|
|
if (!_found) then {
|
|
WARNING("Failed to find action to delete");
|
|
};
|