mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 06:07:28 +08:00
91 lines
2.6 KiB
C#
91 lines
2.6 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Configuration;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Online.Chat;
|
|
|
|
namespace osu.Game.Screens.Multi.Components
|
|
{
|
|
public class BeatmapTitle : CompositeDrawable
|
|
{
|
|
public readonly IBindable<BeatmapInfo> Beatmap = new Bindable<BeatmapInfo>();
|
|
|
|
private readonly LinkFlowContainer textFlow;
|
|
|
|
public BeatmapTitle()
|
|
{
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
InternalChild = textFlow = new LinkFlowContainer { AutoSizeAxes = Axes.Both };
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
Beatmap.BindValueChanged(v => updateText(), true);
|
|
}
|
|
|
|
private float textSize = OsuSpriteText.FONT_SIZE;
|
|
|
|
public float TextSize
|
|
{
|
|
get => textSize;
|
|
set
|
|
{
|
|
if (textSize == value)
|
|
return;
|
|
textSize = value;
|
|
|
|
updateText();
|
|
}
|
|
}
|
|
|
|
[Resolved]
|
|
private OsuColour colours { get; set; }
|
|
|
|
private void updateText()
|
|
{
|
|
if (!IsLoaded)
|
|
return;
|
|
|
|
textFlow.Clear();
|
|
|
|
if (Beatmap.Value == null)
|
|
textFlow.AddText("No beatmap selected", s =>
|
|
{
|
|
s.TextSize = TextSize;
|
|
s.Colour = colours.PinkLight;
|
|
});
|
|
else
|
|
{
|
|
textFlow.AddLink(new[]
|
|
{
|
|
new OsuSpriteText
|
|
{
|
|
Text = new LocalisedString((Beatmap.Value.Metadata.ArtistUnicode, Beatmap.Value.Metadata.Artist)),
|
|
TextSize = TextSize,
|
|
},
|
|
new OsuSpriteText
|
|
{
|
|
Text = " - ",
|
|
TextSize = TextSize,
|
|
},
|
|
new OsuSpriteText
|
|
{
|
|
Text = new LocalisedString((Beatmap.Value.Metadata.TitleUnicode, Beatmap.Value.Metadata.Title)),
|
|
TextSize = TextSize,
|
|
}
|
|
}, null, LinkAction.OpenBeatmap, Beatmap.Value.OnlineBeatmapID.ToString(), "Open beatmap");
|
|
}
|
|
}
|
|
}
|
|
}
|