mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
34 lines
819 B
C#
34 lines
819 B
C#
using Newtonsoft.Json;
|
|
using Wabbajack.Common;
|
|
|
|
namespace Wabbajack.Lib.CompilationSteps
|
|
{
|
|
public class DropAll : ACompilationStep
|
|
{
|
|
public DropAll(Compiler compiler) : base(compiler)
|
|
{
|
|
}
|
|
|
|
public override Directive Run(RawSourceFile source)
|
|
{
|
|
var result = source.EvolveTo<NoMatch>();
|
|
result.Reason = "No Match in Stack";
|
|
Utils.Log($"No match for: {source.Path}");
|
|
return result;
|
|
}
|
|
|
|
public override IState GetState()
|
|
{
|
|
return new State();
|
|
}
|
|
|
|
[JsonObject("DropAll")]
|
|
public class State : IState
|
|
{
|
|
public ICompilationStep CreateStep(Compiler compiler)
|
|
{
|
|
return new DropAll(compiler);
|
|
}
|
|
}
|
|
}
|
|
} |