* most of the groups refactoring on client * register OnMethods for group stuff * start implementing client (still pretty broken) * finish implementing new api first iteration * idk rework everything for pair shit (still WIP); goal is to remove PairedClients and GroupPairClients from ApiController * move everything to PairManager, remove dictionaries from APiController * remove admin stuff from client, cleanup * adjust reconnection handling, add new settings, todo still to remove access from old stuff that's marked obsolete from config * add back adding servers, fix intro ui * fix obsolete calls * adjust config namespace * add UI for setting animation/sound permissions to syncshells * add ConfigurationService to hot reload config on change from external * move transient data cache to configuration * add deleting service to ui * fix saving of transient resources * fix group pair user assignments * halt scanner when penumbra inactive, add visible/online/offline split to individual pairs and tags * add presence to syncshell ui * move fullpause from config to server config * fixes in code style * more codestyle * show info icon on player in shells, don't show icon when no changes from default state are made, add online notifs * fixes to intro UI --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
65 lines
2.1 KiB
C#
65 lines
2.1 KiB
C#
using MareSynchronos.API.Data;
|
|
using MareSynchronos.API.Data.Enum;
|
|
using MareSynchronos.FileCache;
|
|
using Newtonsoft.Json;
|
|
using System.Text;
|
|
|
|
namespace MareSynchronos.Export;
|
|
|
|
public record MareCharaFileData
|
|
{
|
|
public string Description { get; set; } = string.Empty;
|
|
public string GlamourerData { get; set; } = string.Empty;
|
|
public string CustomizePlusData { get; set; } = string.Empty;
|
|
public string ManipulationData { get; set; } = string.Empty;
|
|
public List<FileData> Files { get; set; } = new();
|
|
public List<FileSwap> FileSwaps { get; set; } = new();
|
|
|
|
public MareCharaFileData() { }
|
|
public MareCharaFileData(FileCacheManager manager, string description, CharacterData dto)
|
|
{
|
|
Description = description;
|
|
|
|
if (dto.GlamourerData.TryGetValue(ObjectKind.Player, out var glamourerData))
|
|
{
|
|
GlamourerData = glamourerData;
|
|
}
|
|
|
|
CustomizePlusData = dto.CustomizePlusData;
|
|
ManipulationData = dto.ManipulationData;
|
|
|
|
if (dto.FileReplacements.TryGetValue(ObjectKind.Player, out var fileReplacements))
|
|
{
|
|
foreach (var file in fileReplacements)
|
|
{
|
|
if (!string.IsNullOrEmpty(file.FileSwapPath))
|
|
{
|
|
FileSwaps.Add(new FileSwap(file.GamePaths, file.FileSwapPath));
|
|
}
|
|
else
|
|
{
|
|
var filePath = manager.GetFileCacheByHash(file.Hash)?.ResolvedFilepath;
|
|
if (filePath != null)
|
|
{
|
|
Files.Add(new FileData(file.GamePaths, new FileInfo(filePath).Length));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public byte[] ToByteArray()
|
|
{
|
|
return Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(this));
|
|
}
|
|
|
|
public static MareCharaFileData FromByteArray(byte[] data)
|
|
{
|
|
return JsonConvert.DeserializeObject<MareCharaFileData>(Encoding.UTF8.GetString(data))!;
|
|
}
|
|
|
|
public record FileSwap(IEnumerable<string> GamePaths, string FileSwapPath);
|
|
|
|
public record FileData(IEnumerable<string> GamePaths, long Length);
|
|
}
|