2020-02-11 23:46:49 +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.
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2020-02-12 01:08:24 +08:00
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osuTK.Graphics;
|
2020-02-12 05:57:06 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
using osuTK;
|
2020-02-12 06:35:08 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2022-11-29 10:13:54 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2022-11-29 11:17:02 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
2020-02-11 23:46:49 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Comments
|
|
|
|
|
{
|
|
|
|
|
public abstract partial class CommentEditor : CompositeDrawable
|
|
|
|
|
{
|
2020-02-12 01:08:24 +08:00
|
|
|
|
private const int side_padding = 8;
|
|
|
|
|
|
2022-11-29 10:13:54 +08:00
|
|
|
|
protected abstract LocalisableString FooterText { get; }
|
2020-02-12 01:08:24 +08:00
|
|
|
|
|
2022-11-29 10:13:54 +08:00
|
|
|
|
protected abstract LocalisableString CommitButtonText { get; }
|
2020-02-12 01:08:24 +08:00
|
|
|
|
|
2022-11-29 10:13:54 +08:00
|
|
|
|
protected abstract LocalisableString TextBoxPlaceholder { get; }
|
2020-02-11 23:46:49 +08:00
|
|
|
|
|
2022-11-29 10:17:44 +08:00
|
|
|
|
protected FillFlowContainer ButtonsContainer { get; private set; } = null!;
|
2020-02-12 01:47:51 +08:00
|
|
|
|
|
2020-02-13 09:06:34 +08:00
|
|
|
|
protected readonly Bindable<string> Current = new Bindable<string>();
|
2020-02-12 06:35:08 +08:00
|
|
|
|
|
2022-11-29 19:37:35 +08:00
|
|
|
|
protected EditorCommitButton CommitButton = null!;
|
2020-02-12 06:35:08 +08:00
|
|
|
|
|
2020-02-11 23:46:49 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OverlayColourProvider colourProvider)
|
|
|
|
|
{
|
2020-02-14 04:04:53 +08:00
|
|
|
|
EditorTextBox textBox;
|
2020-02-12 05:57:06 +08:00
|
|
|
|
|
2020-02-11 23:46:49 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X;
|
2020-02-12 01:08:24 +08:00
|
|
|
|
AutoSizeAxes = Axes.Y;
|
2020-02-11 23:46:49 +08:00
|
|
|
|
Masking = true;
|
|
|
|
|
CornerRadius = 6;
|
2020-02-12 01:08:24 +08:00
|
|
|
|
BorderThickness = 3;
|
|
|
|
|
BorderColour = colourProvider.Background3;
|
2020-02-11 23:46:49 +08:00
|
|
|
|
|
|
|
|
|
AddRangeInternal(new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = colourProvider.Background3
|
|
|
|
|
},
|
2020-02-12 01:08:24 +08:00
|
|
|
|
new FillFlowContainer
|
2020-02-11 23:46:49 +08:00
|
|
|
|
{
|
2020-02-12 01:08:24 +08:00
|
|
|
|
AutoSizeAxes = Axes.Y,
|
2020-02-11 23:46:49 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2020-02-12 01:08:24 +08:00
|
|
|
|
Direction = FillDirection.Vertical,
|
2020-02-11 23:46:49 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2020-02-14 04:04:53 +08:00
|
|
|
|
textBox = new EditorTextBox
|
2020-02-12 01:08:24 +08:00
|
|
|
|
{
|
2020-02-12 01:11:22 +08:00
|
|
|
|
Height = 40,
|
2020-02-12 01:08:24 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2020-02-14 04:04:53 +08:00
|
|
|
|
PlaceholderText = TextBoxPlaceholder,
|
2020-02-13 09:06:34 +08:00
|
|
|
|
Current = Current
|
2020-02-12 01:08:24 +08:00
|
|
|
|
},
|
|
|
|
|
new Container
|
2020-02-11 23:46:49 +08:00
|
|
|
|
{
|
2022-11-29 10:17:44 +08:00
|
|
|
|
Name = @"Footer",
|
2020-02-12 01:08:24 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2022-11-30 18:25:18 +08:00
|
|
|
|
Height = 40,
|
2020-02-12 01:08:24 +08:00
|
|
|
|
Padding = new MarginPadding { Horizontal = side_padding },
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
|
Origin = Anchor.CentreLeft,
|
2022-11-30 18:25:18 +08:00
|
|
|
|
Font = OsuFont.GetFont(size: 14, weight: FontWeight.SemiBold),
|
2020-02-12 01:08:24 +08:00
|
|
|
|
Text = FooterText
|
2020-02-12 01:47:51 +08:00
|
|
|
|
},
|
|
|
|
|
ButtonsContainer = new FillFlowContainer
|
|
|
|
|
{
|
2022-11-29 10:17:44 +08:00
|
|
|
|
Name = @"Buttons",
|
2020-02-12 01:47:51 +08:00
|
|
|
|
Anchor = Anchor.CentreRight,
|
|
|
|
|
Origin = Anchor.CentreRight,
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Direction = FillDirection.Horizontal,
|
2020-02-12 05:57:06 +08:00
|
|
|
|
Spacing = new Vector2(5, 0),
|
2022-11-29 19:37:35 +08:00
|
|
|
|
Child = CommitButton = new EditorCommitButton
|
2020-02-12 05:57:06 +08:00
|
|
|
|
{
|
2022-11-29 11:17:02 +08:00
|
|
|
|
Text = CommitButtonText,
|
2020-02-12 05:57:06 +08:00
|
|
|
|
Anchor = Anchor.CentreRight,
|
|
|
|
|
Origin = Anchor.CentreRight,
|
2023-01-07 03:51:57 +08:00
|
|
|
|
Action = () => OnCommit(Current.Value)
|
2020-02-12 05:57:06 +08:00
|
|
|
|
}
|
2020-02-12 01:08:24 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-02-11 23:46:49 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
2020-02-12 05:57:06 +08:00
|
|
|
|
|
2022-11-30 18:32:01 +08:00
|
|
|
|
textBox.OnCommit += (_, _) => CommitButton.TriggerClick();
|
2020-02-12 06:35:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
2022-11-29 19:37:35 +08:00
|
|
|
|
Current.BindValueChanged(text => CommitButton.IsBlocked.Value = string.IsNullOrEmpty(text.NewValue), true);
|
2020-02-11 23:46:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-01-07 03:51:57 +08:00
|
|
|
|
protected abstract void OnCommit(string text);
|
|
|
|
|
|
2020-02-14 04:04:53 +08:00
|
|
|
|
private partial class EditorTextBox : BasicTextBox
|
2020-02-12 01:08:24 +08:00
|
|
|
|
{
|
|
|
|
|
protected override float LeftRightPadding => side_padding;
|
|
|
|
|
|
2020-02-12 06:35:08 +08:00
|
|
|
|
protected override Color4 SelectionColour => Color4.Gray;
|
2020-02-11 23:46:49 +08:00
|
|
|
|
|
2022-11-29 10:17:44 +08:00
|
|
|
|
private OsuSpriteText placeholder = null!;
|
2020-02-12 01:08:24 +08:00
|
|
|
|
|
2020-02-14 04:04:53 +08:00
|
|
|
|
public EditorTextBox()
|
2020-02-12 01:08:24 +08:00
|
|
|
|
{
|
|
|
|
|
Masking = false;
|
|
|
|
|
TextContainer.Height = 0.4f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OverlayColourProvider colourProvider)
|
|
|
|
|
{
|
|
|
|
|
BackgroundUnfocused = BackgroundFocused = colourProvider.Background5;
|
|
|
|
|
placeholder.Colour = colourProvider.Background3;
|
2020-02-12 06:35:08 +08:00
|
|
|
|
BackgroundCommit = colourProvider.Background3;
|
2020-02-12 01:08:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override SpriteText CreatePlaceholder() => placeholder = new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Font = OsuFont.GetFont(weight: FontWeight.Regular),
|
|
|
|
|
};
|
|
|
|
|
|
2020-03-09 10:43:53 +08:00
|
|
|
|
protected override Drawable GetDrawableCharacter(char c) => new FallingDownContainer
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
2023-01-07 03:51:57 +08:00
|
|
|
|
Child = new OsuSpriteText { Text = c.ToString(), Font = OsuFont.GetFont(size: CalculatedTextSize) }
|
2020-03-09 10:43:53 +08:00
|
|
|
|
};
|
2020-02-12 01:08:24 +08:00
|
|
|
|
}
|
2020-02-12 05:57:06 +08:00
|
|
|
|
|
2022-11-29 19:37:35 +08:00
|
|
|
|
protected sealed partial class EditorCommitButton : RoundedButton
|
2020-02-12 05:57:06 +08:00
|
|
|
|
{
|
|
|
|
|
private const int duration = 200;
|
2022-11-29 11:23:25 +08:00
|
|
|
|
|
2022-11-29 11:17:02 +08:00
|
|
|
|
private readonly LoadingSpinner spinner;
|
2022-11-30 18:40:47 +08:00
|
|
|
|
private SpriteText text = null!;
|
2020-02-12 06:35:08 +08:00
|
|
|
|
|
2022-11-29 11:23:25 +08:00
|
|
|
|
public readonly BindableBool IsBlocked = new BindableBool();
|
|
|
|
|
|
2022-11-30 18:30:57 +08:00
|
|
|
|
private bool isLoadingSpinnerShown;
|
2022-11-29 11:23:25 +08:00
|
|
|
|
|
2022-11-29 19:39:59 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether loading spinner shown.
|
|
|
|
|
/// </summary>
|
2022-11-30 18:30:57 +08:00
|
|
|
|
public bool IsLoadingSpinnerShown
|
2022-11-29 11:23:25 +08:00
|
|
|
|
{
|
2022-11-30 18:30:57 +08:00
|
|
|
|
get => isLoadingSpinnerShown;
|
2022-11-29 11:23:25 +08:00
|
|
|
|
set
|
|
|
|
|
{
|
2022-11-30 18:30:57 +08:00
|
|
|
|
isLoadingSpinnerShown = value;
|
2022-11-29 11:23:25 +08:00
|
|
|
|
Enabled.Value = !value && !IsBlocked.Value;
|
|
|
|
|
spinner.FadeTo(value ? 1f : 0f, duration, Easing.OutQuint);
|
|
|
|
|
text.FadeTo(value ? 0f : 1f, duration, Easing.OutQuint);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-29 19:37:35 +08:00
|
|
|
|
public EditorCommitButton()
|
2020-02-12 05:57:06 +08:00
|
|
|
|
{
|
2022-11-30 18:25:59 +08:00
|
|
|
|
Width = 100;
|
|
|
|
|
Height = 30;
|
2022-11-29 11:17:02 +08:00
|
|
|
|
Add(spinner = new LoadingSpinner
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
2022-11-30 18:57:09 +08:00
|
|
|
|
Size = new Vector2(16),
|
2022-11-29 11:17:02 +08:00
|
|
|
|
Depth = -2,
|
|
|
|
|
});
|
2020-02-12 05:57:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-12 06:35:08 +08:00
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
2022-11-29 11:17:02 +08:00
|
|
|
|
IsBlocked.BindValueChanged(e =>
|
|
|
|
|
{
|
2022-11-30 18:30:57 +08:00
|
|
|
|
Enabled.Value = !IsLoadingSpinnerShown && !e.NewValue;
|
2022-11-29 11:17:02 +08:00
|
|
|
|
}, true);
|
2020-02-12 06:35:08 +08:00
|
|
|
|
}
|
2022-11-30 18:40:47 +08:00
|
|
|
|
|
|
|
|
|
protected override SpriteText CreateText()
|
|
|
|
|
{
|
|
|
|
|
return text = base.CreateText();
|
|
|
|
|
}
|
2020-02-12 05:57:06 +08:00
|
|
|
|
}
|
2020-02-11 23:46:49 +08:00
|
|
|
|
}
|
|
|
|
|
}
|