Files
tbd-station-14/Content.Server/Construction/Conditions/AllWiresCut.cs
Pieter-Jan Briers 103bc19508 Pow3r: stage 1 (#4208)
Co-authored-by: 20kdc <asdd2808@gmail.com>
2021-07-04 18:11:52 +02:00

43 lines
1.2 KiB
C#

using System.Threading.Tasks;
using Content.Server.GameObjects.Components;
using Content.Server.WireHacking;
using Content.Shared.Construction;
using JetBrains.Annotations;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
namespace Content.Server.Construction.Conditions
{
/// <summary>
/// A condition that requires all wires to be cut (or intact)
/// Returns true if the entity doesn't have a wires component.
/// </summary>
[UsedImplicitly]
[DataDefinition]
public class AllWiresCut : IGraphCondition
{
[DataField("value")] public bool Value { get; private set; } = true;
public async Task<bool> Condition(IEntity entity)
{
if (entity.Deleted)
return false;
if (!entity.TryGetComponent<WiresComponent>(out var wires))
return true;
foreach (var wire in wires.WiresList)
{
switch (Value)
{
case true when !wire.IsCut:
case false when wire.IsCut:
return false;
}
}
return true;
}
}
}