-
Notifications
You must be signed in to change notification settings - Fork 737
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add function to add curator actions (#5620)
- Loading branch information
1 parent
f6fd009
commit 65c5e6e
Showing
3 changed files
with
70 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* Author: PabstMirror | ||
* Insert an ACE action to zeus. | ||
* Note: This function is NOT global. | ||
* | ||
* Arguments: | ||
* 0: Parent path of the new action (e.g. ["ACE_ZeusActions"]) <ARRAY> | ||
* 1: Action <ARRAY> | ||
* | ||
* Return Value: | ||
* The entry full path, which can be used to add children entries <ARRAY>. | ||
* | ||
* Example: | ||
* [["ACE_ZeusActions"], zeusAction] call ace_interact_menu_fnc_addActionToZeus; | ||
* | ||
* Public: Yes | ||
*/ | ||
#include "script_component.hpp" | ||
|
||
if (!params [["_parentPath", [], [[]]], ["_action", [], [[]], 11]]) exitWith {ERROR("Bad Params"); []}; | ||
if ((_parentPath param [0, ""]) != "ACE_ZeusActions") exitWith {ERROR_1("Bad path %1 - should have ACE_ZeusActions as base", _parentPath); []}; | ||
TRACE_2("addActionToZeus",_parentPath,_action); | ||
|
||
private _currentPath = GVAR(ZeusActions); | ||
private _pathValid = false; | ||
{ | ||
private _targetParent = _x; | ||
_pathValid = false; | ||
{ | ||
_x params ["_xAction", "_xSubActions"]; | ||
TRACE_2("",_targetParent,_xAction); | ||
if ((_xAction select 0) == _targetParent) exitWith { | ||
_pathValid = true; | ||
_currentPath = _xSubActions; | ||
}; | ||
} forEach _currentPath; | ||
} forEach _parentPath; | ||
|
||
if (!_pathValid) exitWith {ERROR_1("Bad path %1", _parentPath); []}; | ||
|
||
TRACE_1("Adding Action",_currentPath); | ||
_currentPath pushBack [_action, []]; | ||
|
||
// Return the full path | ||
(_parentPath + [_action select 0]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters