Let docking angle be determined by the host building.
This commit is contained in:
@@ -111,9 +111,12 @@ namespace OpenRA.Mods.Common.Activities
|
|||||||
if (ShouldLandAtBuilding(self, dest))
|
if (ShouldLandAtBuilding(self, dest))
|
||||||
{
|
{
|
||||||
var exit = dest.FirstExitOrDefault();
|
var exit = dest.FirstExitOrDefault();
|
||||||
var offset = exit != null ? exit.Info.SpawnOffset : WVec.Zero;
|
var offset = WVec.Zero;
|
||||||
if (aircraft.Info.TurnToDock || !aircraft.Info.VTOL)
|
if (exit != null)
|
||||||
facing = aircraft.Info.InitialFacing;
|
{
|
||||||
|
offset = exit.Info.SpawnOffset;
|
||||||
|
facing = exit.Info.Facing;
|
||||||
|
}
|
||||||
|
|
||||||
aircraft.MakeReservation(dest);
|
aircraft.MakeReservation(dest);
|
||||||
QueueChild(new Land(self, Target.FromActor(dest), offset, facing, Color.Green));
|
QueueChild(new Land(self, Target.FromActor(dest), offset, facing, Color.Green));
|
||||||
|
|||||||
@@ -114,9 +114,6 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
[Desc("Does this VTOL actor need to turn before landing (on terrain)?")]
|
[Desc("Does this VTOL actor need to turn before landing (on terrain)?")]
|
||||||
public readonly bool TurnToLand = false;
|
public readonly bool TurnToLand = false;
|
||||||
|
|
||||||
[Desc("Does this VTOL actor need to turn before landing on a resupplier?")]
|
|
||||||
public readonly bool TurnToDock = true;
|
|
||||||
|
|
||||||
[Desc("Does this actor automatically take off after resupplying?")]
|
[Desc("Does this actor automatically take off after resupplying?")]
|
||||||
public readonly bool TakeOffOnResupply = false;
|
public readonly bool TakeOffOnResupply = false;
|
||||||
|
|
||||||
|
|||||||
61
OpenRA.Mods.Common/UpdateRules/Rules/RemoveTurnToDock.cs
Normal file
61
OpenRA.Mods.Common/UpdateRules/Rules/RemoveTurnToDock.cs
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
#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 System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common.UpdateRules.Rules
|
||||||
|
{
|
||||||
|
public class RemoveTurnToDock : UpdateRule
|
||||||
|
{
|
||||||
|
public override string Name { get { return "TurnToDock is removed from the Aircraft trait."; } }
|
||||||
|
public override string Description
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return "TurnToDock is removed from the Aircraft trait in favor of letting the Exit trait on the host" +
|
||||||
|
"building determine whether or not turning is required and to what facing the aircraft must turn.";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
readonly List<Tuple<string, string>> turningAircraft = new List<Tuple<string, string>>();
|
||||||
|
|
||||||
|
public override IEnumerable<string> AfterUpdate(ModData modData)
|
||||||
|
{
|
||||||
|
var message = "TurnToDock is now deprecated. The following actors had TurnToDock enabled:\n"
|
||||||
|
+ UpdateUtils.FormatMessageList(turningAircraft.Select(n => n.Item1 + " (" + n.Item2 + ")"))
|
||||||
|
+ "\n If you wish these units to keep their turning behaviour when docking with a host building" +
|
||||||
|
"you will need to define a 'Facing' parameter on the 'Exit' trait of the host building. This change" +
|
||||||
|
"does not affect the behaviour for landing on terrain which is governed by TurnToLand.";
|
||||||
|
|
||||||
|
if (turningAircraft.Any())
|
||||||
|
yield return message;
|
||||||
|
|
||||||
|
turningAircraft.Clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override IEnumerable<string> UpdateActorNode(ModData modData, MiniYamlNode actorNode)
|
||||||
|
{
|
||||||
|
var aircraft = actorNode.LastChildMatching("Aircraft");
|
||||||
|
if (aircraft != null)
|
||||||
|
{
|
||||||
|
var turnToDock = aircraft.LastChildMatching("TurnToDock");
|
||||||
|
if (turnToDock != null || turnToDock.NodeValue<bool>())
|
||||||
|
yield break;
|
||||||
|
|
||||||
|
turningAircraft.Add(Tuple.Create(actorNode.Key, actorNode.Location.Filename));
|
||||||
|
}
|
||||||
|
|
||||||
|
yield break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -73,6 +73,7 @@ namespace OpenRA.Mods.Common.UpdateRules
|
|||||||
new RenameSelfHealing(),
|
new RenameSelfHealing(),
|
||||||
new ReplaceBurns(),
|
new ReplaceBurns(),
|
||||||
new RemoveMuzzleSplitFacings(),
|
new RemoveMuzzleSplitFacings(),
|
||||||
|
new RemoveTurnToDock(),
|
||||||
})
|
})
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -329,7 +329,6 @@
|
|||||||
VTOL: true
|
VTOL: true
|
||||||
LandableTerrainTypes: Clear, Rough, Road, Beach, Tiberium, BlueTiberium
|
LandableTerrainTypes: Clear, Rough, Road, Beach, Tiberium, BlueTiberium
|
||||||
Crushes: crate, infantry
|
Crushes: crate, infantry
|
||||||
InitialFacing: 896
|
|
||||||
CanSlide: True
|
CanSlide: True
|
||||||
HiddenUnderFog:
|
HiddenUnderFog:
|
||||||
Type: GroundPosition
|
Type: GroundPosition
|
||||||
|
|||||||
@@ -545,6 +545,7 @@ HPAD:
|
|||||||
Range: 5c0
|
Range: 5c0
|
||||||
Exit@1:
|
Exit@1:
|
||||||
SpawnOffset: 0,-256,0
|
SpawnOffset: 0,-256,0
|
||||||
|
Facing: 896
|
||||||
Production:
|
Production:
|
||||||
Produces: Aircraft.GDI, Aircraft.Nod
|
Produces: Aircraft.GDI, Aircraft.Nod
|
||||||
Reservable:
|
Reservable:
|
||||||
|
|||||||
@@ -13,7 +13,6 @@ carryall.reinforce:
|
|||||||
Aircraft:
|
Aircraft:
|
||||||
CruiseAltitude: 2160
|
CruiseAltitude: 2160
|
||||||
CruisingCondition: cruising
|
CruisingCondition: cruising
|
||||||
InitialFacing: 0
|
|
||||||
Speed: 144
|
Speed: 144
|
||||||
TurnSpeed: 16
|
TurnSpeed: 16
|
||||||
LandableTerrainTypes: Sand, Rock, Transition, Spice, SpiceSand, Dune, Concrete
|
LandableTerrainTypes: Sand, Rock, Transition, Spice, SpiceSand, Dune, Concrete
|
||||||
|
|||||||
@@ -84,7 +84,6 @@ MIG:
|
|||||||
OpportunityFire: False
|
OpportunityFire: False
|
||||||
Aircraft:
|
Aircraft:
|
||||||
CruiseAltitude: 2560
|
CruiseAltitude: 2560
|
||||||
InitialFacing: 768
|
|
||||||
TurnSpeed: 16
|
TurnSpeed: 16
|
||||||
Speed: 223
|
Speed: 223
|
||||||
RepulsionSpeed: 40
|
RepulsionSpeed: 40
|
||||||
@@ -158,7 +157,6 @@ YAK:
|
|||||||
OpportunityFire: False
|
OpportunityFire: False
|
||||||
Aircraft:
|
Aircraft:
|
||||||
CruiseAltitude: 2560
|
CruiseAltitude: 2560
|
||||||
InitialFacing: 768
|
|
||||||
TurnSpeed: 16
|
TurnSpeed: 16
|
||||||
Speed: 178
|
Speed: 178
|
||||||
RepulsionSpeed: 40
|
RepulsionSpeed: 40
|
||||||
|
|||||||
@@ -617,7 +617,6 @@
|
|||||||
VTOL: true
|
VTOL: true
|
||||||
LandableTerrainTypes: Clear, Rough, Road, Ore, Beach, Gems
|
LandableTerrainTypes: Clear, Rough, Road, Ore, Beach, Gems
|
||||||
Crushes: crate, mine, infantry
|
Crushes: crate, mine, infantry
|
||||||
InitialFacing: 896
|
|
||||||
CanSlide: True
|
CanSlide: True
|
||||||
GpsDot:
|
GpsDot:
|
||||||
String: Helicopter
|
String: Helicopter
|
||||||
|
|||||||
@@ -12,7 +12,6 @@ DPOD:
|
|||||||
Roll: 0
|
Roll: 0
|
||||||
TurnSpeed: 20
|
TurnSpeed: 20
|
||||||
Speed: 149
|
Speed: 149
|
||||||
InitialFacing: 0
|
|
||||||
Health:
|
Health:
|
||||||
HP: 6000
|
HP: 6000
|
||||||
Armor:
|
Armor:
|
||||||
@@ -98,7 +97,6 @@ DSHP:
|
|||||||
Roll: 0
|
Roll: 0
|
||||||
TurnSpeed: 20
|
TurnSpeed: 20
|
||||||
Speed: 168
|
Speed: 168
|
||||||
InitialFacing: 0
|
|
||||||
TakeoffSounds: dropup1.aud
|
TakeoffSounds: dropup1.aud
|
||||||
LandingSounds: dropdwn1.aud
|
LandingSounds: dropdwn1.aud
|
||||||
IdealSeparation: 1275
|
IdealSeparation: 1275
|
||||||
@@ -266,7 +264,6 @@ ORCATRAN:
|
|||||||
Aircraft:
|
Aircraft:
|
||||||
TurnSpeed: 20
|
TurnSpeed: 20
|
||||||
Speed: 84
|
Speed: 84
|
||||||
InitialFacing: 0
|
|
||||||
LandableTerrainTypes: Clear, Road, Rail, DirtRoad, Rough, Tiberium, BlueTiberium, Veins
|
LandableTerrainTypes: Clear, Road, Rail, DirtRoad, Rough, Tiberium, BlueTiberium, Veins
|
||||||
Crushes: crate, infantry
|
Crushes: crate, infantry
|
||||||
TakeoffSounds: orcaup1.aud
|
TakeoffSounds: orcaup1.aud
|
||||||
@@ -308,7 +305,6 @@ TRNSPORT:
|
|||||||
Aircraft:
|
Aircraft:
|
||||||
TurnSpeed: 20
|
TurnSpeed: 20
|
||||||
Speed: 149
|
Speed: 149
|
||||||
InitialFacing: 0
|
|
||||||
Pitch: 0
|
Pitch: 0
|
||||||
Roll: 0
|
Roll: 0
|
||||||
TakeoffSounds: dropup1.aud
|
TakeoffSounds: dropup1.aud
|
||||||
|
|||||||
@@ -875,7 +875,6 @@
|
|||||||
RepairActors: gadept
|
RepairActors: gadept
|
||||||
Voice: Move
|
Voice: Move
|
||||||
Aircraft:
|
Aircraft:
|
||||||
InitialFacing: 896
|
|
||||||
AirborneCondition: airborne
|
AirborneCondition: airborne
|
||||||
CruisingCondition: cruising
|
CruisingCondition: cruising
|
||||||
CruiseAltitude: 4c704
|
CruiseAltitude: 4c704
|
||||||
|
|||||||
@@ -266,6 +266,7 @@ GAHPAD:
|
|||||||
MaxHeightDelta: 3
|
MaxHeightDelta: 3
|
||||||
Exit@1:
|
Exit@1:
|
||||||
SpawnOffset: 0,-256,0
|
SpawnOffset: 0,-256,0
|
||||||
|
Facing: 896
|
||||||
ExitsDebugOverlay:
|
ExitsDebugOverlay:
|
||||||
RallyPoint:
|
RallyPoint:
|
||||||
Palette: mouse
|
Palette: mouse
|
||||||
|
|||||||
@@ -241,6 +241,7 @@ NAHPAD:
|
|||||||
MaxHeightDelta: 3
|
MaxHeightDelta: 3
|
||||||
Exit@1:
|
Exit@1:
|
||||||
SpawnOffset: 0,-256,0
|
SpawnOffset: 0,-256,0
|
||||||
|
Facing: 896
|
||||||
ExitsDebugOverlay:
|
ExitsDebugOverlay:
|
||||||
RallyPoint:
|
RallyPoint:
|
||||||
Palette: mouse
|
Palette: mouse
|
||||||
|
|||||||
Reference in New Issue
Block a user