#region Copyright & License Information /* * Copyright (c) The OpenRA Developers and Contributors * 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.Traits; namespace OpenRA.Mods.Common.Traits { [Desc("Add to a building to allow queued transform orders while undeploying.")] public class TransformsIntoTransformsInfo : ConditionalTraitInfo, Requires, Requires { [VoiceReference] public readonly string Voice = "Action"; public override object Create(ActorInitializer init) { return new TransformsIntoTransforms(this); } } public class TransformsIntoTransforms : ConditionalTrait, IResolveOrder, IOrderVoice, IIssueDeployOrder { public TransformsIntoTransforms(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. if (!order.Queued || !(self.CurrentActivity is Transform currentTransform)) return; currentTransform.Queue(new IssueOrderAfterTransform("DeployTransform", order.Target)); 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; } } }