2019-12-04 01:26:26 +00:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Alphaleonis.Win32.Filesystem;
|
2019-10-31 02:24:42 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2020-03-25 12:47:25 +00:00
|
|
|
|
using Wabbajack.Common;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
|
|
|
|
|
namespace Wabbajack.Lib.CompilationSteps
|
|
|
|
|
{
|
|
|
|
|
public class IncludeDummyESPs : ACompilationStep
|
|
|
|
|
{
|
2019-11-03 16:45:49 +00:00
|
|
|
|
public IncludeDummyESPs(ACompiler compiler) : base(compiler)
|
2019-10-30 12:29:06 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-09 18:14:05 +00:00
|
|
|
|
public override async ValueTask<Directive?> Run(RawSourceFile source)
|
2019-10-30 12:29:06 +00:00
|
|
|
|
{
|
2020-03-25 12:47:25 +00:00
|
|
|
|
if (source.AbsolutePath.Extension != Consts.ESP &&
|
|
|
|
|
source.AbsolutePath.Extension != Consts.ESM) return null;
|
2019-10-31 02:24:42 +00:00
|
|
|
|
|
2020-03-25 12:47:25 +00:00
|
|
|
|
var bsa = source.AbsolutePath.ReplaceExtension(Consts.BSA);
|
2020-04-15 11:53:49 +00:00
|
|
|
|
var bsaTextures = source.AbsolutePath.AppendToName(" - Textures").ReplaceExtension(Consts.BSA);
|
2019-10-31 02:24:42 +00:00
|
|
|
|
|
2020-03-25 12:47:25 +00:00
|
|
|
|
if (source.AbsolutePath.Size > 250 || !bsa.IsFile && !bsaTextures.IsFile) return null;
|
2019-10-31 02:24:42 +00:00
|
|
|
|
|
2019-10-30 12:29:06 +00:00
|
|
|
|
var inline = source.EvolveTo<InlineFile>();
|
2020-03-25 12:47:25 +00:00
|
|
|
|
inline.SourceDataID = await _compiler.IncludeFile(await source.AbsolutePath.ReadAllBytesAsync());
|
2019-10-30 12:29:06 +00:00
|
|
|
|
return inline;
|
2019-10-31 02:24:42 +00:00
|
|
|
|
}
|
2019-10-30 12:29:06 +00:00
|
|
|
|
}
|
2019-12-04 01:26:26 +00:00
|
|
|
|
}
|