|
|
|
|
@@ -20,6 +20,7 @@ namespace OpenRA.Mods.RA
|
|
|
|
|
public abstract class AttackBaseInfo : ITraitInfo
|
|
|
|
|
{
|
|
|
|
|
public readonly bool CanAttackGround = true;
|
|
|
|
|
public readonly string Cursor = "attack";
|
|
|
|
|
|
|
|
|
|
public abstract object Create(ActorInitializer init);
|
|
|
|
|
}
|
|
|
|
|
@@ -41,10 +42,17 @@ namespace OpenRA.Mods.RA
|
|
|
|
|
|
|
|
|
|
protected virtual bool CanAttack(Actor self, Target target)
|
|
|
|
|
{
|
|
|
|
|
if (!self.IsInWorld) return false;
|
|
|
|
|
if (!target.IsValid) return false;
|
|
|
|
|
if (Armaments.All(a => a.IsReloading)) return false;
|
|
|
|
|
if (self.IsDisabled()) return false;
|
|
|
|
|
if (!self.IsInWorld)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (!target.IsValid)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (Armaments.All(a => a.IsReloading))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (self.IsDisabled())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (target.IsActor && target.Actor.HasTrait<ITargetable>() &&
|
|
|
|
|
!target.Actor.Trait<ITargetable>().TargetableBy(target.Actor,self))
|
|
|
|
|
@@ -96,8 +104,9 @@ namespace OpenRA.Mods.RA
|
|
|
|
|
if (Armaments.Count() == 0)
|
|
|
|
|
yield break;
|
|
|
|
|
|
|
|
|
|
bool isHeal = Armaments.First().Weapon.Warheads[0].Damage < 0;
|
|
|
|
|
yield return new AttackOrderTargeter("Attack", 6, isHeal);
|
|
|
|
|
var negativeDamage = (Armaments.First().Weapon.Warheads[0].Damage < 0);
|
|
|
|
|
|
|
|
|
|
yield return new AttackOrderTargeter("Attack", 6, negativeDamage);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -137,20 +146,24 @@ namespace OpenRA.Mods.RA
|
|
|
|
|
|
|
|
|
|
public void AttackTarget(Target target, bool queued, bool allowMove)
|
|
|
|
|
{
|
|
|
|
|
if( !target.IsValid ) return;
|
|
|
|
|
if (!queued) self.CancelActivity();
|
|
|
|
|
if (!target.IsValid)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (!queued)
|
|
|
|
|
self.CancelActivity();
|
|
|
|
|
|
|
|
|
|
self.QueueActivity(GetAttackActivity(self, target, allowMove));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class AttackOrderTargeter : IOrderTargeter
|
|
|
|
|
{
|
|
|
|
|
readonly bool isHeal;
|
|
|
|
|
readonly bool negativeDamage;
|
|
|
|
|
|
|
|
|
|
public AttackOrderTargeter( string order, int priority, bool isHeal )
|
|
|
|
|
public AttackOrderTargeter(string order, int priority, bool negativeDamage)
|
|
|
|
|
{
|
|
|
|
|
this.OrderID = order;
|
|
|
|
|
this.OrderPriority = priority;
|
|
|
|
|
this.isHeal = isHeal;
|
|
|
|
|
this.negativeDamage = negativeDamage;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string OrderID { get; private set; }
|
|
|
|
|
@@ -160,12 +173,18 @@ namespace OpenRA.Mods.RA
|
|
|
|
|
{
|
|
|
|
|
IsQueued = forceQueued;
|
|
|
|
|
|
|
|
|
|
cursor = isHeal ? "heal" : "attack";
|
|
|
|
|
if( self == target ) return false;
|
|
|
|
|
if( !self.Trait<AttackBase>().HasAnyValidWeapons( Target.FromActor( target ) ) ) return false;
|
|
|
|
|
if (forceAttack) return true;
|
|
|
|
|
cursor = self.Info.Traits.Get<AttackBaseInfo>().Cursor;
|
|
|
|
|
|
|
|
|
|
var targetableRelationship = isHeal ? Stance.Ally : Stance.Enemy;
|
|
|
|
|
if (self == target)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (!self.Trait<AttackBase>().HasAnyValidWeapons(Target.FromActor(target)))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (forceAttack)
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
var targetableRelationship = negativeDamage ? Stance.Ally : Stance.Enemy;
|
|
|
|
|
|
|
|
|
|
return self.Owner.Stances[target.Owner] == targetableRelationship;
|
|
|
|
|
}
|
|
|
|
|
@@ -177,9 +196,13 @@ namespace OpenRA.Mods.RA
|
|
|
|
|
|
|
|
|
|
IsQueued = forceQueued;
|
|
|
|
|
|
|
|
|
|
cursor = isHeal ? "heal" : "attack";
|
|
|
|
|
if( isHeal ) return false;
|
|
|
|
|
if( !self.Trait<AttackBase>().HasAnyValidWeapons( Target.FromCell( location ) ) ) return false;
|
|
|
|
|
cursor = self.Info.Traits.Get<AttackBaseInfo>().Cursor;
|
|
|
|
|
|
|
|
|
|
if (negativeDamage)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (!self.Trait<AttackBase>().HasAnyValidWeapons(Target.FromCell(location)))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (forceAttack)
|
|
|
|
|
if (self.Info.Traits.Get<AttackBaseInfo>().CanAttackGround)
|
|
|
|
|
|