mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
55 lines
1.4 KiB
C#
55 lines
1.4 KiB
C#
using System;
|
|
using System.Linq;
|
|
using Wabbajack.DTOs.Directives;
|
|
using Wabbajack.DTOs.JsonConverters;
|
|
|
|
namespace Wabbajack.DTOs;
|
|
|
|
[JsonName("Manifest")]
|
|
public class Manifest
|
|
{
|
|
public readonly string Author;
|
|
public readonly string Description;
|
|
public readonly long DownloadSize;
|
|
|
|
public readonly Game GameType;
|
|
public readonly long InstallSize;
|
|
public readonly string Name;
|
|
|
|
public readonly Version Version;
|
|
|
|
// Enum toString for better parsing in other software
|
|
public string GameName;
|
|
|
|
public bool IsNSFW;
|
|
|
|
public Manifest(ModList modlist)
|
|
{
|
|
Name = modlist.Name;
|
|
Version = modlist.Version;
|
|
Author = modlist.Author;
|
|
Description = modlist.Description;
|
|
|
|
GameType = modlist.GameType;
|
|
GameName = GameType.ToString();
|
|
|
|
DownloadSize = modlist.Archives.Sum(a => a.Size);
|
|
InstallSize = modlist.Directives.Sum(d => d.Size);
|
|
|
|
IsNSFW = modlist.IsNSFW;
|
|
|
|
// meta is being omitted due to it being useless and not very space friendly
|
|
Archives = modlist.Archives.Select(a => new Archive
|
|
{
|
|
State = a.State,
|
|
Hash = a.Hash,
|
|
Name = a.Name,
|
|
Size = a.Size
|
|
}).ToArray();
|
|
|
|
InlinedFiles = modlist.Directives.OfType<InlineFile>().ToArray();
|
|
}
|
|
|
|
public Archive[] Archives { get; set; }
|
|
public InlineFile[] InlinedFiles { get; set; }
|
|
} |