2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-03-03 15:50:41 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2017-09-20 22:44:30 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2018-03-03 15:50:41 +00:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-03-27 10:29:27 +00:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2017-09-20 22:44:30 +00:00
|
|
|
|
using osu.Game.Graphics;
|
2018-11-20 07:51:59 +00:00
|
|
|
|
using osuTK;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-03-03 15:50:41 +00:00
|
|
|
|
namespace osu.Game.Screens.Play.Break
|
2017-09-20 22:44:30 +00:00
|
|
|
|
{
|
|
|
|
|
public partial class BlurredIcon : BufferedContainer
|
|
|
|
|
{
|
2017-09-22 17:43:51 +00:00
|
|
|
|
private readonly SpriteIcon icon;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-03-27 10:29:27 +00:00
|
|
|
|
public IconUsage Icon
|
2017-09-20 22:44:30 +00:00
|
|
|
|
{
|
2019-02-28 04:58:19 +00:00
|
|
|
|
set => icon.Icon = value;
|
|
|
|
|
get => icon.Icon;
|
2017-09-20 22:44:30 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-09-21 22:16:05 +00:00
|
|
|
|
public override Vector2 Size
|
|
|
|
|
{
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
icon.Size = value;
|
2017-09-22 17:43:51 +00:00
|
|
|
|
base.Size = value + BlurSigma * 2.5f;
|
|
|
|
|
ForceRedraw();
|
2017-09-21 22:16:05 +00:00
|
|
|
|
}
|
2019-02-28 04:58:19 +00:00
|
|
|
|
get => base.Size;
|
2017-09-21 22:16:05 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-09-20 22:44:30 +00:00
|
|
|
|
public BlurredIcon()
|
2021-11-05 06:54:27 +00:00
|
|
|
|
: base(cachedFrameBuffer: true)
|
2017-09-20 22:44:30 +00:00
|
|
|
|
{
|
|
|
|
|
RelativePositionAxes = Axes.X;
|
2017-09-22 17:43:51 +00:00
|
|
|
|
Child = icon = new SpriteIcon
|
2017-09-20 22:44:30 +00:00
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Anchor = Anchor.Centre,
|
2017-09-22 17:43:51 +00:00
|
|
|
|
Shadow = false,
|
2017-09-20 22:44:30 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-09-22 17:43:51 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
Colour = colours.BlueLighter;
|
|
|
|
|
}
|
2017-09-20 22:44:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|