* AI pickup changes Eating and drinking isn't spammed anymore. AI can do InRangeUnobstructed checks for item pickups. AI can open drink cans. AI littering to be coded. * #nullable enable * github's nullable fails are actively shortening my lifespan * Use a const instead So it's easier to find given the performance implications. Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com>
41 lines
1.5 KiB
C#
41 lines
1.5 KiB
C#
using Robust.Shared.Interfaces.GameObjects;
|
|
using Robust.Shared.Map;
|
|
|
|
namespace Content.Server.GameObjects.EntitySystems.AI.Steering
|
|
{
|
|
public sealed class EntityTargetSteeringRequest : IAiSteeringRequest
|
|
{
|
|
public SteeringStatus Status { get; set; } = SteeringStatus.Pending;
|
|
public MapCoordinates TargetMap => _target.Transform.MapPosition;
|
|
public GridCoordinates TargetGrid => _target.Transform.GridPosition;
|
|
public IEntity Target => _target;
|
|
private IEntity _target;
|
|
|
|
/// <inheritdoc />
|
|
public float ArrivalDistance { get; }
|
|
|
|
/// <inheritdoc />
|
|
public float PathfindingProximity { get; }
|
|
|
|
/// <summary>
|
|
/// How far the target can move before we re-path
|
|
/// </summary>
|
|
public float TargetMaxMove { get; } = 1.5f;
|
|
|
|
/// <inheritdoc />
|
|
public bool RequiresInRangeUnobstructed { get; }
|
|
|
|
/// <summary>
|
|
/// To avoid spamming InRangeUnobstructed we'll apply a cd to it.
|
|
/// </summary>
|
|
public float TimeUntilInteractionCheck { get; set; }
|
|
|
|
public EntityTargetSteeringRequest(IEntity target, float arrivalDistance, float pathfindingProximity = 0.5f, bool requiresInRangeUnobstructed = false)
|
|
{
|
|
_target = target;
|
|
ArrivalDistance = arrivalDistance;
|
|
PathfindingProximity = pathfindingProximity;
|
|
RequiresInRangeUnobstructed = requiresInRangeUnobstructed;
|
|
}
|
|
}
|
|
} |