mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
f7b07c362d
* Add ability to customize colors of injuries Added CBA settings entries. Updated default values. Added English and Russian locales. * copypaste cleanup * move comments and make code more maintainable * Apply suggestions from code review Newline at end of files Co-authored-by: Dedmen Miller <dedmen@users.noreply.github.com> Co-authored-by: Dedmen Miller <dedmen@users.noreply.github.com>
24 lines
586 B
Plaintext
24 lines
586 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: ShackTac, SilentSpike
|
|
* Converts a blood loss value into a representative RGBA colour.
|
|
*
|
|
* Arguments:
|
|
* 0: The blood loss value (range [0,1]) <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* Representative RGBA colour <ARRAY>
|
|
*
|
|
* Example:
|
|
* [0.4] call ace_medical_gui_fnc_bloodLossToRGBA
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_bloodLoss"];
|
|
|
|
private _frBL = 0 max (_bloodLoss / BLOOD_LOSS_RED_THRESHOLD) min 1;
|
|
private _colorInt = ceil (_frBL * (BLOOD_LOSS_TOTAL_COLORS - 1));
|
|
|
|
missionNamespace getVariable format ["%1_%2", QGVAR(bloodLossColor), _colorInt]
|