Files
tbd-station-14/Content.Server/AI/Utility/Considerations/Nutrition/Food/HungerCon.cs
2021-06-09 22:19:39 +02:00

24 lines
690 B
C#

using Content.Server.AI.WorldState;
using Content.Server.AI.WorldState.States;
using Content.Server.Nutrition.Components;
using Content.Shared.Nutrition.Components;
namespace Content.Server.AI.Utility.Considerations.Nutrition.Food
{
public sealed class HungerCon : Consideration
{
protected override float GetScore(Blackboard context)
{
var owner = context.GetState<SelfState>().GetValue();
if (owner == null || !owner.TryGetComponent(out HungerComponent? hunger))
{
return 0.0f;
}
return 1 - (hunger.CurrentHunger / hunger.HungerThresholds[HungerThreshold.Overfed]);
}
}
}