Skip to content

Commit

Permalink
Add TransformsIntoTransforms to enable queued MCV redeploy.
Browse files Browse the repository at this point in the history
  • Loading branch information
pchote committed Feb 20, 2020
1 parent c237382 commit 912dc7a
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 0 deletions.
70 changes: 70 additions & 0 deletions OpenRA.Mods.Common/Traits/Buildings/TransformsIntoTransforms.cs
@@ -0,0 +1,70 @@
#region Copyright & License Information
/*
* Copyright 2007-2020 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 OpenRA.Mods.Common.Activities;
using OpenRA.Primitives;
using OpenRA.Traits;

namespace OpenRA.Mods.Common.Traits
{
[Desc("Add to a building to allow queued transform orders while undeploying.")]
public class TransformsIntoTransformsInfo : ConditionalTraitInfo, Requires<TransformsInfo>, Requires<IHealthInfo>
{
[VoiceReference]
public readonly string Voice = "Action";

public override object Create(ActorInitializer init) { return new TransformsIntoTransforms(init.Self, this); }
}

public class TransformsIntoTransforms : ConditionalTrait<TransformsIntoTransformsInfo>, IResolveOrder, IOrderVoice, IIssueDeployOrder
{
public TransformsIntoTransforms(Actor self, TransformsIntoTransformsInfo info)
: base(info) { }

void IResolveOrder.ResolveOrder(Actor self, Order order)
{
if (IsTraitDisabled || order.OrderString != "AfterDeployTransform")
return;

// The DeployTransform order does not have a position associated with it,
// so we can only queue a new transformation if something else has
// already triggered the undeploy.
var currentTransform = self.CurrentActivity as Transform;
if (!order.Queued || currentTransform == null)
return;

if (!order.Queued && currentTransform.NextActivity != null)
currentTransform.NextActivity.Cancel(self);

currentTransform.Queue(new IssueOrderAfterTransform("DeployTransform", order.Target, Color.Green));

self.ShowTargetLines();
}

string IOrderVoice.VoicePhraseForOrder(Actor self, Order order)
{
return order.OrderString == "DeployTransform" && !IsTraitDisabled ? Info.Voice : null;
}

Order IIssueDeployOrder.IssueDeployOrder(Actor self, bool queued)
{
return new Order("AfterDeployTransform", self, queued);
}

bool IIssueDeployOrder.CanIssueDeployOrder(Actor self, bool queued)
{
// The DeployTransform order does not have a position associated with it,
// so we can only queue a new transformation if something else has
// already triggered the undeploy.
return queued && self.CurrentActivity is Transform;
}
}
}
3 changes: 3 additions & 0 deletions mods/cnc/rules/structures.yaml
Expand Up @@ -37,6 +37,9 @@ FACT:
RequiresCondition: factundeploy
RepairActors: fix
RequiresForceMove: true
TransformsIntoTransforms:
RequiresCondition: factundeploy && build-incomplete
RequiresForceMove: true
GrantConditionOnPrerequisite@GLOBALFACTUNDEPLOY:
Condition: factundeploy
Prerequisites: global-factundeploy
Expand Down
3 changes: 3 additions & 0 deletions mods/ra/rules/structures.yaml
Expand Up @@ -1172,6 +1172,9 @@ FACT:
RequiresCondition: factundeploy
RepairActors: fix
RequiresForceMove: true
TransformsIntoTransforms:
RequiresCondition: factundeploy && build-incomplete
RequiresForceMove: true
Sellable:
RequiresCondition: !build-incomplete && !chrono-vortex && !being-captured && !being-demolished
GrantConditionOnPrerequisite@GLOBALFACTUNDEPLOY:
Expand Down
3 changes: 3 additions & 0 deletions mods/ts/rules/shared-structures.yaml
Expand Up @@ -53,6 +53,9 @@ GACNST:
CargoType: Vehicle
Voice: Move
RequiresForceMove: true
TransformsIntoTransforms:
RequiresCondition: factundeploy && build-incomplete
RequiresForceMove: true
GrantConditionOnPrerequisite@GLOBALFACTUNDEPLOY:
Condition: factundeploy
Prerequisites: global-factundeploy
Expand Down

0 comments on commit 912dc7a

Please sign in to comment.