Move mod-level ActorInits out of the engine.
This commit is contained in:
@@ -11,7 +11,6 @@
|
|||||||
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using OpenRA.Primitives;
|
using OpenRA.Primitives;
|
||||||
using OpenRA.Traits;
|
|
||||||
|
|
||||||
namespace OpenRA
|
namespace OpenRA
|
||||||
{
|
{
|
||||||
@@ -48,14 +47,6 @@ namespace OpenRA
|
|||||||
T Value(World world);
|
T Value(World world);
|
||||||
}
|
}
|
||||||
|
|
||||||
public class FacingInit : IActorInit<int>
|
|
||||||
{
|
|
||||||
[FieldFromYamlKey] readonly int value = 128;
|
|
||||||
public FacingInit() { }
|
|
||||||
public FacingInit(int init) { value = init; }
|
|
||||||
public int Value(World world) { return value; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public class LocationInit : IActorInit<CPos>
|
public class LocationInit : IActorInit<CPos>
|
||||||
{
|
{
|
||||||
[FieldFromYamlKey] readonly CPos value = CPos.Zero;
|
[FieldFromYamlKey] readonly CPos value = CPos.Zero;
|
||||||
@@ -64,23 +55,6 @@ namespace OpenRA
|
|||||||
public CPos Value(World world) { return value; }
|
public CPos Value(World world) { return value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class SubCellInit : IActorInit<SubCell>
|
|
||||||
{
|
|
||||||
[FieldFromYamlKey] readonly int value = (int)SubCell.FullCell;
|
|
||||||
public SubCellInit() { }
|
|
||||||
public SubCellInit(int init) { value = init; }
|
|
||||||
public SubCellInit(SubCell init) { value = (int)init; }
|
|
||||||
public SubCell Value(World world) { return (SubCell)value; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public class CenterPositionInit : IActorInit<WPos>
|
|
||||||
{
|
|
||||||
[FieldFromYamlKey] readonly WPos value = WPos.Zero;
|
|
||||||
public CenterPositionInit() { }
|
|
||||||
public CenterPositionInit(WPos init) { value = init; }
|
|
||||||
public WPos Value(World world) { return value; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public class OwnerInit : IActorInit<Player>
|
public class OwnerInit : IActorInit<Player>
|
||||||
{
|
{
|
||||||
[FieldFromYamlKey] public readonly string PlayerName = "Neutral";
|
[FieldFromYamlKey] public readonly string PlayerName = "Neutral";
|
||||||
@@ -103,14 +77,4 @@ namespace OpenRA
|
|||||||
return world.Players.First(x => x.InternalName == PlayerName);
|
return world.Players.First(x => x.InternalName == PlayerName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Allows maps / transformations to specify the faction variant of an actor.
|
|
||||||
public class FactionInit : IActorInit<string>
|
|
||||||
{
|
|
||||||
[FieldFromYamlKey] public readonly string Faction;
|
|
||||||
|
|
||||||
public FactionInit() { }
|
|
||||||
public FactionInit(string faction) { Faction = faction; }
|
|
||||||
public string Value(World world) { return Faction; }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using OpenRA.Activities;
|
using OpenRA.Activities;
|
||||||
|
using OpenRA.Mods.Common;
|
||||||
using OpenRA.Mods.Common.Activities;
|
using OpenRA.Mods.Common.Activities;
|
||||||
using OpenRA.Mods.Common.Traits;
|
using OpenRA.Mods.Common.Traits;
|
||||||
using OpenRA.Primitives;
|
using OpenRA.Primitives;
|
||||||
|
|||||||
40
OpenRA.Mods.Common/ActorInitializer.cs
Normal file
40
OpenRA.Mods.Common/ActorInitializer.cs
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
using System;
|
||||||
|
using OpenRA.Traits;
|
||||||
|
|
||||||
|
namespace OpenRA.Mods.Common
|
||||||
|
{
|
||||||
|
public class FacingInit : IActorInit<int>
|
||||||
|
{
|
||||||
|
[FieldFromYamlKey] readonly int value = 128;
|
||||||
|
public FacingInit() { }
|
||||||
|
public FacingInit(int init) { value = init; }
|
||||||
|
public int Value(World world) { return value; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class SubCellInit : IActorInit<SubCell>
|
||||||
|
{
|
||||||
|
[FieldFromYamlKey] readonly int value = (int)SubCell.FullCell;
|
||||||
|
public SubCellInit() { }
|
||||||
|
public SubCellInit(int init) { value = init; }
|
||||||
|
public SubCellInit(SubCell init) { value = (int)init; }
|
||||||
|
public SubCell Value(World world) { return (SubCell)value; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class CenterPositionInit : IActorInit<WPos>
|
||||||
|
{
|
||||||
|
[FieldFromYamlKey] readonly WPos value = WPos.Zero;
|
||||||
|
public CenterPositionInit() { }
|
||||||
|
public CenterPositionInit(WPos init) { value = init; }
|
||||||
|
public WPos Value(World world) { return value; }
|
||||||
|
}
|
||||||
|
|
||||||
|
// Allows maps / transformations to specify the faction variant of an actor.
|
||||||
|
public class FactionInit : IActorInit<string>
|
||||||
|
{
|
||||||
|
[FieldFromYamlKey] public readonly string Faction;
|
||||||
|
|
||||||
|
public FactionInit() { }
|
||||||
|
public FactionInit(string faction) { Faction = faction; }
|
||||||
|
public string Value(World world) { return Faction; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -196,6 +196,7 @@
|
|||||||
<Compile Include="Lint\LintBuildablePrerequisites.cs" />
|
<Compile Include="Lint\LintBuildablePrerequisites.cs" />
|
||||||
<Compile Include="Lint\LintExts.cs" />
|
<Compile Include="Lint\LintExts.cs" />
|
||||||
<Compile Include="LoadScreens\ModChooserLoadScreen.cs" />
|
<Compile Include="LoadScreens\ModChooserLoadScreen.cs" />
|
||||||
|
<Compile Include="ActorInitializer.cs" />
|
||||||
<Compile Include="ShroudExts.cs" />
|
<Compile Include="ShroudExts.cs" />
|
||||||
<Compile Include="Orders\BeaconOrderGenerator.cs" />
|
<Compile Include="Orders\BeaconOrderGenerator.cs" />
|
||||||
<Compile Include="Orders\DeployOrderTargeter.cs" />
|
<Compile Include="Orders\DeployOrderTargeter.cs" />
|
||||||
|
|||||||
@@ -9,6 +9,7 @@
|
|||||||
*/
|
*/
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
using OpenRA.Mods.Common;
|
||||||
using OpenRA.Mods.Common.Activities;
|
using OpenRA.Mods.Common.Activities;
|
||||||
using OpenRA.Mods.Common.Traits;
|
using OpenRA.Mods.Common.Traits;
|
||||||
using OpenRA.Mods.D2k.Activities;
|
using OpenRA.Mods.D2k.Activities;
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ using System.Linq;
|
|||||||
using OpenRA.Effects;
|
using OpenRA.Effects;
|
||||||
using OpenRA.GameRules;
|
using OpenRA.GameRules;
|
||||||
using OpenRA.Graphics;
|
using OpenRA.Graphics;
|
||||||
|
using OpenRA.Mods.Common;
|
||||||
using OpenRA.Mods.Common.Graphics;
|
using OpenRA.Mods.Common.Graphics;
|
||||||
using OpenRA.Mods.Common.Traits;
|
using OpenRA.Mods.Common.Traits;
|
||||||
using OpenRA.Mods.Common.Traits.Render;
|
using OpenRA.Mods.Common.Traits.Render;
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using OpenRA.Mods.Common;
|
||||||
using OpenRA.Mods.Common.Traits;
|
using OpenRA.Mods.Common.Traits;
|
||||||
using OpenRA.Traits;
|
using OpenRA.Traits;
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using OpenRA.Mods.Common;
|
||||||
using OpenRA.Mods.Common.Activities;
|
using OpenRA.Mods.Common.Activities;
|
||||||
using OpenRA.Mods.Common.Effects;
|
using OpenRA.Mods.Common.Effects;
|
||||||
using OpenRA.Mods.Common.Traits;
|
using OpenRA.Mods.Common.Traits;
|
||||||
|
|||||||
@@ -15,9 +15,9 @@ using System.Drawing;
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using OpenRA.FileSystem;
|
using OpenRA.FileSystem;
|
||||||
|
using OpenRA.Mods.Common;
|
||||||
using OpenRA.Mods.Common.FileFormats;
|
using OpenRA.Mods.Common.FileFormats;
|
||||||
using OpenRA.Mods.Common.Traits;
|
using OpenRA.Mods.Common.Traits;
|
||||||
using OpenRA.Traits;
|
|
||||||
|
|
||||||
namespace OpenRA.Mods.TS.UtilityCommands
|
namespace OpenRA.Mods.TS.UtilityCommands
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user