mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
55 lines
2.1 KiB
C#
55 lines
2.1 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Alphaleonis.Win32.Filesystem;
|
|
using Newtonsoft.Json;
|
|
using Wabbajack.Common;
|
|
|
|
namespace Wabbajack.Lib.CompilationSteps
|
|
{
|
|
public class IgnoreDisabledMods : ACompilationStep
|
|
{
|
|
private readonly IEnumerable<AbsolutePath> _allEnabledMods;
|
|
private readonly MO2Compiler _mo2Compiler;
|
|
|
|
public IgnoreDisabledMods(ACompiler compiler) : base(compiler)
|
|
{
|
|
_mo2Compiler = (MO2Compiler) compiler;
|
|
var alwaysEnabled = _mo2Compiler.ModInis.Where(f => HasFlagInNotes(f.Value, Consts.WABBAJACK_ALWAYS_ENABLE)).Select(f => f.Key).Distinct();
|
|
var alwaysDisabled = _mo2Compiler.ModInis
|
|
.Where(f => HasFlagInNotes(f.Value, Consts.WABBAJACK_ALWAYS_DISABLE)).Select(f => f.Key).Distinct();
|
|
|
|
_allEnabledMods = _mo2Compiler.SelectedProfiles
|
|
.SelectMany(p => _mo2Compiler.SourcePath.Combine("profiles", p, "modlist.txt").ReadAllLines())
|
|
.Where(line => line.StartsWith("+") || line.EndsWith("_separator"))
|
|
.Select(line => line.Substring(1).RelativeTo(_mo2Compiler.MO2ModsFolder))
|
|
.Concat(alwaysEnabled)
|
|
.Except(alwaysDisabled)
|
|
.ToList();
|
|
}
|
|
|
|
public override async ValueTask<Directive?> Run(RawSourceFile source)
|
|
{
|
|
if (!source.AbsolutePath.InFolder(_mo2Compiler.MO2ModsFolder)) return null;
|
|
if (_allEnabledMods.Any(mod => source.AbsolutePath.InFolder(mod)))
|
|
return null;
|
|
var r = source.EvolveTo<IgnoredDirectly>();
|
|
r.Reason = "Disabled Mod";
|
|
return r;
|
|
}
|
|
|
|
public static bool HasFlagInNotes(dynamic data, string flag)
|
|
{
|
|
if (data == null)
|
|
return false;
|
|
if (data.General != null && data.General.notes != null &&
|
|
data.General.notes.Contains(
|
|
flag))
|
|
return true;
|
|
|
|
return data.General != null && data.General.comments != null &&
|
|
data.General.comments.Contains(flag);
|
|
}
|
|
}
|
|
}
|