2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
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;
|
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
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.Game.Graphics.Sprites;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.Cursor
|
|
|
|
|
{
|
|
|
|
|
public class OsuTooltipContainer : TooltipContainer
|
|
|
|
|
{
|
|
|
|
|
protected override ITooltip CreateTooltip() => new OsuTooltip();
|
|
|
|
|
|
2019-02-28 12:31:40 +08:00
|
|
|
|
public OsuTooltipContainer(CursorContainer cursor)
|
|
|
|
|
: base(cursor)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-12 14:27:17 +08:00
|
|
|
|
protected override double AppearDelay => (1 - CurrentTooltip.Alpha) * base.AppearDelay; // reduce appear delay if the tooltip is already partly visible.
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public class OsuTooltip : Tooltip
|
|
|
|
|
{
|
|
|
|
|
private readonly Box background;
|
|
|
|
|
private readonly OsuSpriteText text;
|
|
|
|
|
private bool instantMovement = true;
|
|
|
|
|
|
2019-08-19 09:46:28 +08:00
|
|
|
|
public override bool SetContent(object content)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-08-19 09:46:28 +08:00
|
|
|
|
if (!(content is string contentString))
|
|
|
|
|
return false;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-08-19 09:46:28 +08:00
|
|
|
|
if (contentString == text.Text) return true;
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2019-08-19 09:46:28 +08:00
|
|
|
|
text.Text = contentString;
|
|
|
|
|
|
|
|
|
|
if (IsPresent)
|
|
|
|
|
{
|
|
|
|
|
AutoSizeDuration = 250;
|
|
|
|
|
background.FlashColour(OsuColour.Gray(0.4f), 1000, Easing.OutQuint);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2019-08-19 09:46:28 +08:00
|
|
|
|
else
|
|
|
|
|
AutoSizeDuration = 0;
|
|
|
|
|
|
|
|
|
|
return true;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public OsuTooltip()
|
|
|
|
|
{
|
|
|
|
|
AutoSizeEasing = Easing.OutQuint;
|
|
|
|
|
|
|
|
|
|
CornerRadius = 5;
|
|
|
|
|
Masking = true;
|
|
|
|
|
EdgeEffect = new EdgeEffectParameters
|
|
|
|
|
{
|
|
|
|
|
Type = EdgeEffectType.Shadow,
|
|
|
|
|
Colour = Color4.Black.Opacity(40),
|
|
|
|
|
Radius = 5,
|
|
|
|
|
};
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
background = new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Alpha = 0.9f,
|
|
|
|
|
},
|
|
|
|
|
text = new OsuSpriteText
|
|
|
|
|
{
|
2019-02-20 15:52:36 +08:00
|
|
|
|
Padding = new MarginPadding(5),
|
|
|
|
|
Font = OsuFont.GetFont(weight: FontWeight.Regular)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colour)
|
|
|
|
|
{
|
|
|
|
|
background.Colour = colour.Gray3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PopIn()
|
|
|
|
|
{
|
|
|
|
|
instantMovement |= !IsPresent;
|
|
|
|
|
this.FadeIn(500, Easing.OutQuint);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PopOut() => this.Delay(150).FadeOut(500, Easing.OutQuint);
|
|
|
|
|
|
|
|
|
|
public override void Move(Vector2 pos)
|
|
|
|
|
{
|
|
|
|
|
if (instantMovement)
|
|
|
|
|
{
|
|
|
|
|
Position = pos;
|
|
|
|
|
instantMovement = false;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
this.MoveTo(pos, 200, Easing.OutQuint);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|