ACE3/addons/medical/functions/fnc_actionCheckBloodPressureLocal.sqf

61 lines
1.9 KiB
Plaintext
Raw Normal View History

2015-02-23 19:35:36 +00:00
/*
* Author: Glowbal
* Local callback for checking the blood pressure of a patient
*
* Arguments:
* 0: The medic <OBJECT>
* 1: The patient <OBJECT>
*
* Return Value:
* NONE
*
* Public: No
*/
#include "script_component.hpp"
private ["_caller","_target","_bloodPressure","_bloodPressureHigh","_bloodPressureLow","_title","_content"];
_caller = _this select 0;
_target = _this select 1;
_bloodPressure = [_target] call FUNC(getBloodPressure);
if (!alive _target) then {
_bloodPressure = [0,0];
};
_bloodPressureHigh = _bloodPressure select 1;
_bloodPressureLow = _bloodPressure select 0;
_output = "";
_logOutPut = "";
if ([_caller] call FUNC(isMedic)) then {
2015-03-09 21:08:43 +00:00
_output = "STR_ACE_MEDICAL_CHECK_BLOODPRESSURE_OUTPUT_1";
2015-02-23 19:35:36 +00:00
_logOutPut = format["%1/%2",round(_bloodPressureHigh),round(_bloodPressureLow)];
} else {
if (_bloodPressureHigh > 20) then {
2015-03-09 21:08:43 +00:00
_output = "STR_ACE_MEDICAL_CHECK_BLOODPRESSURE_OUTPUT_2";
2015-02-23 19:35:36 +00:00
_logOutPut = "Low";
if (_bloodPressureHigh > 100) then {
2015-03-09 21:08:43 +00:00
_output = "STR_ACE_MEDICAL_CHECK_BLOODPRESSURE_OUTPUT_3";
2015-02-23 19:35:36 +00:00
_logOutPut = "Normal";
if (_bloodPressureHigh > 160) then {
2015-03-09 21:08:43 +00:00
_output = "STR_ACE_MEDICAL_CHECK_BLOODPRESSURE_OUTPUT_4";
2015-02-23 19:35:36 +00:00
_logOutPut = "High";
};
};
} else {
if (random(10) > 3) then {
2015-03-09 21:08:43 +00:00
_output = "STR_ACE_MEDICAL_CHECK_BLOODPRESSURE_OUTPUT_5";
2015-02-23 19:35:36 +00:00
_logOutPut = "No Blood Pressure";
} else {
2015-03-09 21:08:43 +00:00
_output = "STR_ACE_MEDICAL_CHECK_BLOODPRESSURE_OUTPUT_6";
2015-02-23 19:35:36 +00:00
};
};
};
2015-03-09 21:08:43 +00:00
["displayTextStructured", [_caller], [[_output, [_target] call EFUNC(common,getName), round(_bloodPressureHigh),round(_bloodPressureLow)], 1.75, _caller]] call EFUNC(common,targetEvent);
2015-02-23 19:35:36 +00:00
if (_logOutPut != "") then {
2015-04-03 19:03:39 +00:00
[_target,"activity", "%1 checked Blood Pressure: %2", [[_caller] call EFUNC(common,getName), _logOutPut]] call FUNC(addToLog);
2015-02-23 19:35:36 +00:00
};