Skip to content

Commit a95c8ba

Browse files
Add health analyzer unrevivability warning (space-wizards#32636)
* Add health analyzer unrevivability warning * Remove errornous comment
1 parent dcb615d commit a95c8ba

File tree

6 files changed

+32
-12
lines changed

6 files changed

+32
-12
lines changed

Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@
4747

4848
<PanelContainer Name="AlertsDivider" Visible="False" StyleClasses="LowDivider" />
4949

50-
<BoxContainer Name="AlertsContainer" Visible="False" Margin="0 5" Orientation="Horizontal"
51-
HorizontalExpand="True" HorizontalAlignment="Center">
50+
<BoxContainer Name="AlertsContainer" Visible="False" Margin="0 5" Orientation="Vertical" HorizontalAlignment="Center">
5251

5352
</BoxContainer>
5453

Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs

+18-7
Original file line numberDiff line numberDiff line change
@@ -110,18 +110,29 @@ public void Populate(HealthAnalyzerScannedUserMessage msg)
110110

111111
// Alerts
112112

113-
AlertsDivider.Visible = msg.Bleeding == true;
114-
AlertsContainer.Visible = msg.Bleeding == true;
113+
var showAlerts = msg.Unrevivable == true || msg.Bleeding == true;
115114

116-
if (msg.Bleeding == true)
117-
{
115+
AlertsDivider.Visible = showAlerts;
116+
AlertsContainer.Visible = showAlerts;
117+
118+
if (showAlerts)
118119
AlertsContainer.DisposeAllChildren();
119-
AlertsContainer.AddChild(new Label
120+
121+
if (msg.Unrevivable == true)
122+
AlertsContainer.AddChild(new RichTextLabel
123+
{
124+
Text = Loc.GetString("health-analyzer-window-entity-unrevivable-text"),
125+
Margin = new Thickness(0, 4),
126+
MaxWidth = 300
127+
});
128+
129+
if (msg.Bleeding == true)
130+
AlertsContainer.AddChild(new RichTextLabel
120131
{
121132
Text = Loc.GetString("health-analyzer-window-entity-bleeding-text"),
122-
FontColorOverride = Color.Red,
133+
Margin = new Thickness(0, 4),
134+
MaxWidth = 300
123135
});
124-
}
125136

126137
// Damage Groups
127138

Content.Server/Medical/CryoPodSystem.cs

+1
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ private void OnActivateUI(Entity<CryoPodComponent> entity, ref AfterActivatableU
201201
? bloodSolution.FillFraction
202202
: 0,
203203
null,
204+
null,
204205
null
205206
));
206207
}

Content.Server/Medical/HealthAnalyzerSystem.cs

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using Content.Server.Medical.Components;
33
using Content.Server.PowerCell;
44
using Content.Server.Temperature.Components;
5+
using Content.Server.Traits.Assorted;
56
using Content.Shared.Chemistry.EntitySystems;
67
using Content.Shared.Damage;
78
using Content.Shared.DoAfter;
@@ -196,6 +197,7 @@ public void UpdateScannedUser(EntityUid healthAnalyzer, EntityUid target, bool s
196197

197198
var bloodAmount = float.NaN;
198199
var bleeding = false;
200+
var unrevivable = false;
199201

200202
if (TryComp<BloodstreamComponent>(target, out var bloodstream) &&
201203
_solutionContainerSystem.ResolveSolution(target, bloodstream.BloodSolutionName,
@@ -205,12 +207,16 @@ public void UpdateScannedUser(EntityUid healthAnalyzer, EntityUid target, bool s
205207
bleeding = bloodstream.BleedAmount > 0;
206208
}
207209

210+
if (HasComp<UnrevivableComponent>(target))
211+
unrevivable = true;
212+
208213
_uiSystem.ServerSendUiMessage(healthAnalyzer, HealthAnalyzerUiKey.Key, new HealthAnalyzerScannedUserMessage(
209214
GetNetEntity(target),
210215
bodyTemperature,
211216
bloodAmount,
212217
scanMode,
213-
bleeding
218+
bleeding,
219+
unrevivable
214220
));
215221
}
216222
}

Content.Shared/MedicalScanner/HealthAnalyzerScannedUserMessage.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,16 @@ public sealed class HealthAnalyzerScannedUserMessage : BoundUserInterfaceMessage
1313
public float BloodLevel;
1414
public bool? ScanMode;
1515
public bool? Bleeding;
16+
public bool? Unrevivable;
1617

17-
public HealthAnalyzerScannedUserMessage(NetEntity? targetEntity, float temperature, float bloodLevel, bool? scanMode, bool? bleeding)
18+
public HealthAnalyzerScannedUserMessage(NetEntity? targetEntity, float temperature, float bloodLevel, bool? scanMode, bool? bleeding, bool? unrevivable)
1819
{
1920
TargetEntity = targetEntity;
2021
Temperature = temperature;
2122
BloodLevel = bloodLevel;
2223
ScanMode = scanMode;
2324
Bleeding = bleeding;
25+
Unrevivable = unrevivable;
2426
}
2527
}
2628

Resources/Locale/en-US/medical/components/health-analyzer-component.ftl

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ health-analyzer-window-entity-damage-total-text = Total Damage:
1515
health-analyzer-window-damage-group-text = {$damageGroup}: {$amount}
1616
health-analyzer-window-damage-type-text = {$damageType}: {$amount}
1717
18-
health-analyzer-window-entity-bleeding-text = Patient is bleeding!
18+
health-analyzer-window-entity-unrevivable-text = [color=red]Unique body composition detected! Patient can not be resuscitated by normal means![/color]
19+
health-analyzer-window-entity-bleeding-text = [color=red]Patient is bleeding![/color]
1920
2021
health-analyzer-window-scan-mode-text = Scan Mode:
2122
health-analyzer-window-scan-mode-active = Active

0 commit comments

Comments
 (0)