2019-10-30 12:29:06 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2019-12-04 01:26:26 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
using Alphaleonis.Win32.Filesystem;
|
|
|
|
|
using Compression.BSA;
|
2019-10-31 02:24:42 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
using Wabbajack.Common;
|
2019-12-04 04:12:08 +00:00
|
|
|
|
using Wabbajack.Common.StatusFeed.Errors;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
|
|
|
|
|
namespace Wabbajack.Lib.CompilationSteps
|
|
|
|
|
{
|
2019-10-31 02:24:42 +00:00
|
|
|
|
public class DeconstructBSAs : ACompilationStep
|
2019-10-30 12:29:06 +00:00
|
|
|
|
{
|
2019-11-21 15:51:57 +00:00
|
|
|
|
private readonly IEnumerable<string> _includeDirectly;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
private readonly List<ICompilationStep> _microstack;
|
|
|
|
|
private readonly List<ICompilationStep> _microstackWithInclude;
|
2019-11-18 00:17:06 +00:00
|
|
|
|
private readonly MO2Compiler _mo2Compiler;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
|
2019-11-03 16:45:49 +00:00
|
|
|
|
public DeconstructBSAs(ACompiler compiler) : base(compiler)
|
2019-10-30 12:29:06 +00:00
|
|
|
|
{
|
2019-11-18 00:17:06 +00:00
|
|
|
|
_mo2Compiler = (MO2Compiler) compiler;
|
2019-11-21 15:51:57 +00:00
|
|
|
|
_includeDirectly = _mo2Compiler.ModInis.Where(kv =>
|
2019-10-30 12:29:06 +00:00
|
|
|
|
{
|
|
|
|
|
var general = kv.Value.General;
|
|
|
|
|
if (general.notes != null && general.notes.Contains(Consts.WABBAJACK_INCLUDE)) return true;
|
|
|
|
|
if (general.comments != null && general.comments.Contains(Consts.WABBAJACK_INCLUDE)) return true;
|
|
|
|
|
return false;
|
|
|
|
|
})
|
|
|
|
|
.Select(kv => $"mods\\{kv.Key}\\")
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
_microstack = new List<ICompilationStep>
|
|
|
|
|
{
|
2019-11-11 20:03:27 +00:00
|
|
|
|
new DirectMatch(_mo2Compiler),
|
|
|
|
|
new IncludePatches(_mo2Compiler),
|
|
|
|
|
new DropAll(_mo2Compiler)
|
2019-10-30 12:29:06 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
_microstackWithInclude = new List<ICompilationStep>
|
|
|
|
|
{
|
2019-11-11 20:03:27 +00:00
|
|
|
|
new DirectMatch(_mo2Compiler),
|
|
|
|
|
new IncludePatches(_mo2Compiler),
|
|
|
|
|
new IncludeAll(_mo2Compiler)
|
2019-10-30 12:29:06 +00:00
|
|
|
|
};
|
2019-10-31 02:24:42 +00:00
|
|
|
|
}
|
2019-10-30 12:29:06 +00:00
|
|
|
|
|
2019-10-31 02:24:42 +00:00
|
|
|
|
public override IState GetState()
|
|
|
|
|
{
|
|
|
|
|
return new State();
|
2019-10-30 12:29:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-04 01:26:26 +00:00
|
|
|
|
public override async ValueTask<Directive> Run(RawSourceFile source)
|
2019-10-30 12:29:06 +00:00
|
|
|
|
{
|
|
|
|
|
if (!Consts.SupportedBSAs.Contains(Path.GetExtension(source.Path).ToLower())) return null;
|
|
|
|
|
|
|
|
|
|
var defaultInclude = false;
|
|
|
|
|
if (source.Path.StartsWith("mods"))
|
2019-11-21 15:51:57 +00:00
|
|
|
|
if (_includeDirectly.Any(path => source.Path.StartsWith(path)))
|
2019-10-30 12:29:06 +00:00
|
|
|
|
defaultInclude = true;
|
|
|
|
|
|
2019-11-21 15:51:57 +00:00
|
|
|
|
var sourceFiles = source.File.Children;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
|
|
|
|
|
var stack = defaultInclude ? _microstackWithInclude : _microstack;
|
|
|
|
|
|
|
|
|
|
var id = Guid.NewGuid().ToString();
|
|
|
|
|
|
2019-12-22 18:54:49 +00:00
|
|
|
|
var matches = await sourceFiles.PMap(_mo2Compiler.Queue, e => _mo2Compiler.RunStack(stack, new RawSourceFile(e, Path.Combine(Consts.BSACreationDir, id, e.Name))));
|
2019-10-30 12:29:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
foreach (var match in matches)
|
|
|
|
|
{
|
2019-10-31 02:24:42 +00:00
|
|
|
|
if (match is IgnoredDirectly)
|
2019-12-05 04:58:02 +00:00
|
|
|
|
Utils.ErrorThrow(new UnconvertedError($"File required for BSA {source.Path} creation doesn't exist: {match.To}"));
|
2019-11-11 20:03:27 +00:00
|
|
|
|
_mo2Compiler.ExtraFiles.Add(match);
|
2019-10-30 12:29:06 +00:00
|
|
|
|
}
|
2019-10-31 02:24:42 +00:00
|
|
|
|
|
2019-10-30 12:29:06 +00:00
|
|
|
|
CreateBSA directive;
|
2019-11-16 00:01:37 +00:00
|
|
|
|
using (var bsa = BSADispatch.OpenRead(source.AbsolutePath))
|
2019-10-30 12:29:06 +00:00
|
|
|
|
{
|
|
|
|
|
directive = new CreateBSA
|
|
|
|
|
{
|
|
|
|
|
To = source.Path,
|
|
|
|
|
TempID = id,
|
|
|
|
|
State = bsa.State,
|
|
|
|
|
FileStates = bsa.Files.Select(f => f.State).ToList()
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return directive;
|
|
|
|
|
}
|
2019-10-31 02:24:42 +00:00
|
|
|
|
|
|
|
|
|
[JsonObject("DeconstructBSAs")]
|
|
|
|
|
public class State : IState
|
|
|
|
|
{
|
2019-11-03 16:45:49 +00:00
|
|
|
|
public ICompilationStep CreateStep(ACompiler compiler)
|
2019-10-31 02:24:42 +00:00
|
|
|
|
{
|
|
|
|
|
return new DeconstructBSAs(compiler);
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-30 12:29:06 +00:00
|
|
|
|
}
|
2019-12-04 04:12:08 +00:00
|
|
|
|
}
|