mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:57:25 +08:00
175 lines
5.1 KiB
C#
175 lines
5.1 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.
|
|
|
|
using System;
|
|
using JetBrains.Annotations;
|
|
using osuTK;
|
|
using osuTK.Graphics;
|
|
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.UserInterface;
|
|
using osu.Game.Overlays;
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
{
|
|
public class Nub : CompositeDrawable, IHasCurrentValue<bool>, IHasAccentColour
|
|
{
|
|
public const float HEIGHT = 15;
|
|
|
|
public const float EXPANDED_SIZE = 50;
|
|
|
|
private const float border_width = 3;
|
|
|
|
private const double animate_in_duration = 200;
|
|
private const double animate_out_duration = 500;
|
|
|
|
private readonly Box fill;
|
|
private readonly Container main;
|
|
|
|
public Nub()
|
|
{
|
|
Size = new Vector2(EXPANDED_SIZE, HEIGHT);
|
|
|
|
InternalChildren = new[]
|
|
{
|
|
main = new CircularContainer
|
|
{
|
|
BorderColour = Color4.White,
|
|
BorderThickness = border_width,
|
|
Masking = true,
|
|
RelativeSizeAxes = Axes.Both,
|
|
Anchor = Anchor.TopCentre,
|
|
Origin = Anchor.TopCentre,
|
|
Children = new Drawable[]
|
|
{
|
|
fill = new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Alpha = 0,
|
|
AlwaysPresent = true,
|
|
},
|
|
}
|
|
},
|
|
};
|
|
}
|
|
|
|
[BackgroundDependencyLoader(true)]
|
|
private void load([CanBeNull] OverlayColourProvider colourProvider, OsuColour colours)
|
|
{
|
|
AccentColour = colourProvider?.Highlight1 ?? colours.Pink;
|
|
GlowingAccentColour = colourProvider?.Highlight1.Lighten(0.2f) ?? colours.PinkLighter;
|
|
GlowColour = colourProvider?.Highlight1 ?? colours.PinkLighter;
|
|
|
|
main.EdgeEffect = new EdgeEffectParameters
|
|
{
|
|
Colour = GlowColour.Opacity(0),
|
|
Type = EdgeEffectType.Glow,
|
|
Radius = 8,
|
|
Roundness = 5,
|
|
};
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
Current.BindValueChanged(onCurrentValueChanged, true);
|
|
}
|
|
|
|
private bool glowing;
|
|
|
|
public bool Glowing
|
|
{
|
|
get => glowing;
|
|
set
|
|
{
|
|
glowing = value;
|
|
|
|
if (value)
|
|
{
|
|
main.FadeColour(GlowingAccentColour, animate_in_duration, Easing.OutQuint);
|
|
main.FadeEdgeEffectTo(0.2f, animate_in_duration, Easing.OutQuint);
|
|
}
|
|
else
|
|
{
|
|
main.FadeEdgeEffectTo(0, animate_out_duration, Easing.OutQuint);
|
|
main.FadeColour(AccentColour, animate_out_duration, Easing.OutQuint);
|
|
}
|
|
}
|
|
}
|
|
|
|
private readonly Bindable<bool> current = new Bindable<bool>();
|
|
|
|
public Bindable<bool> Current
|
|
{
|
|
get => current;
|
|
set
|
|
{
|
|
if (value == null)
|
|
throw new ArgumentNullException(nameof(value));
|
|
|
|
current.UnbindBindings();
|
|
current.BindTo(value);
|
|
}
|
|
}
|
|
|
|
private Color4 accentColour;
|
|
|
|
public Color4 AccentColour
|
|
{
|
|
get => accentColour;
|
|
set
|
|
{
|
|
accentColour = value;
|
|
if (!Glowing)
|
|
main.Colour = value;
|
|
}
|
|
}
|
|
|
|
private Color4 glowingAccentColour;
|
|
|
|
public Color4 GlowingAccentColour
|
|
{
|
|
get => glowingAccentColour;
|
|
set
|
|
{
|
|
glowingAccentColour = value;
|
|
if (Glowing)
|
|
main.Colour = value;
|
|
}
|
|
}
|
|
|
|
private Color4 glowColour;
|
|
|
|
public Color4 GlowColour
|
|
{
|
|
get => glowColour;
|
|
set
|
|
{
|
|
glowColour = value;
|
|
|
|
var effect = main.EdgeEffect;
|
|
effect.Colour = Glowing ? value : value.Opacity(0);
|
|
main.EdgeEffect = effect;
|
|
}
|
|
}
|
|
|
|
private void onCurrentValueChanged(ValueChangedEvent<bool> filled)
|
|
{
|
|
fill.FadeTo(filled.NewValue ? 1 : 0, 200, Easing.OutQuint);
|
|
|
|
if (filled.NewValue)
|
|
main.ResizeWidthTo(1, animate_in_duration, Easing.OutElasticHalf);
|
|
else
|
|
main.ResizeWidthTo(0.9f, animate_out_duration, Easing.OutElastic);
|
|
|
|
main.TransformTo(nameof(BorderThickness), filled.NewValue ? 8.5f : border_width, 200, Easing.OutQuint);
|
|
}
|
|
}
|
|
}
|