2021-04-29 16:20:22 +08: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.
|
|
|
|
|
2022-03-11 22:08:40 +08:00
|
|
|
using System.Diagnostics;
|
2021-09-29 17:50:55 +08:00
|
|
|
using JetBrains.Annotations;
|
2021-04-29 16:20:22 +08:00
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2022-03-02 19:04:53 +08:00
|
|
|
using osu.Framework.Graphics.Primitives;
|
2021-04-29 16:20:22 +08:00
|
|
|
using osu.Framework.Input.Bindings;
|
2021-09-16 17:26:12 +08:00
|
|
|
using osu.Framework.Input.Events;
|
2022-03-11 22:08:40 +08:00
|
|
|
using osu.Framework.Screens;
|
2021-04-29 16:20:22 +08:00
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
using osu.Game.Input.Bindings;
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning.Editor
|
|
|
|
{
|
|
|
|
/// <summary>
|
2021-05-03 13:58:23 +08:00
|
|
|
/// A container which handles loading a skin editor on user request for a specified target.
|
|
|
|
/// This also handles the scaling / positioning adjustment of the target.
|
2021-04-29 16:20:22 +08:00
|
|
|
/// </summary>
|
2021-05-03 13:58:23 +08:00
|
|
|
public class SkinEditorOverlay : CompositeDrawable, IKeyBindingHandler<GlobalAction>
|
2021-04-29 16:20:22 +08:00
|
|
|
{
|
|
|
|
private readonly ScalingContainer target;
|
2021-09-29 17:50:55 +08:00
|
|
|
|
|
|
|
[CanBeNull]
|
2021-04-29 16:20:22 +08:00
|
|
|
private SkinEditor skinEditor;
|
|
|
|
|
2021-04-30 11:35:58 +08:00
|
|
|
public const float VISIBLE_TARGET_SCALE = 0.8f;
|
2021-04-29 16:20:22 +08:00
|
|
|
|
2021-05-03 13:58:23 +08:00
|
|
|
public SkinEditorOverlay(ScalingContainer target)
|
2021-04-29 16:20:22 +08:00
|
|
|
{
|
|
|
|
this.target = target;
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
}
|
|
|
|
|
2021-09-16 17:26:12 +08:00
|
|
|
public bool OnPressed(KeyBindingPressEvent<GlobalAction> e)
|
2021-04-29 16:20:22 +08:00
|
|
|
{
|
2021-09-16 17:26:12 +08:00
|
|
|
switch (e.Action)
|
2021-04-29 16:20:22 +08:00
|
|
|
{
|
2021-04-29 16:40:58 +08:00
|
|
|
case GlobalAction.Back:
|
2021-07-22 14:59:00 +08:00
|
|
|
if (skinEditor?.State.Value != Visibility.Visible)
|
|
|
|
break;
|
|
|
|
|
|
|
|
Hide();
|
2021-07-20 18:36:12 +08:00
|
|
|
return true;
|
2021-04-29 16:40:58 +08:00
|
|
|
|
2021-04-29 16:20:22 +08:00
|
|
|
case GlobalAction.ToggleSkinEditor:
|
2021-07-20 18:36:12 +08:00
|
|
|
Toggle();
|
2021-04-29 16:20:22 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-07-20 18:36:12 +08:00
|
|
|
public void Toggle()
|
|
|
|
{
|
|
|
|
if (skinEditor == null)
|
|
|
|
Show();
|
|
|
|
else
|
|
|
|
skinEditor.ToggleVisibility();
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void Hide()
|
|
|
|
{
|
2021-07-22 14:57:47 +08:00
|
|
|
// base call intentionally omitted.
|
2021-09-29 17:58:43 +08:00
|
|
|
skinEditor?.Hide();
|
2021-07-20 18:36:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public override void Show()
|
|
|
|
{
|
2021-12-30 15:03:16 +08:00
|
|
|
// base call intentionally omitted as we have custom behaviour.
|
|
|
|
|
|
|
|
if (skinEditor != null)
|
2021-07-20 18:36:12 +08:00
|
|
|
{
|
2021-12-30 15:03:16 +08:00
|
|
|
skinEditor.Show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var editor = new SkinEditor(target);
|
|
|
|
editor.State.BindValueChanged(editorVisibilityChanged);
|
2021-09-29 17:50:55 +08:00
|
|
|
|
2021-12-30 15:03:16 +08:00
|
|
|
skinEditor = editor;
|
2021-12-30 15:02:08 +08:00
|
|
|
|
2021-12-30 15:03:16 +08:00
|
|
|
// Schedule ensures that if `Show` is called before this overlay is loaded,
|
|
|
|
// it will not throw (LoadComponentAsync requires the load target to be in a loaded state).
|
|
|
|
Schedule(() =>
|
|
|
|
{
|
|
|
|
if (editor != skinEditor)
|
|
|
|
return;
|
|
|
|
|
|
|
|
LoadComponentAsync(editor, _ =>
|
2021-12-29 20:17:44 +08:00
|
|
|
{
|
2021-12-30 15:02:08 +08:00
|
|
|
if (editor != skinEditor)
|
|
|
|
return;
|
2021-12-29 20:46:34 +08:00
|
|
|
|
2021-12-30 15:03:16 +08:00
|
|
|
AddInternal(editor);
|
2021-12-30 15:02:08 +08:00
|
|
|
});
|
2021-12-30 15:03:16 +08:00
|
|
|
});
|
2021-07-20 18:36:12 +08:00
|
|
|
}
|
|
|
|
|
2021-04-29 16:20:22 +08:00
|
|
|
private void editorVisibilityChanged(ValueChangedEvent<Visibility> visibility)
|
|
|
|
{
|
|
|
|
if (visibility.NewValue == Visibility.Visible)
|
|
|
|
{
|
2022-03-02 19:33:28 +08:00
|
|
|
target.SetCustomRect(new RectangleF(0.18f, 0.1f, VISIBLE_TARGET_SCALE, VISIBLE_TARGET_SCALE), true);
|
2021-04-29 16:20:22 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-03-02 19:33:28 +08:00
|
|
|
target.SetCustomRect(null);
|
2021-04-29 16:20:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-16 17:26:12 +08:00
|
|
|
public void OnReleased(KeyBindingReleaseEvent<GlobalAction> e)
|
2021-04-29 16:20:22 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2022-03-11 22:08:40 +08:00
|
|
|
/// Set a new target screen which will be used to find skinnable components.
|
2021-04-29 16:20:22 +08:00
|
|
|
/// </summary>
|
2022-03-11 22:08:40 +08:00
|
|
|
public void SetTarget(Screen screen)
|
2021-04-29 16:20:22 +08:00
|
|
|
{
|
2022-03-11 22:08:40 +08:00
|
|
|
if (skinEditor == null) return;
|
|
|
|
|
|
|
|
skinEditor.Save();
|
|
|
|
|
2022-03-13 15:05:45 +08:00
|
|
|
// AddOnce with parameter will ensure the newest target is loaded if there is any overlap.
|
2022-03-11 22:08:40 +08:00
|
|
|
Scheduler.AddOnce(setTarget, screen);
|
|
|
|
}
|
2021-05-12 15:07:00 +08:00
|
|
|
|
2022-03-11 22:08:40 +08:00
|
|
|
private void setTarget(Screen target)
|
|
|
|
{
|
|
|
|
Debug.Assert(skinEditor != null);
|
|
|
|
|
|
|
|
if (!target.IsLoaded)
|
|
|
|
{
|
|
|
|
Scheduler.AddOnce(setTarget, target);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (skinEditor.State.Value == Visibility.Visible)
|
|
|
|
skinEditor.UpdateTargetScreen(target);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
skinEditor.Hide();
|
|
|
|
skinEditor.Expire();
|
|
|
|
skinEditor = null;
|
|
|
|
}
|
2021-04-29 16:20:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|