mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
33 lines
841 B
C#
33 lines
841 B
C#
using Alphaleonis.Win32.Filesystem;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Wabbajack.Lib.CompilationSteps
|
|
{
|
|
public class IncludeAll : ACompilationStep
|
|
{
|
|
public IncludeAll(ACompiler compiler) : base(compiler)
|
|
{
|
|
}
|
|
|
|
public override Directive Run(RawSourceFile source)
|
|
{
|
|
var inline = source.EvolveTo<InlineFile>();
|
|
inline.SourceDataID = _compiler.IncludeFile(File.ReadAllBytes(source.AbsolutePath));
|
|
return inline;
|
|
}
|
|
|
|
public override IState GetState()
|
|
{
|
|
return new State();
|
|
}
|
|
|
|
[JsonObject("IncludeAll")]
|
|
public class State : IState
|
|
{
|
|
public ICompilationStep CreateStep(ACompiler compiler)
|
|
{
|
|
return new IncludeAll(compiler);
|
|
}
|
|
}
|
|
}
|
|
} |