2015-02-08 09:01:32 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
2016-06-30 15:33:29 +00:00
|
|
|
* Damage orchestration
|
2015-02-08 09:01:32 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Unit That Was Hit <OBJECT>
|
|
|
|
* 1: Name Of Hit Selection <STRING>
|
|
|
|
* 2: Amount Of Damage <NUMBER>
|
|
|
|
* 3: Shooter <OBJECT>
|
|
|
|
* 4: Projectile <STRING>
|
2016-06-10 02:26:50 +00:00
|
|
|
* 5: Hit part index of the hit point <NUMBER>
|
|
|
|
* 6: Current damage to be returned <NUMBER>
|
|
|
|
*
|
|
|
|
* //On 1.63 dev:
|
|
|
|
* 6: Shooter? <OBJECT>
|
|
|
|
* 7: Current damage to be returned <NUMBER>
|
2015-02-08 09:01:32 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2015-08-22 14:25:10 +00:00
|
|
|
* None
|
2015-02-08 09:01:32 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
2015-02-13 21:58:48 +00:00
|
|
|
#include "script_component.hpp"
|
2015-02-08 09:01:32 +00:00
|
|
|
|
2015-09-14 19:15:57 +00:00
|
|
|
params ["_unit", "_selectionName", "_amountOfDamage", "_sourceOfDamage", "_typeOfProjectile", "_hitPointNumber", "_newDamage"];
|
2015-02-13 21:55:13 +00:00
|
|
|
|
2016-06-10 02:26:50 +00:00
|
|
|
//Temp fix for 1.63 handleDamage changes
|
|
|
|
if (_newDamage isEqualType objNull) then {
|
|
|
|
_newDamage = _this select 7;
|
|
|
|
};
|
2016-06-30 15:33:29 +00:00
|
|
|
TRACE_5("ACE_DEBUG: damageOrchestration Called",_unit, _selectionName, _amountOfDamage, _sourceOfDamage, _typeOfProjectile);
|
2016-06-10 02:26:50 +00:00
|
|
|
|
2016-06-30 15:33:29 +00:00
|
|
|
private _part = [_selectionName] call EFUNC(medical,selectionNameToNumber);
|
2015-11-30 16:14:05 +00:00
|
|
|
if (_part < 0) exitWith {};
|
2015-02-21 22:14:21 +00:00
|
|
|
|
2016-06-13 00:34:56 +00:00
|
|
|
private _hitPoints = ["HitHead", "HitBody", "HitLeftArm", "HitRightArm", "HitLeftLeg", "HitRightLeg"];
|
2015-02-28 18:22:46 +00:00
|
|
|
// Sorting out the damage
|
2016-06-30 15:33:29 +00:00
|
|
|
private _damageBodyParts = _unit getVariable [QEGVAR(medical,bodyPartStatus), [0,0,0,0,0,0]];
|
2015-04-17 21:15:41 +00:00
|
|
|
|
2015-02-28 18:22:46 +00:00
|
|
|
_damageBodyParts set [_part, (_damageBodyParts select _part) + _newDamage];
|
2016-06-30 15:33:29 +00:00
|
|
|
_unit setVariable [QEGVAR(medical,bodyPartStatus), _damageBodyParts, true];
|
2015-04-11 20:31:17 +00:00
|
|
|
|
2016-06-13 00:34:56 +00:00
|
|
|
private _typeOfDamage = [_typeOfProjectile] call FUNC(getTypeOfDamage);
|
2015-08-26 08:04:51 +00:00
|
|
|
|
2016-06-30 15:33:29 +00:00
|
|
|
[_unit, _selectionName, _newDamage, _typeOfProjectile, _typeOfDamage] call FUNC(woundsHandler); // TODO also support the sqf variant
|
2015-02-03 20:48:08 +00:00
|
|
|
|
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);
|
|
|
|
//};
|
2015-02-21 22:14:21 +00:00
|
|
|
|
2016-06-30 15:33:29 +00:00
|
|
|
// TODO raise state events for unit
|