2015-03-19 16:00:10 +00:00
|
|
|
/*
|
2015-03-24 04:18:00 +00:00
|
|
|
* Author: esteldunedain
|
2015-03-19 16:00:10 +00:00
|
|
|
* Creates an isolated ACE action
|
|
|
|
* Note: This function is NOT global.
|
|
|
|
*
|
|
|
|
* Argument:
|
|
|
|
* 0: Action name <STRING>
|
|
|
|
* 1: Name of the action shown in the menu <STRING>
|
|
|
|
* 2: Icon <STRING>
|
2015-03-20 02:32:44 +00:00
|
|
|
* 3: Statement <CODE>
|
|
|
|
* 4: Condition <CODE>
|
|
|
|
* 5: Insert children code <CODE> (Optional)
|
|
|
|
* 6: Action parameters <ANY> (Optional)
|
|
|
|
* 7: Position (Position or Selection Name) <POSITION> or <STRING> (Optional)
|
|
|
|
* 8: Distance <NUMBER> (Optional)
|
|
|
|
* 9: Other parameters <ARRAY> (Optional)
|
2015-03-19 16:00:10 +00:00
|
|
|
*
|
|
|
|
* Return value:
|
2015-03-20 02:32:44 +00:00
|
|
|
* Action <ARRAY>
|
2015-03-19 16:00:10 +00:00
|
|
|
*
|
|
|
|
* Example:
|
2015-03-20 02:32:44 +00:00
|
|
|
* [VulcanPinch","Vulcan Pinch",{_target setDamage 1;},{true},{},[parameters], [0,0,0], 100] call ace_interact_menu_fnc_createAction;
|
2015-03-19 16:00:10 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-03-20 02:32:44 +00:00
|
|
|
EXPLODE_5_PVT(_this,_actionName,_displayName,_icon,_statement,_condition);
|
2015-03-19 16:00:10 +00:00
|
|
|
|
2015-03-20 02:32:44 +00:00
|
|
|
private ["_insertChildren","_customParams","_position","_distance","_params"];
|
2015-03-19 16:00:10 +00:00
|
|
|
|
2015-03-20 02:32:44 +00:00
|
|
|
_insertChildren = if (count _this > 5) then {
|
|
|
|
_this select 5
|
|
|
|
} else {
|
|
|
|
{}
|
2015-03-19 16:00:10 +00:00
|
|
|
};
|
|
|
|
|
2015-03-20 02:32:44 +00:00
|
|
|
_customParams = if (count _this > 6) then {
|
|
|
|
_this select 6
|
|
|
|
} else {
|
|
|
|
[]
|
2015-03-19 16:00:10 +00:00
|
|
|
};
|
|
|
|
|
2015-03-20 02:32:44 +00:00
|
|
|
_position = if (count _this > 7) then {
|
|
|
|
_this select 7
|
|
|
|
} else {
|
|
|
|
[0,0,0]
|
2015-03-19 16:00:10 +00:00
|
|
|
};
|
|
|
|
|
2015-03-20 02:32:44 +00:00
|
|
|
_distance = if (count _this > 8) then {
|
|
|
|
_this select 8
|
|
|
|
} else {
|
|
|
|
2
|
|
|
|
};
|
|
|
|
|
|
|
|
_params = if (count _this > 9) then {
|
|
|
|
_this select 9
|
|
|
|
} else {
|
|
|
|
[false,false,false,false]
|
|
|
|
};
|
|
|
|
|
|
|
|
[
|
|
|
|
_actionName,
|
|
|
|
_displayName,
|
|
|
|
_icon,
|
|
|
|
_statement,
|
|
|
|
_condition,
|
|
|
|
|
|
|
|
_insertChildren,
|
|
|
|
_customParams,
|
|
|
|
_position,
|
|
|
|
_distance,
|
|
|
|
_params
|
|
|
|
]
|