Unstable 0.17.0.0
This commit is contained in:
@@ -0,0 +1,461 @@
|
||||
#nullable enable
|
||||
using Barotrauma.Extensions;
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Immutable;
|
||||
using System.Diagnostics;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using System.Xml.Linq;
|
||||
using Barotrauma.IO;
|
||||
using Barotrauma.Steam;
|
||||
using Microsoft.Xna.Framework;
|
||||
|
||||
namespace Barotrauma
|
||||
{
|
||||
public static partial class ContentPackageManager
|
||||
{
|
||||
public const string CopyIndicatorFileName = ".copying";
|
||||
public const string VanillaFileList = "Content/ContentPackages/Vanilla.xml";
|
||||
|
||||
public const string CorePackageElementName = "corepackage";
|
||||
public const string RegularPackagesElementName = "regularpackages";
|
||||
public const string RegularPackagesSubElementName = "package";
|
||||
|
||||
public static class EnabledPackages
|
||||
{
|
||||
public static CorePackage? Core { get; private set; } = null;
|
||||
|
||||
private static readonly List<RegularPackage> regular = new List<RegularPackage>();
|
||||
public static IReadOnlyList<RegularPackage> Regular => regular;
|
||||
|
||||
public static IEnumerable<ContentPackage> All =>
|
||||
Core != null
|
||||
? (Core as ContentPackage).ToEnumerable().CollectionConcat(Regular)
|
||||
: Enumerable.Empty<ContentPackage>();
|
||||
|
||||
private static class BackupPackages
|
||||
{
|
||||
public static CorePackage? Core;
|
||||
public static ImmutableArray<RegularPackage>? Regular;
|
||||
}
|
||||
|
||||
public static void SetCore(CorePackage newCore) => SetCoreEnumerable(newCore).Consume();
|
||||
|
||||
public static IEnumerable<LoadProgress> SetCoreEnumerable(CorePackage newCore)
|
||||
{
|
||||
var oldCore = Core;
|
||||
if (newCore == oldCore) { yield break; }
|
||||
Core?.UnloadPackage();
|
||||
Core = newCore;
|
||||
foreach (var p in newCore.LoadPackageEnumerable()) { yield return p; }
|
||||
ThrowIfDuplicates(All);
|
||||
yield return new LoadProgress(1.0f);
|
||||
}
|
||||
|
||||
public static void ReloadCore()
|
||||
{
|
||||
if (Core == null) { return; }
|
||||
Core.UnloadPackage();
|
||||
Core.LoadPackage();
|
||||
ThrowIfDuplicates(All);
|
||||
}
|
||||
|
||||
public static void EnableRegular(RegularPackage p)
|
||||
{
|
||||
if (regular.Contains(p)) { return; }
|
||||
|
||||
var newRegular = regular.ToList();
|
||||
newRegular.Add(p);
|
||||
SetRegular(newRegular);
|
||||
}
|
||||
|
||||
public static void SetRegular(IReadOnlyList<RegularPackage> newRegular)
|
||||
=> SetRegularEnumerable(newRegular).Consume();
|
||||
|
||||
public static IEnumerable<LoadProgress> SetRegularEnumerable(IReadOnlyList<RegularPackage> inNewRegular)
|
||||
{
|
||||
if (ReferenceEquals(inNewRegular, regular)) { yield break; }
|
||||
if (inNewRegular.SequenceEqual(regular)) { yield break; }
|
||||
ThrowIfDuplicates(inNewRegular);
|
||||
var newRegular = inNewRegular.ToList();
|
||||
IEnumerable<RegularPackage> toUnload = regular.Where(r => !newRegular.Contains(r));
|
||||
RegularPackage[] toLoad = newRegular.Where(r => !regular.Contains(r)).ToArray();
|
||||
toUnload.ForEach(r => r.UnloadPackage());
|
||||
|
||||
Range<float> loadingRange = new Range<float>(0.0f, 1.0f);
|
||||
|
||||
for (int i = 0; i < toLoad.Length; i++)
|
||||
{
|
||||
var package = toLoad[i];
|
||||
loadingRange = new Range<float>(i / (float)toLoad.Length, (i + 1) / (float)toLoad.Length);
|
||||
foreach (var progress in package.LoadPackageEnumerable())
|
||||
{
|
||||
if (progress.Exception != null)
|
||||
{
|
||||
//If an exception was thrown while loading this package, refuse to add it to the list of enabled packages
|
||||
newRegular.Remove(package);
|
||||
break;
|
||||
}
|
||||
yield return progress.Transform(loadingRange);
|
||||
}
|
||||
}
|
||||
regular.Clear(); regular.AddRange(newRegular);
|
||||
SortContent();
|
||||
yield return new LoadProgress(1.0f);
|
||||
}
|
||||
|
||||
public static void ThrowIfDuplicates(IEnumerable<ContentPackage> pkgs)
|
||||
{
|
||||
var contentPackages = pkgs as IList<ContentPackage> ?? pkgs.ToArray();
|
||||
if (contentPackages.Any(p1 => contentPackages.AtLeast(2, p2 => p1 == p2)))
|
||||
{
|
||||
throw new InvalidOperationException($"Input contains duplicate packages");
|
||||
}
|
||||
}
|
||||
|
||||
private class TypeComparer<T> : IEqualityComparer<T>
|
||||
{
|
||||
public bool Equals([AllowNull] T x, [AllowNull] T y)
|
||||
{
|
||||
if (x is null || y is null)
|
||||
{
|
||||
return x is null == y is null;
|
||||
}
|
||||
return x.GetType() == y.GetType();
|
||||
}
|
||||
|
||||
public int GetHashCode([DisallowNull] T obj)
|
||||
{
|
||||
return obj.GetType().GetHashCode();
|
||||
}
|
||||
}
|
||||
|
||||
public static void SortContent()
|
||||
{
|
||||
ThrowIfDuplicates(All);
|
||||
All
|
||||
.SelectMany(r => r.Files)
|
||||
.Distinct(new TypeComparer<ContentFile>())
|
||||
.ForEach(f => f.Sort());
|
||||
}
|
||||
|
||||
public static int IndexOf(ContentPackage contentPackage)
|
||||
{
|
||||
if (contentPackage is CorePackage core)
|
||||
{
|
||||
if (core == Core) { return 0; }
|
||||
return -1;
|
||||
}
|
||||
else if (contentPackage is RegularPackage reg)
|
||||
{
|
||||
return Regular.IndexOf(reg) + 1;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
public static void DisableRemovedMods()
|
||||
{
|
||||
if (Core != null && !ContentPackageManager.CorePackages.Contains(Core))
|
||||
{
|
||||
SetCore(ContentPackageManager.CorePackages.First());
|
||||
}
|
||||
SetRegular(Regular.Where(p => ContentPackageManager.RegularPackages.Contains(p)).ToArray());
|
||||
}
|
||||
|
||||
public static void BackUp()
|
||||
{
|
||||
if (BackupPackages.Core != null || BackupPackages.Regular != null)
|
||||
{
|
||||
throw new InvalidOperationException("Tried to back up enabled packages multiple times");
|
||||
}
|
||||
|
||||
BackupPackages.Core = Core;
|
||||
BackupPackages.Regular = Regular.ToImmutableArray();
|
||||
}
|
||||
|
||||
public static void Restore()
|
||||
{
|
||||
if (BackupPackages.Core == null || BackupPackages.Regular == null)
|
||||
{
|
||||
DebugConsole.AddWarning("Tried to restore enabled packages multiple times/without performing a backup");
|
||||
return;
|
||||
}
|
||||
|
||||
SetCore(BackupPackages.Core);
|
||||
SetRegular(BackupPackages.Regular);
|
||||
|
||||
BackupPackages.Core = null;
|
||||
BackupPackages.Regular = null;
|
||||
}
|
||||
}
|
||||
|
||||
public sealed partial class PackageSource : ICollection<ContentPackage>
|
||||
{
|
||||
private readonly Predicate<string>? skipPredicate;
|
||||
|
||||
public PackageSource(string dir, Predicate<string>? skipPredicate)
|
||||
{
|
||||
this.skipPredicate = skipPredicate;
|
||||
directory = dir;
|
||||
Directory.CreateDirectory(directory);
|
||||
}
|
||||
|
||||
public void SwapPackage(ContentPackage oldPackage, ContentPackage newPackage)
|
||||
{
|
||||
bool contains = false;
|
||||
if (oldPackage is CorePackage oldCore && corePackages.Contains(oldCore))
|
||||
{
|
||||
corePackages.Remove(oldCore);
|
||||
contains = true;
|
||||
}
|
||||
else if (oldPackage is RegularPackage oldRegular && regularPackages.Contains(oldRegular))
|
||||
{
|
||||
regularPackages.Remove(oldRegular);
|
||||
contains = true;
|
||||
}
|
||||
|
||||
if (contains)
|
||||
{
|
||||
if (newPackage is CorePackage newCore)
|
||||
{
|
||||
corePackages.Add(newCore);
|
||||
}
|
||||
else if (newPackage is RegularPackage newRegular)
|
||||
{
|
||||
regularPackages.Add(newRegular);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void Refresh()
|
||||
{
|
||||
//remove packages that have been deleted from the directory
|
||||
corePackages.RemoveWhere(p => !File.Exists(p.Path));
|
||||
regularPackages.RemoveWhere(p => !File.Exists(p.Path));
|
||||
|
||||
//load packages that have been added to the directory
|
||||
var subDirs = Directory.GetDirectories(directory);
|
||||
foreach (string subDir in subDirs)
|
||||
{
|
||||
var fileListPath = Path.Combine(subDir, ContentPackage.FileListFileName).CleanUpPathCrossPlatform();
|
||||
if (this.Any(p => p.Path.Equals(fileListPath, StringComparison.OrdinalIgnoreCase))) { continue; }
|
||||
if (File.Exists(fileListPath))
|
||||
{
|
||||
if (skipPredicate?.Invoke(fileListPath) is true) { continue; }
|
||||
|
||||
ContentPackage? newPackage = ContentPackage.TryLoad(fileListPath);
|
||||
if (newPackage is CorePackage corePackage)
|
||||
{
|
||||
corePackages.Add(corePackage);
|
||||
}
|
||||
else if (newPackage is RegularPackage regularPackage)
|
||||
{
|
||||
regularPackages.Add(regularPackage);
|
||||
}
|
||||
|
||||
if (!(newPackage is null))
|
||||
{
|
||||
Debug.WriteLine($"Loaded \"{newPackage.Name}\"");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private readonly string directory;
|
||||
private readonly HashSet<RegularPackage> regularPackages = new HashSet<RegularPackage>();
|
||||
public IEnumerable<RegularPackage> Regular => regularPackages;
|
||||
|
||||
private readonly HashSet<CorePackage> corePackages = new HashSet<CorePackage>();
|
||||
public IEnumerable<CorePackage> Core => corePackages;
|
||||
|
||||
public IEnumerator<ContentPackage> GetEnumerator()
|
||||
{
|
||||
foreach (var core in Core) { yield return core; }
|
||||
foreach (var regular in Regular) { yield return regular; }
|
||||
}
|
||||
|
||||
IEnumerator IEnumerable.GetEnumerator() => GetEnumerator();
|
||||
|
||||
void ICollection<ContentPackage>.Add(ContentPackage item) => throw new InvalidOperationException();
|
||||
|
||||
void ICollection<ContentPackage>.Clear() => throw new InvalidOperationException();
|
||||
|
||||
public bool Contains(ContentPackage item)
|
||||
=> item switch
|
||||
{
|
||||
CorePackage core => corePackages.Contains(core),
|
||||
RegularPackage regular => this.regularPackages.Contains(regular),
|
||||
_ => throw new ArgumentException($"Expected regular or core package, got {item.GetType().Name}")
|
||||
};
|
||||
|
||||
void ICollection<ContentPackage>.CopyTo(ContentPackage[] array, int arrayIndex)
|
||||
{
|
||||
foreach (var package in corePackages)
|
||||
{
|
||||
array[arrayIndex] = package;
|
||||
arrayIndex++;
|
||||
}
|
||||
|
||||
foreach (var package in regularPackages)
|
||||
{
|
||||
array[arrayIndex] = package;
|
||||
arrayIndex++;
|
||||
}
|
||||
}
|
||||
|
||||
bool ICollection<ContentPackage>.Remove(ContentPackage item) => throw new InvalidOperationException();
|
||||
|
||||
public int Count => corePackages.Count + regularPackages.Count;
|
||||
public bool IsReadOnly => true;
|
||||
}
|
||||
|
||||
public static readonly PackageSource LocalPackages = new PackageSource(ContentPackage.LocalModsDir, skipPredicate: null);
|
||||
public static readonly PackageSource WorkshopPackages = new PackageSource(ContentPackage.WorkshopModsDir, skipPredicate: SteamManager.Workshop.IsInstallingToPath);
|
||||
|
||||
public static CorePackage? VanillaCorePackage { get; private set; } = null;
|
||||
|
||||
public static IEnumerable<CorePackage> CorePackages
|
||||
=> (VanillaCorePackage is null
|
||||
? Enumerable.Empty<CorePackage>()
|
||||
: VanillaCorePackage.ToEnumerable())
|
||||
.CollectionConcat(LocalPackages.Core.CollectionConcat(WorkshopPackages.Core));
|
||||
|
||||
public static IEnumerable<RegularPackage> RegularPackages
|
||||
=> LocalPackages.Regular.CollectionConcat(WorkshopPackages.Regular);
|
||||
|
||||
public static IEnumerable<ContentPackage> AllPackages
|
||||
=> LocalPackages.CollectionConcat(WorkshopPackages);
|
||||
|
||||
public static void UpdateContentPackageList()
|
||||
{
|
||||
LocalPackages.Refresh();
|
||||
WorkshopPackages.Refresh();
|
||||
EnabledPackages.DisableRemovedMods();
|
||||
}
|
||||
|
||||
public static ContentPackage? ReloadContentPackage(ContentPackage p)
|
||||
{
|
||||
ContentPackage? newPackage = ContentPackage.TryLoad(p.Path);
|
||||
if (newPackage is CorePackage core)
|
||||
{
|
||||
if (EnabledPackages.Core == p) { EnabledPackages.SetCore(core); }
|
||||
}
|
||||
else if (newPackage is RegularPackage regular)
|
||||
{
|
||||
int index = EnabledPackages.Regular.IndexOf(p);
|
||||
if (index >= 0)
|
||||
{
|
||||
var newRegular = EnabledPackages.Regular.ToArray();
|
||||
newRegular[index] = regular;
|
||||
EnabledPackages.SetRegular(newRegular);
|
||||
}
|
||||
}
|
||||
|
||||
if (newPackage != null)
|
||||
{
|
||||
LocalPackages.SwapPackage(p, newPackage);
|
||||
WorkshopPackages.SwapPackage(p, newPackage);
|
||||
}
|
||||
EnabledPackages.DisableRemovedMods();
|
||||
return newPackage;
|
||||
}
|
||||
|
||||
public readonly struct LoadProgress
|
||||
{
|
||||
public readonly float Value;
|
||||
public readonly Exception? Exception;
|
||||
|
||||
public LoadProgress(float value)
|
||||
{
|
||||
Value = value;
|
||||
Exception = null;
|
||||
}
|
||||
|
||||
private LoadProgress(Exception exception)
|
||||
{
|
||||
Value = -1f;
|
||||
Exception = exception;
|
||||
}
|
||||
|
||||
public static LoadProgress Failure(Exception exception)
|
||||
=> new LoadProgress(exception);
|
||||
|
||||
public LoadProgress Transform(Range<float> range)
|
||||
=> Exception != null
|
||||
? this
|
||||
: new LoadProgress(MathHelper.Lerp(range.Start, range.End, Value));
|
||||
}
|
||||
|
||||
public static void LoadVanillaFileList()
|
||||
{
|
||||
VanillaCorePackage = new CorePackage(XDocument.Load(VanillaFileList), VanillaFileList);
|
||||
}
|
||||
|
||||
public static IEnumerable<LoadProgress> Init()
|
||||
{
|
||||
Range<float> loadingRange = new Range<float>(0.0f, 1.0f);
|
||||
|
||||
SteamManager.Workshop.DeleteFailedCopies();
|
||||
UpdateContentPackageList();
|
||||
|
||||
if (VanillaCorePackage is null) { LoadVanillaFileList(); }
|
||||
|
||||
CorePackage enabledCorePackage = VanillaCorePackage!;
|
||||
List<RegularPackage> enabledRegularPackages = new List<RegularPackage>();
|
||||
|
||||
#if CLIENT
|
||||
TaskPool.Add("EnqueueWorkshopUpdates", EnqueueWorkshopUpdates(), t => { });
|
||||
#else
|
||||
#warning TODO: implement Workshop updates for servers at some point
|
||||
#endif
|
||||
|
||||
var contentPackagesElement = XMLExtensions.TryLoadXml(GameSettings.PlayerConfigPath)?.Root
|
||||
?.GetChildElement("ContentPackages");
|
||||
if (contentPackagesElement != null)
|
||||
{
|
||||
T? findPackage<T>(IEnumerable<T> packages, XElement? elem) where T : ContentPackage
|
||||
{
|
||||
if (elem is null) { return null; }
|
||||
string name = elem.GetAttributeString("name", "");
|
||||
string path = elem.GetAttributeStringUnrestricted("path", "").CleanUpPathCrossPlatform(correctFilenameCase: false);
|
||||
return
|
||||
packages.FirstOrDefault(p => p.Path.Equals(path, StringComparison.OrdinalIgnoreCase))
|
||||
?? packages.FirstOrDefault(p => p.NameMatches(name));
|
||||
}
|
||||
|
||||
var corePackageElement = contentPackagesElement.GetChildElement(CorePackageElementName);
|
||||
enabledCorePackage = findPackage(CorePackages, corePackageElement) ?? VanillaCorePackage!;
|
||||
|
||||
var regularPackagesElement = contentPackagesElement.GetChildElement(RegularPackagesElementName);
|
||||
if (regularPackagesElement != null)
|
||||
{
|
||||
XElement[] regularPackageElements = regularPackagesElement.GetChildElements(RegularPackagesSubElementName).ToArray();
|
||||
for (int i = 0; i < regularPackageElements.Length; i++)
|
||||
{
|
||||
var regularPackage = findPackage(RegularPackages, regularPackageElements[i]);
|
||||
if (regularPackage != null) { enabledRegularPackages.Add(regularPackage); }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int pkgCount = 1 + enabledRegularPackages.Count; //core + regular
|
||||
|
||||
loadingRange = new Range<float>(0.01f, 1.0f / pkgCount);
|
||||
foreach (var p in EnabledPackages.SetCoreEnumerable(enabledCorePackage))
|
||||
{
|
||||
yield return p.Transform(loadingRange);
|
||||
}
|
||||
|
||||
loadingRange = new Range<float>(1.0f / pkgCount, 1.0f);
|
||||
foreach (var p in EnabledPackages.SetRegularEnumerable(enabledRegularPackages))
|
||||
{
|
||||
yield return p.Transform(loadingRange);
|
||||
}
|
||||
|
||||
yield return new LoadProgress(1.0f);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user