2016-12-01 19:54:03 +00:00
|
|
|
/*
|
|
|
|
* Author: BaerMitUmlaut
|
2017-01-29 19:24:16 +00:00
|
|
|
* Handles any visual effects of medical.
|
|
|
|
* Note: Heart beat sounds run in a different PFH - see fnc_effectHeartBeat.
|
2016-12-01 19:54:03 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2017-02-19 04:11:40 +00:00
|
|
|
if (EGVAR(common,OldIsCamera) || {!alive ACE_player}) exitWith {
|
2016-12-09 18:16:41 +00:00
|
|
|
[false, 0] call FUNC(effectUnconscious);
|
|
|
|
[false] call FUNC(effectPain);
|
|
|
|
[false] call FUNC(effectBloodVolume);
|
2017-01-17 20:35:53 +00:00
|
|
|
[false] call FUNC(effectBleeding);
|
2016-12-01 19:54:03 +00:00
|
|
|
};
|
|
|
|
|
2017-03-18 16:53:57 +00:00
|
|
|
BEGIN_COUNTER(handleEffects);
|
|
|
|
|
2016-12-01 19:54:03 +00:00
|
|
|
// - Current state info -------------------------------------------------------
|
2017-04-27 17:12:57 +00:00
|
|
|
private _bleedingStrength = GET_BLOOD_LOSS(ACE_player);
|
|
|
|
private _bloodVolume = GET_BLOOD_VOLUME(ACE_player);
|
|
|
|
private _unconscious = IS_UNCONSCIOUS(ACE_player);
|
|
|
|
private _heartRate = GET_HEART_RATE(ACE_player);
|
|
|
|
private _pain = GET_PAIN_PERCEIVED(ACE_player);
|
2016-12-01 19:54:03 +00:00
|
|
|
|
2017-02-19 04:11:40 +00:00
|
|
|
if ((!GVAR(heartBeatEffectRunning)) && {_heartRate != 0} && {(_heartRate > 160) || {_heartRate < 60}}) then {
|
|
|
|
TRACE_1("Starting heart beat effect",_heartRate);
|
|
|
|
GVAR(heartBeatEffectRunning) = true;
|
|
|
|
[] call FUNC(effectHeartBeat);
|
|
|
|
};
|
|
|
|
|
2016-12-01 19:54:03 +00:00
|
|
|
// - Visual effects -----------------------------------------------------------
|
2016-12-09 18:16:41 +00:00
|
|
|
[_unconscious, 2] call FUNC(effectUnconscious);
|
2016-12-09 18:14:12 +00:00
|
|
|
[
|
|
|
|
true, linearConversion [BLOOD_VOLUME_CLASS_2_HEMORRHAGE, BLOOD_VOLUME_CLASS_4_HEMORRHAGE, _bloodVolume, 0, 1, true]
|
|
|
|
] call FUNC(effectBloodVolume);
|
2016-12-09 18:15:44 +00:00
|
|
|
|
|
|
|
if (!_unconscious) then {
|
|
|
|
[true, _pain] call FUNC(effectPain);
|
|
|
|
};
|
2017-01-17 20:35:53 +00:00
|
|
|
|
|
|
|
[true, _bleedingStrength] call FUNC(effectBleeding);
|
2017-03-18 16:53:57 +00:00
|
|
|
|
|
|
|
END_COUNTER(handleEffects);
|