292 lines
12 KiB
C#
292 lines
12 KiB
C#
using FarseerPhysics;
|
|
using Microsoft.Xna.Framework;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Barotrauma
|
|
{
|
|
class AIObjectiveIdle : AIObjective
|
|
{
|
|
public override string DebugTag => "idle";
|
|
|
|
const float WallAvoidDistance = 150.0f;
|
|
private readonly float newTargetIntervalMin = 5;
|
|
private readonly float newTargetIntervalMax = 15;
|
|
private readonly float standStillMin = 1;
|
|
private readonly float standStillMax = 10;
|
|
private readonly float walkDurationMin = 3;
|
|
private readonly float walkDurationMax = 10;
|
|
|
|
private Hull currentTarget;
|
|
private float newTargetTimer;
|
|
|
|
private bool searchingNewHull;
|
|
|
|
private float standStillTimer;
|
|
private float walkDuration;
|
|
|
|
private readonly List<Hull> targetHulls = new List<Hull>(20);
|
|
private readonly List<float> hullWeights = new List<float>(20);
|
|
|
|
public AIObjectiveIdle(Character character) : base(character, "")
|
|
{
|
|
standStillTimer = Rand.Range(-10.0f, 10.0f);
|
|
walkDuration = Rand.Range(0.0f, 10.0f);
|
|
}
|
|
|
|
public override bool IsCompleted() => false;
|
|
public override bool CanBeCompleted => true;
|
|
|
|
public override float GetPriority(AIObjectiveManager objectiveManager)
|
|
{
|
|
return 1.0f;
|
|
}
|
|
|
|
protected override void Act(float deltaTime)
|
|
{
|
|
if (PathSteering == null) return;
|
|
|
|
//don't keep dragging others when idling
|
|
if (character.SelectedCharacter != null)
|
|
{
|
|
character.DeselectCharacter();
|
|
}
|
|
if (!character.IsClimbing)
|
|
{
|
|
character.SelectedConstruction = null;
|
|
}
|
|
|
|
bool currentHullForbidden = IsForbidden(character.CurrentHull);
|
|
if (!currentHullForbidden && !character.AnimController.InWater && !character.IsClimbing && HumanAIController.ObjectiveManager.WaitTimer > 0)
|
|
{
|
|
SteeringManager.Reset();
|
|
return;
|
|
}
|
|
|
|
bool currentTargetIsInvalid = currentTarget == null || IsForbidden(currentTarget) ||
|
|
(PathSteering.CurrentPath != null && PathSteering.CurrentPath.Nodes.Any(n => HumanAIController.UnsafeHulls.Contains(n.CurrentHull)));
|
|
|
|
if (currentTargetIsInvalid || (currentTarget == null && currentHullForbidden))
|
|
{
|
|
newTargetTimer = 0;
|
|
standStillTimer = 0;
|
|
}
|
|
else if (character.IsClimbing)
|
|
{
|
|
if (currentTarget == null)
|
|
{
|
|
newTargetTimer = 0;
|
|
}
|
|
else
|
|
{
|
|
// Don't allow new targets when climbing.
|
|
newTargetTimer = Math.Max(newTargetIntervalMin, newTargetTimer);
|
|
}
|
|
}
|
|
else if (character.AnimController.InWater)
|
|
{
|
|
if (currentTarget == null)
|
|
{
|
|
newTargetTimer = 0;
|
|
}
|
|
}
|
|
if (newTargetTimer <= 0.0f)
|
|
{
|
|
if (!searchingNewHull)
|
|
{
|
|
//find all available hulls first
|
|
FindTargetHulls();
|
|
searchingNewHull = true;
|
|
return;
|
|
}
|
|
else if (targetHulls.Count > 0)
|
|
{
|
|
//choose a random available hull
|
|
var randomHull = ToolBox.SelectWeightedRandom(targetHulls, hullWeights, Rand.RandSync.Unsynced);
|
|
|
|
bool isCurrentHullOK = !HumanAIController.UnsafeHulls.Contains(character.CurrentHull) && !IsForbidden(character.CurrentHull);
|
|
if (isCurrentHullOK)
|
|
{
|
|
// Check that there is no unsafe or forbidden hulls on the way to the target
|
|
// Only do this when the current hull is ok, because otherwise would block all paths from the current hull to the target hull.
|
|
var path = PathSteering.PathFinder.FindPath(character.SimPosition, randomHull.SimPosition);
|
|
if (path.Unreachable ||
|
|
path.Nodes.Any(n => HumanAIController.UnsafeHulls.Contains(n.CurrentHull) || IsForbidden(n.CurrentHull)))
|
|
{
|
|
//can't go to this room, remove it from the list and try another room next frame
|
|
int index = targetHulls.IndexOf(randomHull);
|
|
targetHulls.RemoveAt(index);
|
|
hullWeights.RemoveAt(index);
|
|
PathSteering.Reset();
|
|
return;
|
|
}
|
|
}
|
|
currentTarget = randomHull;
|
|
searchingNewHull = false;
|
|
}
|
|
|
|
if (currentTarget != null)
|
|
{
|
|
character.AIController.SelectTarget(currentTarget.AiTarget);
|
|
string errorMsg = null;
|
|
#if DEBUG
|
|
bool isRoomNameFound = currentTarget.DisplayName != null;
|
|
errorMsg = "(Character " + character.Name + " idling, target " + (isRoomNameFound ? currentTarget.DisplayName : currentTarget.ToString()) + ")";
|
|
#endif
|
|
var path = PathSteering.PathFinder.FindPath(character.SimPosition, currentTarget.SimPosition, errorMsg);
|
|
PathSteering.SetPath(path);
|
|
}
|
|
|
|
newTargetTimer = currentTarget != null && character.AnimController.InWater ? newTargetIntervalMin : Rand.Range(newTargetIntervalMin, newTargetIntervalMax);
|
|
}
|
|
|
|
newTargetTimer -= deltaTime;
|
|
|
|
//wander randomly
|
|
// - if reached the end of the path
|
|
// - if the target is unreachable
|
|
// - if the path requires going outside
|
|
if (!character.IsClimbing)
|
|
{
|
|
if (SteeringManager != PathSteering || (PathSteering.CurrentPath != null &&
|
|
(PathSteering.CurrentPath.NextNode == null || PathSteering.CurrentPath.Unreachable || PathSteering.CurrentPath.HasOutdoorsNodes)))
|
|
{
|
|
if (!character.AnimController.InWater)
|
|
{
|
|
standStillTimer -= deltaTime;
|
|
if (standStillTimer > 0.0f)
|
|
{
|
|
walkDuration = Rand.Range(walkDurationMin, walkDurationMax);
|
|
PathSteering.Reset();
|
|
return;
|
|
}
|
|
if (standStillTimer < -walkDuration)
|
|
{
|
|
standStillTimer = Rand.Range(standStillMin, standStillMax);
|
|
}
|
|
}
|
|
Wander(deltaTime);
|
|
return;
|
|
}
|
|
}
|
|
|
|
if (currentTarget != null)
|
|
{
|
|
character.AIController.SteeringManager.SteeringSeek(currentTarget.SimPosition);
|
|
}
|
|
}
|
|
|
|
public void Wander(float deltaTime)
|
|
{
|
|
if (character.IsClimbing) { return; }
|
|
//steer away from edges of the hull
|
|
var currentHull = character.CurrentHull;
|
|
if (currentHull != null)
|
|
{
|
|
float roomWidth = currentHull.Rect.Width;
|
|
if (roomWidth < WallAvoidDistance * 4)
|
|
{
|
|
PathSteering.Reset();
|
|
}
|
|
else
|
|
{
|
|
float leftDist = character.Position.X - currentHull.Rect.X;
|
|
float rightDist = currentHull.Rect.Right - character.Position.X;
|
|
if (leftDist < WallAvoidDistance && rightDist < WallAvoidDistance)
|
|
{
|
|
if (Math.Abs(rightDist - leftDist) > WallAvoidDistance / 2)
|
|
{
|
|
PathSteering.SteeringManual(deltaTime, Vector2.UnitX * Math.Sign(rightDist - leftDist));
|
|
}
|
|
else
|
|
{
|
|
PathSteering.Reset();
|
|
}
|
|
}
|
|
else if (leftDist < WallAvoidDistance)
|
|
{
|
|
float speed = (WallAvoidDistance - leftDist) / WallAvoidDistance;
|
|
PathSteering.SteeringManual(deltaTime, Vector2.UnitX * MathHelper.Clamp(speed, 0.25f, 1));
|
|
PathSteering.WanderAngle = 0.0f;
|
|
}
|
|
else if (rightDist < WallAvoidDistance)
|
|
{
|
|
float speed = (WallAvoidDistance - rightDist) / WallAvoidDistance;
|
|
PathSteering.SteeringManual(deltaTime, -Vector2.UnitX * MathHelper.Clamp(speed, 0.25f, 1));
|
|
PathSteering.WanderAngle = MathHelper.Pi;
|
|
}
|
|
else
|
|
{
|
|
SteeringManager.SteeringWander();
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
SteeringManager.SteeringWander();
|
|
}
|
|
if (!character.AnimController.InWater)
|
|
{
|
|
//reset vertical steering to prevent dropping down from platforms etc
|
|
character.AIController.SteeringManager.ResetY();
|
|
}
|
|
}
|
|
|
|
private void FindTargetHulls()
|
|
{
|
|
bool isCurrentHullOK = !HumanAIController.UnsafeHulls.Contains(character.CurrentHull) && !IsForbidden(character.CurrentHull);
|
|
targetHulls.Clear();
|
|
hullWeights.Clear();
|
|
foreach (var hull in Hull.hullList)
|
|
{
|
|
if (HumanAIController.UnsafeHulls.Contains(hull)) { continue; }
|
|
if (hull.Submarine == null) { continue; }
|
|
if (hull.Submarine.TeamID != character.TeamID) { continue; }
|
|
// If the character is inside, only take connected hulls into account.
|
|
if (character.Submarine != null && !character.Submarine.IsEntityFoundOnThisSub(hull, true)) { continue; }
|
|
if (IsForbidden(hull)) { continue; }
|
|
// Ignore hulls that are too low to stand inside
|
|
if (character.AnimController is HumanoidAnimController animController)
|
|
{
|
|
if (hull.CeilingHeight < ConvertUnits.ToDisplayUnits(animController.HeadPosition.Value))
|
|
{
|
|
continue;
|
|
}
|
|
}
|
|
if (!targetHulls.Contains(hull))
|
|
{
|
|
targetHulls.Add(hull);
|
|
float weight = hull.Volume;
|
|
// Prefer rooms that are closer. Avoid rooms that are not in the same level.
|
|
float dist = Math.Abs(character.WorldPosition.X - hull.WorldPosition.X) + Math.Abs(character.WorldPosition.Y - hull.WorldPosition.Y) * 5.0f;
|
|
float distanceFactor = MathHelper.Lerp(1, 0.1f, MathUtils.InverseLerp(0, 2500, dist));
|
|
weight *= distanceFactor;
|
|
hullWeights.Add(weight);
|
|
}
|
|
}
|
|
}
|
|
|
|
private bool IsForbidden(Hull hull)
|
|
{
|
|
if (hull == null) { return true; }
|
|
string hullName = hull.RoomName?.ToLowerInvariant();
|
|
bool isForbidden = hullName == "ballast" || hullName == "airlock";
|
|
foreach (Item item in Item.ItemList)
|
|
{
|
|
if (item.CurrentHull == hull && (item.HasTag("ballast") || item.HasTag("airlock")))
|
|
{
|
|
isForbidden = true;
|
|
break;
|
|
}
|
|
}
|
|
return isForbidden;
|
|
}
|
|
|
|
public override bool IsDuplicate(AIObjective otherObjective)
|
|
{
|
|
return (otherObjective is AIObjectiveIdle);
|
|
}
|
|
}
|
|
}
|