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-05-29 10:13:56 +08:00
|
|
|
|
|
2020-02-13 17:48:28 +08:00
|
|
|
|
using System.Linq;
|
2018-12-26 16:07:59 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-05-29 10:13:56 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Localisation;
|
2018-12-26 16:07:59 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2018-12-20 19:03:39 +08:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2018-05-29 10:13:56 +08:00
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2018-12-20 19:03:39 +08:00
|
|
|
|
using osu.Game.Online.Chat;
|
2018-05-29 10:13:56 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Multi.Components
|
|
|
|
|
{
|
2019-02-05 18:00:01 +08:00
|
|
|
|
public class BeatmapTitle : MultiplayerComposite
|
2018-05-29 10:13:56 +08:00
|
|
|
|
{
|
2018-12-20 19:03:39 +08:00
|
|
|
|
private readonly LinkFlowContainer textFlow;
|
|
|
|
|
|
2018-05-29 10:13:56 +08:00
|
|
|
|
public BeatmapTitle()
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
|
|
2018-12-20 19:03:39 +08:00
|
|
|
|
InternalChild = textFlow = new LinkFlowContainer { AutoSizeAxes = Axes.Both };
|
2018-05-29 10:13:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-05 18:00:01 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
2018-05-29 10:13:56 +08:00
|
|
|
|
{
|
2020-02-17 14:06:14 +08:00
|
|
|
|
Playlist.CollectionChanged += (_, __) => updateText();
|
2020-02-13 17:48:28 +08:00
|
|
|
|
|
|
|
|
|
updateText();
|
2018-05-29 10:13:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-12 12:04:46 +08:00
|
|
|
|
private float textSize = OsuFont.DEFAULT_FONT_SIZE;
|
2018-12-22 13:01:06 +08:00
|
|
|
|
|
|
|
|
|
public float TextSize
|
|
|
|
|
{
|
|
|
|
|
get => textSize;
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (textSize == value)
|
|
|
|
|
return;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2018-12-22 13:01:06 +08:00
|
|
|
|
textSize = value;
|
|
|
|
|
|
|
|
|
|
updateText();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-26 16:07:59 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private OsuColour colours { get; set; }
|
|
|
|
|
|
2018-05-29 10:13:56 +08:00
|
|
|
|
private void updateText()
|
|
|
|
|
{
|
2019-02-13 13:57:40 +08:00
|
|
|
|
if (LoadState < LoadState.Loading)
|
2018-12-07 18:38:46 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2018-12-20 19:03:39 +08:00
|
|
|
|
textFlow.Clear();
|
|
|
|
|
|
2020-02-13 17:48:28 +08:00
|
|
|
|
var beatmap = Playlist.FirstOrDefault()?.Beatmap;
|
2019-02-11 18:11:34 +08:00
|
|
|
|
|
|
|
|
|
if (beatmap == null)
|
2019-11-11 19:53:22 +08:00
|
|
|
|
{
|
2018-12-26 16:07:59 +08:00
|
|
|
|
textFlow.AddText("No beatmap selected", s =>
|
|
|
|
|
{
|
2019-02-20 18:32:30 +08:00
|
|
|
|
s.Font = s.Font.With(size: TextSize);
|
2018-12-26 16:07:59 +08:00
|
|
|
|
s.Colour = colours.PinkLight;
|
|
|
|
|
});
|
2019-11-11 19:53:22 +08:00
|
|
|
|
}
|
2018-05-29 10:13:56 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
2018-12-20 19:03:39 +08:00
|
|
|
|
textFlow.AddLink(new[]
|
|
|
|
|
{
|
|
|
|
|
new OsuSpriteText
|
|
|
|
|
{
|
2020-02-13 17:12:47 +08:00
|
|
|
|
Text = new LocalisedString((beatmap.Value.Metadata.ArtistUnicode, beatmap.Value.Metadata.Artist)),
|
2019-02-12 12:04:46 +08:00
|
|
|
|
Font = OsuFont.GetFont(size: TextSize),
|
2018-12-20 19:03:39 +08:00
|
|
|
|
},
|
|
|
|
|
new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Text = " - ",
|
2019-02-12 12:04:46 +08:00
|
|
|
|
Font = OsuFont.GetFont(size: TextSize),
|
2018-12-20 19:03:39 +08:00
|
|
|
|
},
|
|
|
|
|
new OsuSpriteText
|
|
|
|
|
{
|
2020-02-13 17:12:47 +08:00
|
|
|
|
Text = new LocalisedString((beatmap.Value.Metadata.TitleUnicode, beatmap.Value.Metadata.Title)),
|
2019-02-12 12:04:46 +08:00
|
|
|
|
Font = OsuFont.GetFont(size: TextSize),
|
2018-12-20 19:03:39 +08:00
|
|
|
|
}
|
2020-02-13 17:12:47 +08:00
|
|
|
|
}, LinkAction.OpenBeatmap, beatmap.Value.OnlineBeatmapID.ToString(), "Open beatmap");
|
2018-05-29 10:13:56 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|