1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 14:07:25 +08:00
osu-lazer/osu.Game/Overlays/OverlayRulesetTabItem.cs

101 lines
3.0 KiB
C#
Raw Normal View History

2020-01-02 03:49:04 +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.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.UserInterface;
using osu.Framework.Input.Events;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
using osu.Game.Rulesets;
using osuTK.Graphics;
using osuTK;
using osu.Framework.Allocation;
2020-03-25 05:14:15 +08:00
using osu.Framework.Extensions.Color4Extensions;
2020-01-02 03:49:04 +08:00
namespace osu.Game.Overlays
{
public class OverlayRulesetTabItem : TabItem<RulesetInfo>
2020-01-02 03:49:04 +08:00
{
private Color4 accentColour;
2020-01-02 03:49:04 +08:00
protected virtual Color4 AccentColour
2020-01-02 03:49:04 +08:00
{
get => accentColour;
set
{
accentColour = value;
2020-02-03 14:13:21 +08:00
text.FadeColour(value, 120, Easing.OutQuint);
}
2020-01-02 03:49:04 +08:00
}
2020-02-03 14:13:21 +08:00
protected override Container<Drawable> Content { get; }
[Resolved]
private OverlayColourProvider colourProvider { get; set; }
2020-01-02 03:49:04 +08:00
2020-02-03 14:13:21 +08:00
private readonly OsuSpriteText text;
2020-01-02 03:49:04 +08:00
public OverlayRulesetTabItem(RulesetInfo value)
: base(value)
{
AutoSizeAxes = Axes.Both;
AddRangeInternal(new Drawable[]
{
2020-02-03 14:13:21 +08:00
Content = new FillFlowContainer
2020-01-02 03:49:04 +08:00
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(3, 0),
2020-02-03 14:13:21 +08:00
Child = text = new OsuSpriteText
2020-01-02 03:49:04 +08:00
{
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
Text = value.Name,
2020-03-25 05:14:15 +08:00
Font = OsuFont.GetFont(size: 14),
ShadowColour = Color4.Black.Opacity(0.75f)
2020-01-02 03:49:04 +08:00
}
},
new HoverClickSounds()
});
Enabled.Value = true;
}
protected override void LoadComplete()
2020-01-02 03:49:04 +08:00
{
base.LoadComplete();
Enabled.BindValueChanged(_ => updateState(), true);
2020-01-02 03:49:04 +08:00
}
2020-02-04 11:53:57 +08:00
public override bool PropagatePositionalInputSubTree => Enabled.Value && !Active.Value && base.PropagatePositionalInputSubTree;
2020-01-02 03:49:04 +08:00
protected override bool OnHover(HoverEvent e)
{
base.OnHover(e);
updateState();
2020-01-02 03:49:04 +08:00
return true;
}
protected override void OnHoverLost(HoverLostEvent e)
{
base.OnHoverLost(e);
updateState();
2020-01-02 03:49:04 +08:00
}
protected override void OnActivated() => updateState();
2020-01-02 03:49:04 +08:00
protected override void OnDeactivated() => updateState();
2020-01-02 03:49:04 +08:00
private void updateState()
2020-01-02 03:49:04 +08:00
{
2020-02-03 14:13:21 +08:00
text.Font = text.Font.With(weight: Active.Value ? FontWeight.Bold : FontWeight.Medium);
2020-02-04 05:55:41 +08:00
AccentColour = Enabled.Value ? getActiveColour() : colourProvider.Foreground1;
2020-01-02 03:49:04 +08:00
}
2020-02-04 05:55:41 +08:00
private Color4 getActiveColour() => IsHovered || Active.Value ? Color4.White : colourProvider.Highlight1;
2020-01-02 03:49:04 +08:00
}
}