2015-01-11 16:42:31 +00:00
|
|
|
/*
|
2015-01-11 18:20:14 +00:00
|
|
|
Name: FUNC(setForceWalkStatus)
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
Author: Pabst Mirror (from captivity by commy2)
|
|
|
|
|
|
|
|
Description:
|
|
|
|
Sets the forceWalk status of an unit. This allows the handling of more than one reason to set forceWalk.
|
|
|
|
Unit will force walk until all reasons are removed.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
0: OBJECT - Unit
|
|
|
|
1: STRING - Reason for forcing walking
|
|
|
|
2: BOOL - Is the reason still valid. True to force walk, false to remove restriction.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
None
|
|
|
|
|
|
|
|
Example:
|
2015-01-12 04:02:33 +00:00
|
|
|
[ACE_Player, "BrokenLeg", true] call FUNC(setForceWalkStatus)
|
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-05-14 18:06:06 +00:00
|
|
|
private ["_forceWalkReasons", "_unitForceWalkReasons", "_forceWalkReasonsBooleans", "_bitmaskNumber"];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-05-14 18:06:06 +00:00
|
|
|
PARAMS_3(_unit,_reason,_status);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-12 04:02:33 +00:00
|
|
|
_forceWalkReasons = missionNamespace getVariable ["ACE_forceWalkReasons", []];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
// register new reason (these reasons are shared publicly, since units can change ownership, but keep their forceWalk status)
|
|
|
|
if !(_reason in _forceWalkReasons) then {
|
|
|
|
_forceWalkReasons pushBack _reason;
|
2015-01-12 04:02:33 +00:00
|
|
|
ACE_forceWalkReasons = _forceWalkReasons;
|
|
|
|
publicVariable "ACE_forceWalkReasons";
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// get reasons why the unit is forceWalking already and update to the new status
|
2015-01-11 18:20:14 +00:00
|
|
|
_unitForceWalkReasons = [_unit] call FUNC(getForceWalkStatus);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
_forceWalkReasonsBooleans = [];
|
|
|
|
{
|
|
|
|
_forceWalkReasonsBooleans set [_forEachIndex, (_forceWalkReasons select _forEachIndex) in _unitForceWalkReasons];
|
|
|
|
} forEach _forceWalkReasons;
|
|
|
|
|
|
|
|
_forceWalkReasonsBooleans set [_forceWalkReasons find _reason, _status];
|
|
|
|
|
2015-01-11 18:20:14 +00:00
|
|
|
_bitmaskNumber = _forceWalkReasonsBooleans call FUNC(toBitmask);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-12 04:02:33 +00:00
|
|
|
_unit setVariable ["ACE_forceWalkStatusNumber", _bitmaskNumber, true];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
// actually apply the forceWalk command globaly
|
2015-04-29 22:53:49 +00:00
|
|
|
[[_unit], QUOTE(FUNC(applyForceWalkStatus)), 2] call FUNC(execRemoteFnc);
|