Files
tbd-station-14/Content.Server/AI/Utility/Considerations/Nutrition/Food/HungerCon.cs
2022-05-13 17:59:03 +10:00

24 lines
711 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 (!IoCManager.Resolve<IEntityManager>().TryGetComponent(owner, out HungerComponent? hunger))
{
return 0.0f;
}
return 1 - (hunger.CurrentHunger / hunger.HungerThresholds[HungerThreshold.Overfed]);
}
}
}