104 lines
2.8 KiB
C#
104 lines
2.8 KiB
C#
#region Copyright & License Information
|
|
/*
|
|
* Copyright 2007-2017 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 OpenRA.Traits;
|
|
|
|
namespace OpenRA.Mods.Common.Traits
|
|
{
|
|
[Desc("This actor can be captured by a unit with ExternalCaptures: trait.")]
|
|
public class ExternalCapturableInfo : ITraitInfo
|
|
{
|
|
[Desc("Type of actor (the ExternalCaptures: trait defines what Types it can capture).")]
|
|
public readonly string Type = "building";
|
|
public readonly bool AllowAllies = false;
|
|
public readonly bool AllowNeutral = true;
|
|
public readonly bool AllowEnemies = true;
|
|
[Desc("Seconds it takes to change the owner.", "You might want to add a ExternalCapturableBar: trait, too.")]
|
|
public readonly int CaptureCompleteTime = 15;
|
|
|
|
[Desc("Whether to prevent autotargeting this actor while it is being captured by an ally.")]
|
|
public readonly bool PreventsAutoTarget = true;
|
|
|
|
public bool CanBeTargetedBy(Actor captor, Player owner)
|
|
{
|
|
var c = captor.Info.TraitInfoOrDefault<ExternalCapturesInfo>();
|
|
if (c == null)
|
|
return false;
|
|
|
|
var playerRelationship = owner.Stances[captor.Owner];
|
|
if (playerRelationship == Stance.Ally && !AllowAllies)
|
|
return false;
|
|
|
|
if (playerRelationship == Stance.Enemy && !AllowEnemies)
|
|
return false;
|
|
|
|
if (playerRelationship == Stance.Neutral && !AllowNeutral)
|
|
return false;
|
|
|
|
if (!c.CaptureTypes.Contains(Type))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
public object Create(ActorInitializer init) { return new ExternalCapturable(init.Self, this); }
|
|
}
|
|
|
|
public class ExternalCapturable : ITick, ISync, IPreventsAutoTarget
|
|
{
|
|
[Sync] public int CaptureProgressTime = 0;
|
|
[Sync] public Actor Captor;
|
|
private Actor self;
|
|
public ExternalCapturableInfo Info;
|
|
public bool CaptureInProgress { get { return Captor != null; } }
|
|
|
|
public ExternalCapturable(Actor self, ExternalCapturableInfo info)
|
|
{
|
|
this.self = self;
|
|
Info = info;
|
|
}
|
|
|
|
public void BeginCapture(Actor captor)
|
|
{
|
|
var building = self.TraitOrDefault<Building>();
|
|
if (building != null)
|
|
building.Lock();
|
|
|
|
Captor = captor;
|
|
}
|
|
|
|
public void EndCapture()
|
|
{
|
|
var building = self.TraitOrDefault<Building>();
|
|
if (building != null)
|
|
building.Unlock();
|
|
|
|
Captor = null;
|
|
}
|
|
|
|
void ITick.Tick(Actor self)
|
|
{
|
|
if (Captor != null && (!Captor.IsInWorld || Captor.IsDead))
|
|
EndCapture();
|
|
|
|
if (!CaptureInProgress)
|
|
CaptureProgressTime = 0;
|
|
else
|
|
CaptureProgressTime++;
|
|
}
|
|
|
|
public bool PreventsAutoTarget(Actor self, Actor attacker)
|
|
{
|
|
return Info.PreventsAutoTarget && Captor != null && attacker.AppearsFriendlyTo(Captor);
|
|
}
|
|
}
|
|
}
|