mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
02365609b5
* Refactor medical to use hashmaps for wound storage - We most frequently want to access wounds by body part, so this makes that a constant time lookup. - The body part index is no longer stored in every wound since it's inherent in the wound storage. - Using body part names as the keys of the hashmap to improve code clarity (no more magic numbers). closes #6468 * Add deserilization migration from old wound arrays Will migrate from old form array wound storage to the new hashmap strucutre during deserlization. This is relevant for communities piping medical state out to a database or similar between sessions. * fix issue with suture stitching * change version number in comment --------- Co-authored-by: Salluci <salluci.lovi@gmail.com>
41 lines
1.3 KiB
Plaintext
41 lines
1.3 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: esteldunedain, SilentSpike, mharis001
|
|
* Modifies the medical action icons to show blood loss and tourniquets.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: Body part <STRING>
|
|
* 2: Action data <ARRAY>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [_target, "head", _actionData] call ace_medical_gui_fnc_modifyAction
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#define COLOR_SCALE ["#ffffff", "#fff1a1", "#ffe075", "#ffcb55", "#ffb73c", "#ffa127", "#ff8815", "#ff6d05", "#ff4b00", "#ff0000"]
|
|
|
|
params ["_target", "_bodyPart", "_actionData"];
|
|
private _partIndex = ALL_BODY_PARTS find _bodyPart;
|
|
|
|
private _bloodLossOnBodyPart = 0;
|
|
|
|
// Add all bleeding from wounds on selection
|
|
{
|
|
_x params ["", "_amountOf", "_bleeding"];
|
|
_bloodLossOnBodyPart = _bloodLossOnBodyPart + (_amountOf * _bleeding);
|
|
} forEach (GET_OPEN_WOUNDS(_target) getOrDefault [_bodyPart, []]);
|
|
|
|
private _frBL = 0 max (_bloodLossOnBodyPart / BLOOD_LOSS_RED_THRESHOLD) min 1;
|
|
private _colorInt = ceil (_frBL * (BLOOD_LOSS_TOTAL_COLORS - 1)); // ceil because any bleeding more than zero shouldn't be white
|
|
|
|
if (HAS_TOURNIQUET_APPLIED_ON(_target,_partIndex)) then {
|
|
_actionData set [2, format [QPATHTOF(ui\cross_t_%1.paa), _colorInt]];
|
|
} else {
|
|
_actionData set [2, [QPATHTOF(ui\cross.paa), COLOR_SCALE select _colorInt]];
|
|
};
|