ACE3/addons/medical/functions/fnc_setUnconscious.sqf

111 lines
3.9 KiB
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Sets a unit in the unconscious state.
2015-02-08 09:25:03 +00:00
*
* Arguments:
* 0: The unit that will be put in an unconscious state <OBJECT>
* 1: Set unconsciouns <BOOL> <OPTIONAL>
* 2: Minimum unconscious ACE_time <NUMBER> <OPTIONAL>
*
* ReturnValue:
2015-02-24 21:09:31 +00:00
* nil
*
* Public: yes
2015-02-08 09:25:03 +00:00
*/
#include "script_component.hpp"
#define DEFAULT_DELAY (round(random(10)+5))
private ["_unit", "_set", "_animState", "_originalPos", "_startingTime","_minWaitingTime", "_force", "_isDead"];
2015-02-08 09:25:03 +00:00
_unit = _this select 0;
2015-02-28 22:35:53 +00:00
_set = if (count _this > 1) then {_this select 1} else {true};
_minWaitingTime = if (count _this > 2) then {_this select 2} else {DEFAULT_DELAY};
_force = if (count _this > 3) then {_this select 3} else {false};
// No change, fuck off. (why is there no xor?)
if (_set isEqualTo (_unit getVariable ["ACE_isUnconscious", false])) exitWith {};
if !(_set) exitwith {
2015-04-17 18:24:05 +00:00
_unit setvariable ["ACE_isUnconscious", false, true];
};
2015-02-08 09:25:03 +00:00
2015-04-26 14:47:36 +00:00
if !(!(isNull _unit) && {(_unit isKindOf "CAManBase") && ([_unit] call EFUNC(common,isAwake))}) exitwith{};
2015-02-08 09:25:03 +00:00
if (!local _unit) exitwith {
[[_unit, _set, _minWaitingTime, _force], QUOTE(DFUNC(setUnconscious)), _unit, false] call EFUNC(common,execRemoteFnc); /* TODO Replace by event system */
2015-02-08 09:25:03 +00:00
};
2015-02-28 22:34:14 +00:00
_unit setvariable ["ACE_isUnconscious", true, true];
2015-02-08 09:25:03 +00:00
_unit setUnconscious true;
if (_unit == ACE_player) then {
if (visibleMap) then {openMap false};
2015-04-20 20:22:09 +00:00
while {dialog} do {
closeDialog 0;
};
};
2015-04-17 18:24:05 +00:00
// if we have unconsciousness for AI disabled, we will kill the unit instead
_isDead = false;
2015-06-08 18:12:16 +00:00
if (!([_unit, GVAR(remoteControlledAI)] call EFUNC(common,isPlayer)) && !_force) then {
2015-04-30 20:16:45 +00:00
_enableUncon = _unit getVariable [QGVAR(enableUnconsciousnessAI), GVAR(enableUnconsciousnessAI)];
if (_enableUncon == 0 or {_enableUncon == 1 and (random 1) < 0.5}) then {
2015-04-30 20:16:45 +00:00
[_unit, true] call FUNC(setDead);
_isDead = true;
2015-04-30 20:16:45 +00:00
};
2015-04-17 18:24:05 +00:00
};
if (_isDead) exitWith {};
2015-04-17 18:24:05 +00:00
2015-02-08 09:25:03 +00:00
// If a unit has the launcher out, it will sometimes start selecting the primairy weapon while unconscious,
// therefor we force it to select the primairy weapon before going unconscious
if ((vehicle _unit) isKindOf "StaticWeapon") then {
2015-04-30 23:35:50 +00:00
[_unit] call EFUNC(common,unloadPerson);
2015-02-08 09:25:03 +00:00
};
if (animationState _unit in ["ladderriflestatic","laddercivilstatic"]) then {
_unit action ["ladderOff", (nearestBuilding _unit)];
};
if (vehicle _unit == _unit) then {
if (primaryWeapon _unit == "") then {
2015-04-13 08:46:42 +00:00
_unit addWeapon "ACE_FakePrimaryWeapon";
2015-02-08 09:25:03 +00:00
};
_unit selectWeapon (primaryWeapon _unit);
};
// We are storing the current animation, so we can use it later on when waking the unit up inside a vehicle
2015-05-01 20:03:05 +00:00
if (vehicle _unit != _unit) then {
_unit setVariable [QGVAR(vehicleAwakeAnim), [(vehicle _unit), (animationState _unit)]];
};
//Save current stance:
2015-02-08 09:25:03 +00:00
_originalPos = unitPos _unit;
2015-02-28 22:34:14 +00:00
_unit setUnitPos "DOWN";
[_unit, true] call EFUNC(common,disableAI);
2015-02-08 09:25:03 +00:00
// So the AI does not get stuck, we are moving the unit to a temp group on its own.
2015-04-13 05:32:07 +00:00
//Unconscious units shouldn't be put in another group #527:
if (GVAR(moveUnitsFromGroupOnUnconscious)) then {
[_unit, true, "ACE_isUnconscious", side group _unit] call EFUNC(common,switchToGroupSide);
};
2015-02-08 09:25:03 +00:00
2015-03-10 15:35:00 +00:00
[_unit, QGVAR(unconscious), true] call EFUNC(common,setCaptivityStatus);
2015-04-30 20:17:25 +00:00
_anim = [_unit] call EFUNC(common,getDeathAnim);
[_unit, _anim, 1, true] call EFUNC(common,doAnimation);
[{
_unit = _this select 0;
_anim = _this select 1;
2015-04-30 20:19:31 +00:00
if ((_unit getVariable "ACE_isUnconscious") and (animationState _unit != _anim)) then {
[_unit, _anim, 2, true] call EFUNC(common,doAnimation);
};
2015-04-30 23:36:09 +00:00
}, [_unit, _anim], 0.5, 0] call EFUNC(common,waitAndExecute);
2015-02-08 09:25:03 +00:00
_startingTime = ACE_time;
2015-02-08 09:25:03 +00:00
2015-05-01 20:03:05 +00:00
[DFUNC(unconsciousPFH), 0.1, [_unit, _originalPos, _startingTime, _minWaitingTime, false, vehicle _unit isKindOf "ParachuteBase"] ] call CBA_fnc_addPerFrameHandler;
2015-02-08 09:25:03 +00:00
2015-04-26 14:47:36 +00:00
// unconscious can't talk
[_unit, "isUnconscious"] call EFUNC(common,muteUnit);
["medical_onUnconscious", [_unit, true]] call EFUNC(common,globalEvent);