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

22 lines
673 B
C#

using Content.Server.AI.WorldState;
using Content.Server.AI.WorldState.States;
using Content.Server.Nutrition.Components;
namespace Content.Server.AI.Utility.Considerations.Nutrition.Drink
{
public sealed class ThirstCon : Consideration
{
protected override float GetScore(Blackboard context)
{
var owner = context.GetState<SelfState>().GetValue();
if (!IoCManager.Resolve<IEntityManager>().TryGetComponent(owner, out ThirstComponent? thirst))
{
return 0.0f;
}
return 1 - (thirst.CurrentThirst / thirst.ThirstThresholds[ThirstThreshold.OverHydrated]);
}
}
}