1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 20:37:19 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

83 lines
2.4 KiB
C#
Raw Normal View History

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