2019-10-30 12:29:06 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2019-12-04 01:26:26 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2019-10-31 02:24:42 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
using Wabbajack.Common;
|
|
|
|
|
|
|
|
|
|
namespace Wabbajack.Lib.CompilationSteps
|
|
|
|
|
{
|
2019-10-31 02:24:42 +00:00
|
|
|
|
public class IgnoreWabbajackInstallCruft : ACompilationStep
|
2019-10-30 12:29:06 +00:00
|
|
|
|
{
|
|
|
|
|
private readonly HashSet<string> _cruftFiles;
|
|
|
|
|
|
2019-11-03 16:45:49 +00:00
|
|
|
|
public IgnoreWabbajackInstallCruft(ACompiler compiler) : base(compiler)
|
2019-10-31 02:24:42 +00:00
|
|
|
|
{
|
2019-10-30 12:29:06 +00:00
|
|
|
|
_cruftFiles = new HashSet<string>
|
|
|
|
|
{
|
2020-05-30 12:27:33 +00:00
|
|
|
|
"7z.dll", "7z.exe", "vfs_staged_files\\", "nexus.key_cache", "patch_cache\\"
|
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
|
|
|
|
{
|
|
|
|
|
if (!_cruftFiles.Any(f => source.Path.StartsWith(f))) return null;
|
|
|
|
|
var result = source.EvolveTo<IgnoredDirectly>();
|
|
|
|
|
result.Reason = "Wabbajack Cruft file";
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-12-04 01:26:26 +00:00
|
|
|
|
}
|