48 lines
1.4 KiB
C#
48 lines
1.4 KiB
C#
using System.Threading.Tasks;
|
|
using Content.Server.GameObjects.Components;
|
|
using Content.Server.GameObjects.Components.Power;
|
|
using Content.Shared.Construction;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.Interfaces.GameObjects;
|
|
using Robust.Shared.Interfaces.Serialization;
|
|
using Robust.Shared.Serialization;
|
|
|
|
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]
|
|
public class AllWiresCut : IEdgeCondition
|
|
{
|
|
void IExposeData.ExposeData(ObjectSerializer serializer)
|
|
{
|
|
serializer.DataField(this, x => x.Value, "value", true);
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|