Files
tbd-station-14/Content.Server/AI/WorldState/States/Hands/FreeHands.cs
2021-06-09 22:19:39 +02:00

33 lines
819 B
C#

using System.Collections.Generic;
using Content.Server.Hands.Components;
using JetBrains.Annotations;
namespace Content.Server.AI.WorldState.States.Hands
{
[UsedImplicitly]
public sealed class FreeHands : StateData<List<string>>
{
public override string Name => "FreeHands";
public override List<string> GetValue()
{
var result = new List<string>();
if (!Owner.TryGetComponent(out HandsComponent? handsComponent))
{
return result;
}
foreach (var hand in handsComponent.ActivePriorityEnumerable())
{
if (handsComponent.GetItem(hand) == null)
{
result.Add(hand);
}
}
return result;
}
}
}