1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 11:27:24 +08:00
osu-lazer/osu.Game/Overlays/Comments/CommentEditor.cs

236 lines
8.4 KiB
C#
Raw Normal View History

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 System.Collections.Generic;
using System;
using osuTK;
using osu.Framework.Bindables;
2020-02-11 23:46:49 +08:00
namespace osu.Game.Overlays.Comments
{
public abstract class CommentEditor : CompositeDrawable
{
2020-02-12 01:08:24 +08:00
private const int side_padding = 8;
2020-02-12 05:57:06 +08:00
public Action<string> OnCommit;
2020-02-12 07:05:45 +08:00
public bool IsLoading
{
get => commitButton.IsLoading;
set => commitButton.IsLoading = value;
}
2020-02-12 01:08:24 +08:00
protected abstract string FooterText { get; }
protected abstract string CommitButtonText { get; }
protected abstract string TextboxPlaceholderText { get; }
2020-02-11 23:46:49 +08:00
2020-02-12 01:47:51 +08:00
protected FillFlowContainer ButtonsContainer;
private readonly Bindable<string> current = new Bindable<string>();
private CommitButton commitButton;
2020-02-11 23:46:49 +08:00
[BackgroundDependencyLoader]
private void load(OverlayColourProvider colourProvider)
{
2020-02-12 05:57:06 +08:00
EditorTextbox textbox;
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-12 05:57:06 +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,
PlaceholderText = TextboxPlaceholderText,
Current = current
2020-02-12 01:08:24 +08:00
},
new Container
2020-02-11 23:46:49 +08:00
{
2020-02-12 01:08:24 +08:00
Name = "Footer",
RelativeSizeAxes = Axes.X,
2020-02-12 01:11:22 +08:00
Height = 35,
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,
Font = OsuFont.GetFont(size: 12, weight: FontWeight.SemiBold),
Text = FooterText
2020-02-12 01:47:51 +08:00
},
ButtonsContainer = new FillFlowContainer
{
Name = "Buttons",
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),
Child = commitButton = new CommitButton(CommitButtonText)
{
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
Action = () => OnCommit?.Invoke(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
textbox.OnCommit += (u, v) =>
{
2020-02-12 07:05:45 +08:00
if (commitButton.IsBlocked.Value)
return;
commitButton.Click();
current.Value = string.Empty;
};
}
protected override void LoadComplete()
{
base.LoadComplete();
2020-02-12 07:05:45 +08:00
current.BindValueChanged(text => commitButton.IsBlocked.Value = string.IsNullOrEmpty(text.NewValue), true);
2020-02-11 23:46:49 +08:00
}
2020-02-12 01:08:24 +08:00
private class EditorTextbox : BasicTextBox
{
protected override float LeftRightPadding => side_padding;
protected override Color4 SelectionColour => Color4.Gray;
2020-02-11 23:46:49 +08:00
2020-02-12 01:08:24 +08:00
private OsuSpriteText placeholder;
public EditorTextbox()
{
Masking = false;
TextContainer.Height = 0.4f;
}
[BackgroundDependencyLoader]
private void load(OverlayColourProvider colourProvider)
{
BackgroundUnfocused = BackgroundFocused = colourProvider.Background5;
placeholder.Colour = colourProvider.Background3;
BackgroundCommit = colourProvider.Background3;
2020-02-12 01:08:24 +08:00
}
protected override SpriteText CreatePlaceholder() => placeholder = new OsuSpriteText
{
Font = OsuFont.GetFont(weight: FontWeight.Regular),
};
protected override Drawable GetDrawableCharacter(char c) => new OsuSpriteText { Text = c.ToString(), Font = OsuFont.GetFont(size: CalculatedTextSize) };
}
2020-02-12 05:57:06 +08:00
private class CommitButton : LoadingButton
{
private const int duration = 200;
2020-02-12 07:05:45 +08:00
public readonly BindableBool IsBlocked = new BindableBool();
2020-02-12 07:05:45 +08:00
public override bool PropagatePositionalInputSubTree => !IsBlocked.Value && base.PropagatePositionalInputSubTree;
2020-02-12 05:57:06 +08:00
protected override IEnumerable<Drawable> EffectTargets => new[] { background };
[Resolved]
private OverlayColourProvider colourProvider { get; set; }
2020-02-12 05:57:06 +08:00
private OsuSpriteText drawableText;
private Box background;
public CommitButton(string text)
{
AutoSizeAxes = Axes.Both;
LoadingAnimationSize = new Vector2(10);
drawableText.Text = text;
}
[BackgroundDependencyLoader]
private void load()
2020-02-12 05:57:06 +08:00
{
IdleColour = colourProvider.GetColour(0.5f, 0.45f);
HoverColour = colourProvider.GetColour(0.5f, 0.6f);
}
protected override void LoadComplete()
{
base.LoadComplete();
2020-02-12 07:05:45 +08:00
IsBlocked.BindValueChanged(onBlockedStateChanged, true);
}
2020-02-12 07:05:45 +08:00
private void onBlockedStateChanged(ValueChangedEvent<bool> isBlocked)
{
2020-02-12 07:05:45 +08:00
drawableText.FadeColour(isBlocked.NewValue ? colourProvider.Foreground1 : Color4.White, duration, Easing.OutQuint);
2020-02-12 07:05:45 +08:00
if (isBlocked.NewValue)
background.FadeColour(colourProvider.Background5, duration, Easing.OutQuint);
2020-02-12 07:05:45 +08:00
else
background.FadeColour(IsHovered ? HoverColour : IdleColour, duration, Easing.OutQuint);
}
2020-02-12 05:57:06 +08:00
protected override Drawable CreateContent() => new CircularContainer
{
Masking = true,
Height = 25,
AutoSizeAxes = Axes.X,
Children = new Drawable[]
{
background = new Box
{
RelativeSizeAxes = Axes.Both
},
drawableText = new OsuSpriteText
{
AlwaysPresent = true,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Font = OsuFont.GetFont(size: 12, weight: FontWeight.Bold),
Margin = new MarginPadding { Horizontal = 20 }
}
}
};
protected override void OnLoadStarted() => drawableText.FadeOut(duration, Easing.OutQuint);
protected override void OnLoadFinished() => drawableText.FadeIn(duration, Easing.OutQuint);
}
2020-02-11 23:46:49 +08:00
}
}