Remove the hardcoded cloak reference from activities
This commit is contained in:
@@ -26,8 +26,7 @@ namespace OpenRA.Mods.Common.Activities
|
||||
readonly int flashesDelay;
|
||||
readonly int flashInterval;
|
||||
readonly int flashDuration;
|
||||
|
||||
readonly Cloak cloak;
|
||||
readonly INotifyDemolition[] notifiers;
|
||||
|
||||
public Demolish(Actor self, Actor target, EnterBehaviour enterBehaviour, int delay,
|
||||
int flashes, int flashesDelay, int flashInterval, int flashDuration)
|
||||
@@ -35,12 +34,12 @@ namespace OpenRA.Mods.Common.Activities
|
||||
{
|
||||
this.target = target;
|
||||
demolishables = target.TraitsImplementing<IDemolishable>().ToArray();
|
||||
notifiers = self.TraitsImplementing<INotifyDemolition>().ToArray();
|
||||
this.delay = delay;
|
||||
this.flashes = flashes;
|
||||
this.flashesDelay = flashesDelay;
|
||||
this.flashInterval = flashInterval;
|
||||
this.flashDuration = flashDuration;
|
||||
cloak = self.TraitOrDefault<Cloak>();
|
||||
}
|
||||
|
||||
protected override bool CanReserve(Actor self)
|
||||
@@ -55,12 +54,8 @@ namespace OpenRA.Mods.Common.Activities
|
||||
if (target.IsDead)
|
||||
return;
|
||||
|
||||
if (cloak != null && cloak.Info.UncloakOn.HasFlag(UncloakType.Demolish))
|
||||
cloak.Uncloak();
|
||||
|
||||
var building = target.TraitOrDefault<Building>();
|
||||
if (building != null)
|
||||
building.Lock();
|
||||
foreach (var ind in notifiers)
|
||||
ind.Demolishing(self);
|
||||
|
||||
for (var f = 0; f < flashes; f++)
|
||||
w.Add(new DelayedAction(flashesDelay + f * flashInterval, () =>
|
||||
|
||||
@@ -23,14 +23,14 @@ namespace OpenRA.Mods.Common.Activities
|
||||
{
|
||||
readonly Actor self;
|
||||
readonly Cargo cargo;
|
||||
readonly Cloak[] cloaks;
|
||||
readonly INotifyUnload[] notifiers;
|
||||
readonly bool unloadAll;
|
||||
|
||||
public UnloadCargo(Actor self, bool unloadAll)
|
||||
{
|
||||
this.self = self;
|
||||
cargo = self.Trait<Cargo>();
|
||||
cloaks = self.TraitsImplementing<Cloak>().ToArray();
|
||||
notifiers = self.TraitsImplementing<INotifyUnload>().ToArray();
|
||||
this.unloadAll = unloadAll;
|
||||
}
|
||||
|
||||
@@ -60,9 +60,8 @@ namespace OpenRA.Mods.Common.Activities
|
||||
if (IsCanceled || cargo.IsEmpty(self))
|
||||
return NextActivity;
|
||||
|
||||
foreach (var cloak in cloaks)
|
||||
if (cloak.Info.UncloakOn.HasFlag(UncloakType.Unload))
|
||||
cloak.Uncloak();
|
||||
foreach (var inu in notifiers)
|
||||
inu.Unloading(self);
|
||||
|
||||
var actor = cargo.Peek(self);
|
||||
var spawn = self.CenterPosition;
|
||||
|
||||
Reference in New Issue
Block a user