Created RunIfGame CompilationStep

This commit is contained in:
erri120 2019-11-09 19:27:35 +01:00 committed by Timothy Baldridge
parent a6016813f0
commit 791438eea6
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,46 @@
using System.Collections.Generic;
using Newtonsoft.Json;
using Wabbajack.Common;
namespace Wabbajack.Lib.CompilationSteps
{
public class RunIfGame : ACompilationStep
{
private readonly Game _game;
private readonly List<ICompilationStep> _microStack;
public RunIfGame(ACompiler compiler, Game game, List<ICompilationStep> microStack) : base(compiler)
{
_game = game;
_microStack = microStack;
}
public override Directive Run(RawSourceFile source)
{
return _compiler._vortexCompiler?.Game != _game ? null : _compiler._vortexCompiler.RunStack(_microStack, source);
}
public override IState GetState()
{
return new State(_game, _microStack);
}
[JsonArray("RunIfGame")]
public class State : IState
{
public State(Game game, List<ICompilationStep> microStack)
{
Game = game;
MicroStack = microStack;
}
public Game Game { get; set; }
public List<ICompilationStep> MicroStack { get; set; }
public ICompilationStep CreateStep(ACompiler compiler)
{
return new RunIfGame(compiler, Game, MicroStack);
}
}
}
}

View File

@ -93,6 +93,7 @@
<Compile Include="CompilationSteps\IncludeAll.cs" />
<Compile Include="CompilationSteps\IncludeAllConfigs.cs" />
<Compile Include="CompilationSteps\IncludeDummyESPs.cs" />
<Compile Include="CompilationSteps\RunIfGame.cs" />
<Compile Include="CompilationSteps\IncludeLootFiles.cs" />
<Compile Include="CompilationSteps\IncludeModIniData.cs" />
<Compile Include="CompilationSteps\IncludeOtherProfiles.cs" />