Merge branch 'main' into bug/update-flag-exclusions
This commit is contained in:
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project badly attempts [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project badly attempts [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [3.1.2] - 2024-01-04
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Add forgotten code file file for medical overlay
|
||||||
|
|
||||||
## [3.1.1] - 2024-01-04
|
## [3.1.1] - 2024-01-04
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
@@ -32,6 +32,7 @@ class milsim
|
|||||||
class bindEventHandlers { postInit = 1; };
|
class bindEventHandlers { postInit = 1; };
|
||||||
class bindVehicleActions { postInit = 1; };
|
class bindVehicleActions { postInit = 1; };
|
||||||
class addClientStatsPFH {};
|
class addClientStatsPFH {};
|
||||||
|
class addMedicalOverlayPFH { postInit = 1; }; // nees refactor
|
||||||
class calculateClientStats {};
|
class calculateClientStats {};
|
||||||
class initVehicleFlags { postInit = 1; };
|
class initVehicleFlags { postInit = 1; };
|
||||||
class bindEmptyGroupGarbageCleanup { postInit = 1; };
|
class bindEmptyGroupGarbageCleanup { postInit = 1; };
|
||||||
|
|||||||
79
functions/client/fn_addMedicalOverlayPFH.sqf
Normal file
79
functions/client/fn_addMedicalOverlayPFH.sqf
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
// Enable/Disable the script
|
||||||
|
if (isNil "milsim_client_medState3D_enabled") then {
|
||||||
|
milsim_client_medState3D_enabled = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
// List of units to draw icons for
|
||||||
|
milsim_client_medState3D_drawTargets = [];
|
||||||
|
|
||||||
|
// Range to draw icons for
|
||||||
|
milsim_client_medState3D_drawRange = 10;
|
||||||
|
|
||||||
|
// ACE Triage colors, for consistency across UIs and functions
|
||||||
|
// #define TRIAGE_COLOR_NONE 0.5, 0.5, 0.5, 0.1
|
||||||
|
// #define TRIAGE_COLOR_MINIMAL 0, 0.5, 0, 0.9
|
||||||
|
// #define TRIAGE_COLOR_DELAYED 1, 0.84, 0, 0.9
|
||||||
|
// #define TRIAGE_COLOR_IMMEDIATE 1, 0, 0, 0.9
|
||||||
|
// #define TRIAGE_COLOR_DECEASED 0, 0, 0, 0.9
|
||||||
|
|
||||||
|
// ACE Triage colors, for consistency across UIs and functions
|
||||||
|
milsim_client_medState3D_colors = [
|
||||||
|
[0, 0.5, 0, 0.9], // TRIAGE_COLOR_MINIMAL
|
||||||
|
[1, 0.84, 0, 0.9], // TRIAGE_COLOR_DELAYED
|
||||||
|
[1, 0, 0, 0.9], // TRIAGE_COLOR_IMMEDIATE
|
||||||
|
[0, 0, 0, 0.9], // TRIAGE_COLOR_DECEASED
|
||||||
|
[0.5, 0.5, 0.5, 0] // TRIAGE_COLOR_NONE
|
||||||
|
];
|
||||||
|
|
||||||
|
// Per-frame handler to draw icons
|
||||||
|
milsim_client_medState3D_pfh = [
|
||||||
|
{
|
||||||
|
// if disabled, skip processing
|
||||||
|
if (!milsim_client_medState3D_enabled) exitWith {};
|
||||||
|
|
||||||
|
// if no targets, skip processing
|
||||||
|
if (count milsim_client_medState3D_drawTargets == 0) exitWith {};
|
||||||
|
|
||||||
|
if !([player] call ace_medical_treatment_fnc_isMedic) exitWith {};
|
||||||
|
|
||||||
|
{
|
||||||
|
// distance within 10 meters
|
||||||
|
if (player distance _x > milsim_client_medState3D_drawRange) then {continue};
|
||||||
|
// check unit not null, not conscious, and not in a vehicle
|
||||||
|
if (
|
||||||
|
isNull _x ||
|
||||||
|
!(_x getVariable ["ACE_isUnconscious", false]) ||
|
||||||
|
!isNull (objectParent _x)
|
||||||
|
) then {continue};
|
||||||
|
|
||||||
|
// color based on triage level
|
||||||
|
private _color = milsim_client_medState3D_colors select ((_x getVariable ["ace_medical_triageLevel", -1]) -1);
|
||||||
|
// draw position, slightly above the prone unit
|
||||||
|
private _drawPos = (visiblePosition _x) vectorAdd [0, 0, 0.5];
|
||||||
|
// draw icon
|
||||||
|
drawIcon3D [
|
||||||
|
"\A3\ui_f\data\map\markers\military\dot_CA.paa", // icon texture
|
||||||
|
_color, // color
|
||||||
|
_drawPos, // position AGL
|
||||||
|
1, // width
|
||||||
|
1, // height
|
||||||
|
0 // angle
|
||||||
|
// further params optional, omitted
|
||||||
|
];
|
||||||
|
} forEach milsim_client_medState3D_drawTargets;
|
||||||
|
},
|
||||||
|
0,
|
||||||
|
[]
|
||||||
|
] call CBA_fnc_addPerFrameHandler;
|
||||||
|
|
||||||
|
[
|
||||||
|
"Man",
|
||||||
|
"InitPost",
|
||||||
|
{
|
||||||
|
params ["_unit"];
|
||||||
|
milsim_client_medState3D_drawTargets pushBack _unit;
|
||||||
|
},
|
||||||
|
true,
|
||||||
|
[],
|
||||||
|
true
|
||||||
|
] call CBA_fnc_addClassEventHandler;
|
||||||
@@ -104,6 +104,17 @@
|
|||||||
}
|
}
|
||||||
] call CBA_fnc_addSetting;
|
] call CBA_fnc_addSetting;
|
||||||
|
|
||||||
|
//---------------------
|
||||||
|
// Medical Overlay
|
||||||
|
//---------------------
|
||||||
|
|
||||||
|
[
|
||||||
|
"milsim_client_medState3D_enabled",
|
||||||
|
"CHECKBOX",
|
||||||
|
["Enable 3D Triage Card State", "Draws a colored dot over units within 10m indicating current ACE Triage State"],
|
||||||
|
"Medical",
|
||||||
|
true
|
||||||
|
] call CBA_fnc_addSetting;
|
||||||
|
|
||||||
diag_log text "[MILSIM] (settings) Custom CBA settings initialized";
|
diag_log text "[MILSIM] (settings) Custom CBA settings initialized";
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user