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-05-29 02:13:56 +00:00
|
|
|
|
|
2020-02-13 09:48:28 +00:00
|
|
|
|
using System.Linq;
|
2018-12-26 08:07:59 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-05-29 02:13:56 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2021-02-22 08:14:13 +00:00
|
|
|
|
using osu.Framework.Localisation;
|
2018-12-26 08:07:59 +00:00
|
|
|
|
using osu.Game.Graphics;
|
2018-12-20 11:03:39 +00:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
|
using osu.Game.Online.Chat;
|
2018-05-29 02:13:56 +00:00
|
|
|
|
|
2020-12-25 15:50:00 +00:00
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.Components
|
2018-05-29 02:13:56 +00:00
|
|
|
|
{
|
2020-12-25 16:12:33 +00:00
|
|
|
|
public partial class BeatmapTitle : OnlinePlayComposite
|
2018-05-29 02:13:56 +00:00
|
|
|
|
{
|
2018-12-20 11:03:39 +00:00
|
|
|
|
private readonly LinkFlowContainer textFlow;
|
|
|
|
|
|
2018-05-29 02:13:56 +00:00
|
|
|
|
public BeatmapTitle()
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
|
|
2018-12-20 11:03:39 +00:00
|
|
|
|
InternalChild = textFlow = new LinkFlowContainer { AutoSizeAxes = Axes.Both };
|
2018-05-29 02:13:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-05 10:00:01 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
2018-05-29 02:13:56 +00:00
|
|
|
|
{
|
2022-06-24 12:25:23 +00:00
|
|
|
|
Playlist.CollectionChanged += (_, _) => updateText();
|
2020-02-13 09:48:28 +00:00
|
|
|
|
|
|
|
|
|
updateText();
|
2018-05-29 02:13:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-12 04:04:46 +00:00
|
|
|
|
private float textSize = OsuFont.DEFAULT_FONT_SIZE;
|
2018-12-22 05:01:06 +00:00
|
|
|
|
|
|
|
|
|
public float TextSize
|
|
|
|
|
{
|
|
|
|
|
get => textSize;
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (textSize == value)
|
|
|
|
|
return;
|
2019-02-28 04:31:40 +00:00
|
|
|
|
|
2018-12-22 05:01:06 +00:00
|
|
|
|
textSize = value;
|
|
|
|
|
|
|
|
|
|
updateText();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-26 08:07:59 +00:00
|
|
|
|
[Resolved]
|
|
|
|
|
private OsuColour colours { get; set; } = null!;
|
|
|
|
|
|
2018-05-29 02:13:56 +00:00
|
|
|
|
private void updateText()
|
|
|
|
|
{
|
2019-02-13 05:57:40 +00:00
|
|
|
|
if (LoadState < LoadState.Loading)
|
2018-12-07 10:38:46 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2018-12-20 11:03:39 +00:00
|
|
|
|
textFlow.Clear();
|
|
|
|
|
|
2020-02-13 09:48:28 +00:00
|
|
|
|
var beatmap = Playlist.FirstOrDefault()?.Beatmap;
|
2019-02-11 10:11:34 +00:00
|
|
|
|
|
|
|
|
|
if (beatmap == null)
|
2019-11-11 11:53:22 +00:00
|
|
|
|
{
|
2018-12-26 08:07:59 +00:00
|
|
|
|
textFlow.AddText("No beatmap selected", s =>
|
|
|
|
|
{
|
2019-02-20 10:32:30 +00:00
|
|
|
|
s.Font = s.Font.With(size: TextSize);
|
2018-12-26 08:07:59 +00:00
|
|
|
|
s.Colour = colours.PinkLight;
|
|
|
|
|
});
|
2019-11-11 11:53:22 +00:00
|
|
|
|
}
|
2018-05-29 02:13:56 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2022-02-15 14:33:26 +00:00
|
|
|
|
var metadataInfo = beatmap.Metadata;
|
2021-10-30 16:31:43 +00:00
|
|
|
|
|
|
|
|
|
string artistUnicode = string.IsNullOrEmpty(metadataInfo.ArtistUnicode) ? metadataInfo.Artist : metadataInfo.ArtistUnicode;
|
|
|
|
|
string titleUnicode = string.IsNullOrEmpty(metadataInfo.TitleUnicode) ? metadataInfo.Title : metadataInfo.TitleUnicode;
|
|
|
|
|
|
|
|
|
|
var title = new RomanisableString($"{artistUnicode} - {titleUnicode}".Trim(), $"{metadataInfo.Artist} - {metadataInfo.Title}".Trim());
|
|
|
|
|
|
2022-02-15 14:33:26 +00:00
|
|
|
|
textFlow.AddLink(title, LinkAction.OpenBeatmap, beatmap.OnlineID.ToString(), "Open beatmap");
|
2018-05-29 02:13:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|