ACE3/addons/medical_engine/functions/fnc_updateBodyPartVisuals.sqf
2016-12-08 11:38:43 +01:00

56 lines
1.6 KiB
Plaintext

/*
* Author: commy2
* Damages a body part of a local unit. Does not kill the unit.
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Body part, can be "Head", "Body", "LeftArm", "RightArm", "LeftLeg", "RightLeg" or "All" <STRING>
*
* Return Value:
* None
*
* Example:
* [player, "HEAD"] call ace_medical_engine_fnc_updateBodyPartVisuals
*
* Public: No
*/
#include "script_component.hpp"
params ["_unit", "_bodyPart"];
if (_bodyPart == "All") exitWith {
[_unit, "Head"] call FUNC(updateBodyPartVisuals);
[_unit, "Body"] call FUNC(updateBodyPartVisuals);
[_unit, "LeftArm"] call FUNC(updateBodyPartVisuals);
[_unit, "RightArm"] call FUNC(updateBodyPartVisuals);
[_unit, "LeftLeg"] call FUNC(updateBodyPartVisuals);
[_unit, "RightLeg"] call FUNC(updateBodyPartVisuals);
};
private _affectedBodyParts = [_bodyPart];
switch (toLower _bodyPart) do {
case "leftarm";
case "rightarm": {
_bodyPart = "Arms";
_affectedBodyParts = ["LeftArm", "RightArm"];
};
case "leftleg";
case "rightleg": {
_bodyPart = "Legs";
_affectedBodyParts = ["LeftLeg", "RightLeg"];
};
};
private _bodyPartDamage = _unit getVariable [QEGVAR(medical,bodyPartDamage), [0,0,0,0,0,0]];
private _damageOnAffectedBodyParts = 0;
{
private _partIndex = ALL_BODY_PARTS find toLower _x;
private _damageOnBodyPart = _bodyPartDamage select _partIndex;
// report maximum of both legs or arms
_damageOnAffectedBodyParts = _damageOnAffectedBodyParts max _damageOnBodyPart;
} forEach _affectedBodyParts;
[_unit, _bodyPart, _damageOnAffectedBodyParts > VISUAL_BODY_DAMAGE_THRESHOLD] call FUNC(damageBodyPart);