| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- using Content.Shared.Administration.Logs;
- using Content.Shared.Atmos.Components;
- using Content.Shared.Atmos.Piping;
- using Content.Shared.Atmos.Piping.Binary.Components;
- using Content.Shared.Atmos.Piping.Components;
- using Content.Shared.Database;
- using Content.Shared.Examine;
- using Content.Shared.Popups;
- using Content.Shared.Power;
- using Content.Shared.Power.Components;
- using Content.Shared.Power.EntitySystems;
- using Content.Shared.UserInterface;
- namespace Content.Shared.Atmos.EntitySystems;
- public abstract class SharedGasPressurePumpSystem : EntitySystem
- {
- [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!;
- [Dependency] protected readonly SharedAppearanceSystem Appearance = default!;
- [Dependency] private readonly SharedPowerReceiverSystem _receiver = default!;
- [Dependency] protected readonly SharedUserInterfaceSystem UserInterfaceSystem = default!;
- // TODO: Check enabled for activatableUI
- // TODO: Add activatableUI to it.
- public override void Initialize()
- {
- base.Initialize();
- SubscribeLocalEvent<GasPressurePumpComponent, ComponentInit>(OnInit);
- SubscribeLocalEvent<GasPressurePumpComponent, PowerChangedEvent>(OnPowerChanged);
- SubscribeLocalEvent<GasPressurePumpComponent, GasPressurePumpChangeOutputPressureMessage>(OnOutputPressureChangeMessage);
- SubscribeLocalEvent<GasPressurePumpComponent, GasPressurePumpToggleStatusMessage>(OnToggleStatusMessage);
- SubscribeLocalEvent<GasPressurePumpComponent, AtmosDeviceDisabledEvent>(OnPumpLeaveAtmosphere);
- SubscribeLocalEvent<GasPressurePumpComponent, ExaminedEvent>(OnExamined);
- }
- private void OnExamined(EntityUid uid, GasPressurePumpComponent pump, ExaminedEvent args)
- {
- if (!Transform(uid).Anchored)
- return;
- if (Loc.TryGetString("gas-pressure-pump-system-examined", out var str,
- ("statusColor", "lightblue"), // TODO: change with pressure?
- ("pressure", pump.TargetPressure)
- ))
- {
- args.PushMarkup(str);
- }
- }
- private void OnInit(EntityUid uid, GasPressurePumpComponent pump, ComponentInit args)
- {
- UpdateAppearance(uid, pump);
- }
- private void OnPowerChanged(EntityUid uid, GasPressurePumpComponent component, ref PowerChangedEvent args)
- {
- UpdateAppearance(uid, component);
- }
- private void UpdateAppearance(EntityUid uid, GasPressurePumpComponent? pump = null, AppearanceComponent? appearance = null)
- {
- if (!Resolve(uid, ref pump, ref appearance, false))
- return;
- var pumpOn = pump.Enabled && _receiver.IsPowered(uid);
- Appearance.SetData(uid, PumpVisuals.Enabled, pumpOn, appearance);
- }
- private void OnToggleStatusMessage(EntityUid uid, GasPressurePumpComponent pump, GasPressurePumpToggleStatusMessage args)
- {
- pump.Enabled = args.Enabled;
- _adminLogger.Add(LogType.AtmosPowerChanged, LogImpact.Medium,
- $"{ToPrettyString(args.Actor):player} set the power on {ToPrettyString(uid):device} to {args.Enabled}");
- Dirty(uid, pump);
- UpdateAppearance(uid, pump);
- }
- private void OnOutputPressureChangeMessage(EntityUid uid, GasPressurePumpComponent pump, GasPressurePumpChangeOutputPressureMessage args)
- {
- pump.TargetPressure = Math.Clamp(args.Pressure, 0f, Atmospherics.MaxOutputPressure);
- _adminLogger.Add(LogType.AtmosPressureChanged, LogImpact.Medium,
- $"{ToPrettyString(args.Actor):player} set the pressure on {ToPrettyString(uid):device} to {args.Pressure}kPa");
- Dirty(uid, pump);
- }
- private void OnPumpLeaveAtmosphere(EntityUid uid, GasPressurePumpComponent pump, ref AtmosDeviceDisabledEvent args)
- {
- pump.Enabled = false;
- Dirty(uid, pump);
- UpdateAppearance(uid, pump);
- UserInterfaceSystem.CloseUi(uid, GasPressurePumpUiKey.Key);
- }
- }
|