ACE3/addons/medical/functions/fnc_actionCheckPulseLocal.sqf

54 lines
1.7 KiB
Plaintext
Raw Normal View History

2015-02-23 19:35:36 +00:00
/*
* Author: Glowbal
* Local callback for checking the pulse of a patient
*
* Arguments:
* 0: The medic <OBJECT>
* 1: The patient <OBJECT>
*
* Return Value:
* NONE
*
* Public: No
*/
#include "script_component.hpp"
2015-04-30 06:17:26 +00:00
private ["_caller", "_unit", "_heartRateOutput", "_heartRate", "_logOutPut"];
2015-02-23 19:35:36 +00:00
_caller = _this select 0;
_unit = _this select 1;
_heartRate = _unit getvariable [QGVAR(heartRate), 80];
2015-02-23 19:35:36 +00:00
if (!alive _unit) then {
_heartRate = 0;
};
2015-03-09 21:08:43 +00:00
_heartRateOutput = "STR_ACE_MEDICAL_CHECK_PULSE_OUTPUT_5";
2015-02-23 19:35:36 +00:00
_logOutPut = "No heart rate";
if (_heartRate > 1.0) then {
if ([_caller] call FUNC(isMedic)) then {
2015-03-09 21:08:43 +00:00
_heartRateOutput = "STR_ACE_MEDICAL_CHECK_PULSE_OUTPUT_1";
2015-02-23 19:35:36 +00:00
_logOutPut = format["%1",round(_heartRate)];
} else {
// non medical personel will only find a pulse/HR
2015-03-09 21:08:43 +00:00
_heartRateOutput = "STR_ACE_MEDICAL_CHECK_PULSE_OUTPUT_2";
2015-04-26 07:36:51 +00:00
_logOutPut = localize "STR_ACE_MEDICAL_CHECK_PULSE_WEAK";
2015-02-23 19:35:36 +00:00
if (_heartRate > 60) then {
if (_heartRate > 100) then {
2015-03-09 21:08:43 +00:00
_heartRateOutput = "STR_ACE_MEDICAL_CHECK_PULSE_OUTPUT_3";
2015-04-26 07:36:51 +00:00
_logOutPut = localize "STR_ACE_MEDICAL_CHECK_PULSE_STRONG";
2015-02-23 19:35:36 +00:00
} else {
2015-03-09 21:08:43 +00:00
_heartRateOutput = "STR_ACE_MEDICAL_CHECK_PULSE_OUTPUT_4";
2015-04-26 07:36:51 +00:00
_logOutPut = localize "STR_ACE_MEDICAL_CHECK_PULSE_NORMAL";
2015-02-23 19:35:36 +00:00
};
};
};
};
2015-03-09 21:08:43 +00:00
["displayTextStructured", [_caller], [[_heartRateOutput, [_unit] call EFUNC(common,getName), round(_heartRate)], 1.5, _caller]] call EFUNC(common,targetEvent);
2015-02-23 19:35:36 +00:00
if (_logOutPut != "") then {
2015-04-26 07:36:51 +00:00
[_unit,"activity", localize "STR_ACE_MEDICAL_CHECK_PULSE_LOG",[[_caller] call EFUNC(common,getName),_logOutPut]] call FUNC(addToLog);
2015-02-23 19:35:36 +00:00
};