wabbajack/Wabbajack.Lib/Data.cs

264 lines
5.9 KiB
C#
Raw Normal View History

using System;
2019-07-21 04:40:54 +00:00
using System.Collections.Generic;
using Ceras;
2019-10-11 23:31:36 +00:00
using Compression.BSA;
using VFS;
using Wabbajack.Common;
using Wabbajack.Lib.Downloaders;
2019-07-21 04:40:54 +00:00
namespace Wabbajack.Lib
2019-07-21 04:40:54 +00:00
{
2019-09-14 04:35:42 +00:00
public class RawSourceFile
2019-07-21 04:40:54 +00:00
{
2019-09-14 04:35:42 +00:00
public string Path;
public RawSourceFile(VirtualFile file)
{
File = file;
}
2019-07-21 04:40:54 +00:00
2019-09-14 04:35:42 +00:00
public string AbsolutePath => File.StagedPath;
2019-09-14 04:35:42 +00:00
public VirtualFile File { get; }
2019-09-14 04:35:42 +00:00
public string Hash => File.Hash;
2019-07-21 04:40:54 +00:00
public T EvolveTo<T>() where T : Directive, new()
{
var v = new T();
v.To = Path;
v.Hash = Hash;
v.Size = File.Size;
2019-07-21 04:40:54 +00:00
return v;
}
}
public class ModList
{
/// <summary>
2019-09-14 04:35:42 +00:00
/// Archives required by this modlist
2019-07-21 04:40:54 +00:00
/// </summary>
2019-09-14 04:35:42 +00:00
public List<Archive> Archives;
2019-07-21 04:40:54 +00:00
/// <summary>
/// The game variant to which this game applies
/// </summary>
public Game GameType;
/// <summary>
/// The build version of Wabbajack used when compiling the Modlist
/// </summary>
2019-10-23 17:00:45 +00:00
public string WabbajackVersion;
2019-07-21 04:40:54 +00:00
/// <summary>
2019-09-14 04:35:42 +00:00
/// Install directives
2019-07-21 04:40:54 +00:00
/// </summary>
public List<Directive> Directives;
/// <summary>
2019-09-14 04:35:42 +00:00
/// Name of the ModList
2019-07-21 04:40:54 +00:00
/// </summary>
2019-09-14 04:35:42 +00:00
public string Name;
2019-08-30 23:57:56 +00:00
2019-10-07 14:43:46 +00:00
/// <summary>
/// Author of the ModList
/// </summary>
public string Author;
/// <summary>
/// Description of the ModList
/// </summary>
public string Description;
/// <summary>
2019-10-11 12:56:55 +00:00
/// Hash of the banner-image
2019-10-07 14:43:46 +00:00
/// </summary>
public string Image;
/// <summary>
/// Website of the ModList
/// </summary>
public string Website;
2019-10-11 12:56:55 +00:00
/// <summary>
/// Hash of the readme
/// </summary>
public string Readme;
2019-08-30 23:57:56 +00:00
/// <summary>
2019-09-14 04:35:42 +00:00
/// Content Report in HTML form
2019-08-30 23:57:56 +00:00
/// </summary>
public string ReportHTML;
2019-07-21 04:40:54 +00:00
}
public class Directive
{
/// <summary>
2019-09-14 04:35:42 +00:00
/// location the file will be copied to, relative to the install path.
2019-07-21 04:40:54 +00:00
/// </summary>
public string To;
public long Size;
public string Hash;
2019-07-21 04:40:54 +00:00
}
public class IgnoredDirectly : Directive
{
public string Reason;
}
public class NoMatch : IgnoredDirectly
{
}
public class InlineFile : Directive
{
/// <summary>
2019-09-14 04:35:42 +00:00
/// Data that will be written as-is to the destination location;
2019-07-21 04:40:54 +00:00
/// </summary>
public string SourceDataID;
2019-07-21 04:40:54 +00:00
}
public class ArchiveMeta : Directive
{
public string SourceDataID;
}
2019-10-11 12:56:55 +00:00
public enum PropertyType { Banner, Readme }
2019-10-11 11:09:34 +00:00
/// <summary>
/// File meant to be extracted before the installation
/// </summary>
public class PropertyFile : InlineFile
{
public PropertyType Type;
}
2019-08-25 03:46:32 +00:00
public class CleanedESM : InlineFile
{
public string SourceESMHash;
}
2019-08-24 23:20:54 +00:00
/// <summary>
2019-09-14 04:35:42 +00:00
/// A file that has the game and MO2 folders remapped on installation
2019-08-24 23:20:54 +00:00
/// </summary>
public class RemappedInlineFile : InlineFile
{
}
[MemberConfig(TargetMember.All)]
2019-07-21 04:40:54 +00:00
public class FromArchive : Directive
{
2019-09-14 04:35:42 +00:00
private string _fullPath;
2019-07-21 04:40:54 +00:00
/// <summary>
2019-09-14 04:35:42 +00:00
/// MurMur3 hash of the archive this file comes from
2019-07-21 04:40:54 +00:00
/// </summary>
public string[] ArchiveHashPath;
[Exclude]
public VirtualFile FromFile;
[Exclude]
public string FullPath
{
get
{
2019-09-14 04:35:42 +00:00
if (_fullPath == null) _fullPath = string.Join("|", ArchiveHashPath);
return _fullPath;
}
}
2019-07-21 04:40:54 +00:00
}
2019-07-26 20:59:14 +00:00
public class CreateBSA : Directive
{
2019-09-14 04:35:42 +00:00
public string TempID;
public uint Type;
2019-10-11 23:31:36 +00:00
public ArchiveStateObject State { get; set; }
public List<FileStateObject> FileStates { get; set; }
2019-07-26 20:59:14 +00:00
}
2019-07-21 22:47:17 +00:00
public class PatchedFromArchive : FromArchive
2019-07-21 04:40:54 +00:00
{
/// <summary>
2019-09-14 04:35:42 +00:00
/// The file to apply to the source file to patch it
2019-07-21 04:40:54 +00:00
/// </summary>
2019-10-16 21:36:14 +00:00
public string PatchID;
2019-07-21 04:40:54 +00:00
}
2019-09-23 21:37:10 +00:00
public class SourcePatch
{
public string RelativePath;
public string Hash;
}
public class MergedPatch : Directive
{
public List<SourcePatch> Sources;
public string PatchID;
2019-09-23 21:37:10 +00:00
}
2019-07-21 04:40:54 +00:00
public class Archive
{
/// <summary>
2019-09-14 04:35:42 +00:00
/// MurMur3 Hash of the archive
2019-07-21 04:40:54 +00:00
/// </summary>
public string Hash;
2019-07-21 22:47:17 +00:00
/// Meta INI for the downloaded archive
/// </summary>
public string Meta;
2019-09-14 04:35:42 +00:00
/// <summary>
/// Human friendly name of this archive
/// </summary>
public string Name;
public long Size;
public AbstractDownloadState State { get; set; }
}
public class IndexedArchive
2019-07-21 04:40:54 +00:00
{
public dynamic IniData;
2019-07-21 22:47:17 +00:00
public string Meta;
2019-09-14 04:35:42 +00:00
public string Name;
public VirtualFile File { get; internal set; }
2019-07-21 04:40:54 +00:00
}
/// <summary>
2019-09-14 04:35:42 +00:00
/// A archive entry
2019-07-21 04:40:54 +00:00
/// </summary>
public class IndexedEntry
{
/// <summary>
2019-09-14 04:35:42 +00:00
/// MurMur3 hash of this file
2019-07-21 04:40:54 +00:00
/// </summary>
2019-09-14 04:35:42 +00:00
public string Hash;
2019-07-21 04:40:54 +00:00
/// <summary>
2019-09-14 04:35:42 +00:00
/// Path in the archive to this file
2019-07-21 04:40:54 +00:00
/// </summary>
2019-09-14 04:35:42 +00:00
public string Path;
2019-07-21 04:40:54 +00:00
/// <summary>
2019-09-14 04:35:42 +00:00
/// Size of the file (uncompressed)
2019-07-21 04:40:54 +00:00
/// </summary>
public long Size;
}
public class IndexedArchiveEntry : IndexedEntry
{
public string[] HashPath;
}
2019-07-21 04:40:54 +00:00
/// <summary>
2019-09-14 04:35:42 +00:00
/// Data found inside a BSA file in an archive
2019-07-21 04:40:54 +00:00
/// </summary>
public class BSAIndexedEntry : IndexedEntry
{
/// <summary>
2019-09-14 04:35:42 +00:00
/// MurMur3 hash of the BSA this file comes from
2019-07-21 04:40:54 +00:00
/// </summary>
public string BSAHash;
}
2019-09-14 04:35:42 +00:00
}