2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
* Remove an addAction event from a unit.
|
|
|
|
*
|
2015-09-18 23:50:17 +00:00
|
|
|
* Arguments:
|
|
|
|
* 0: Unit the action is assigned to <OBJECT>
|
|
|
|
* 1: Name of the action, e.g. "DefaultAction" <STRING>
|
|
|
|
* 2: ID of the action <NUMBER>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
2015-09-18 23:50:17 +00:00
|
|
|
* Public: No
|
2015-01-11 16:42:31 +00:00
|
|
|
*/
|
2015-01-13 19:56:02 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-09-18 23:50:17 +00:00
|
|
|
params ["_unit", "_action", "_id"];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
if (_id == -1) exitWith {};
|
|
|
|
|
2015-09-18 23:50:17 +00:00
|
|
|
private ["_name", "_actionsVar"];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-09-18 23:50:17 +00:00
|
|
|
_name = format ["ACE_Action_%1", _action];
|
2015-04-16 00:00:37 +00:00
|
|
|
_actionsVar = _unit getVariable [_name, [-1, [-1, [], []], objNull]];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-09-18 23:50:17 +00:00
|
|
|
_actionsVar params ["_actionID", "_actionsArray"];
|
|
|
|
_actionsArray params ["_currentID", "_actionIDs", "_actions"];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-04-16 00:00:37 +00:00
|
|
|
if (_unit != _actionsVar select 2) exitWith {};
|
|
|
|
|
2015-01-11 16:42:31 +00:00
|
|
|
_id = _actionIDs find _id;
|
|
|
|
|
|
|
|
if (_id == -1) exitWith {};
|
|
|
|
|
|
|
|
_actionIDs set [_id, -1];
|
|
|
|
_actionIDs = _actionIDs - [-1];
|
|
|
|
|
|
|
|
_actions set [_id, []];
|
|
|
|
_actions = _actions - [[]];
|
|
|
|
|
|
|
|
if (count _actions == 0) then {
|
2015-05-14 18:06:06 +00:00
|
|
|
_unit removeAction _actionID;
|
|
|
|
_actionID = -1;
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
2015-04-16 00:00:37 +00:00
|
|
|
_unit setVariable [_name, [_actionID, [_currentID, _actionIDs, _actions], _unit], false];
|