#include "..\script_component.hpp" /* * Author: Pterolatypus, LinkIsGrim * Custom wound handler for vehicle hits and explosions, sends damage to a random hitpoint * * Arguments: * 0: Unit That Was Hit * 1: Damage done to each body part * 2: Type of the damage done * * Return Value: * None * * Example: * [player, [[0.5, "#structural", 1.5]], "vehiclehit"] call ace_medical_damage_fnc_woundsHandlerVehiclehit * * Public: No */ params ["_unit", "_allDamages", "_typeOfDamage"]; TRACE_3("woundsHandlerVehiclehit",_unit,_allDamages,_typeOfDamage); // this should only trigger for hits to just structural if (count _allDamages > 1) exitWith {_this}; // damage can sometimes be negative (why?) // damage to structural is low unless it's a very large explosion, in which case it is typically >= 1 private _damageToApply = (abs (_allDamages select 0 select 0)); private _damageMap = createHashMap; private _bodyPart = ""; private _allBodyParts = ALL_BODY_PARTS; // micro-optimization here and above, don't recreate this array every time // hitpoints are randomized, more damage means more wounds in different body parts // use a hashmap so we only create one entry in _newDamages per body part for "_i" from 1 to (_damageToApply * 6) do { _bodyPart = selectRandom _allBodyParts; _damageMap set [_bodyPart, (_damageMap getOrDefault [_bodyPart, 0]) + _damageToApply]; }; private _newDamages = []; { _newDamages pushBack [_damageMap get _x, _x, _damageToApply]; } forEach (keys _damageMap); // micro-optimization again, two 'get's is still faster than iterating over a hashmap TRACE_1("Vehicle explosion handled, passing damage",_newDamages); [_unit, _newDamages, _typeOfDamage] //return