mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
30 lines
905 B
C#
30 lines
905 B
C#
using System.Linq;
|
|
using Alphaleonis.Win32.Filesystem;
|
|
|
|
namespace Wabbajack.Lib.CompilationSteps
|
|
{
|
|
class DirectMatch : ACompilationStep
|
|
{
|
|
public DirectMatch(Compiler compiler) : base(compiler)
|
|
{
|
|
}
|
|
|
|
public override Directive Run(RawSourceFile source)
|
|
{
|
|
if (!_compiler.IndexedFiles.TryGetValue(source.Hash, out var found)) return null;
|
|
var result = source.EvolveTo<FromArchive>();
|
|
|
|
var match = found.Where(f =>
|
|
Path.GetFileName(f.Paths[f.Paths.Length - 1]) == Path.GetFileName(source.Path))
|
|
.OrderBy(f => f.Paths.Length)
|
|
.FirstOrDefault()
|
|
?? found.OrderBy(f => f.Paths.Length).FirstOrDefault();
|
|
|
|
result.ArchiveHashPath = match.MakeRelativePaths();
|
|
|
|
return result;
|
|
|
|
}
|
|
}
|
|
}
|