ACE3/addons/medical/functions/fnc_handleDamage_advanced.sqf

56 lines
2.0 KiB
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Advanced HandleDamage EH function.
*
* Arguments:
* 0: Unit That Was Hit <OBJECT>
* 1: Name Of Hit Selection <STRING>
* 2: Amount Of Damage <NUMBER>
* 3: Shooter <OBJECT>
* 4: Projectile <STRING>
* 5: Current damage to be returned <NUMBER>
* 6: Type of Damage <STRING>
*
* Return Value:
2015-08-22 14:25:10 +00:00
* None
*
* Public: No
*/
2015-02-13 21:58:48 +00:00
#include "script_component.hpp"
2015-08-22 14:25:10 +00:00
private ["_typeOfProjectile", "_part", "_damageBodyParts", "_hitPoints"];
2015-08-26 08:04:51 +00:00
params ["_unit", "_selectionName", "_amountOfDamage", "_sourceOfDamage", "_typeOfProjectile", "_newDamage"];
_part = [_selectionName] call FUNC(selectionNameToNumber);
2015-04-17 21:15:41 +00:00
if (_part < 0) exitwith {};
_hitPoints = ["HitHead", "HitBody", "HitLeftArm", "HitRightArm", "HitLeftLeg", "HitRightLeg"];
// Sorting out the damage
_damageBodyParts = _unit getvariable [QGVAR(bodyPartStatus), [0,0,0,0,0,0]];
2015-04-17 21:15:41 +00:00
_damageBodyParts set [_part, (_damageBodyParts select _part) + _newDamage];
_unit setvariable [QGVAR(bodyPartStatus), _damageBodyParts, true];
2015-06-10 15:10:09 +00:00
_typeOfDamage = [_typeOfProjectile] call FUNC(getTypeOfDamage);
2015-08-26 08:04:51 +00:00
2015-08-29 10:59:11 +00:00
[_unit, _selectionName, _newDamage, _typeOfProjectile, _typeOfDamage] call FUNC(handleDamage_assignWounds);
2015-03-21 09:55:40 +00:00
// TODO Disabled until implemented fully
//if (GVAR(enableAirway)) then {
// [_unit,_selectionName,_newDamage,_sourceOfDamage, _typeOfDamage] call FUNC(handleDamage_airway);
//};
//if (GVAR(enableFractures)) then {
// [_unit,_selectionName,_newDamage,_sourceOfDamage, _typeOfDamage] call FUNC(handleDamage_fractures);
//};
//if (GVAR(enableInternalBleeding)) then {
// [_unit,_selectionName,_newDamage,_sourceOfDamage, _typeOfDamage] call FUNC(handleDamage_internalInjuries);
//};
if (alive _unit && {!(_unit getvariable ["ACE_isUnconscious", false])}) then {
// If it reaches this, we can assume that the hit did not kill this unit, as this function is called 3 frames after the damage has been passed.
if ([_unit, _part, if (_part > 1) then {_newDamage * 1.3} else {_newDamage * 2}] call FUNC(determineIfFatal)) then {
2015-03-07 12:57:36 +00:00
[_unit] call FUNC(setUnconscious);
};
};