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.Allocation;
|
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2017-05-19 23:52:23 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2017-05-18 05:02:33 +08:00
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
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 DirectGridPanel : DirectPanel
|
|
|
|
|
{
|
2017-05-20 06:50:45 +08:00
|
|
|
|
private const float horizontal_padding = 10;
|
|
|
|
|
private const float vertical_padding = 5;
|
2017-05-18 05:02:33 +08:00
|
|
|
|
|
2017-05-20 04:52:34 +08:00
|
|
|
|
private FillFlowContainer bottomPanel;
|
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-05-20 04:52:34 +08:00
|
|
|
|
|
2017-05-19 02:01:01 +08:00
|
|
|
|
public DirectGridPanel(BeatmapSetInfo beatmap) : base(beatmap)
|
2017-05-18 05:02:33 +08:00
|
|
|
|
{
|
2017-11-14 18:03:50 +08:00
|
|
|
|
Width = 400;
|
2017-05-18 05:02:33 +08:00
|
|
|
|
Height = 140 + vertical_padding; //full height of all the elements plus vertical padding (autosize uses the image)
|
2017-05-19 23:52:23 +08:00
|
|
|
|
}
|
2017-05-18 05:02:33 +08:00
|
|
|
|
|
2017-05-20 04:52:34 +08:00
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
bottomPanel.LayoutDuration = 200;
|
2017-07-23 02:50:25 +08:00
|
|
|
|
bottomPanel.LayoutEasing = Easing.Out;
|
2017-05-20 04:52:34 +08:00
|
|
|
|
bottomPanel.Origin = Anchor.BottomLeft;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-19 23:52:23 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2017-07-13 10:06:28 +08:00
|
|
|
|
private void load(OsuColour colours, LocalisationEngine localisation)
|
2017-05-19 23:52:23 +08:00
|
|
|
|
{
|
2017-08-24 17:18:03 +08:00
|
|
|
|
Content.CornerRadius = 4;
|
|
|
|
|
|
2017-08-24 16:39:39 +08:00
|
|
|
|
AddRange(new Drawable[]
|
2017-05-18 05:02:33 +08:00
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = Color4.Black.Opacity(0.5f),
|
|
|
|
|
},
|
2017-05-20 04:52:34 +08:00
|
|
|
|
bottomPanel = new FillFlowContainer
|
2017-05-18 05:02:33 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
2017-05-20 04:52:34 +08:00
|
|
|
|
Origin = Anchor.TopLeft,
|
2017-05-18 05:02:33 +08:00
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Spacing = new Vector2(0f, vertical_padding),
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Left = horizontal_padding, Right = horizontal_padding },
|
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
2017-05-19 23:52:23 +08:00
|
|
|
|
new OsuSpriteText
|
2017-05-18 05:02:33 +08:00
|
|
|
|
{
|
2017-05-19 23:52:23 +08:00
|
|
|
|
Text = localisation.GetUnicodePreference(SetInfo.Metadata.TitleUnicode, SetInfo.Metadata.Title),
|
2017-05-18 05:02:33 +08:00
|
|
|
|
TextSize = 18,
|
|
|
|
|
Font = @"Exo2.0-BoldItalic",
|
|
|
|
|
},
|
2017-05-19 23:52:23 +08:00
|
|
|
|
new OsuSpriteText
|
2017-05-18 05:02:33 +08:00
|
|
|
|
{
|
2017-05-19 23:52:23 +08:00
|
|
|
|
Text = localisation.GetUnicodePreference(SetInfo.Metadata.ArtistUnicode, SetInfo.Metadata.Artist),
|
2017-05-18 05:02:33 +08:00
|
|
|
|
Font = @"Exo2.0-BoldItalic",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
2017-09-18 04:39:34 +08:00
|
|
|
|
progressBar = new Box
|
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
BypassAutoSizeAxes = Axes.Both,
|
|
|
|
|
Size = new Vector2(0, 3),
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
Colour = colours.Yellow,
|
|
|
|
|
},
|
2017-05-18 05:02:33 +08:00
|
|
|
|
new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Direction = FillDirection.Vertical,
|
2017-05-22 14:13:55 +08:00
|
|
|
|
Padding = new MarginPadding
|
|
|
|
|
{
|
|
|
|
|
Top = vertical_padding,
|
|
|
|
|
Bottom = vertical_padding,
|
|
|
|
|
Left = horizontal_padding,
|
|
|
|
|
Right = horizontal_padding,
|
|
|
|
|
},
|
2017-05-18 05:02:33 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Direction = FillDirection.Horizontal,
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
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 = "mapped by ",
|
2017-05-18 05:02:33 +08:00
|
|
|
|
TextSize = 14,
|
|
|
|
|
Shadow = false,
|
2017-05-19 23:52:23 +08:00
|
|
|
|
Colour = colours.Gray5,
|
2017-05-18 05:02:33 +08:00
|
|
|
|
},
|
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",
|
|
|
|
|
Shadow = false,
|
2017-05-19 23:52:23 +08:00
|
|
|
|
Colour = colours.BlueDark,
|
2017-05-18 05:02:33 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2017-05-20 02:43:18 +08:00
|
|
|
|
new Container
|
2017-05-18 05:02:33 +08:00
|
|
|
|
{
|
2017-05-20 02:43:18 +08:00
|
|
|
|
AutoSizeAxes = Axes.X,
|
|
|
|
|
Height = 14,
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
new OsuSpriteText
|
|
|
|
|
{
|
2017-05-24 13:19:45 +08:00
|
|
|
|
Text = $"from {SetInfo.Metadata.Source}",
|
2017-05-20 02:43:18 +08:00
|
|
|
|
TextSize = 14,
|
|
|
|
|
Shadow = false,
|
|
|
|
|
Colour = colours.Gray5,
|
2017-05-20 07:03:07 +08:00
|
|
|
|
Alpha = string.IsNullOrEmpty(SetInfo.Metadata.Source) ? 0f : 1f,
|
2017-05-20 02:43:18 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
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-05-19 23:52:23 +08:00
|
|
|
|
AutoSizeAxes = Axes.X,
|
|
|
|
|
Height = 20,
|
2017-05-20 02:43:18 +08:00
|
|
|
|
Margin = new MarginPadding { Top = vertical_padding, Bottom = vertical_padding },
|
2017-05-20 03:11:45 +08:00
|
|
|
|
Children = GetDifficultyIcons(),
|
2017-05-18 05:02:33 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2017-09-26 00:18:35 +08:00
|
|
|
|
new DownloadButton
|
|
|
|
|
{
|
|
|
|
|
Size = new Vector2(30),
|
|
|
|
|
Margin = new MarginPadding(horizontal_padding),
|
|
|
|
|
Anchor = Anchor.CentreRight,
|
|
|
|
|
Origin = Anchor.CentreRight,
|
|
|
|
|
Colour = colours.Gray5,
|
|
|
|
|
Action = StartDownload
|
|
|
|
|
},
|
2017-05-18 05:02:33 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
|
Margin = new MarginPadding { Top = vertical_padding, Right = vertical_padding },
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
2017-05-28 11:37:55 +08:00
|
|
|
|
new Statistic(FontAwesome.fa_play_circle, SetInfo.OnlineInfo?.PlayCount ?? 0)
|
2017-05-18 05:02:33 +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
|
|
|
|
},
|
|
|
|
|
},
|
2017-10-07 03:00:23 +08:00
|
|
|
|
playButton = new PlayButton(SetInfo)
|
2017-09-18 04:39:34 +08:00
|
|
|
|
{
|
|
|
|
|
Margin = new MarginPadding { Top = 5, Left = 10 },
|
|
|
|
|
Size = new Vector2(30),
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
},
|
2017-08-24 16:39:39 +08:00
|
|
|
|
});
|
2017-05-18 05:02:33 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|