1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00
osu-lazer/osu.Game/Screens/Menu/SongTicker.cs

68 lines
2.2 KiB
C#
Raw Normal View History

2020-01-11 11:58:35 +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.
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics.Sprites;
using osuTK;
using osu.Game.Graphics;
using osu.Framework.Bindables;
using osu.Game.Beatmaps;
2020-01-11 12:32:40 +08:00
using osu.Framework.Localisation;
2020-01-11 11:58:35 +08:00
namespace osu.Game.Screens.Menu
{
public class SongTicker : Container
{
2020-01-11 12:17:13 +08:00
private const int fade_duration = 800;
2020-01-11 11:58:35 +08:00
[Resolved]
private Bindable<WorkingBeatmap> beatmap { get; set; }
private readonly OsuSpriteText title, artist;
public SongTicker()
{
AutoSizeAxes = Axes.Both;
Child = new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Vertical,
Spacing = new Vector2(0, 3),
Children = new Drawable[]
{
title = new OsuSpriteText
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
Font = OsuFont.GetFont(size: 24, weight: FontWeight.Light, italics: true)
},
artist = new OsuSpriteText
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
Font = OsuFont.GetFont(size: 16)
}
}
};
}
protected override void LoadComplete()
{
base.LoadComplete();
2020-01-11 22:48:09 +08:00
beatmap.BindValueChanged(onBeatmapChanged);
2020-01-11 11:58:35 +08:00
}
private void onBeatmapChanged(ValueChangedEvent<WorkingBeatmap> working)
{
2020-01-11 22:50:13 +08:00
var metadata = working.NewValue.Metadata;
2020-01-11 12:32:40 +08:00
title.Text = new LocalisedString((metadata.TitleUnicode, metadata.Title));
artist.Text = new LocalisedString((metadata.ArtistUnicode, metadata.Artist));
2020-01-11 11:58:35 +08:00
2020-01-11 12:17:13 +08:00
this.FadeIn(fade_duration, Easing.OutQuint).Delay(4000).Then().FadeOut(fade_duration, Easing.OutQuint);
2020-01-11 11:58:35 +08:00
}
}
}