2019-12-04 01:26:26 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2020-03-25 12:47:25 +00:00
|
|
|
|
using Wabbajack.Common;
|
2021-09-27 12:42:46 +00:00
|
|
|
|
using Wabbajack.DTOs;
|
|
|
|
|
using Wabbajack.DTOs.Directives;
|
|
|
|
|
using Wabbajack.Paths.IO;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
|
namespace Wabbajack.Compiler.CompilationSteps;
|
|
|
|
|
|
|
|
|
|
public class IncludeDummyESPs : ACompilationStep
|
2019-10-30 12:29:06 +00:00
|
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
|
public IncludeDummyESPs(ACompiler compiler) : base(compiler)
|
2019-10-30 12:29:06 +00:00
|
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
|
}
|
2019-10-30 12:29:06 +00:00
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
|
public override async ValueTask<Directive?> Run(RawSourceFile source)
|
|
|
|
|
{
|
|
|
|
|
if (source.AbsolutePath.Extension != Ext.Esp &&
|
|
|
|
|
source.AbsolutePath.Extension != Ext.Esm) return null;
|
2019-10-31 02:24:42 +00:00
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
|
var bsa = source.AbsolutePath.ReplaceExtension(Ext.Bsa);
|
|
|
|
|
var bsaTextures = source.AbsolutePath.AppendToName(" - Textures").ReplaceExtension(Ext.Bsa);
|
2019-10-31 02:24:42 +00:00
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
|
if (source.AbsolutePath.Size() > 250 || !bsa.FileExists() && !bsaTextures.FileExists()) return null;
|
2019-10-31 02:24:42 +00:00
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
|
var inline = source.EvolveTo<InlineFile>();
|
|
|
|
|
inline.SourceDataID = await _compiler.IncludeFile(await source.AbsolutePath.ReadAllBytesAsync());
|
|
|
|
|
return inline;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
}
|
2021-10-23 16:51:17 +00:00
|
|
|
|
}
|