103 lines
4.1 KiB
C#
103 lines
4.1 KiB
C#
using Content.Client.Message;
|
|
using Content.Shared.Atmos;
|
|
using Content.Shared.Atmos.Monitor;
|
|
using Content.Shared.Temperature;
|
|
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface.Controls;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
namespace Content.Client.Atmos.Monitor.UI.Widgets;
|
|
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class SensorInfo : BoxContainer
|
|
{
|
|
public Action<string, AtmosMonitorThresholdType, AtmosAlarmThreshold, Gas?>? OnThresholdUpdate;
|
|
private string _address;
|
|
|
|
private ThresholdControl _pressureThreshold;
|
|
private ThresholdControl _temperatureThreshold;
|
|
private Dictionary<Gas, ThresholdControl> _gasThresholds = new();
|
|
private Dictionary<Gas, Label> _gasLabels = new();
|
|
|
|
public SensorInfo(AtmosSensorData data, string address)
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
|
|
_address = address;
|
|
|
|
SensorAddress.Title = address;
|
|
|
|
PressureLabel.SetMarkup(Loc.GetString("air-alarm-ui-window-pressure", ("pressure", $"{data.Pressure:0.##}")));
|
|
TemperatureLabel.SetMarkup(Loc.GetString("air-alarm-ui-window-temperature", ("tempC", $"{TemperatureHelpers.KelvinToCelsius(data.Temperature):0.#}"), ("temperature", $"{data.Temperature:0.##}")));
|
|
AlarmStateLabel.SetMarkup(Loc.GetString("air-alarm-ui-window-alarm-state", ("state", $"{data.AlarmState}")));
|
|
|
|
foreach (var (gas, amount) in data.Gases)
|
|
{
|
|
var label = new Label();
|
|
label.Text = Loc.GetString("air-alarm-ui-gases", ("gas", $"{gas}"),
|
|
("amount", $"{(amount / data.TotalMoles):0.##}"));
|
|
GasContainer.AddChild(label);
|
|
_gasLabels.Add(gas, label);
|
|
}
|
|
|
|
_pressureThreshold =
|
|
new ThresholdControl("Pressure", data.PressureThreshold, AtmosMonitorThresholdType.Pressure);
|
|
PressureThresholdContainer.AddChild(_pressureThreshold);
|
|
_temperatureThreshold = new ThresholdControl("Temperature", data.TemperatureThreshold,
|
|
AtmosMonitorThresholdType.Temperature);
|
|
TemperatureThresholdContainer.AddChild(_temperatureThreshold);
|
|
|
|
_pressureThreshold.ThresholdDataChanged += (type, threshold, arg3) =>
|
|
{
|
|
OnThresholdUpdate!(_address, type, threshold, arg3);
|
|
};
|
|
|
|
_temperatureThreshold.ThresholdDataChanged += (type, threshold, arg3) =>
|
|
{
|
|
OnThresholdUpdate!(_address, type, threshold, arg3);
|
|
};
|
|
|
|
foreach (var (gas, threshold) in data.GasThresholds)
|
|
{
|
|
var gasThresholdControl = new ThresholdControl(gas.ToString(), threshold, AtmosMonitorThresholdType.Gas, gas);
|
|
gasThresholdControl.ThresholdDataChanged += (type, threshold, arg3) =>
|
|
{
|
|
OnThresholdUpdate!(_address, type, threshold, arg3);
|
|
};
|
|
|
|
_gasThresholds.Add(gas, gasThresholdControl);
|
|
GasThresholds.AddChild(gasThresholdControl);
|
|
}
|
|
}
|
|
|
|
public void ChangeData(AtmosSensorData data)
|
|
{
|
|
PressureLabel.SetMarkup(Loc.GetString("air-alarm-ui-window-pressure", ("pressure", $"{data.Pressure:0.##}")));
|
|
TemperatureLabel.SetMarkup(Loc.GetString("air-alarm-ui-window-temperature", ("tempC", $"{TemperatureHelpers.KelvinToCelsius(data.Temperature):0.#}"), ("temperature", $"{data.Temperature:0.##}")));
|
|
AlarmStateLabel.SetMarkup(Loc.GetString("air-alarm-ui-window-alarm-state", ("state", $"{data.AlarmState}")));
|
|
|
|
foreach (var (gas, amount) in data.Gases)
|
|
{
|
|
if (!_gasLabels.TryGetValue(gas, out var label))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
label.Text = Loc.GetString("air-alarm-ui-gases", ("gas", $"{gas}"),
|
|
("amount", $"{(amount / data.TotalMoles):0.##}"));
|
|
}
|
|
|
|
_pressureThreshold.UpdateThresholdData(data.PressureThreshold);
|
|
_temperatureThreshold.UpdateThresholdData(data.TemperatureThreshold);
|
|
foreach (var (gas, control) in _gasThresholds)
|
|
{
|
|
if (!data.GasThresholds.TryGetValue(gas, out var threshold))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
control.UpdateThresholdData(threshold);
|
|
}
|
|
}
|
|
}
|