osu/osu.Game/Screens/Multi/Components/BeatmapTitle.cs

88 lines
2.6 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.
2018-12-26 08:07:59 +00:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
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.Graphics.Sprites;
2018-12-20 11:03:39 +00:00
using osu.Game.Online.Chat;
namespace osu.Game.Screens.Multi.Components
{
2019-02-05 10:00:01 +00:00
public class BeatmapTitle : MultiplayerComposite
{
2018-12-20 11:03:39 +00:00
private readonly LinkFlowContainer textFlow;
public BeatmapTitle()
{
AutoSizeAxes = Axes.Both;
2018-12-20 11:03:39 +00:00
InternalChild = textFlow = new LinkFlowContainer { AutoSizeAxes = Axes.Both };
}
2019-02-05 10:00:01 +00:00
[BackgroundDependencyLoader]
private void load()
{
CurrentItem.BindValueChanged(_ => updateText(), true);
}
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;
textSize = value;
updateText();
}
}
2018-12-26 08:07:59 +00:00
[Resolved]
private OsuColour colours { get; set; }
private void updateText()
{
2019-02-13 05:57:40 +00:00
if (LoadState < LoadState.Loading)
return;
2018-12-20 11:03:39 +00:00
textFlow.Clear();
2019-02-11 10:11:34 +00:00
var beatmap = CurrentItem.Value?.Beatmap;
if (beatmap == null)
2018-12-26 08:07:59 +00:00
textFlow.AddText("No beatmap selected", s =>
{
s.Font = s.Font.With(size: TextSize);
2018-12-26 08:07:59 +00:00
s.Colour = colours.PinkLight;
});
else
{
2018-12-20 11:03:39 +00:00
textFlow.AddLink(new[]
{
new OsuSpriteText
{
2019-02-11 10:11:34 +00:00
Text = new LocalisedString((beatmap.Metadata.ArtistUnicode, beatmap.Metadata.Artist)),
Font = OsuFont.GetFont(size: TextSize),
2018-12-20 11:03:39 +00:00
},
new OsuSpriteText
{
Text = " - ",
Font = OsuFont.GetFont(size: TextSize),
2018-12-20 11:03:39 +00:00
},
new OsuSpriteText
{
2019-02-11 10:11:34 +00:00
Text = new LocalisedString((beatmap.Metadata.TitleUnicode, beatmap.Metadata.Title)),
Font = OsuFont.GetFont(size: TextSize),
2018-12-20 11:03:39 +00:00
}
2019-02-11 10:11:34 +00:00
}, null, LinkAction.OpenBeatmap, beatmap.OnlineBeatmapID.ToString(), "Open beatmap");
}
}
}
}