ACE3/addons/medical_menu/functions/fnc_updateBodyImage.sqf

43 lines
929 B
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Update the body image on the menu
*
* Arguments:
* 0: selection bloodloss <ARRAY>
* 1: display <DISPLAY>
*
* Return Value:
2015-08-07 03:37:41 +00:00
* None
*
* Example:
* [0.3, some_display] call ace_medical_menu_updateBodyImage
*
* Public: No
*/
#include "script_component.hpp"
2015-08-07 03:37:41 +00:00
params ["_selectionBloodLoss", "_display"];
// Handle the body image coloring
2015-08-07 03:37:41 +00:00
_availableSelections = [50, 51, 52, 53, 54, 55];
{
private ["_red", "_green", "_blue"];
_red = 1;
_green = 1;
_blue = 1;
2015-08-07 03:37:41 +00:00
if (_x > 0) then {
if (_damaged select _forEachIndex) then {
2015-08-07 03:37:41 +00:00
_green = (0.9 - _x) max 0;
_blue = _green;
} else {
2015-08-07 03:37:41 +00:00
_green = (0.9 - _x) max 0;
_red = _green;
//_blue = _green;
};
};
2015-08-07 03:37:41 +00:00
(_display displayCtrl (_availableSelections select _forEachIndex)) ctrlSetTextColor [_red, _green, _blue, 1.0];
} forEach _selectionBloodLoss;