* Pipe sprites * pipe copyright * SharedPipeComponent * Pipe Visualizer draft * missing longitudinal pipe sprites * expanded rsi states * pipe prototype fixes * Fixed pipe visualizer * PressurePump and VolumePump * VolumePump fix * PressurePump fix * Shared pump # Conflicts: # Content.Server/GameObjects/Components/Atmos/Piping/Pumps/BasePumpComponent.cs # Content.Server/GameObjects/Components/NodeContainer/Nodes/PipeNode.cs * PumpVisualizer Draft * ConduitLayer enum * PipeVisualizer update * halfpipe sprites * pumpvisualizer simplification * yaml unneeded proto removal * pump visualizer draft 2 * Pump overlays * pump rsi name * merge fix * PumpVisuals ConduitLayer * merge fix Co-authored-by: py01 <pyronetics01@gmail.com>
81 lines
3.1 KiB
C#
81 lines
3.1 KiB
C#
using Content.Server.Atmos;
|
|
using Content.Server.GameObjects.Components.NodeContainer;
|
|
using Content.Server.GameObjects.Components.NodeContainer.Nodes;
|
|
using Content.Shared.GameObjects.Components.Atmos;
|
|
using Content.Shared.GameObjects.Atmos;
|
|
using Robust.Server.GameObjects;
|
|
using Robust.Shared.Log;
|
|
using Robust.Shared.Serialization;
|
|
using Robust.Shared.ViewVariables;
|
|
using System.Linq;
|
|
|
|
namespace Content.Server.GameObjects.Components.Atmos.Piping
|
|
{
|
|
/// <summary>
|
|
/// Transfer gas from one <see cref="PipeNode"/> to another.
|
|
/// </summary>
|
|
public abstract class BasePumpComponent : PipeNetDeviceComponent
|
|
{
|
|
/// <summary>
|
|
/// Needs to be same <see cref="PipeDirection"/> as that of a <see cref="Pipe"/> on this entity.
|
|
/// </summary>
|
|
[ViewVariables]
|
|
private PipeDirection _inletDirection;
|
|
|
|
/// <summary>
|
|
/// Needs to be same <see cref="PipeDirection"/> as that of a <see cref="Pipe"/> on this entity.
|
|
/// </summary>
|
|
[ViewVariables]
|
|
private PipeDirection _outletDirection;
|
|
|
|
[ViewVariables]
|
|
private PipeNode _inletPipe;
|
|
|
|
[ViewVariables]
|
|
private PipeNode _outletPipe;
|
|
|
|
private AppearanceComponent _appearance;
|
|
|
|
public override void ExposeData(ObjectSerializer serializer)
|
|
{
|
|
base.ExposeData(serializer);
|
|
serializer.DataField(ref _inletDirection, "inletDirection", PipeDirection.None);
|
|
serializer.DataField(ref _outletDirection, "outletDirection", PipeDirection.None);
|
|
}
|
|
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
if (!Owner.TryGetComponent<NodeContainerComponent>(out var container))
|
|
{
|
|
JoinedGridAtmos?.RemovePipeNetDevice(this);
|
|
Logger.Error($"{typeof(BasePumpComponent)} on entity {Owner.Uid} did not have a {nameof(NodeContainerComponent)}.");
|
|
return;
|
|
}
|
|
var pipeNodes = container.Nodes.OfType<PipeNode>();
|
|
_inletPipe = pipeNodes.Where(pipe => pipe.PipeDirection == _inletDirection).FirstOrDefault();
|
|
_outletPipe = pipeNodes.Where(pipe => pipe.PipeDirection == _outletDirection).FirstOrDefault();
|
|
if (_inletPipe == null | _outletPipe == null)
|
|
{
|
|
JoinedGridAtmos?.RemovePipeNetDevice(this);
|
|
Logger.Error($"{typeof(BasePumpComponent)} on entity {Owner.Uid} could not find compatible {nameof(PipeNode)}s on its {nameof(NodeContainerComponent)}.");
|
|
return;
|
|
}
|
|
Owner.TryGetComponent(out _appearance);
|
|
UpdateAppearance();
|
|
}
|
|
|
|
public override void Update()
|
|
{
|
|
PumpGas(_inletPipe.Air, _outletPipe.Air);
|
|
}
|
|
|
|
protected abstract void PumpGas(GasMixture inletGas, GasMixture outletGas);
|
|
|
|
private void UpdateAppearance()
|
|
{
|
|
_appearance?.SetData(PumpVisuals.VisualState, new PumpVisualState(_inletDirection, _outletDirection, _inletPipe.ConduitLayer, _outletPipe.ConduitLayer));
|
|
}
|
|
}
|
|
}
|