mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
c44360bd19
* Medical - Unlock air controlls when going uncon * remove unneeded parentheses * Update addons/medical_status/functions/fnc_setUnconsciousState.sqf Co-Authored-By: mharis001 <34453221+mharis001@users.noreply.github.com> Co-authored-by: mharis001 <34453221+mharis001@users.noreply.github.com>
63 lines
2.2 KiB
Plaintext
63 lines
2.2 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Glowbal
|
|
* Sets a unit in the unconscious state.
|
|
* For Internal Use: Called from the state machine.
|
|
*
|
|
* Arguments:
|
|
* 0: The unit that will be put in an unconscious state <OBJECT>
|
|
* 1: Set unconscious <BOOL>
|
|
*
|
|
* Return Value:
|
|
* Success <BOOL>
|
|
*
|
|
* Example:
|
|
* [player, true] call ace_medical_status_fnc_setUnconsciousState
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_unit", "_active"];
|
|
TRACE_2("setUnconsciousState",_unit,_active);
|
|
|
|
// No change to make
|
|
if (_active isEqualTo IS_UNCONSCIOUS(_unit)) exitWith { TRACE_2("no change",_active,IS_UNCONSCIOUS(_unit)); };
|
|
|
|
_unit setVariable [VAR_UNCON, _active, true];
|
|
|
|
// Toggle unit ragdoll state
|
|
[_unit, _active] call EFUNC(medical_engine,setUnconsciousAnim);
|
|
|
|
// Stop AI firing at unconscious units in most situations (global effect)
|
|
[_unit, "setHidden", "ace_unconscious", _active] call EFUNC(common,statusEffect_set);
|
|
|
|
if (_active) then {
|
|
// Don't bother setting this if not used
|
|
if (EGVAR(medical,spontaneousWakeUpChance) > 0) then {
|
|
private _lastWakeUpCheck = _unit getVariable [QEGVAR(medical,lastWakeUpCheck), 0]; // could be set higher from ace_medical_fnc_setUnconscious
|
|
TRACE_2("setting lastWakeUpCheck to max of",_lastWakeUpCheck,CBA_missionTime);
|
|
_unit setVariable [QEGVAR(medical,lastWakeUpCheck), _lastWakeUpCheck max CBA_missionTime];
|
|
};
|
|
|
|
if (_unit == ACE_player) then {
|
|
if (visibleMap) then {openMap false};
|
|
|
|
while {dialog} do {
|
|
closeDialog 0;
|
|
};
|
|
};
|
|
// Unlock controls for copilot if unit is pilot of aircraft
|
|
if (vehicle _unit isKindOf "Air" && {_unit == driver vehicle _unit}) then {
|
|
TRACE_1("pilot of air vehicle - unlocking controls",vehicle _unit);
|
|
// Do "Unlock controls" user action, co-pilot will then have to do the "Take Controls" actions
|
|
_unit action ["UnlockVehicleControl", vehicle _unit];
|
|
};
|
|
} else {
|
|
// Unit has woken up, no longer need to track this
|
|
_unit setVariable [QEGVAR(medical,lastWakeUpCheck), nil];
|
|
};
|
|
|
|
// This event doesn't correspond to unconscious in statemachine
|
|
// It's for any time a unit changes consciousness (including cardiac arrest)
|
|
["ace_unconscious", [_unit, _active]] call CBA_fnc_globalEvent;
|