2023-02-03 09:53:22 +00:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
2023-04-29 17:52:22 +00:00
|
|
|
using System;
|
2023-02-03 09:53:22 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
using Newtonsoft.Json;
|
2023-02-07 07:23:24 +00:00
|
|
|
using osu.Framework.Bindables;
|
2023-02-03 09:53:22 +00:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Testing;
|
|
|
|
using osu.Game.Screens.Edit;
|
|
|
|
using osu.Game.Skinning;
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.SkinEditor
|
|
|
|
{
|
|
|
|
public partial class SkinEditorChangeHandler : EditorChangeHandler
|
|
|
|
{
|
2023-02-15 07:28:42 +00:00
|
|
|
private readonly ISerialisableDrawableContainer? firstTarget;
|
2023-02-03 09:53:22 +00:00
|
|
|
|
2023-02-07 07:23:24 +00:00
|
|
|
// ReSharper disable once PrivateFieldCanBeConvertedToLocalVariable
|
2023-02-15 07:01:26 +00:00
|
|
|
private readonly BindableList<ISerialisableDrawable>? components;
|
2023-02-03 09:53:22 +00:00
|
|
|
|
|
|
|
public SkinEditorChangeHandler(Drawable targetScreen)
|
|
|
|
{
|
|
|
|
// To keep things simple, we are currently only handling the current target screen for undo / redo.
|
|
|
|
// In the future we'll want this to cover all changes, even to skin's `InstantiationInfo`.
|
|
|
|
// We'll also need to consider cases where multiple targets are on screen at the same time.
|
|
|
|
|
2023-02-15 07:28:42 +00:00
|
|
|
firstTarget = targetScreen.ChildrenOfType<ISerialisableDrawableContainer>().FirstOrDefault();
|
2023-02-03 09:53:22 +00:00
|
|
|
|
2023-02-07 07:23:24 +00:00
|
|
|
if (firstTarget == null)
|
|
|
|
return;
|
|
|
|
|
2023-02-15 07:01:26 +00:00
|
|
|
components = new BindableList<ISerialisableDrawable> { BindTarget = firstTarget.Components };
|
2023-02-07 07:23:24 +00:00
|
|
|
components.BindCollectionChanged((_, _) => SaveState());
|
2023-02-03 09:53:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void WriteCurrentStateToStream(MemoryStream stream)
|
|
|
|
{
|
|
|
|
if (firstTarget == null)
|
|
|
|
return;
|
|
|
|
|
2023-02-15 06:47:41 +00:00
|
|
|
var skinnableInfos = firstTarget.CreateSerialisedInfo().ToArray();
|
2023-02-03 09:53:22 +00:00
|
|
|
string json = JsonConvert.SerializeObject(skinnableInfos, new JsonSerializerSettings { Formatting = Formatting.Indented });
|
|
|
|
stream.Write(Encoding.UTF8.GetBytes(json));
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void ApplyStateChange(byte[] previousState, byte[] newState)
|
|
|
|
{
|
|
|
|
if (firstTarget == null)
|
|
|
|
return;
|
|
|
|
|
2023-02-15 06:47:41 +00:00
|
|
|
var deserializedContent = JsonConvert.DeserializeObject<IEnumerable<SerialisedDrawableInfo>>(Encoding.UTF8.GetString(newState));
|
2023-02-03 09:53:22 +00:00
|
|
|
|
|
|
|
if (deserializedContent == null)
|
|
|
|
return;
|
|
|
|
|
2023-04-29 17:52:22 +00:00
|
|
|
SerialisedDrawableInfo[] skinnableInfos = deserializedContent.ToArray();
|
|
|
|
ISerialisableDrawable[] targetComponents = firstTarget.Components.ToArray();
|
2023-02-03 09:53:22 +00:00
|
|
|
|
2023-04-29 17:52:22 +00:00
|
|
|
// Store indexes based on type for later lookup
|
|
|
|
|
|
|
|
var skinnableInfoIndexes = new Dictionary<Type, List<int>>();
|
|
|
|
var targetComponentsIndexes = new Dictionary<Type, List<int>>();
|
|
|
|
|
|
|
|
for (int i = 0; i < skinnableInfos.Length; i++)
|
|
|
|
{
|
|
|
|
Type lookup = skinnableInfos[i].Type;
|
|
|
|
|
|
|
|
if (!skinnableInfoIndexes.TryGetValue(lookup, out List<int>? infoIndexes))
|
|
|
|
skinnableInfoIndexes.Add(lookup, infoIndexes = new List<int>());
|
|
|
|
|
|
|
|
infoIndexes.Add(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < targetComponents.Length; i++)
|
|
|
|
{
|
|
|
|
Type lookup = targetComponents[i].GetType();
|
|
|
|
|
|
|
|
if (!targetComponentsIndexes.TryGetValue(lookup, out List<int>? componentIndexes))
|
|
|
|
targetComponentsIndexes.Add(lookup, componentIndexes = new List<int>());
|
|
|
|
|
|
|
|
componentIndexes.Add(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ((Type lookup, List<int> infoIndexes) in skinnableInfoIndexes)
|
2023-02-03 09:53:22 +00:00
|
|
|
{
|
2023-04-29 17:52:22 +00:00
|
|
|
if (!targetComponentsIndexes.TryGetValue(lookup, out List<int>? componentIndexes))
|
|
|
|
componentIndexes = new List<int>(0);
|
|
|
|
|
|
|
|
int j = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < infoIndexes.Count; i++)
|
|
|
|
{
|
|
|
|
if (i >= componentIndexes.Count)
|
|
|
|
// Add new component
|
|
|
|
firstTarget.Add((ISerialisableDrawable)skinnableInfos[infoIndexes[i]].CreateInstance());
|
|
|
|
else
|
|
|
|
// Modify existing component
|
|
|
|
((Drawable)targetComponents[componentIndexes[j++]]).ApplySerialisedInfo(skinnableInfos[infoIndexes[i]]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove extra components
|
|
|
|
for (; j < componentIndexes.Count; j++)
|
|
|
|
firstTarget.Remove(targetComponents[componentIndexes[j]], false);
|
2023-02-03 09:53:22 +00:00
|
|
|
}
|
2023-04-29 17:52:22 +00:00
|
|
|
|
|
|
|
foreach ((Type lookup, List<int> componentIndexes) in targetComponentsIndexes)
|
2023-02-03 09:53:22 +00:00
|
|
|
{
|
2023-04-29 17:52:22 +00:00
|
|
|
if (skinnableInfoIndexes.ContainsKey(lookup))
|
|
|
|
continue;
|
2023-02-03 09:53:22 +00:00
|
|
|
|
2023-04-29 17:52:22 +00:00
|
|
|
// Remove extra components that weren't removed above
|
|
|
|
for (int i = 0; i < componentIndexes.Count; i++)
|
|
|
|
firstTarget.Remove(targetComponents[componentIndexes[i]], false);
|
2023-02-03 09:53:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|