2016-07-07 10:04:26 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
|
|
|
* Sets a unit in the unconscious state.
|
2017-06-05 16:42:46 +00:00
|
|
|
* For Public Use
|
2016-07-07 10:04:26 +00:00
|
|
|
*
|
|
|
|
* 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:
|
2018-05-08 09:16:12 +00:00
|
|
|
* [bob, true] call ace_medical_status__fnc_setUnconscious;
|
|
|
|
* [player, true, 5, true] call ace_medical_status_fnc_setUnconscious;
|
2016-07-07 10:04:26 +00:00
|
|
|
*
|
|
|
|
* Public: yes
|
|
|
|
*/
|
2017-06-05 16:42:46 +00:00
|
|
|
#define DEBUG_MODE_FULL
|
2016-07-07 10:04:26 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
// only run this after the settings are initialized
|
|
|
|
if !(EGVAR(common,settingsInitFinished)) exitWith {
|
|
|
|
EGVAR(common,runAtSettingsInitialized) pushBack [FUNC(setUnconscious), _this];
|
|
|
|
};
|
|
|
|
|
2017-06-05 16:42:46 +00:00
|
|
|
params ["_unit", ["_knockOut", true, [false]], ["_minWaitingTime", 0, [0]], ["_forcedWakup", false, [false]]];
|
|
|
|
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
|
|
|
|
};
|
2016-10-12 19:59:32 +00:00
|
|
|
if (!local _unit) exitWith {
|
2018-07-15 14:24:04 +00:00
|
|
|
[QEGVAR(medical,setUnconscious), [_unit, _knockOut], _unit] call CBA_fnc_targetEvent;
|
2016-10-12 19:59:32 +00:00
|
|
|
true
|
|
|
|
};
|
2018-05-22 16:21:24 +00:00
|
|
|
if (_knockOut isEqualTo IS_UNCONSCIOUS(_unit)) exitWith {
|
2017-06-05 16:42:46 +00:00
|
|
|
WARNING_2("setUnconscious called with no change [Unit %1] [State [%2]", _unit, _knockOut);
|
|
|
|
false
|
2016-07-07 10:04:26 +00:00
|
|
|
};
|
|
|
|
|
2018-07-15 14:24:04 +00:00
|
|
|
private _beforeState = [_unit, EGVAR(medical,STATE_MACHINE)] call CBA_statemachine_fnc_getCurrentState;
|
2016-07-07 10:04:26 +00:00
|
|
|
|
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]];
|
|
|
|
if ((alive _unit) && {_unit call FUNC(hasStableVitals)}) then {
|
|
|
|
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 {
|
2018-07-15 14:24:04 +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
|
|
|
};
|
|
|
|
|
2018-07-15 14:24:04 +00:00
|
|
|
private _afterState = [_unit, EGVAR(medical,STATE_MACHINE)] call CBA_statemachine_fnc_getCurrentState;
|
2017-06-05 16:42:46 +00:00
|
|
|
TRACE_2("state change",_beforeState,_afterState);
|
2016-10-05 22:54:57 +00:00
|
|
|
|
2016-10-12 19:59:32 +00:00
|
|
|
true
|