mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
26 lines
769 B
C#
26 lines
769 B
C#
using System.Threading.Tasks;
|
|
using Alphaleonis.Win32.Filesystem;
|
|
using Newtonsoft.Json;
|
|
using Wabbajack.Common;
|
|
|
|
namespace Wabbajack.Lib.CompilationSteps
|
|
{
|
|
public class IncludeLootFiles : ACompilationStep
|
|
{
|
|
private readonly string _prefix;
|
|
|
|
public IncludeLootFiles(ACompiler compiler) : base(compiler)
|
|
{
|
|
_prefix = Consts.LOOTFolderFilesDir + "\\";
|
|
}
|
|
|
|
public override async ValueTask<Directive?> Run(RawSourceFile source)
|
|
{
|
|
if (!source.Path.StartsWith(_prefix)) return null;
|
|
var result = source.EvolveTo<InlineFile>();
|
|
result.SourceDataID = await _compiler.IncludeFile(await source.AbsolutePath.ReadAllBytesAsync());
|
|
return result;
|
|
}
|
|
}
|
|
}
|