2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-05-18 05:02:33 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using OpenTK;
|
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Colour;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2017-05-19 23:52:23 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Localisation;
|
2017-06-20 13:54:23 +08:00
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2017-07-26 12:22:46 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2017-05-18 05:02:33 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Direct
|
|
|
|
|
{
|
|
|
|
|
public class DirectListPanel : DirectPanel
|
|
|
|
|
{
|
2017-05-20 06:50:45 +08:00
|
|
|
|
private const float horizontal_padding = 10;
|
|
|
|
|
private const float vertical_padding = 5;
|
|
|
|
|
private const float height = 70;
|
2017-05-18 05:02:33 +08:00
|
|
|
|
|
2017-05-19 02:01:01 +08:00
|
|
|
|
public DirectListPanel(BeatmapSetInfo beatmap) : base(beatmap)
|
2017-05-18 05:02:33 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
Height = height;
|
2017-05-20 04:52:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-18 04:39:34 +08:00
|
|
|
|
private PlayButton playButton;
|
|
|
|
|
private Box progressBar;
|
|
|
|
|
|
|
|
|
|
protected override PlayButton PlayButton => playButton;
|
2017-09-30 05:08:30 +08:00
|
|
|
|
protected override Box PreviewBar => progressBar;
|
2017-09-18 04:39:34 +08:00
|
|
|
|
|
2017-05-19 23:52:23 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2017-09-18 04:39:34 +08:00
|
|
|
|
private void load(LocalisationEngine localisation, OsuColour colours)
|
2017-05-19 23:52:23 +08:00
|
|
|
|
{
|
2017-08-24 17:18:03 +08:00
|
|
|
|
Content.CornerRadius = 5;
|
|
|
|
|
|
|
|
|
|
AddRange(new Drawable[]
|
2017-05-18 05:02:33 +08:00
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-07-23 13:30:50 +08:00
|
|
|
|
Colour = ColourInfo.GradientHorizontal(Color4.Black.Opacity(0.25f), Color4.Black.Opacity(0.75f)),
|
2017-05-18 05:02:33 +08:00
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Top = vertical_padding, Bottom = vertical_padding, Left = horizontal_padding, Right = vertical_padding },
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new FillFlowContainer
|
|
|
|
|
{
|
2017-09-18 04:39:34 +08:00
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
|
Anchor = Anchor.CentreLeft,
|
2017-05-18 05:02:33 +08:00
|
|
|
|
AutoSizeAxes = Axes.Both,
|
2017-09-18 04:39:34 +08:00
|
|
|
|
Direction = FillDirection.Horizontal,
|
|
|
|
|
LayoutEasing = Easing.OutQuint,
|
|
|
|
|
LayoutDuration = 120,
|
|
|
|
|
Spacing = new Vector2(10, 0),
|
2017-05-18 05:02:33 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-10-07 03:00:23 +08:00
|
|
|
|
playButton = new PlayButton(SetInfo)
|
2017-05-18 05:02:33 +08:00
|
|
|
|
{
|
2017-09-18 04:39:34 +08:00
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
|
Size = new Vector2(height / 2),
|
|
|
|
|
FillMode = FillMode.Fit,
|
|
|
|
|
Alpha = 0,
|
2017-05-18 05:02:33 +08:00
|
|
|
|
},
|
2017-05-19 23:52:23 +08:00
|
|
|
|
new FillFlowContainer
|
2017-05-18 05:02:33 +08:00
|
|
|
|
{
|
2017-09-18 04:39:34 +08:00
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Current = localisation.GetUnicodePreference(SetInfo.Metadata.TitleUnicode, SetInfo.Metadata.Title),
|
|
|
|
|
TextSize = 18,
|
|
|
|
|
Font = @"Exo2.0-BoldItalic",
|
|
|
|
|
},
|
|
|
|
|
new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Current = localisation.GetUnicodePreference(SetInfo.Metadata.ArtistUnicode, SetInfo.Metadata.Artist),
|
|
|
|
|
Font = @"Exo2.0-BoldItalic",
|
|
|
|
|
},
|
|
|
|
|
new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.X,
|
|
|
|
|
Height = 20,
|
|
|
|
|
Margin = new MarginPadding { Top = vertical_padding, Bottom = vertical_padding },
|
|
|
|
|
Children = GetDifficultyIcons(),
|
|
|
|
|
},
|
|
|
|
|
},
|
2017-05-18 05:02:33 +08:00
|
|
|
|
},
|
2017-09-18 04:39:34 +08:00
|
|
|
|
}
|
2017-05-18 05:02:33 +08:00
|
|
|
|
},
|
|
|
|
|
new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Direction = FillDirection.Vertical,
|
2017-05-20 06:50:45 +08:00
|
|
|
|
Margin = new MarginPadding { Right = height - vertical_padding * 2 + vertical_padding },
|
2017-05-18 05:02:33 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-05-28 11:37:55 +08:00
|
|
|
|
new Statistic(FontAwesome.fa_play_circle, SetInfo.OnlineInfo?.PlayCount ?? 0)
|
2017-05-19 02:01:01 +08:00
|
|
|
|
{
|
2017-05-19 23:52:23 +08:00
|
|
|
|
Margin = new MarginPadding { Right = 1 },
|
2017-05-18 05:02:33 +08:00
|
|
|
|
},
|
2017-05-28 11:37:55 +08:00
|
|
|
|
new Statistic(FontAwesome.fa_heart, SetInfo.OnlineInfo?.FavouriteCount ?? 0),
|
2017-05-18 05:02:33 +08:00
|
|
|
|
new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Direction = FillDirection.Horizontal,
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
new OsuSpriteText
|
|
|
|
|
{
|
2017-05-24 13:19:45 +08:00
|
|
|
|
Text = "mapped by ",
|
2017-05-18 05:02:33 +08:00
|
|
|
|
TextSize = 14,
|
|
|
|
|
},
|
2017-05-19 23:52:23 +08:00
|
|
|
|
new OsuSpriteText
|
2017-05-18 05:02:33 +08:00
|
|
|
|
{
|
2017-10-13 19:25:27 +08:00
|
|
|
|
Text = SetInfo.Metadata.Author.Username,
|
2017-05-18 05:02:33 +08:00
|
|
|
|
TextSize = 14,
|
|
|
|
|
Font = @"Exo2.0-SemiBoldItalic",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2017-05-19 23:52:23 +08:00
|
|
|
|
new OsuSpriteText
|
2017-05-18 05:02:33 +08:00
|
|
|
|
{
|
2017-05-24 13:19:45 +08:00
|
|
|
|
Text = $"from {SetInfo.Metadata.Source}",
|
2017-05-18 05:02:33 +08:00
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
TextSize = 14,
|
2017-05-20 07:03:07 +08:00
|
|
|
|
Alpha = string.IsNullOrEmpty(SetInfo.Metadata.Source) ? 0f : 1f,
|
2017-05-18 05:02:33 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
new DownloadButton
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
2017-05-20 06:50:45 +08:00
|
|
|
|
Size = new Vector2(height - vertical_padding * 2),
|
2017-08-24 17:51:50 +08:00
|
|
|
|
Action = StartDownload
|
2017-05-18 05:02:33 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2017-09-18 04:39:34 +08:00
|
|
|
|
progressBar = new Box
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
BypassAutoSizeAxes = Axes.Y,
|
|
|
|
|
Size = new Vector2(0, 3),
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
Colour = colours.Yellow,
|
|
|
|
|
},
|
2017-08-24 17:18:03 +08:00
|
|
|
|
});
|
2017-05-18 05:02:33 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|