Prepare HackyAI for module support

- Split order handling to BotOrderManager
- Make HackyAI provide a condition
- Move BotDebug to AIUtils
This commit is contained in:
reaperrr
2018-10-29 03:42:31 +01:00
committed by abcdefg30
parent 71fb670def
commit 04c69efc30
12 changed files with 183 additions and 40 deletions

View File

@@ -65,14 +65,14 @@ namespace OpenRA.Mods.Common.AI
var powerDecision = powerDecisions[sp.Info.OrderName]; var powerDecision = powerDecisions[sp.Info.OrderName];
if (powerDecision == null) if (powerDecision == null)
{ {
HackyAI.BotDebug("Bot Bug: FindAttackLocationToSupportPower, couldn't find powerDecision for {0}", sp.Info.OrderName); AIUtils.BotDebug("Bot Bug: FindAttackLocationToSupportPower, couldn't find powerDecision for {0}", sp.Info.OrderName);
continue; continue;
} }
var attackLocation = FindCoarseAttackLocationToSupportPower(sp); var attackLocation = FindCoarseAttackLocationToSupportPower(sp);
if (attackLocation == null) if (attackLocation == null)
{ {
HackyAI.BotDebug("AI: {1} can't find suitable coarse attack location for support power {0}. Delaying rescan.", sp.Info.OrderName, player.PlayerName); AIUtils.BotDebug("AI: {1} can't find suitable coarse attack location for support power {0}. Delaying rescan.", sp.Info.OrderName, player.PlayerName);
waitingPowers[sp] += powerDecision.GetNextScanTime(ai); waitingPowers[sp] += powerDecision.GetNextScanTime(ai);
continue; continue;
@@ -82,14 +82,14 @@ namespace OpenRA.Mods.Common.AI
attackLocation = FindFineAttackLocationToSupportPower(sp, (CPos)attackLocation); attackLocation = FindFineAttackLocationToSupportPower(sp, (CPos)attackLocation);
if (attackLocation == null) if (attackLocation == null)
{ {
HackyAI.BotDebug("AI: {1} can't find suitable final attack location for support power {0}. Delaying rescan.", sp.Info.OrderName, player.PlayerName); AIUtils.BotDebug("AI: {1} can't find suitable final attack location for support power {0}. Delaying rescan.", sp.Info.OrderName, player.PlayerName);
waitingPowers[sp] += powerDecision.GetNextScanTime(ai); waitingPowers[sp] += powerDecision.GetNextScanTime(ai);
continue; continue;
} }
// Valid target found, delay by a few ticks to avoid rescanning before power fires via order // Valid target found, delay by a few ticks to avoid rescanning before power fires via order
HackyAI.BotDebug("AI: {2} found new target location {0} for support power {1}.", attackLocation, sp.Info.OrderName, player.PlayerName); AIUtils.BotDebug("AI: {2} found new target location {0} for support power {1}.", attackLocation, sp.Info.OrderName, player.PlayerName);
waitingPowers[sp] += 10; waitingPowers[sp] += 10;
ai.QueueOrder(new Order(sp.Key, supportPowerManager.Self, Target.FromCell(world, attackLocation.Value), false) { SuppressVisualFeedback = true }); ai.QueueOrder(new Order(sp.Key, supportPowerManager.Self, Target.FromCell(world, attackLocation.Value), false) { SuppressVisualFeedback = true });
} }
@@ -104,7 +104,7 @@ namespace OpenRA.Mods.Common.AI
var powerDecision = powerDecisions[readyPower.Info.OrderName]; var powerDecision = powerDecisions[readyPower.Info.OrderName];
if (powerDecision == null) if (powerDecision == null)
{ {
HackyAI.BotDebug("Bot Bug: FindAttackLocationToSupportPower, couldn't find powerDecision for {0}", readyPower.Info.OrderName); AIUtils.BotDebug("Bot Bug: FindAttackLocationToSupportPower, couldn't find powerDecision for {0}", readyPower.Info.OrderName);
return null; return null;
} }
@@ -144,7 +144,7 @@ namespace OpenRA.Mods.Common.AI
var powerDecision = powerDecisions[readyPower.Info.OrderName]; var powerDecision = powerDecisions[readyPower.Info.OrderName];
if (powerDecision == null) if (powerDecision == null)
{ {
HackyAI.BotDebug("Bot Bug: FindAttackLocationToSupportPower, couldn't find powerDecision for {0}", readyPower.Info.OrderName); AIUtils.BotDebug("Bot Bug: FindAttackLocationToSupportPower, couldn't find powerDecision for {0}", readyPower.Info.OrderName);
return null; return null;
} }

View File

@@ -47,5 +47,11 @@ namespace OpenRA.Mods.Common.AI
.All(ac => terrainTypes.Contains(map.GetTerrainInfo(ac).Type)))) .All(ac => terrainTypes.Contains(map.GetTerrainInfo(ac).Type))))
.Any(availableCells => availableCells > 0); .Any(availableCells => availableCells > 0);
} }
public static void BotDebug(string s, params object[] args)
{
if (Game.Settings.Debug.BotDebug)
Game.Debug(s, args);
}
} }
} }

View File

@@ -146,7 +146,7 @@ namespace OpenRA.Mods.Common.AI
var location = ai.ChooseBuildLocation(currentBuilding.Item, true, type); var location = ai.ChooseBuildLocation(currentBuilding.Item, true, type);
if (location == null) if (location == null)
{ {
HackyAI.BotDebug("AI: {0} has nowhere to place {1}".F(player, currentBuilding.Item)); AIUtils.BotDebug("AI: {0} has nowhere to place {1}".F(player, currentBuilding.Item));
ai.QueueOrder(Order.CancelProduction(queue.Actor, currentBuilding.Item, 1)); ai.QueueOrder(Order.CancelProduction(queue.Actor, currentBuilding.Item, 1));
failCount += failCount; failCount += failCount;
@@ -216,7 +216,7 @@ namespace OpenRA.Mods.Common.AI
{ {
if (power != null && power.TraitInfos<PowerInfo>().Where(i => i.EnabledByDefault).Sum(p => p.Amount) > 0) if (power != null && power.TraitInfos<PowerInfo>().Where(i => i.EnabledByDefault).Sum(p => p.Amount) > 0)
{ {
HackyAI.BotDebug("AI: {0} decided to build {1}: Priority override (low power)", queue.Actor.Owner, power.Name); AIUtils.BotDebug("AI: {0} decided to build {1}: Priority override (low power)", queue.Actor.Owner, power.Name);
return power; return power;
} }
} }
@@ -227,13 +227,13 @@ namespace OpenRA.Mods.Common.AI
var refinery = GetProducibleBuilding(ai.Info.BuildingCommonNames.Refinery, buildableThings); var refinery = GetProducibleBuilding(ai.Info.BuildingCommonNames.Refinery, buildableThings);
if (refinery != null && HasSufficientPowerForActor(refinery)) if (refinery != null && HasSufficientPowerForActor(refinery))
{ {
HackyAI.BotDebug("AI: {0} decided to build {1}: Priority override (refinery)", queue.Actor.Owner, refinery.Name); AIUtils.BotDebug("AI: {0} decided to build {1}: Priority override (refinery)", queue.Actor.Owner, refinery.Name);
return refinery; return refinery;
} }
if (power != null && refinery != null && !HasSufficientPowerForActor(refinery)) if (power != null && refinery != null && !HasSufficientPowerForActor(refinery))
{ {
HackyAI.BotDebug("{0} decided to build {1}: Priority override (would be low power)", queue.Actor.Owner, power.Name); AIUtils.BotDebug("{0} decided to build {1}: Priority override (would be low power)", queue.Actor.Owner, power.Name);
return power; return power;
} }
} }
@@ -244,13 +244,13 @@ namespace OpenRA.Mods.Common.AI
var production = GetProducibleBuilding(ai.Info.BuildingCommonNames.Production, buildableThings); var production = GetProducibleBuilding(ai.Info.BuildingCommonNames.Production, buildableThings);
if (production != null && HasSufficientPowerForActor(production)) if (production != null && HasSufficientPowerForActor(production))
{ {
HackyAI.BotDebug("AI: {0} decided to build {1}: Priority override (production)", queue.Actor.Owner, production.Name); AIUtils.BotDebug("AI: {0} decided to build {1}: Priority override (production)", queue.Actor.Owner, production.Name);
return production; return production;
} }
if (power != null && production != null && !HasSufficientPowerForActor(production)) if (power != null && production != null && !HasSufficientPowerForActor(production))
{ {
HackyAI.BotDebug("{0} decided to build {1}: Priority override (would be low power)", queue.Actor.Owner, power.Name); AIUtils.BotDebug("{0} decided to build {1}: Priority override (would be low power)", queue.Actor.Owner, power.Name);
return power; return power;
} }
} }
@@ -263,13 +263,13 @@ namespace OpenRA.Mods.Common.AI
var navalproduction = GetProducibleBuilding(ai.Info.BuildingCommonNames.NavalProduction, buildableThings); var navalproduction = GetProducibleBuilding(ai.Info.BuildingCommonNames.NavalProduction, buildableThings);
if (navalproduction != null && HasSufficientPowerForActor(navalproduction)) if (navalproduction != null && HasSufficientPowerForActor(navalproduction))
{ {
HackyAI.BotDebug("AI: {0} decided to build {1}: Priority override (navalproduction)", queue.Actor.Owner, navalproduction.Name); AIUtils.BotDebug("AI: {0} decided to build {1}: Priority override (navalproduction)", queue.Actor.Owner, navalproduction.Name);
return navalproduction; return navalproduction;
} }
if (power != null && navalproduction != null && !HasSufficientPowerForActor(navalproduction)) if (power != null && navalproduction != null && !HasSufficientPowerForActor(navalproduction))
{ {
HackyAI.BotDebug("{0} decided to build {1}: Priority override (would be low power)", queue.Actor.Owner, power.Name); AIUtils.BotDebug("{0} decided to build {1}: Priority override (would be low power)", queue.Actor.Owner, power.Name);
return power; return power;
} }
} }
@@ -280,13 +280,13 @@ namespace OpenRA.Mods.Common.AI
var silo = GetProducibleBuilding(ai.Info.BuildingCommonNames.Silo, buildableThings); var silo = GetProducibleBuilding(ai.Info.BuildingCommonNames.Silo, buildableThings);
if (silo != null && HasSufficientPowerForActor(silo)) if (silo != null && HasSufficientPowerForActor(silo))
{ {
HackyAI.BotDebug("AI: {0} decided to build {1}: Priority override (silo)", queue.Actor.Owner, silo.Name); AIUtils.BotDebug("AI: {0} decided to build {1}: Priority override (silo)", queue.Actor.Owner, silo.Name);
return silo; return silo;
} }
if (power != null && silo != null && !HasSufficientPowerForActor(silo)) if (power != null && silo != null && !HasSufficientPowerForActor(silo))
{ {
HackyAI.BotDebug("{0} decided to build {1}: Priority override (would be low power)", queue.Actor.Owner, power.Name); AIUtils.BotDebug("{0} decided to build {1}: Priority override (would be low power)", queue.Actor.Owner, power.Name);
return power; return power;
} }
} }
@@ -324,22 +324,22 @@ namespace OpenRA.Mods.Common.AI
if (power != null && power.TraitInfos<PowerInfo>().Where(i => i.EnabledByDefault).Sum(pi => pi.Amount) > 0) if (power != null && power.TraitInfos<PowerInfo>().Where(i => i.EnabledByDefault).Sum(pi => pi.Amount) > 0)
{ {
if (playerPower.PowerOutageRemainingTicks > 0) if (playerPower.PowerOutageRemainingTicks > 0)
HackyAI.BotDebug("{0} decided to build {1}: Priority override (is low power)", queue.Actor.Owner, power.Name); AIUtils.BotDebug("{0} decided to build {1}: Priority override (is low power)", queue.Actor.Owner, power.Name);
else else
HackyAI.BotDebug("{0} decided to build {1}: Priority override (would be low power)", queue.Actor.Owner, power.Name); AIUtils.BotDebug("{0} decided to build {1}: Priority override (would be low power)", queue.Actor.Owner, power.Name);
return power; return power;
} }
} }
// Lets build this // Lets build this
HackyAI.BotDebug("{0} decided to build {1}: Desired is {2} ({3} / {4}); current is {5} / {4}", AIUtils.BotDebug("{0} decided to build {1}: Desired is {2} ({3} / {4}); current is {5} / {4}",
queue.Actor.Owner, name, frac.Value, frac.Value * playerBuildings.Length, playerBuildings.Length, count); queue.Actor.Owner, name, frac.Value, frac.Value * playerBuildings.Length, playerBuildings.Length, count);
return actor; return actor;
} }
// Too spammy to keep enabled all the time, but very useful when debugging specific issues. // Too spammy to keep enabled all the time, but very useful when debugging specific issues.
// HackyAI.BotDebug("{0} couldn't decide what to build for queue {1}.", queue.Actor.Owner, queue.Info.Group); // AIUtils.BotDebug("{0} couldn't decide what to build for queue {1}.", queue.Actor.Owner, queue.Info.Group);
return null; return null;
} }
} }

View File

@@ -0,0 +1,54 @@
#region Copyright & License Information
/*
* Copyright 2007-2018 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 OpenRA.Traits;
namespace OpenRA.Mods.Common.AI
{
public sealed class BotOrderManagerInfo : ITraitInfo
{
[Desc("Minimum portion of pending orders to issue each tick (e.g. 5 issues at least 1/5th of all pending orders). Excess orders remain queued for subsequent ticks.")]
public readonly int MinOrderQuotientPerTick = 5;
public object Create(ActorInitializer init) { return new BotOrderManager(this); }
}
public sealed class BotOrderManager : ITick
{
readonly BotOrderManagerInfo info;
readonly Queue<Order> orders = new Queue<Order>();
public BotOrderManager(BotOrderManagerInfo info)
{
this.info = info;
}
public void QueueOrder(Order order)
{
orders.Enqueue(order);
}
void IssueOrders(World world)
{
var ordersToIssueThisTick = Math.Min((orders.Count + info.MinOrderQuotientPerTick - 1) / info.MinOrderQuotientPerTick, orders.Count);
for (var i = 0; i < ordersToIssueThisTick; i++)
world.IssueOrder(orders.Dequeue());
}
void ITick.Tick(Actor self)
{
// Make sure we tick after all of the bot modules so that we don't introduce an additional tick delay
self.World.AddFrameEndTask(IssueOrders);
}
}
}

View File

@@ -21,7 +21,7 @@ using OpenRA.Traits;
namespace OpenRA.Mods.Common.AI namespace OpenRA.Mods.Common.AI
{ {
public sealed class HackyAIInfo : IBotInfo, ITraitInfo public sealed class HackyAIInfo : IBotInfo, ITraitInfo, Requires<BotOrderManagerInfo>
{ {
public class UnitCategories public class UnitCategories
{ {
@@ -49,6 +49,11 @@ namespace OpenRA.Mods.Common.AI
[Desc("Human-readable name this bot uses.")] [Desc("Human-readable name this bot uses.")]
public readonly string Name = "Unnamed Bot"; public readonly string Name = "Unnamed Bot";
[FieldLoader.Require]
[GrantedConditionReference]
[Desc("Condition to grant. Mostly used to activate modules.")]
public readonly string Condition = null;
[Desc("Minimum number of units AI must have before attacking.")] [Desc("Minimum number of units AI must have before attacking.")]
public readonly int SquadSize = 8; public readonly int SquadSize = 8;
@@ -73,9 +78,6 @@ namespace OpenRA.Mods.Common.AI
[Desc("Minimum delay (in ticks) between creating squads.")] [Desc("Minimum delay (in ticks) between creating squads.")]
public readonly int MinimumAttackForceDelay = 0; public readonly int MinimumAttackForceDelay = 0;
[Desc("Minimum portion of pending orders to issue each tick (e.g. 5 issues at least 1/5th of all pending orders). Excess orders remain queued for subsequent ticks.")]
public readonly int MinOrderQuotientPerTick = 5;
[Desc("Minimum excess power the AI should try to maintain.")] [Desc("Minimum excess power the AI should try to maintain.")]
public readonly int MinimumExcessPower = 0; public readonly int MinimumExcessPower = 0;
@@ -269,6 +271,9 @@ namespace OpenRA.Mods.Common.AI
readonly Func<Actor, bool> isEnemyUnit; readonly Func<Actor, bool> isEnemyUnit;
readonly Predicate<Actor> unitCannotBeOrdered; readonly Predicate<Actor> unitCannotBeOrdered;
BotOrderManager botOrderManager;
int conditionToken = ConditionManager.InvalidConditionToken;
CPos initialBaseCenter; CPos initialBaseCenter;
PowerManager playerPower; PowerManager playerPower;
PlayerResources playerResource; PlayerResources playerResource;
@@ -303,8 +308,6 @@ namespace OpenRA.Mods.Common.AI
int minCaptureDelayTicks; int minCaptureDelayTicks;
readonly int maximumCaptureTargetOptions; readonly int maximumCaptureTargetOptions;
readonly Queue<Order> orders = new Queue<Order>();
public HackyAI(HackyAIInfo info, ActorInitializer init) public HackyAI(HackyAIInfo info, ActorInitializer init)
{ {
Info = info; Info = info;
@@ -323,12 +326,6 @@ namespace OpenRA.Mods.Common.AI
maximumCaptureTargetOptions = Math.Max(1, Info.MaximumCaptureTargetOptions); maximumCaptureTargetOptions = Math.Max(1, Info.MaximumCaptureTargetOptions);
} }
public static void BotDebug(string s, params object[] args)
{
if (Game.Settings.Debug.BotDebug)
Game.Debug(s, args);
}
// Called by the host's player creation code // Called by the host's player creation code
public void Activate(Player p) public void Activate(Player p)
{ {
@@ -336,6 +333,7 @@ namespace OpenRA.Mods.Common.AI
IsEnabled = true; IsEnabled = true;
playerPower = p.PlayerActor.TraitOrDefault<PowerManager>(); playerPower = p.PlayerActor.TraitOrDefault<PowerManager>();
playerResource = p.PlayerActor.Trait<PlayerResources>(); playerResource = p.PlayerActor.Trait<PlayerResources>();
botOrderManager = p.PlayerActor.Trait<BotOrderManager>();
harvManager = new AIHarvesterManager(this, p); harvManager = new AIHarvesterManager(this, p);
supportPowerManager = new AISupportPowerManager(this, p); supportPowerManager = new AISupportPowerManager(this, p);
@@ -361,11 +359,16 @@ namespace OpenRA.Mods.Common.AI
resourceTypeIndices = new BitArray(tileset.TerrainInfo.Length); // Big enough resourceTypeIndices = new BitArray(tileset.TerrainInfo.Length); // Big enough
foreach (var t in Map.Rules.Actors["world"].TraitInfos<ResourceTypeInfo>()) foreach (var t in Map.Rules.Actors["world"].TraitInfos<ResourceTypeInfo>())
resourceTypeIndices.Set(tileset.GetTerrainIndex(t.TerrainType), true); resourceTypeIndices.Set(tileset.GetTerrainIndex(t.TerrainType), true);
var conditionManager = p.PlayerActor.TraitOrDefault<ConditionManager>();
if (conditionManager != null && conditionToken == ConditionManager.InvalidConditionToken)
conditionToken = conditionManager.GrantCondition(p.PlayerActor, Info.Condition);
} }
// DEPRECATED: Bot modules should queue orders directly.
public void QueueOrder(Order order) public void QueueOrder(Order order)
{ {
orders.Enqueue(order); botOrderManager.QueueOrder(order);
} }
ActorInfo ChooseRandomUnitToBuild(ProductionQueue queue) ActorInfo ChooseRandomUnitToBuild(ProductionQueue queue)
@@ -553,10 +556,6 @@ namespace OpenRA.Mods.Common.AI
foreach (var b in builders) foreach (var b in builders)
b.Tick(); b.Tick();
var ordersToIssueThisTick = Math.Min((orders.Count + Info.MinOrderQuotientPerTick - 1) / Info.MinOrderQuotientPerTick, orders.Count);
for (var i = 0; i < ordersToIssueThisTick; i++)
World.IssueOrder(orders.Dequeue());
} }
internal Actor FindClosestEnemy(WPos pos) internal Actor FindClosestEnemy(WPos pos)
@@ -711,7 +710,7 @@ namespace OpenRA.Mods.Common.AI
return; return;
QueueOrder(new Order(target.OrderString, capturer, Target.FromActor(target.Actor), true)); QueueOrder(new Order(target.OrderString, capturer, Target.FromActor(target.Actor), true));
BotDebug("AI ({0}): Ordered {1} to capture {2}", Player.ClientIndex, capturer, target.Actor); AIUtils.BotDebug("AI ({0}): Ordered {1} to capture {2}", Player.ClientIndex, capturer, target.Actor);
activeUnits.Remove(capturer); activeUnits.Remove(capturer);
} }
@@ -853,7 +852,7 @@ namespace OpenRA.Mods.Common.AI
if (!possibleRallyPoints.Any()) if (!possibleRallyPoints.Any())
{ {
BotDebug("Bot Bug: No possible rallypoint near {0}", producer.Location); AIUtils.BotDebug("Bot Bug: No possible rallypoint near {0}", producer.Location);
return producer.Location; return producer.Location;
} }
@@ -976,7 +975,7 @@ namespace OpenRA.Mods.Common.AI
{ {
if (e.DamageState > DamageState.Light && e.PreviousDamageState <= DamageState.Light && !rb.RepairActive) if (e.DamageState > DamageState.Light && e.PreviousDamageState <= DamageState.Light && !rb.RepairActive)
{ {
BotDebug("Bot noticed damage {0} {1}->{2}, repairing.", AIUtils.BotDebug("Bot noticed damage {0} {1}->{2}, repairing.",
self, e.PreviousDamageState, e.DamageState); self, e.PreviousDamageState, e.DamageState);
QueueOrder(new Order("RepairBuilding", self.Owner.PlayerActor, Target.FromActor(self), false)); QueueOrder(new Order("RepairBuilding", self.Owner.PlayerActor, Target.FromActor(self), false));
} }

View File

@@ -123,6 +123,7 @@
<Compile Include="AI\AIUtils.cs" /> <Compile Include="AI\AIUtils.cs" />
<Compile Include="AI\AttackOrFleeFuzzy.cs" /> <Compile Include="AI\AttackOrFleeFuzzy.cs" />
<Compile Include="AI\BaseBuilder.cs" /> <Compile Include="AI\BaseBuilder.cs" />
<Compile Include="AI\BotOrderManager.cs" />
<Compile Include="AI\HackyAI.cs" /> <Compile Include="AI\HackyAI.cs" />
<Compile Include="AI\AIHarvesterManager.cs" /> <Compile Include="AI\AIHarvesterManager.cs" />
<Compile Include="AI\AISupportPowerManager.cs" /> <Compile Include="AI\AISupportPowerManager.cs" />
@@ -935,6 +936,7 @@
<Compile Include="UpdateRules\Rules\20180923\RemoveRepairBuildingsFromAircraft.cs" /> <Compile Include="UpdateRules\Rules\20180923\RemoveRepairBuildingsFromAircraft.cs" />
<Compile Include="UpdateRules\Rules\20180923\AddRearmable.cs" /> <Compile Include="UpdateRules\Rules\20180923\AddRearmable.cs" />
<Compile Include="UpdateRules\Rules\20180923\MergeAttackPlaneAndHeli.cs" /> <Compile Include="UpdateRules\Rules\20180923\MergeAttackPlaneAndHeli.cs" />
<Compile Include="UpdateRules\Rules\20180923\AddBotOrderManager.cs" />
<Compile Include="Traits\Player\PlayerResources.cs" /> <Compile Include="Traits\Player\PlayerResources.cs" />
<Compile Include="UtilityCommands\DumpSequenceSheetsCommand.cs" /> <Compile Include="UtilityCommands\DumpSequenceSheetsCommand.cs" />
<Compile Include="Traits\Render\WithBuildingRepairDecoration.cs" /> <Compile Include="Traits\Render\WithBuildingRepairDecoration.cs" />

View File

@@ -0,0 +1,77 @@
#region Copyright & License Information
/*
* Copyright 2007-2018 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 AddBotOrderManager : UpdateRule
{
public override string Name { get { return "Split bot order management from HackyAI to BotOrderManager"; } }
public override string Description
{
get
{
return "The MinOrderQuotientPerTick property and all bot order handling have been moved from HackyAI\n" +
"to the new BotOrderManager.";
}
}
bool showMessage;
bool messageShown;
public override IEnumerable<string> AfterUpdate(ModData modData)
{
var message = "You may want to manually change MinOrderQuotientPerTick on BotOrderManager,\n" +
"if you were using a custom value on any AI.";
if (showMessage && !messageShown)
yield return message;
messageShown = true;
}
public override IEnumerable<string> UpdateActorNode(ModData modData, MiniYamlNode actorNode)
{
if (actorNode.Key != "Player")
yield break;
var hackyAIs = actorNode.ChildrenMatching("HackyAI");
if (!hackyAIs.Any())
yield break;
foreach (var hackyAINode in hackyAIs)
{
// We no longer support individual values for each AI,
// and in practice the default of 5 has proven to be a solid middle-ground,
// so just removing any custom value and notifying the modder about it should suffice.
var minQuotient = hackyAINode.LastChildMatching("MinOrderQuotientPerTick");
if (minQuotient != null)
{
hackyAINode.RemoveNode(minQuotient);
if (!showMessage)
showMessage = true;
}
}
var botOrderManager = actorNode.LastChildMatching("BotOrderManager");
if (botOrderManager == null)
{
var addBotOrderManager = new MiniYamlNode("BotOrderManager", "");
actorNode.AddNode(addBotOrderManager);
}
yield break;
}
}
}

View File

@@ -105,6 +105,7 @@ namespace OpenRA.Mods.Common.UpdateRules
new RemovedDemolishLocking(), new RemovedDemolishLocking(),
new RequireProductionType(), new RequireProductionType(),
new CloakRequiresConditionToPause(), new CloakRequiresConditionToPause(),
new AddBotOrderManager(),
}) })
}; };

View File

@@ -1,4 +1,5 @@
Player: Player:
BotOrderManager:
HackyAI@Cabal: HackyAI@Cabal:
Name: Cabal Name: Cabal
Type: cabal Type: cabal

View File

@@ -1,4 +1,5 @@
Player: Player:
BotOrderManager:
HackyAI@Omnius: HackyAI@Omnius:
Name: Omnius Name: Omnius
Type: omnius Type: omnius

View File

@@ -1,4 +1,5 @@
Player: Player:
BotOrderManager:
HackyAI@RushAI: HackyAI@RushAI:
Name: Rush AI Name: Rush AI
Type: rush Type: rush

View File

@@ -1,4 +1,5 @@
Player: Player:
BotOrderManager:
HackyAI@TestAI: HackyAI@TestAI:
Name: Test AI Name: Test AI
Type: test Type: test