1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 06:07:25 +08:00
osu-lazer/osu.Game/Graphics/Containers/OsuHoverContainer.cs

85 lines
2.2 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
using osu.Framework.Allocation;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Graphics;
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events;
2019-02-05 19:48:35 +08:00
using osuTK.Graphics;
using System.Collections.Generic;
2021-06-18 15:08:14 +08:00
using osu.Game.Graphics.UserInterface;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Graphics.Containers
{
public class OsuHoverContainer : OsuClickableContainer
{
2019-04-03 14:20:38 +08:00
protected const float FADE_DURATION = 500;
2018-04-13 17:19:50 +08:00
protected Color4 HoverColour;
protected Color4 IdleColour = Color4.White;
protected virtual IEnumerable<Drawable> EffectTargets => new[] { Content };
2021-06-18 15:08:14 +08:00
public OsuHoverContainer(HoverSampleSet sampleSet = HoverSampleSet.Default)
: base(sampleSet)
2019-05-21 14:02:31 +08:00
{
Enabled.ValueChanged += e =>
{
2019-06-07 10:45:58 +08:00
if (isHovered)
{
if (e.NewValue)
fadeIn();
else
fadeOut();
}
2019-05-21 14:02:31 +08:00
};
}
private bool isHovered;
2018-10-02 11:02:47 +08:00
protected override bool OnHover(HoverEvent e)
2018-04-13 17:19:50 +08:00
{
2019-06-07 10:45:58 +08:00
if (isHovered)
return false;
isHovered = true;
2019-05-21 14:02:31 +08:00
if (!Enabled.Value)
return false;
fadeIn();
2019-05-21 14:02:31 +08:00
2018-10-02 11:02:47 +08:00
return base.OnHover(e);
2018-04-13 17:19:50 +08:00
}
2018-10-02 11:02:47 +08:00
protected override void OnHoverLost(HoverLostEvent e)
2019-05-21 14:02:31 +08:00
{
2019-05-31 04:07:04 +08:00
if (!isHovered)
return;
2019-05-21 14:02:31 +08:00
isHovered = false;
2019-06-07 10:45:58 +08:00
fadeOut();
base.OnHoverLost(e);
2019-05-21 14:02:31 +08:00
}
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
2019-03-06 15:30:56 +08:00
if (HoverColour == default)
2018-12-22 23:51:24 +08:00
HoverColour = colours.Yellow;
2018-04-13 17:19:50 +08:00
}
protected override void LoadComplete()
{
base.LoadComplete();
EffectTargets.ForEach(d => d.FadeColour(IdleColour));
}
2019-06-07 13:11:21 +08:00
private void fadeIn() => EffectTargets.ForEach(d => d.FadeColour(HoverColour, FADE_DURATION, Easing.OutQuint));
2019-06-07 10:45:58 +08:00
2019-06-07 13:11:21 +08:00
private void fadeOut() => EffectTargets.ForEach(d => d.FadeColour(IdleColour, FADE_DURATION, Easing.OutQuint));
2018-04-13 17:19:50 +08:00
}
}