mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
301 lines
9.6 KiB
C#
301 lines
9.6 KiB
C#
using Dalamud.Utility;
|
|
using Newtonsoft.Json.Linq;
|
|
using OtterGui.Classes;
|
|
using Penumbra.Services;
|
|
|
|
namespace Penumbra.Mods.Manager;
|
|
|
|
[Flags]
|
|
public enum ModDataChangeType : ushort
|
|
{
|
|
None = 0x0000,
|
|
Name = 0x0001,
|
|
Author = 0x0002,
|
|
Description = 0x0004,
|
|
Version = 0x0008,
|
|
Website = 0x0010,
|
|
Deletion = 0x0020,
|
|
Migration = 0x0040,
|
|
ModTags = 0x0080,
|
|
ImportDate = 0x0100,
|
|
Favorite = 0x0200,
|
|
LocalTags = 0x0400,
|
|
Note = 0x0800,
|
|
}
|
|
|
|
public class ModDataEditor(SaveService saveService, CommunicatorService communicatorService)
|
|
{
|
|
/// <summary> Create the file containing the meta information about a mod from scratch. </summary>
|
|
public void CreateMeta(DirectoryInfo directory, string? name, string? author, string? description, string? version,
|
|
string? website)
|
|
{
|
|
var mod = new Mod(directory);
|
|
mod.Name = name.IsNullOrEmpty() ? mod.Name : new LowerString(name!);
|
|
mod.Author = author != null ? new LowerString(author) : mod.Author;
|
|
mod.Description = description ?? mod.Description;
|
|
mod.Version = version ?? mod.Version;
|
|
mod.Website = website ?? mod.Website;
|
|
saveService.ImmediateSave(new ModMeta(mod));
|
|
}
|
|
|
|
public ModDataChangeType LoadLocalData(Mod mod)
|
|
{
|
|
var dataFile = saveService.FileNames.LocalDataFile(mod);
|
|
|
|
var importDate = 0L;
|
|
var localTags = Enumerable.Empty<string>();
|
|
var favorite = false;
|
|
var note = string.Empty;
|
|
|
|
var save = true;
|
|
if (File.Exists(dataFile))
|
|
{
|
|
save = false;
|
|
try
|
|
{
|
|
var text = File.ReadAllText(dataFile);
|
|
var json = JObject.Parse(text);
|
|
|
|
importDate = json[nameof(Mod.ImportDate)]?.Value<long>() ?? importDate;
|
|
favorite = json[nameof(Mod.Favorite)]?.Value<bool>() ?? favorite;
|
|
note = json[nameof(Mod.Note)]?.Value<string>() ?? note;
|
|
localTags = json[nameof(Mod.LocalTags)]?.Values<string>().OfType<string>() ?? localTags;
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Penumbra.Log.Error($"Could not load local mod data:\n{e}");
|
|
}
|
|
}
|
|
|
|
if (importDate == 0)
|
|
importDate = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds();
|
|
|
|
ModDataChangeType changes = 0;
|
|
if (mod.ImportDate != importDate)
|
|
{
|
|
mod.ImportDate = importDate;
|
|
changes |= ModDataChangeType.ImportDate;
|
|
}
|
|
|
|
changes |= ModLocalData.UpdateTags(mod, null, localTags);
|
|
|
|
if (mod.Favorite != favorite)
|
|
{
|
|
mod.Favorite = favorite;
|
|
changes |= ModDataChangeType.Favorite;
|
|
}
|
|
|
|
if (mod.Note != note)
|
|
{
|
|
mod.Note = note;
|
|
changes |= ModDataChangeType.Note;
|
|
}
|
|
|
|
if (save)
|
|
saveService.QueueSave(new ModLocalData(mod));
|
|
|
|
return changes;
|
|
}
|
|
|
|
public ModDataChangeType LoadMeta(ModCreator creator, Mod mod)
|
|
{
|
|
var metaFile = saveService.FileNames.ModMetaPath(mod);
|
|
if (!File.Exists(metaFile))
|
|
{
|
|
Penumbra.Log.Debug($"No mod meta found for {mod.ModPath.Name}.");
|
|
return ModDataChangeType.Deletion;
|
|
}
|
|
|
|
try
|
|
{
|
|
var text = File.ReadAllText(metaFile);
|
|
var json = JObject.Parse(text);
|
|
|
|
var newName = json[nameof(Mod.Name)]?.Value<string>() ?? string.Empty;
|
|
var newAuthor = json[nameof(Mod.Author)]?.Value<string>() ?? string.Empty;
|
|
var newDescription = json[nameof(Mod.Description)]?.Value<string>() ?? string.Empty;
|
|
var newVersion = json[nameof(Mod.Version)]?.Value<string>() ?? string.Empty;
|
|
var newWebsite = json[nameof(Mod.Website)]?.Value<string>() ?? string.Empty;
|
|
var newFileVersion = json[nameof(ModMeta.FileVersion)]?.Value<uint>() ?? 0;
|
|
var importDate = json[nameof(Mod.ImportDate)]?.Value<long>();
|
|
var modTags = json[nameof(Mod.ModTags)]?.Values<string>().OfType<string>();
|
|
|
|
ModDataChangeType changes = 0;
|
|
if (mod.Name != newName)
|
|
{
|
|
changes |= ModDataChangeType.Name;
|
|
mod.Name = newName;
|
|
}
|
|
|
|
if (mod.Author != newAuthor)
|
|
{
|
|
changes |= ModDataChangeType.Author;
|
|
mod.Author = newAuthor;
|
|
}
|
|
|
|
if (mod.Description != newDescription)
|
|
{
|
|
changes |= ModDataChangeType.Description;
|
|
mod.Description = newDescription;
|
|
}
|
|
|
|
if (mod.Version != newVersion)
|
|
{
|
|
changes |= ModDataChangeType.Version;
|
|
mod.Version = newVersion;
|
|
}
|
|
|
|
if (mod.Website != newWebsite)
|
|
{
|
|
changes |= ModDataChangeType.Website;
|
|
mod.Website = newWebsite;
|
|
}
|
|
|
|
if (newFileVersion != ModMeta.FileVersion)
|
|
if (ModMigration.Migrate(creator, saveService, mod, json, ref newFileVersion))
|
|
{
|
|
changes |= ModDataChangeType.Migration;
|
|
saveService.ImmediateSave(new ModMeta(mod));
|
|
}
|
|
|
|
if (importDate != null && mod.ImportDate != importDate.Value)
|
|
{
|
|
mod.ImportDate = importDate.Value;
|
|
changes |= ModDataChangeType.ImportDate;
|
|
}
|
|
|
|
changes |= ModLocalData.UpdateTags(mod, modTags, null);
|
|
|
|
return changes;
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Penumbra.Log.Error($"Could not load mod meta for {metaFile}:\n{e}");
|
|
return ModDataChangeType.Deletion;
|
|
}
|
|
}
|
|
|
|
public void ChangeModName(Mod mod, string newName)
|
|
{
|
|
if (mod.Name.Text == newName)
|
|
return;
|
|
|
|
var oldName = mod.Name;
|
|
mod.Name = newName;
|
|
saveService.QueueSave(new ModMeta(mod));
|
|
communicatorService.ModDataChanged.Invoke(ModDataChangeType.Name, mod, oldName.Text);
|
|
}
|
|
|
|
public void ChangeModAuthor(Mod mod, string newAuthor)
|
|
{
|
|
if (mod.Author == newAuthor)
|
|
return;
|
|
|
|
mod.Author = newAuthor;
|
|
saveService.QueueSave(new ModMeta(mod));
|
|
communicatorService.ModDataChanged.Invoke(ModDataChangeType.Author, mod, null);
|
|
}
|
|
|
|
public void ChangeModDescription(Mod mod, string newDescription)
|
|
{
|
|
if (mod.Description == newDescription)
|
|
return;
|
|
|
|
mod.Description = newDescription;
|
|
saveService.QueueSave(new ModMeta(mod));
|
|
communicatorService.ModDataChanged.Invoke(ModDataChangeType.Description, mod, null);
|
|
}
|
|
|
|
public void ChangeModVersion(Mod mod, string newVersion)
|
|
{
|
|
if (mod.Version == newVersion)
|
|
return;
|
|
|
|
mod.Version = newVersion;
|
|
saveService.QueueSave(new ModMeta(mod));
|
|
communicatorService.ModDataChanged.Invoke(ModDataChangeType.Version, mod, null);
|
|
}
|
|
|
|
public void ChangeModWebsite(Mod mod, string newWebsite)
|
|
{
|
|
if (mod.Website == newWebsite)
|
|
return;
|
|
|
|
mod.Website = newWebsite;
|
|
saveService.QueueSave(new ModMeta(mod));
|
|
communicatorService.ModDataChanged.Invoke(ModDataChangeType.Website, mod, null);
|
|
}
|
|
|
|
public void ChangeModTag(Mod mod, int tagIdx, string newTag)
|
|
=> ChangeTag(mod, tagIdx, newTag, false);
|
|
|
|
public void ChangeLocalTag(Mod mod, int tagIdx, string newTag)
|
|
=> ChangeTag(mod, tagIdx, newTag, true);
|
|
|
|
public void ChangeModFavorite(Mod mod, bool state)
|
|
{
|
|
if (mod.Favorite == state)
|
|
return;
|
|
|
|
mod.Favorite = state;
|
|
saveService.QueueSave(new ModLocalData(mod));
|
|
;
|
|
communicatorService.ModDataChanged.Invoke(ModDataChangeType.Favorite, mod, null);
|
|
}
|
|
|
|
public void ChangeModNote(Mod mod, string newNote)
|
|
{
|
|
if (mod.Note == newNote)
|
|
return;
|
|
|
|
mod.Note = newNote;
|
|
saveService.QueueSave(new ModLocalData(mod));
|
|
;
|
|
communicatorService.ModDataChanged.Invoke(ModDataChangeType.Favorite, mod, null);
|
|
}
|
|
|
|
private void ChangeTag(Mod mod, int tagIdx, string newTag, bool local)
|
|
{
|
|
var which = local ? mod.LocalTags : mod.ModTags;
|
|
if (tagIdx < 0 || tagIdx > which.Count)
|
|
return;
|
|
|
|
ModDataChangeType flags = 0;
|
|
if (tagIdx == which.Count)
|
|
{
|
|
flags = ModLocalData.UpdateTags(mod, local ? null : which.Append(newTag), local ? which.Append(newTag) : null);
|
|
}
|
|
else
|
|
{
|
|
var tmp = which.ToArray();
|
|
tmp[tagIdx] = newTag;
|
|
flags = ModLocalData.UpdateTags(mod, local ? null : tmp, local ? tmp : null);
|
|
}
|
|
|
|
if (flags.HasFlag(ModDataChangeType.ModTags))
|
|
saveService.QueueSave(new ModMeta(mod));
|
|
|
|
if (flags.HasFlag(ModDataChangeType.LocalTags))
|
|
saveService.QueueSave(new ModLocalData(mod));
|
|
|
|
if (flags != 0)
|
|
communicatorService.ModDataChanged.Invoke(flags, mod, null);
|
|
}
|
|
|
|
public void MoveDataFile(DirectoryInfo oldMod, DirectoryInfo newMod)
|
|
{
|
|
var oldFile = saveService.FileNames.LocalDataFile(oldMod.Name);
|
|
var newFile = saveService.FileNames.LocalDataFile(newMod.Name);
|
|
if (!File.Exists(oldFile))
|
|
return;
|
|
|
|
try
|
|
{
|
|
File.Move(oldFile, newFile, true);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Penumbra.Log.Error($"Could not move local data file {oldFile} to {newFile}:\n{e}");
|
|
}
|
|
}
|
|
}
|