using System.Linq; using Alphaleonis.Win32.Filesystem; using Newtonsoft.Json; namespace Wabbajack.Lib.CompilationSteps { public class DirectMatch : ACompilationStep { public DirectMatch(ACompiler compiler) : base(compiler) { } public override Directive Run(RawSourceFile source) { if (!_compiler.IndexedFiles.TryGetValue(source.Hash, out var found)) return null; var result = source.EvolveTo(); 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; } public override IState GetState() { return new State(); } [JsonObject("DirectMatch")] public class State : IState { public ICompilationStep CreateStep(ACompiler compiler) { return new DirectMatch(compiler); } } } }