mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e2ac18a05d
* advanced_ballistics * advanced_fatigue * advanced_throwing * ai * aircraft * arsenal * atragmx * attach * backpacks * ballistics * captives * cargo * chemlights * common * concertina_wire * cookoff * dagr * disarming * disposable * dogtags * dragging * explosives * fastroping * fcs * finger * frag * gestures * gforces * goggles * grenades * gunbag * hearing * hitreactions * huntir * interact_menu * interaction * inventory * kestrel4500 * laser * laserpointer * logistics_uavbattery * logistics_wirecutter * magazinerepack * map * map_gestures * maptools * markers * medical * medical_ai * medical_blood * medical_menu * microdagr * minedetector * missileguidance * missionmodules * mk6mortar * modules * movement * nametags * nightvision * nlaw * optics * optionsmenu * overheating * overpressure * parachute * pylons * quickmount * rangecard * rearm * recoil * refuel * reload * reloadlaunchers * repair * respawn * safemode * sandbag * scopes * slideshow * spectator * spottingscope * switchunits * tacticalladder * tagging * trenches * tripod * ui * vector * vehiclelock * vehicles * viewdistance * weaponselect * weather * winddeflection * yardage450 * zeus * arsenal defines.hpp * optionals * DEBUG_MODE_FULL 1 * DEBUG_MODE_FULL 2 * Manual fixes * Add SQF Validator check for #include after block comment * explosives fnc_openTimerUI * fix uniqueItems
63 lines
2.8 KiB
Plaintext
63 lines
2.8 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: PabstMirror
|
|
* Manually Apply Damage to a unit (can cause lethal damage)
|
|
* NOTE: because of caching, this will not have instant effects (~3 frame delay)
|
|
*
|
|
* Arguments:
|
|
* 0: The Unit <OBJECT>
|
|
* 1: Damage to Add <NUMBER>
|
|
* 2: Selection ("head", "body", "hand_l", "hand_r", "leg_l", "leg_r") <STRING>
|
|
* 3: Projectile Type <STRING>
|
|
*
|
|
* Return Value:
|
|
* HandleDamage's return <NUMBER>
|
|
*
|
|
* Example:
|
|
* [player, 0.8, "leg_r", "bullet"] call ace_medical_fnc_addDamageToUnit
|
|
* [cursorTarget, 1, "body", "stab"] call ace_medical_fnc_addDamageToUnit
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
// #define DEBUG_TESTRESULTS
|
|
|
|
params [["_unit", objNull, [objNull]], ["_damageToAdd", -1, [0]], ["_selection", "", [""]], ["_typeOfDamage", "", [""]]];
|
|
TRACE_4("params",_unit,_damageToAdd,_selection,_typeOfDamage);
|
|
|
|
_selection = toLower _selection;
|
|
if ((isNull _unit) || {!local _unit} || {!alive _unit}) exitWith {ERROR_1("addDamageToUnit - badUnit %1", _this); -1};
|
|
if (_damageToAdd < 0) exitWith {ERROR_1("addDamageToUnit - bad damage %1", _this); -1};
|
|
if (!(_selection in GVAR(SELECTIONS))) exitWith {ERROR_1("addDamageToUnit - bad selection %1", _this); -1};
|
|
|
|
//Get the hitpoint and the index
|
|
private _hitpoint = [_unit, _selection, true] call ace_medical_fnc_translateSelections;
|
|
(getAllHitPointsDamage _unit) params [["_allHitPoints", []]];
|
|
private _hitpointIndex = -1;
|
|
{ //case insensitive find
|
|
if (_x == _hitpoint) exitWith {_hitpointIndex = _forEachIndex;};
|
|
} forEach _allHitPoints;
|
|
if (_hitpointIndex < 0) exitWith {ERROR_1("addDamageToUnit - bad hitpointIndex %1", _this); -1};
|
|
|
|
private _currentDamage = _unit getHitIndex _hitpointIndex;
|
|
|
|
#ifdef DEBUG_TESTRESULTS
|
|
private _checkAtFrame = diag_frameno + 5;
|
|
private _partNumber = [_selection] call FUNC(selectionNameToNumber);
|
|
private _startDmg = (_unit getVariable [QGVAR(bodyPartStatus), [0,0,0,0,0,0]]) select _partNumber;
|
|
private _debugCode = {
|
|
params ["", "_unit", "_startDmg", "_damageToAdd", "_partNumber"];
|
|
private _endDmg = (_unit getVariable [QGVAR(bodyPartStatus), [0,0,0,0,0,0]]) select _partNumber;
|
|
if ((!alive _unit) || {_endDmg > _startDmg}) then {
|
|
INFO_6("addDamageToUnit - PASSED - [unit:%1, partNo:%2, addDmg:%3] results:[alive:%4 old:%5 new:%6]", _unit, _partNumber, _damageToAdd, alive _unit, _startDmg, _endDmg);
|
|
} else {
|
|
ERROR_6("addDamageToUnit - FAILED - [unit:%1, partNo:%2, addDmg:%3] results:[alive:%4 old:%5 new:%6]", _unit, _partNumber, _damageToAdd, alive _unit, _startDmg, _endDmg);
|
|
};
|
|
};
|
|
[{diag_frameno > (_this select 0)}, _debugCode, [_checkAtFrame, _unit, _startDmg, _damageToAdd, _partNumber]] call CBA_fnc_waitUntilAndExecute;
|
|
#endif
|
|
|
|
private _return = [_unit, _selection, (_currentDamage + _damageToAdd), _unit, _typeOfDamage, _hitpointIndex, objNull] call FUNC(handleDamage);
|
|
TRACE_1("handleDamage called",_return);
|
|
|
|
_return
|