1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 13:59:40 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/Nub.cs

184 lines
5.3 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
using System;
using JetBrains.Annotations;
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
using osu.Framework.Extensions.Color4Extensions;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2019-04-02 13:51:28 +08:00
using osu.Framework.Graphics.Effects;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.UserInterface;
using osu.Game.Overlays;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Graphics.UserInterface
{
2022-11-24 13:32:20 +08:00
public partial class Nub : Container, IHasCurrentValue<bool>, IHasAccentColour
2018-04-13 17:19:50 +08:00
{
public const float HEIGHT = 15;
public const float EXPANDED_SIZE = 50;
2018-04-13 17:19:50 +08:00
private const float border_width = 3;
private readonly Box fill;
private readonly Container main;
2018-04-13 17:19:50 +08:00
public Nub()
{
Size = new Vector2(EXPANDED_SIZE, HEIGHT);
2018-04-13 17:19:50 +08:00
InternalChildren = new[]
2018-04-13 17:19:50 +08:00
{
main = new CircularContainer
2018-04-13 17:19:50 +08:00
{
BorderColour = Color4.White,
BorderThickness = border_width,
Masking = true,
2018-04-13 17:19:50 +08:00
RelativeSizeAxes = Axes.Both,
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Children = new Drawable[]
{
fill = new Box
{
RelativeSizeAxes = Axes.Both,
Alpha = 0,
AlwaysPresent = true,
},
}
2018-04-13 17:19:50 +08:00
},
};
}
[BackgroundDependencyLoader(true)]
private void load([CanBeNull] OverlayColourProvider colourProvider, OsuColour colours)
2018-04-13 17:19:50 +08:00
{
AccentColour = colourProvider?.Highlight1 ?? colours.Pink;
GlowingAccentColour = colourProvider?.Highlight1.Lighten(0.2f) ?? colours.PinkLighter;
GlowColour = colourProvider?.Highlight1 ?? colours.PinkLighter;
2018-04-13 17:19:50 +08:00
main.EdgeEffect = new EdgeEffectParameters
2018-04-13 17:19:50 +08:00
{
Colour = GlowColour.Opacity(0),
2018-04-13 17:19:50 +08:00
Type = EdgeEffectType.Glow,
Radius = 8,
Roundness = 4,
2018-04-13 17:19:50 +08:00
};
}
protected override void LoadComplete()
{
base.LoadComplete();
Current.BindValueChanged(onCurrentValueChanged, true);
}
2018-04-13 17:19:50 +08:00
private bool glowing;
2019-02-28 12:31:40 +08:00
2018-04-13 17:19:50 +08:00
public bool Glowing
{
get => glowing;
2018-04-13 17:19:50 +08:00
set
{
glowing = value;
if (value)
{
main.FadeColour(GlowingAccentColour.Lighten(0.5f), 40, Easing.OutQuint)
.Then()
.FadeColour(GlowingAccentColour, 800, Easing.OutQuint);
main.FadeEdgeEffectTo(Color4.White.Opacity(0.1f), 40, Easing.OutQuint)
.Then()
.FadeEdgeEffectTo(GlowColour.Opacity(0.1f), 800, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
}
else
{
main.FadeEdgeEffectTo(GlowColour.Opacity(0), 800, Easing.OutQuint);
main.FadeColour(AccentColour, 800, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
}
}
}
private readonly Bindable<bool> current = new Bindable<bool>();
public Bindable<bool> Current
{
get => current;
set
{
ArgumentNullException.ThrowIfNull(value);
current.UnbindBindings();
current.BindTo(value);
}
}
2018-04-13 17:19:50 +08:00
private Color4 accentColour;
2019-02-28 12:31:40 +08:00
2018-04-13 17:19:50 +08:00
public Color4 AccentColour
{
get => accentColour;
2018-04-13 17:19:50 +08:00
set
{
accentColour = value;
if (!Glowing)
main.Colour = value;
2018-04-13 17:19:50 +08:00
}
}
private Color4 glowingAccentColour;
2019-02-28 12:31:40 +08:00
2018-04-13 17:19:50 +08:00
public Color4 GlowingAccentColour
{
get => glowingAccentColour;
2018-04-13 17:19:50 +08:00
set
{
glowingAccentColour = value;
if (Glowing)
main.Colour = value;
2018-04-13 17:19:50 +08:00
}
}
private Color4 glowColour;
2019-02-28 12:31:40 +08:00
2018-04-13 17:19:50 +08:00
public Color4 GlowColour
{
get => glowColour;
2018-04-13 17:19:50 +08:00
set
{
glowColour = value;
var effect = main.EdgeEffect;
effect.Colour = Glowing ? value : value.Opacity(0);
main.EdgeEffect = effect;
2018-04-13 17:19:50 +08:00
}
}
private void onCurrentValueChanged(ValueChangedEvent<bool> filled)
{
const double duration = 200;
fill.FadeTo(filled.NewValue ? 1 : 0, duration, Easing.OutQuint);
if (filled.NewValue)
{
main.ResizeWidthTo(1, duration, Easing.OutElasticHalf);
main.TransformTo(nameof(BorderThickness), 8.5f, duration, Easing.OutElasticHalf);
}
else
{
main.ResizeWidthTo(0.75f, duration, Easing.OutQuint);
main.TransformTo(nameof(BorderThickness), border_width, duration, Easing.OutQuint);
}
}
2018-04-13 17:19:50 +08:00
}
}