Add InfiltrateForSupportPowerReset
This commit is contained in:
committed by
abcdefg30
parent
089dd233a5
commit
a1c9b27057
@@ -0,0 +1,46 @@
|
|||||||
|
#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.Linq;
|
||||||
|
using OpenRA.Mods.Common.Traits;
|
||||||
|
using OpenRA.Primitives;
|
||||||
|
using OpenRA.Traits;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Cnc.Traits
|
||||||
|
{
|
||||||
|
class InfiltrateForSupportPowerResetInfo : ITraitInfo
|
||||||
|
{
|
||||||
|
public readonly BitSet<TargetableType> Types = default(BitSet<TargetableType>);
|
||||||
|
|
||||||
|
public object Create(ActorInitializer init) { return new InfiltrateForSupportPowerReset(this); }
|
||||||
|
}
|
||||||
|
|
||||||
|
class InfiltrateForSupportPowerReset : INotifyInfiltrated
|
||||||
|
{
|
||||||
|
readonly InfiltrateForSupportPowerResetInfo info;
|
||||||
|
|
||||||
|
public InfiltrateForSupportPowerReset(InfiltrateForSupportPowerResetInfo info)
|
||||||
|
{
|
||||||
|
this.info = info;
|
||||||
|
}
|
||||||
|
|
||||||
|
void INotifyInfiltrated.Infiltrated(Actor self, Actor infiltrator, BitSet<TargetableType> types)
|
||||||
|
{
|
||||||
|
if (!info.Types.Overlaps(types))
|
||||||
|
return;
|
||||||
|
|
||||||
|
var manager = self.Owner.PlayerActor.Trait<SupportPowerManager>();
|
||||||
|
var powers = manager.GetPowersForActor(self).Where(sp => !sp.Disabled);
|
||||||
|
foreach (var power in powers)
|
||||||
|
power.ResetTimer();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -171,6 +171,11 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
protected bool notifiedCharging;
|
protected bool notifiedCharging;
|
||||||
bool notifiedReady;
|
bool notifiedReady;
|
||||||
|
|
||||||
|
public void ResetTimer()
|
||||||
|
{
|
||||||
|
remainingSubTicks = TotalTicks * 100;
|
||||||
|
}
|
||||||
|
|
||||||
public SupportPowerInstance(string key, SupportPowerInfo info, SupportPowerManager manager)
|
public SupportPowerInstance(string key, SupportPowerInfo info, SupportPowerManager manager)
|
||||||
{
|
{
|
||||||
Key = key;
|
Key = key;
|
||||||
|
|||||||
@@ -58,6 +58,10 @@ MSLO:
|
|||||||
CircleSequence: circles
|
CircleSequence: circles
|
||||||
SupportPowerPaletteOrder: 70
|
SupportPowerPaletteOrder: 70
|
||||||
SupportPowerChargeBar:
|
SupportPowerChargeBar:
|
||||||
|
InfiltrateForSupportPowerReset:
|
||||||
|
Types: SpyInfiltrate
|
||||||
|
Targetable:
|
||||||
|
TargetTypes: Ground, C4, DetonateAttack, Structure, SpyInfiltrate
|
||||||
Power:
|
Power:
|
||||||
Amount: -150
|
Amount: -150
|
||||||
MustBeDestroyed:
|
MustBeDestroyed:
|
||||||
@@ -424,6 +428,10 @@ IRON:
|
|||||||
OnFireSound: ironcur9.aud
|
OnFireSound: ironcur9.aud
|
||||||
SupportPowerPaletteOrder: 10
|
SupportPowerPaletteOrder: 10
|
||||||
SupportPowerChargeBar:
|
SupportPowerChargeBar:
|
||||||
|
InfiltrateForSupportPowerReset:
|
||||||
|
Types: SpyInfiltrate
|
||||||
|
Targetable:
|
||||||
|
TargetTypes: Ground, C4, DetonateAttack, Structure, SpyInfiltrate
|
||||||
Power:
|
Power:
|
||||||
Amount: -200
|
Amount: -200
|
||||||
MustBeDestroyed:
|
MustBeDestroyed:
|
||||||
@@ -505,6 +513,10 @@ PDOX:
|
|||||||
Range: 2
|
Range: 2
|
||||||
SupportPowerPaletteOrder: 30
|
SupportPowerPaletteOrder: 30
|
||||||
SupportPowerChargeBar:
|
SupportPowerChargeBar:
|
||||||
|
InfiltrateForSupportPowerReset:
|
||||||
|
Types: SpyInfiltrate
|
||||||
|
Targetable:
|
||||||
|
TargetTypes: Ground, C4, DetonateAttack, Structure, SpyInfiltrate
|
||||||
Power:
|
Power:
|
||||||
Amount: -200
|
Amount: -200
|
||||||
MustBeDestroyed:
|
MustBeDestroyed:
|
||||||
@@ -961,6 +973,10 @@ ATEK:
|
|||||||
DisplayTimerStances: Ally, Neutral, Enemy
|
DisplayTimerStances: Ally, Neutral, Enemy
|
||||||
SupportPowerPaletteOrder: 90
|
SupportPowerPaletteOrder: 90
|
||||||
SupportPowerChargeBar:
|
SupportPowerChargeBar:
|
||||||
|
InfiltrateForSupportPowerReset:
|
||||||
|
Types: SpyInfiltrate
|
||||||
|
Targetable:
|
||||||
|
TargetTypes: Ground, C4, DetonateAttack, Structure, SpyInfiltrate
|
||||||
Power:
|
Power:
|
||||||
Amount: -200
|
Amount: -200
|
||||||
ProvidesPrerequisite@buildingname:
|
ProvidesPrerequisite@buildingname:
|
||||||
|
|||||||
Reference in New Issue
Block a user