Fix #17229: Refactor ReturnToBase.cs

This commit is contained in:
Abdurrahmaan Iqbal
2019-10-13 20:44:46 +01:00
committed by reaperrr
parent aa953ba5a1
commit 763e6d8109
3 changed files with 67 additions and 3 deletions

View File

@@ -113,10 +113,8 @@ namespace OpenRA.Mods.Common.Activities
{
var exit = dest.FirstExitOrDefault(null);
var offset = exit != null ? exit.Info.SpawnOffset : WVec.Zero;
if (aircraft.Info.TurnToDock)
if (aircraft.Info.TurnToDock || !aircraft.Info.VTOL)
facing = aircraft.Info.InitialFacing;
if (!aircraft.Info.VTOL)
facing = 192;
aircraft.MakeReservation(dest);
QueueChild(new Land(self, Target.FromActor(dest), offset, facing, Color.Green));

View File

@@ -0,0 +1,65 @@
#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;
using System.Collections.Generic;
using System.Linq;
namespace OpenRA.Mods.Common.UpdateRules.Rules
{
public class RemoveInitialFacingHardcoding : UpdateRule
{
public override string Name { get { return "Removed InitialFacing hardcoding for non-VTOLs"; } }
public override string Description
{
get
{
return "Removed hardcoding of InitialFacing to 192 for aircraft with VTOL: false.";
}
}
readonly List<Tuple<string, string>> nonVTOLs = new List<Tuple<string, string>>();
public override IEnumerable<string> AfterUpdate(ModData modData)
{
var message = "InitialFacing is no longer hardcoded to 192 for aircraft with VTOL: false.\n"
+ "You may have to set it manually now in the following places:\n"
+ UpdateUtils.FormatMessageList(nonVTOLs.Select(n => n.Item1 + " (" + n.Item2 + ")"));
if (nonVTOLs.Any())
yield return message;
nonVTOLs.Clear();
}
public override IEnumerable<string> UpdateActorNode(ModData modData, MiniYamlNode actorNode)
{
var aircraft = actorNode.LastChildMatching("Aircraft");
if (aircraft != null)
{
var initialFacing = aircraft.LastChildMatching("InitialFacing");
var isVTOL = false;
var vtolNode = aircraft.LastChildMatching("VTOL");
if (vtolNode != null)
isVTOL = vtolNode.NodeValue<bool>();
// If InitialFacing is defined or it's a VTOL, no changes are needed.
if (initialFacing != null || isVTOL)
yield break;
nonVTOLs.Add(Tuple.Create(actorNode.Key, actorNode.Location.Filename));
}
yield break;
}
}
}

View File

@@ -142,6 +142,7 @@ namespace OpenRA.Mods.Common.UpdateRules
{
// Bleed only changes here
new RemoveYesNo(),
new RemoveInitialFacingHardcoding(),
})
};