mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 00:27:51 +08:00
191 lines
6.3 KiB
C#
191 lines
6.3 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using System.Collections.Generic;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Effects;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Input.Events;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Game.Resources.Localisation.Web;
|
|
using osuTK;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Overlays
|
|
{
|
|
/// <summary>
|
|
/// <see cref="UserTrackingScrollContainer"/> which provides <see cref="ScrollBackButton"/>. Mostly used in <see cref="FullscreenOverlay{T}"/>.
|
|
/// </summary>
|
|
public partial class OverlayScrollContainer : UserTrackingScrollContainer
|
|
{
|
|
/// <summary>
|
|
/// Scroll position at which the <see cref="ScrollBackButton"/> will be shown.
|
|
/// </summary>
|
|
private const int button_scroll_position = 200;
|
|
|
|
protected ScrollBackButton Button;
|
|
|
|
private readonly Bindable<float?> lastScrollTarget = new Bindable<float?>();
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
AddInternal(Button = new ScrollBackButton
|
|
{
|
|
Anchor = Anchor.BottomRight,
|
|
Origin = Anchor.BottomRight,
|
|
Margin = new MarginPadding(20),
|
|
Action = scrollBack,
|
|
LastScrollTarget = { BindTarget = lastScrollTarget }
|
|
});
|
|
}
|
|
|
|
protected override void UpdateAfterChildren()
|
|
{
|
|
base.UpdateAfterChildren();
|
|
|
|
if (ScrollContent.DrawHeight + button_scroll_position < DrawHeight)
|
|
{
|
|
Button.State = Visibility.Hidden;
|
|
return;
|
|
}
|
|
|
|
Button.State = Target > button_scroll_position || lastScrollTarget.Value != null ? Visibility.Visible : Visibility.Hidden;
|
|
}
|
|
|
|
protected override void OnUserScroll(float value, bool animated = true, double? distanceDecay = default)
|
|
{
|
|
base.OnUserScroll(value, animated, distanceDecay);
|
|
|
|
lastScrollTarget.Value = null;
|
|
}
|
|
|
|
private void scrollBack()
|
|
{
|
|
if (lastScrollTarget.Value == null)
|
|
{
|
|
lastScrollTarget.Value = Target;
|
|
ScrollToStart();
|
|
}
|
|
else
|
|
{
|
|
ScrollTo(lastScrollTarget.Value.Value);
|
|
lastScrollTarget.Value = null;
|
|
}
|
|
}
|
|
|
|
public partial class ScrollBackButton : OsuHoverContainer
|
|
{
|
|
private const int fade_duration = 500;
|
|
|
|
private Visibility state;
|
|
|
|
public Visibility State
|
|
{
|
|
get => state;
|
|
set
|
|
{
|
|
if (value == state)
|
|
return;
|
|
|
|
state = value;
|
|
Enabled.Value = state == Visibility.Visible;
|
|
this.FadeTo(state == Visibility.Visible ? 1 : 0, fade_duration, Easing.OutQuint);
|
|
}
|
|
}
|
|
|
|
protected override IEnumerable<Drawable> EffectTargets => new[] { background };
|
|
|
|
private Color4 flashColour;
|
|
|
|
private readonly Container content;
|
|
private readonly Box background;
|
|
private readonly SpriteIcon spriteIcon;
|
|
|
|
public Bindable<float?> LastScrollTarget = new Bindable<float?>();
|
|
|
|
public ScrollBackButton()
|
|
: base(HoverSampleSet.ScrollToTop)
|
|
{
|
|
Size = new Vector2(50);
|
|
Alpha = 0;
|
|
Add(content = new CircularContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Masking = true,
|
|
EdgeEffect = new EdgeEffectParameters
|
|
{
|
|
Type = EdgeEffectType.Shadow,
|
|
Offset = new Vector2(0f, 1f),
|
|
Radius = 3f,
|
|
Colour = Color4.Black.Opacity(0.25f),
|
|
},
|
|
Children = new Drawable[]
|
|
{
|
|
background = new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both
|
|
},
|
|
spriteIcon = new SpriteIcon
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Size = new Vector2(15),
|
|
Icon = FontAwesome.Solid.ChevronUp
|
|
}
|
|
}
|
|
});
|
|
|
|
TooltipText = CommonStrings.ButtonsBackToTop;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OverlayColourProvider colourProvider)
|
|
{
|
|
IdleColour = colourProvider.Background6;
|
|
HoverColour = colourProvider.Background5;
|
|
flashColour = colourProvider.Light1;
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
LastScrollTarget.BindValueChanged(target =>
|
|
{
|
|
spriteIcon.RotateTo(target.NewValue != null ? 180 : 0, fade_duration, Easing.OutQuint);
|
|
TooltipText = target.NewValue != null ? CommonStrings.ButtonsBackToPrevious : CommonStrings.ButtonsBackToTop;
|
|
}, true);
|
|
}
|
|
|
|
protected override bool OnClick(ClickEvent e)
|
|
{
|
|
background.FlashColour(flashColour, 800, Easing.OutQuint);
|
|
return base.OnClick(e);
|
|
}
|
|
|
|
protected override bool OnMouseDown(MouseDownEvent e)
|
|
{
|
|
content.ScaleTo(0.75f, 2000, Easing.OutQuint);
|
|
return true;
|
|
}
|
|
|
|
protected override void OnMouseUp(MouseUpEvent e)
|
|
{
|
|
content.ScaleTo(1, 1000, Easing.OutElastic);
|
|
base.OnMouseUp(e);
|
|
}
|
|
}
|
|
}
|
|
}
|