2021-09-27 12:42:46 +00:00
|
|
|
using System.Linq;
|
2019-12-04 01:26:26 +00:00
|
|
|
using System.Threading.Tasks;
|
2021-09-27 12:42:46 +00:00
|
|
|
using Wabbajack.DTOs;
|
|
|
|
using Wabbajack.DTOs.Directives;
|
|
|
|
using Wabbajack.DTOs.DownloadStates;
|
|
|
|
using Wabbajack.VFS;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
namespace Wabbajack.Compiler.CompilationSteps;
|
|
|
|
|
|
|
|
public class DirectMatch : ACompilationStep
|
2019-10-30 12:29:06 +00:00
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
public DirectMatch(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 static int GetFilePriority(ACompiler compiler, VirtualFile file)
|
|
|
|
{
|
|
|
|
var archive = file.TopParent;
|
|
|
|
var adata = compiler.ArchivesByFullPath[archive.AbsoluteName];
|
|
|
|
if (adata.State is GameFileSource gs) return gs.Game == compiler._settings.Game ? 2 : 3;
|
|
|
|
return 1;
|
|
|
|
}
|
2020-06-20 23:10:43 +00:00
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
public override async ValueTask<Directive?> Run(RawSourceFile source)
|
|
|
|
{
|
|
|
|
if (!_compiler.IndexedFiles.TryGetValue(source.Hash, out var found)) return null;
|
|
|
|
var result = source.EvolveTo<FromArchive>();
|
2019-10-30 12:29:06 +00:00
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
var match = found.Where(f => f.Name.FileName == source.Path.FileName)
|
|
|
|
.OrderBy(f => GetFilePriority(_compiler, f))
|
|
|
|
.ThenBy(f => f.NestingFactor)
|
|
|
|
.FirstOrDefault()
|
|
|
|
?? found.OrderBy(f => f.NestingFactor).First();
|
2019-10-30 12:29:06 +00:00
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
result.ArchiveHashPath = match.MakeRelativePaths();
|
2019-10-30 12:29:06 +00:00
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
return result;
|
2019-10-30 12:29:06 +00:00
|
|
|
}
|
2021-09-27 12:42:46 +00:00
|
|
|
}
|