1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 20:47:26 +08:00
osu-lazer/osu.Game/Screens/Play/ReplayDownloadButton.cs
naoey 424711d24b
Fix replay button shake container
- Add license headers
- Slightly reduce bottom margin of button in score screen
2019-06-29 12:26:37 +05:30

152 lines
5.3 KiB
C#

// 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.Allocation;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
using osu.Game.Online;
using osu.Game.Scoring;
using osuTK;
using osu.Framework.Graphics.Sprites;
using osu.Game.Online.API.Requests.Responses;
using osu.Framework.Graphics.Effects;
using osuTK.Graphics;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics.Containers;
namespace osu.Game.Screens.Play
{
public class ReplayDownloadButton : DownloadTrackingComposite<ScoreInfo, ScoreManager>, IHasTooltip
{
private const int size = 40;
[Resolved(canBeNull: true)]
private OsuGame game { get; set; }
[Resolved]
private ScoreManager scores { get; set; }
[Resolved]
private OsuColour colours { get; set; }
private OsuClickableContainer button;
private SpriteIcon downloadIcon;
private SpriteIcon playIcon;
private ShakeContainer shakeContainer;
private CircularContainer circle;
public string TooltipText
{
get
{
if (scores.IsAvailableLocally(Model.Value))
return @"Watch replay";
if (Model.Value is APILegacyScoreInfo apiScore && apiScore.Replay)
return @"Download replay";
return @"Replay unavailable";
}
}
public ReplayDownloadButton(ScoreInfo score)
: base(score)
{
AutoSizeAxes = Axes.Both;
}
private bool hasReplay => (Model.Value is APILegacyScoreInfo apiScore && apiScore.Replay) || scores.IsAvailableLocally(Model.Value);
[BackgroundDependencyLoader(true)]
private void load()
{
InternalChild = shakeContainer = new ShakeContainer
{
AutoSizeAxes = Axes.Both,
Child = circle = new CircularContainer
{
Masking = true,
Size = new Vector2(size),
EdgeEffect = new EdgeEffectParameters
{
Colour = Color4.Black.Opacity(0.4f),
Type = EdgeEffectType.Shadow,
Radius = 5,
},
Child = button = new OsuClickableContainer
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = colours.GrayF,
},
playIcon = new SpriteIcon
{
Icon = FontAwesome.Solid.Play,
Size = Vector2.Zero,
Colour = colours.Gray3,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
downloadIcon = new SpriteIcon
{
Icon = FontAwesome.Solid.FileDownload,
Size = Vector2.Zero,
Colour = colours.Gray3,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
},
}
},
};
button.Action = () =>
{
switch (State.Value)
{
case DownloadState.LocallyAvailable:
game?.PresentScore(Model.Value);
break;
case DownloadState.NotDownloaded:
scores.Download(Model.Value);
break;
case DownloadState.Downloading:
shakeContainer.Shake();
break;
}
};
State.BindValueChanged(state =>
{
switch (state.NewValue)
{
case DownloadState.Downloading:
circle.FadeEdgeEffectTo(colours.Yellow, 400, Easing.OutQuint);
break;
case DownloadState.LocallyAvailable:
playIcon.ResizeTo(13, 300, Easing.OutQuint);
downloadIcon.ResizeTo(Vector2.Zero, 300, Easing.OutExpo);
circle.FadeEdgeEffectTo(Color4.Black.Opacity(0.4f), 400, Easing.OutQuint);
break;
case DownloadState.NotDownloaded:
playIcon.ResizeTo(Vector2.Zero, 300, Easing.OutQuint);
downloadIcon.ResizeTo(13, 300, Easing.OutExpo);
circle.FadeEdgeEffectTo(Color4.Black.Opacity(0.4f), 400, Easing.OutQuint);
break;
}
}, true);
}
}
}