Rewrite Mobile.MoveIntoTarget to support moving targets.
This commit is contained in:
committed by
Oliver Brakmann
parent
1f7b558b29
commit
d2274f4285
@@ -205,7 +205,7 @@ namespace OpenRA.Mods.Common.Activities
|
|||||||
isEnteringOrInside = true;
|
isEnteringOrInside = true;
|
||||||
savedPos = self.CenterPosition; // Save position of self, before entering, for returning on exit
|
savedPos = self.CenterPosition; // Save position of self, before entering, for returning on exit
|
||||||
|
|
||||||
inner = move.MoveIntoTarget(self, target); // Enter
|
inner = move.VisualMove(self, self.CenterPosition, target.Positions.PositionClosestTo(self.CenterPosition));
|
||||||
|
|
||||||
if (inner != null)
|
if (inner != null)
|
||||||
{
|
{
|
||||||
@@ -228,7 +228,7 @@ namespace OpenRA.Mods.Common.Activities
|
|||||||
Unreserve(self, false);
|
Unreserve(self, false);
|
||||||
if (Reserve(self) == ReserveStatus.Ready)
|
if (Reserve(self) == ReserveStatus.Ready)
|
||||||
{
|
{
|
||||||
inner = move.MoveIntoTarget(self, target); // Enter
|
inner = move.VisualMove(self, self.CenterPosition, target.Positions.PositionClosestTo(self.CenterPosition));
|
||||||
if (inner != null)
|
if (inner != null)
|
||||||
return EnterState.ApproachingOrEntering;
|
return EnterState.ApproachingOrEntering;
|
||||||
|
|
||||||
|
|||||||
97
OpenRA.Mods.Common/Activities/Move/VisualMoveIntoTarget.cs
Normal file
97
OpenRA.Mods.Common/Activities/Move/VisualMoveIntoTarget.cs
Normal file
@@ -0,0 +1,97 @@
|
|||||||
|
#region Copyright & License Information
|
||||||
|
/*
|
||||||
|
* Copyright 2007-2019 The OpenRA Developers (see AUTHORS)
|
||||||
|
* This file is part of OpenRA, which is free software. It is made
|
||||||
|
* available to you under the terms of the GNU General Public License
|
||||||
|
* as published by the Free Software Foundation, either version 3 of
|
||||||
|
* the License, or (at your option) any later version. For more
|
||||||
|
* information, see COPYING.
|
||||||
|
*/
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using OpenRA.Activities;
|
||||||
|
using OpenRA.Mods.Common.Traits;
|
||||||
|
using OpenRA.Traits;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common.Activities
|
||||||
|
{
|
||||||
|
public class VisualMoveIntoTarget : Activity
|
||||||
|
{
|
||||||
|
readonly Mobile mobile;
|
||||||
|
readonly Target target;
|
||||||
|
readonly WDist targetMovementThreshold;
|
||||||
|
WPos targetStartPos;
|
||||||
|
|
||||||
|
public VisualMoveIntoTarget(Actor self, Target target, WDist targetMovementThreshold)
|
||||||
|
{
|
||||||
|
mobile = self.Trait<Mobile>();
|
||||||
|
this.target = target;
|
||||||
|
this.targetMovementThreshold = targetMovementThreshold;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void OnFirstRun(Actor self)
|
||||||
|
{
|
||||||
|
targetStartPos = target.Positions.PositionClosestTo(self.CenterPosition);
|
||||||
|
mobile.IsMoving = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override Activity Tick(Actor self)
|
||||||
|
{
|
||||||
|
if (ChildActivity != null)
|
||||||
|
{
|
||||||
|
ChildActivity = ActivityUtils.RunActivity(self, ChildActivity);
|
||||||
|
if (ChildActivity != null)
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (IsCanceled || target.Type == TargetType.Invalid)
|
||||||
|
return NextActivity;
|
||||||
|
|
||||||
|
if (mobile.IsTraitDisabled)
|
||||||
|
return this;
|
||||||
|
|
||||||
|
var currentPos = self.CenterPosition;
|
||||||
|
var targetPos = target.Positions.PositionClosestTo(currentPos);
|
||||||
|
|
||||||
|
// Give up if the target has moved too far
|
||||||
|
if (targetMovementThreshold > WDist.Zero && (targetPos - targetStartPos).LengthSquared > targetMovementThreshold.LengthSquared)
|
||||||
|
return NextActivity;
|
||||||
|
|
||||||
|
// Turn if required
|
||||||
|
var delta = targetPos - currentPos;
|
||||||
|
var facing = delta.HorizontalLengthSquared != 0 ? delta.Yaw.Facing : mobile.Facing;
|
||||||
|
if (facing != mobile.Facing)
|
||||||
|
{
|
||||||
|
var turn = ActivityUtils.RunActivity(self, new Turn(self, facing));
|
||||||
|
if (turn != null)
|
||||||
|
QueueChild(turn);
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Can complete the move in this step
|
||||||
|
var speed = mobile.MovementSpeedForCell(self, self.Location);
|
||||||
|
if (delta.LengthSquared <= speed * speed)
|
||||||
|
{
|
||||||
|
mobile.SetVisualPosition(self, targetPos);
|
||||||
|
return NextActivity;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Move towards the target
|
||||||
|
mobile.SetVisualPosition(self, currentPos + delta * speed / delta.Length);
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void OnLastRun(Actor self)
|
||||||
|
{
|
||||||
|
mobile.IsMoving = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override IEnumerable<Target> GetTargets(Actor self)
|
||||||
|
{
|
||||||
|
yield return target;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -103,6 +103,7 @@
|
|||||||
<Compile Include="Activities\Move\Move.cs" />
|
<Compile Include="Activities\Move\Move.cs" />
|
||||||
<Compile Include="Activities\Move\MoveAdjacentTo.cs" />
|
<Compile Include="Activities\Move\MoveAdjacentTo.cs" />
|
||||||
<Compile Include="Activities\Move\MoveWithinRange.cs" />
|
<Compile Include="Activities\Move\MoveWithinRange.cs" />
|
||||||
|
<Compile Include="Activities\Move\VisualMoveIntoTarget.cs" />
|
||||||
<Compile Include="Activities\Parachute.cs" />
|
<Compile Include="Activities\Parachute.cs" />
|
||||||
<Compile Include="Activities\Rearm.cs" />
|
<Compile Include="Activities\Rearm.cs" />
|
||||||
<Compile Include="Activities\RemoveSelf.cs" />
|
<Compile Include="Activities\RemoveSelf.cs" />
|
||||||
|
|||||||
@@ -517,7 +517,9 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
if (target.Type == TargetType.Invalid)
|
if (target.Type == TargetType.Invalid)
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
return VisualMove(self, self.CenterPosition, target.Positions.PositionClosestTo(self.CenterPosition));
|
// Activity cancels if the target moves by more than half a cell
|
||||||
|
// to avoid problems with the cell grid
|
||||||
|
return new VisualMoveIntoTarget(self, target, new WDist(512));
|
||||||
}
|
}
|
||||||
|
|
||||||
public Activity VisualMove(Actor self, WPos fromPos, WPos toPos)
|
public Activity VisualMove(Actor self, WPos fromPos, WPos toPos)
|
||||||
|
|||||||
Reference in New Issue
Block a user