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
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Colour;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Beatmaps.Drawables;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2018-05-22 21:29:52 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2018-04-18 15:04:02 +08:00
|
|
|
|
using osu.Game.Overlays.BeatmapSet.Buttons;
|
2019-01-18 13:28:06 +08:00
|
|
|
|
using osu.Game.Overlays.Direct;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
|
|
|
|
using osuTK.Graphics;
|
2019-01-18 13:28:06 +08:00
|
|
|
|
using DownloadButton = osu.Game.Overlays.BeatmapSet.Buttons.DownloadButton;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.BeatmapSet
|
|
|
|
|
{
|
2019-01-18 13:28:06 +08:00
|
|
|
|
public class Header : DownloadTrackingComposite
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-04-18 15:04:02 +08:00
|
|
|
|
private const float transition_duration = 200;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private const float tabs_height = 50;
|
|
|
|
|
private const float buttons_height = 45;
|
|
|
|
|
private const float buttons_spacing = 5;
|
|
|
|
|
|
|
|
|
|
private readonly Box tabsBg;
|
2018-05-29 06:31:20 +08:00
|
|
|
|
private readonly UpdateableBeatmapSetCover cover;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private readonly OsuSpriteText title, artist;
|
|
|
|
|
private readonly AuthorInfo author;
|
2019-01-18 11:04:49 +08:00
|
|
|
|
private readonly FillFlowContainer downloadButtonsContainer;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private readonly BeatmapSetOnlineStatusPill onlineStatusPill;
|
|
|
|
|
public Details Details;
|
|
|
|
|
|
|
|
|
|
public readonly BeatmapPicker Picker;
|
|
|
|
|
|
2018-04-18 15:04:02 +08:00
|
|
|
|
private readonly FavouriteButton favouriteButton;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public Header()
|
|
|
|
|
{
|
2018-05-22 21:29:52 +08:00
|
|
|
|
ExternalLinkButton externalLink;
|
2019-01-18 13:28:06 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
Height = 400;
|
|
|
|
|
Masking = true;
|
2019-01-18 13:28:06 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
EdgeEffect = new EdgeEffectParameters
|
|
|
|
|
{
|
|
|
|
|
Colour = Color4.Black.Opacity(0.25f),
|
|
|
|
|
Type = EdgeEffectType.Shadow,
|
|
|
|
|
Radius = 3,
|
|
|
|
|
Offset = new Vector2(0f, 1f),
|
|
|
|
|
};
|
2019-01-18 13:28:06 +08:00
|
|
|
|
|
|
|
|
|
InternalChildren = new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = tabs_height,
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
tabsBg = new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Top = tabs_height },
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2018-05-29 06:31:20 +08:00
|
|
|
|
cover = new UpdateableBeatmapSetCover
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = ColourInfo.GradientVertical(Color4.Black.Opacity(0.3f), Color4.Black.Opacity(0.8f)),
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Top = 20, Bottom = 30, Horizontal = BeatmapSetOverlay.X_PADDING },
|
|
|
|
|
Child = new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = 113,
|
|
|
|
|
Child = Picker = new BeatmapPicker(),
|
|
|
|
|
},
|
2018-05-22 21:29:52 +08:00
|
|
|
|
new FillFlowContainer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-05-22 21:29:52 +08:00
|
|
|
|
Direction = FillDirection.Horizontal,
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
title = new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Font = @"Exo2.0-BoldItalic",
|
|
|
|
|
TextSize = 37,
|
|
|
|
|
},
|
|
|
|
|
externalLink = new ExternalLinkButton
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
Margin = new MarginPadding { Left = 3, Bottom = 4 }, //To better lineup with the font
|
|
|
|
|
},
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
artist = new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Font = @"Exo2.0-SemiBoldItalic",
|
|
|
|
|
TextSize = 25,
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Margin = new MarginPadding { Top = 20 },
|
|
|
|
|
Child = author = new AuthorInfo(),
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = buttons_height,
|
|
|
|
|
Margin = new MarginPadding { Top = 10 },
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2018-04-18 15:04:02 +08:00
|
|
|
|
favouriteButton = new FavouriteButton(),
|
2019-01-18 11:04:49 +08:00
|
|
|
|
downloadButtonsContainer = new FillFlowContainer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Left = buttons_height + buttons_spacing },
|
2019-01-18 11:04:49 +08:00
|
|
|
|
Spacing = new Vector2(buttons_spacing),
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.BottomRight,
|
|
|
|
|
Origin = Anchor.BottomRight,
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Margin = new MarginPadding { Right = BeatmapSetOverlay.X_PADDING },
|
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
|
Spacing = new Vector2(10),
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2018-09-20 11:35:07 +08:00
|
|
|
|
onlineStatusPill = new BeatmapSetOnlineStatusPill
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
2018-09-20 11:35:07 +08:00
|
|
|
|
TextSize = 14,
|
|
|
|
|
TextPadding = new MarginPadding { Horizontal = 25, Vertical = 8 }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
Details = new Details(),
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Picker.Beatmap.ValueChanged += b => Details.Beatmap = b;
|
2019-01-18 13:28:06 +08:00
|
|
|
|
Picker.Beatmap.ValueChanged += b => externalLink.Link = $@"https://osu.ppy.sh/beatmapsets/{BeatmapSet.Value?.OnlineBeatmapSetID}#{b?.Ruleset.ShortName}/{b?.OnlineBeatmapID}";
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2018-06-05 07:27:34 +08:00
|
|
|
|
private void load(OsuColour colours)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
tabsBg.Colour = colours.Gray3;
|
2019-01-18 13:28:06 +08:00
|
|
|
|
|
|
|
|
|
BeatmapSet.BindValueChanged(beatmapSet =>
|
|
|
|
|
{
|
|
|
|
|
Picker.BeatmapSet = author.BeatmapSet = Details.BeatmapSet = beatmapSet;
|
|
|
|
|
|
|
|
|
|
title.Text = beatmapSet?.Metadata.Title ?? string.Empty;
|
|
|
|
|
artist.Text = beatmapSet?.Metadata.Artist ?? string.Empty;
|
|
|
|
|
onlineStatusPill.Status = beatmapSet?.OnlineInfo.Status ?? BeatmapSetOnlineStatus.None;
|
|
|
|
|
cover.BeatmapSet = beatmapSet;
|
|
|
|
|
|
|
|
|
|
if (beatmapSet != null)
|
|
|
|
|
{
|
|
|
|
|
downloadButtonsContainer.FadeIn(transition_duration);
|
|
|
|
|
favouriteButton.FadeIn(transition_duration);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
downloadButtonsContainer.FadeOut(transition_duration);
|
|
|
|
|
favouriteButton.FadeOut(transition_duration);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
updateDownloadButtons();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
State.BindValueChanged(_ => updateDownloadButtons(), true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateDownloadButtons()
|
|
|
|
|
{
|
|
|
|
|
if (BeatmapSet.Value == null) return;
|
|
|
|
|
switch (State.Value)
|
|
|
|
|
{
|
|
|
|
|
case DownloadState.LocallyAvailable:
|
|
|
|
|
// temporary for UX until new design is implemented.
|
|
|
|
|
downloadButtonsContainer.Child = new osu.Game.Overlays.Direct.DownloadButton(BeatmapSet)
|
|
|
|
|
{
|
|
|
|
|
Width = 50,
|
|
|
|
|
RelativeSizeAxes = Axes.Y
|
|
|
|
|
};
|
|
|
|
|
break;
|
|
|
|
|
case DownloadState.Downloading:
|
|
|
|
|
case DownloadState.Downloaded:
|
|
|
|
|
// temporary to avoid showing two buttons for maps with novideo. will be fixed in new beatmap overlay design.
|
|
|
|
|
downloadButtonsContainer.Child = new DownloadButton(BeatmapSet);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
downloadButtonsContainer.Child = new DownloadButton(BeatmapSet);
|
|
|
|
|
if (BeatmapSet.Value.OnlineInfo.HasVideo)
|
|
|
|
|
downloadButtonsContainer.Add(new DownloadButton(BeatmapSet, true));
|
|
|
|
|
break;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|