2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2016-07-07 10:04:26 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
|
|
|
* Sets a unit in the unconscious state.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: The unit that will be put in an unconscious state <OBJECT>
|
|
|
|
* 1: Set unconsciouns <BOOL> (default: true)
|
2017-06-05 16:42:46 +00:00
|
|
|
* 2: Minimum unconscious time (set to 0 to ignore) <NUMBER><OPTIONAL> (default: 0)
|
|
|
|
* 3: Force wakeup at given time if vitals are stable <BOOL><OPTIONAL> (default: false)
|
2016-07-07 10:04:26 +00:00
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Return Value:
|
2016-10-12 19:59:32 +00:00
|
|
|
* Success? <BOOLEAN>
|
2016-07-07 10:04:26 +00:00
|
|
|
*
|
|
|
|
* Example:
|
2019-04-03 13:17:17 +00:00
|
|
|
* [bob, true] call ace_medical_fnc_setUnconscious;
|
|
|
|
* [player, true, 5, true] call ace_medical_fnc_setUnconscious;
|
2016-07-07 10:04:26 +00:00
|
|
|
*
|
2019-06-03 15:31:46 +00:00
|
|
|
* Public: Yes
|
2016-07-07 10:04:26 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
// only run this after the settings are initialized
|
|
|
|
if !(EGVAR(common,settingsInitFinished)) exitWith {
|
|
|
|
EGVAR(common,runAtSettingsInitialized) pushBack [FUNC(setUnconscious), _this];
|
|
|
|
};
|
|
|
|
|
2019-04-16 21:47:13 +00:00
|
|
|
params [["_unit", objNull, [objNull]], ["_knockOut", true, [false]], ["_minWaitingTime", 0, [0]], ["_forcedWakup", false, [false]]];
|
2017-06-05 16:42:46 +00:00
|
|
|
TRACE_4("setUnconscious",_unit,_knockOut,_minWaitingTime,_forcedWakup);
|
2016-10-12 19:59:32 +00:00
|
|
|
|
2017-06-05 16:42:46 +00:00
|
|
|
if ((isNull _unit) || {!alive _unit} || {!(_unit isKindOf "CAManBase")}) exitWith {
|
|
|
|
ERROR_3("Bad Unit %1 [Type: %2] [Alive: %3]",_unit,typeOf _unit,alive _unit);
|
|
|
|
false
|
|
|
|
};
|
2019-03-21 13:34:51 +00:00
|
|
|
|
2016-10-12 19:59:32 +00:00
|
|
|
if (!local _unit) exitWith {
|
2019-04-16 21:47:13 +00:00
|
|
|
[QEGVAR(medical,setUnconscious), _this, _unit] call CBA_fnc_targetEvent;
|
2016-10-12 19:59:32 +00:00
|
|
|
true
|
|
|
|
};
|
2019-03-21 13:34:51 +00:00
|
|
|
|
2018-05-22 16:21:24 +00:00
|
|
|
if (_knockOut isEqualTo IS_UNCONSCIOUS(_unit)) exitWith {
|
2024-02-05 17:04:24 +00:00
|
|
|
WARNING_2("setUnconscious called with no change [Unit %1] [State [%2]",_unit,_knockOut);
|
2017-06-05 16:42:46 +00:00
|
|
|
false
|
2016-07-07 10:04:26 +00:00
|
|
|
};
|
|
|
|
|
2019-03-21 13:34:51 +00:00
|
|
|
if (currentWeapon _unit != primaryWeapon _unit) then {
|
|
|
|
_unit selectWeapon primaryWeapon _unit;
|
|
|
|
};
|
2016-10-05 22:54:57 +00:00
|
|
|
|
2017-06-05 16:42:46 +00:00
|
|
|
if (_knockOut) then {
|
|
|
|
if (_minWaitingTime > 0) then {
|
|
|
|
if (_forcedWakup) then {
|
|
|
|
// If unit still has stable vitals at min waiting time, then force wake up
|
|
|
|
[{
|
|
|
|
params [["_unit", objNull]];
|
2019-03-25 03:17:46 +00:00
|
|
|
if ((alive _unit) && {_unit call EFUNC(medical_status,hasStableVitals)}) then {
|
2017-06-05 16:42:46 +00:00
|
|
|
TRACE_1("Doing delay wakeup",_unit);
|
|
|
|
[QGVAR(WakeUp), _unit] call CBA_fnc_localEvent;
|
|
|
|
} else {
|
|
|
|
TRACE_1("Skipping delay wakeup",_unit);
|
|
|
|
};
|
|
|
|
}, [_unit], _minWaitingTime] call CBA_fnc_waitAndExecute;
|
|
|
|
};
|
2018-05-09 12:37:07 +00:00
|
|
|
if (EGVAR(medical,spontaneousWakeUpChance) > 0) then {
|
2019-08-06 13:10:33 +00:00
|
|
|
TRACE_1("setting lastWakeUpCheck",_minWaitingTime);
|
2018-07-15 14:25:14 +00:00
|
|
|
_unit setVariable [QEGVAR(medical,lastWakeUpCheck), CBA_missionTime + _minWaitingTime - SPONTANEOUS_WAKE_UP_INTERVAL];
|
2017-06-05 16:42:46 +00:00
|
|
|
};
|
2016-07-07 10:04:26 +00:00
|
|
|
};
|
2018-05-08 09:16:12 +00:00
|
|
|
|
2017-06-05 16:42:46 +00:00
|
|
|
[QGVAR(knockOut), _unit] call CBA_fnc_localEvent;
|
|
|
|
} else {
|
|
|
|
[QGVAR(WakeUp), _unit] call CBA_fnc_localEvent;
|
2016-07-07 10:04:26 +00:00
|
|
|
};
|
|
|
|
|
2016-10-12 19:59:32 +00:00
|
|
|
true
|