Skip to content

Commit 86f6129

Browse files
pchotereaperrr
authored andcommitted
Replace ITraitInfo interface with TraitInfo class.
1 parent 3cd7ec3 commit 86f6129

File tree

243 files changed

+510
-505
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

243 files changed

+510
-505
lines changed

OpenRA.Game/GameRules/ActorInfo.cs

+7-7
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class ActorInfo
3232
/// </summary>
3333
public readonly string Name;
3434
readonly TypeDictionary traits = new TypeDictionary();
35-
List<ITraitInfo> constructOrderCache = null;
35+
List<TraitInfo> constructOrderCache = null;
3636

3737
public ActorInfo(ObjectCreator creator, string name, MiniYaml node)
3838
{
@@ -64,23 +64,23 @@ public ActorInfo(ObjectCreator creator, string name, MiniYaml node)
6464
}
6565
}
6666

67-
public ActorInfo(string name, params ITraitInfo[] traitInfos)
67+
public ActorInfo(string name, params TraitInfo[] traitInfos)
6868
{
6969
Name = name;
7070
foreach (var t in traitInfos)
7171
traits.Add(t);
7272
traits.TrimExcess();
7373
}
7474

75-
static ITraitInfo LoadTraitInfo(ObjectCreator creator, string traitName, MiniYaml my)
75+
static TraitInfo LoadTraitInfo(ObjectCreator creator, string traitName, MiniYaml my)
7676
{
7777
if (!string.IsNullOrEmpty(my.Value))
7878
throw new YamlException("Junk value `{0}` on trait node {1}"
7979
.F(my.Value, traitName));
8080

8181
// HACK: The linter does not want to crash when a trait doesn't exist but only print an error instead
8282
// ObjectCreator will only return null to signal us to abort here if the linter is running
83-
var info = creator.CreateObject<ITraitInfo>(traitName + "Info");
83+
var info = creator.CreateObject<TraitInfo>(traitName + "Info");
8484
if (info == null)
8585
return null;
8686

@@ -97,12 +97,12 @@ static ITraitInfo LoadTraitInfo(ObjectCreator creator, string traitName, MiniYam
9797
return info;
9898
}
9999

100-
public IEnumerable<ITraitInfo> TraitsInConstructOrder()
100+
public IEnumerable<TraitInfo> TraitsInConstructOrder()
101101
{
102102
if (constructOrderCache != null)
103103
return constructOrderCache;
104104

105-
var source = traits.WithInterface<ITraitInfo>().Select(i => new
105+
var source = traits.WithInterface<TraitInfo>().Select(i => new
106106
{
107107
Trait = i,
108108
Type = i.GetType(),
@@ -148,7 +148,7 @@ public IEnumerable<ITraitInfo> TraitsInConstructOrder()
148148
return constructOrderCache;
149149
}
150150

151-
public static IEnumerable<Type> PrerequisitesOf(ITraitInfo info)
151+
public static IEnumerable<Type> PrerequisitesOf(TraitInfo info)
152152
{
153153
return info
154154
.GetType()

OpenRA.Game/Traits/DebugPauseState.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
namespace OpenRA.Traits
1313
{
1414
[Desc("Checks for pause related desyncs. Attach this to the world actor.")]
15-
public class DebugPauseStateInfo : ITraitInfo
15+
public class DebugPauseStateInfo : TraitInfo
1616
{
17-
public object Create(ActorInitializer init) { return new DebugPauseState(init.World); }
17+
public override object Create(ActorInitializer init) { return new DebugPauseState(init.World); }
1818
}
1919

2020
public class DebugPauseState : ISync

OpenRA.Game/Traits/Player/FixedColorPalette.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
namespace OpenRA.Traits
1616
{
1717
[Desc("Add this to the World actor definition.")]
18-
public class FixedColorPaletteInfo : ITraitInfo
18+
public class FixedColorPaletteInfo : TraitInfo
1919
{
2020
[PaletteReference]
2121
[Desc("The name of the palette to base off.")]
@@ -37,7 +37,7 @@ public class FixedColorPaletteInfo : ITraitInfo
3737
[Desc("Allow palette modifiers to change the palette.")]
3838
public readonly bool AllowModifiers = true;
3939

40-
public object Create(ActorInitializer init) { return new FixedColorPalette(this); }
40+
public override object Create(ActorInitializer init) { return new FixedColorPalette(this); }
4141
}
4242

4343
public class FixedColorPalette : ILoadsPalettes

OpenRA.Game/Traits/Player/FrozenActorLayer.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ public interface ICreatesFrozenActors
2323
}
2424

2525
[Desc("Required for FrozenUnderFog to work. Attach this to the player actor.")]
26-
public class FrozenActorLayerInfo : Requires<ShroudInfo>, ITraitInfo
26+
public class FrozenActorLayerInfo : TraitInfo, Requires<ShroudInfo>
2727
{
2828
[Desc("Size of partition bins (cells)")]
2929
public readonly int BinSize = 10;
3030

31-
public object Create(ActorInitializer init) { return new FrozenActorLayer(init.Self, this); }
31+
public override object Create(ActorInitializer init) { return new FrozenActorLayer(init.Self, this); }
3232
}
3333

3434
public class FrozenActor

OpenRA.Game/Traits/Player/IndexedPlayerPalette.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
namespace OpenRA.Traits
1818
{
1919
[Desc("Define a player palette by swapping palette indices.")]
20-
public class IndexedPlayerPaletteInfo : ITraitInfo, IRulesetLoaded
20+
public class IndexedPlayerPaletteInfo : TraitInfo, IRulesetLoaded
2121
{
2222
[PaletteReference]
2323
[Desc("The name of the palette to base off.")]
@@ -35,7 +35,7 @@ public class IndexedPlayerPaletteInfo : ITraitInfo, IRulesetLoaded
3535

3636
public readonly Dictionary<string, int[]> PlayerIndex;
3737

38-
public object Create(ActorInitializer init) { return new IndexedPlayerPalette(this); }
38+
public override object Create(ActorInitializer init) { return new IndexedPlayerPalette(this); }
3939

4040
public void RulesetLoaded(Ruleset rules, ActorInfo ai)
4141
{

OpenRA.Game/Traits/Player/PlayerColorPalette.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
namespace OpenRA.Traits
1616
{
1717
[Desc("Add this to the Player actor definition.")]
18-
public class PlayerColorPaletteInfo : ITraitInfo
18+
public class PlayerColorPaletteInfo : TraitInfo
1919
{
2020
[PaletteReference]
2121
[Desc("The name of the palette to base off.")]
@@ -34,7 +34,7 @@ public class PlayerColorPaletteInfo : ITraitInfo
3434
[Desc("Allow palette modifiers to change the palette.")]
3535
public readonly bool AllowModifiers = true;
3636

37-
public object Create(ActorInitializer init) { return new PlayerColorPalette(this); }
37+
public override object Create(ActorInitializer init) { return new PlayerColorPalette(this); }
3838
}
3939

4040
public class PlayerColorPalette : ILoadsPlayerPalettes

OpenRA.Game/Traits/Player/PlayerHighlightPalette.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
namespace OpenRA.Traits
1717
{
1818
[Desc("Add this to the Player actor definition.")]
19-
public class PlayerHighlightPaletteInfo : ITraitInfo
19+
public class PlayerHighlightPaletteInfo : TraitInfo
2020
{
2121
[PaletteDefinition(true)]
2222
[Desc("The prefix for the resulting player palettes")]
@@ -25,7 +25,7 @@ public class PlayerHighlightPaletteInfo : ITraitInfo
2525
[Desc("Index set to be fully transparent/invisible.")]
2626
public readonly int TransparentIndex = 0;
2727

28-
public object Create(ActorInitializer init) { return new PlayerHighlightPalette(this); }
28+
public override object Create(ActorInitializer init) { return new PlayerHighlightPalette(this); }
2929
}
3030

3131
public class PlayerHighlightPalette : ILoadsPlayerPalettes

OpenRA.Game/Traits/Player/Shroud.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
namespace OpenRA.Traits
1616
{
1717
[Desc("Required for shroud and fog visibility checks. Add this to the player actor.")]
18-
public class ShroudInfo : ITraitInfo, ILobbyOptions
18+
public class ShroudInfo : TraitInfo, ILobbyOptions
1919
{
2020
[Translate]
2121
[Desc("Descriptive label for the fog checkbox in the lobby.")]
@@ -65,7 +65,7 @@ IEnumerable<LobbyOption> ILobbyOptions.LobbyOptions(Ruleset rules)
6565
FogCheckboxVisible, FogCheckboxDisplayOrder, FogCheckboxEnabled, FogCheckboxLocked);
6666
}
6767

68-
public object Create(ActorInitializer init) { return new Shroud(init.Self, this); }
68+
public override object Create(ActorInitializer init) { return new Shroud(init.Self, this); }
6969
}
7070

7171
public class Shroud : ISync, INotifyCreated, ITick

OpenRA.Game/Traits/TraitsInterfaces.cs

+12-4
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public enum BlockedByActor
4949
/// </summary>
5050
public sealed class DamageType { DamageType() { } }
5151

52-
public interface IHealthInfo : ITraitInfo
52+
public interface IHealthInfo : ITraitInfoInterface
5353
{
5454
int MaxHP { get; }
5555
}
@@ -324,9 +324,17 @@ public interface IFacing
324324
public interface IFacingInfo : ITraitInfoInterface { int GetInitialFacing(); }
325325

326326
public interface ITraitInfoInterface { }
327-
public interface ITraitInfo : ITraitInfoInterface { object Create(ActorInitializer init); }
328327

329-
public class TraitInfo<T> : ITraitInfo where T : new() { public virtual object Create(ActorInitializer init) { return new T(); } }
328+
public abstract class TraitInfo : ITraitInfoInterface
329+
{
330+
public abstract object Create(ActorInitializer init);
331+
}
332+
333+
public class TraitInfo<T> : TraitInfo where T : new()
334+
{
335+
public override object Create(ActorInitializer init) { return new T(); }
336+
}
337+
330338
public interface ILobbyCustomRulesIgnore { }
331339

332340
[SuppressMessage("StyleCop.CSharp.NamingRules", "SA1302:InterfaceNamesMustBeginWithI", Justification = "Not a real interface, but more like a tag.")]
@@ -541,7 +549,7 @@ public interface IUnlocksRenderPlayer { bool RenderPlayerUnlocked { get; } }
541549
public interface ICreationActivity { Activity GetCreationActivity(); }
542550

543551
[RequireExplicitImplementation]
544-
public interface IObservesVariablesInfo : ITraitInfo { }
552+
public interface IObservesVariablesInfo : ITraitInfoInterface { }
545553

546554
public delegate void VariableObserverNotifier(Actor self, IReadOnlyDictionary<string, int> variables);
547555
public struct VariableObserver

OpenRA.Game/Traits/World/ScreenMap.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ public struct ActorBoundsPair
3030
public override string ToString() { return "{0}->{1}".F(Actor.Info.Name, Bounds.GetType().Name); }
3131
}
3232

33-
public class ScreenMapInfo : ITraitInfo
33+
public class ScreenMapInfo : TraitInfo
3434
{
3535
[Desc("Size of partition bins (world pixels)")]
3636
public readonly int BinSize = 250;
3737

38-
public object Create(ActorInitializer init) { return new ScreenMap(init.World, this); }
38+
public override object Create(ActorInitializer init) { return new ScreenMap(init.World, this); }
3939
}
4040

4141
public class ScreenMap : IWorldLoaded

OpenRA.Game/Traits/World/ScreenShaker.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616

1717
namespace OpenRA.Traits
1818
{
19-
public class ScreenShakerInfo : ITraitInfo
19+
public class ScreenShakerInfo : TraitInfo
2020
{
2121
public readonly float2 MinMultiplier = new float2(-3, -3);
2222
public readonly float2 MaxMultiplier = new float2(3, 3);
2323

24-
public object Create(ActorInitializer init) { return new ScreenShaker(this); }
24+
public override object Create(ActorInitializer init) { return new ScreenShaker(this); }
2525
}
2626

2727
public class ScreenShaker : ITick, IWorldLoaded

OpenRA.Mods.Cnc/Traits/ConyardChronoReturn.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace OpenRA.Mods.Cnc.Traits
2323
[Desc("Implements the special case handling for the Chronoshiftable return on a construction yard.",
2424
"If ReturnOriginalActorOnCondition evaluates true and the actor is not being sold then OriginalActor will be returned to the origin.",
2525
"Otherwise, a vortex animation is played and damage is dealt each tick, ignoring modifiers.")]
26-
public class ConyardChronoReturnInfo : IObservesVariablesInfo, Requires<HealthInfo>, Requires<WithSpriteBodyInfo>
26+
public class ConyardChronoReturnInfo : TraitInfo, Requires<HealthInfo>, Requires<WithSpriteBodyInfo>, IObservesVariablesInfo
2727
{
2828
[SequenceReference]
2929
[Desc("Sequence name with the baked-in vortex animation")]
@@ -58,7 +58,7 @@ public class ConyardChronoReturnInfo : IObservesVariablesInfo, Requires<HealthIn
5858
[Desc("The color the bar of the 'return-to-origin' logic has.")]
5959
public readonly Color TimeBarColor = Color.White;
6060

61-
public object Create(ActorInitializer init) { return new ConyardChronoReturn(init, this); }
61+
public override object Create(ActorInitializer init) { return new ConyardChronoReturn(init, this); }
6262
}
6363

6464
public class ConyardChronoReturn : ITick, ISync, IObservesVariables, ISelectionBar, INotifySold,

OpenRA.Mods.Cnc/Traits/Disguise.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public enum RevealDisguiseType
7070
}
7171

7272
[Desc("Provides access to the disguise command, which makes the actor appear to be another player's actor.")]
73-
class DisguiseInfo : ITraitInfo
73+
class DisguiseInfo : TraitInfo
7474
{
7575
[VoiceReference]
7676
public readonly string Voice = "Action";
@@ -96,7 +96,7 @@ class DisguiseInfo : ITraitInfo
9696
[GrantedConditionReference]
9797
public IEnumerable<string> LinterConditions { get { return DisguisedAsConditions.Values; } }
9898

99-
public object Create(ActorInitializer init) { return new Disguise(init.Self, this); }
99+
public override object Create(ActorInitializer init) { return new Disguise(init.Self, this); }
100100
}
101101

102102
class Disguise : IEffectiveOwner, IIssueOrder, IResolveOrder, IOrderVoice, IRadarColorModifier, INotifyAttack,

OpenRA.Mods.Cnc/Traits/FrozenUnderFogUpdatedByGps.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ namespace OpenRA.Mods.Cnc.Traits
1919
using FrozenActorAction = Action<FrozenUnderFogUpdatedByGps, FrozenActorLayer, GpsWatcher, FrozenActor>;
2020

2121
[Desc("Updates frozen actors of actors that change owners, are sold or die whilst having an active GPS power.")]
22-
public class FrozenUnderFogUpdatedByGpsInfo : ITraitInfo, Requires<FrozenUnderFogInfo>
22+
public class FrozenUnderFogUpdatedByGpsInfo : TraitInfo, Requires<FrozenUnderFogInfo>
2323
{
24-
public object Create(ActorInitializer init) { return new FrozenUnderFogUpdatedByGps(init); }
24+
public override object Create(ActorInitializer init) { return new FrozenUnderFogUpdatedByGps(init); }
2525
}
2626

2727
public class FrozenUnderFogUpdatedByGps : INotifyOwnerChanged, INotifyActorDisposing, IOnGpsRefreshed

OpenRA.Mods.Cnc/Traits/GpsDot.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
namespace OpenRA.Mods.Cnc.Traits
1616
{
1717
[Desc("Show an indicator revealing the actor underneath the fog when a GPSWatcher is activated.")]
18-
class GpsDotInfo : ITraitInfo
18+
class GpsDotInfo : TraitInfo
1919
{
2020
[Desc("Sprite collection for symbols.")]
2121
public readonly string Image = "gpsdot";
@@ -27,7 +27,7 @@ class GpsDotInfo : ITraitInfo
2727
[PaletteReference(true)]
2828
public readonly string IndicatorPalettePrefix = "player";
2929

30-
public object Create(ActorInitializer init) { return new GpsDot(this); }
30+
public override object Create(ActorInitializer init) { return new GpsDot(this); }
3131
}
3232

3333
class GpsDot : INotifyCreated, INotifyAddedToWorld, INotifyRemovedFromWorld

OpenRA.Mods.Cnc/Traits/GpsWatcher.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
namespace OpenRA.Mods.Cnc.Traits
1818
{
1919
[Desc("Required for `GpsPower`. Attach this to the player actor.")]
20-
class GpsWatcherInfo : ITraitInfo
20+
class GpsWatcherInfo : TraitInfo
2121
{
22-
public object Create(ActorInitializer init) { return new GpsWatcher(init.Self.Owner); }
22+
public override object Create(ActorInitializer init) { return new GpsWatcher(init.Self.Owner); }
2323
}
2424

2525
interface IOnGpsRefreshed { void OnGpsRefresh(Actor self, Player player); }

OpenRA.Mods.Cnc/Traits/HarvesterHuskModifier.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414

1515
namespace OpenRA.Mods.Cnc.Traits
1616
{
17-
public class HarvesterHuskModifierInfo : ITraitInfo, Requires<HarvesterInfo>
17+
public class HarvesterHuskModifierInfo : TraitInfo, Requires<HarvesterInfo>
1818
{
1919
[ActorReference]
2020
public readonly string FullHuskActor = null;
2121
public readonly int FullnessThreshold = 50;
2222

23-
public object Create(ActorInitializer init) { return new HarvesterHuskModifier(this); }
23+
public override object Create(ActorInitializer init) { return new HarvesterHuskModifier(this); }
2424
}
2525

2626
public class HarvesterHuskModifier : IHuskModifier

OpenRA.Mods.Cnc/Traits/Infiltration/InfiltrateForCash.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
namespace OpenRA.Mods.Cnc.Traits
1919
{
2020
[Desc("Funds are transferred from the owner to the infiltrator.")]
21-
class InfiltrateForCashInfo : ITraitInfo
21+
class InfiltrateForCashInfo : TraitInfo
2222
{
2323
[Desc("The `TargetTypes` from `Targetable` that are allowed to enter.")]
2424
public readonly BitSet<TargetableType> Types = default(BitSet<TargetableType>);
@@ -44,7 +44,7 @@ class InfiltrateForCashInfo : ITraitInfo
4444
[Desc("Whether to show the cash tick indicators rising from the actor.")]
4545
public readonly bool ShowTicks = true;
4646

47-
public object Create(ActorInitializer init) { return new InfiltrateForCash(this); }
47+
public override object Create(ActorInitializer init) { return new InfiltrateForCash(this); }
4848
}
4949

5050
class InfiltrateForCash : INotifyInfiltrated

OpenRA.Mods.Cnc/Traits/Infiltration/InfiltrateForExploration.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
namespace OpenRA.Mods.Cnc.Traits
1818
{
1919
[Desc("Steal and reset the owner's exploration.")]
20-
class InfiltrateForExplorationInfo : ITraitInfo
20+
class InfiltrateForExplorationInfo : TraitInfo
2121
{
2222
[Desc("The `TargetTypes` from `Targetable` that are allowed to enter.")]
2323
public readonly BitSet<TargetableType> Types = default(BitSet<TargetableType>);
@@ -30,7 +30,7 @@ class InfiltrateForExplorationInfo : ITraitInfo
3030
[Desc("Sound the perpetrator will hear after successful infiltration.")]
3131
public readonly string InfiltrationNotification = null;
3232

33-
public object Create(ActorInitializer init) { return new InfiltrateForExploration(init.Self, this); }
33+
public override object Create(ActorInitializer init) { return new InfiltrateForExploration(init.Self, this); }
3434
}
3535

3636
class InfiltrateForExploration : INotifyInfiltrated

OpenRA.Mods.Cnc/Traits/Infiltration/InfiltrateForPowerOutage.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
namespace OpenRA.Mods.Cnc.Traits
1717
{
18-
class InfiltrateForPowerOutageInfo : ITraitInfo
18+
class InfiltrateForPowerOutageInfo : TraitInfo
1919
{
2020
[Desc("The `TargetTypes` from `Targetable` that are allowed to enter.")]
2121
public readonly BitSet<TargetableType> Types = default(BitSet<TargetableType>);
@@ -31,7 +31,7 @@ class InfiltrateForPowerOutageInfo : ITraitInfo
3131
[Desc("Sound the perpetrator will hear after successful infiltration.")]
3232
public readonly string InfiltrationNotification = null;
3333

34-
public object Create(ActorInitializer init) { return new InfiltrateForPowerOutage(init.Self, this); }
34+
public override object Create(ActorInitializer init) { return new InfiltrateForPowerOutage(init.Self, this); }
3535
}
3636

3737
class InfiltrateForPowerOutage : INotifyOwnerChanged, INotifyInfiltrated

0 commit comments

Comments
 (0)