mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 17:07:38 +08:00
67 lines
2.2 KiB
C#
67 lines
2.2 KiB
C#
|
// 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;
|
|||
|
|
|||
|
namespace osu.Game.Screens.Menu
|
|||
|
{
|
|||
|
public class SongTicker : Container
|
|||
|
{
|
|||
|
private const int duration = 500;
|
|||
|
|
|||
|
[Resolved]
|
|||
|
private Bindable<WorkingBeatmap> beatmap { get; set; }
|
|||
|
|
|||
|
private readonly Bindable<WorkingBeatmap> workingBeatmap = new Bindable<WorkingBeatmap>();
|
|||
|
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();
|
|||
|
workingBeatmap.BindTo(beatmap);
|
|||
|
workingBeatmap.BindValueChanged(onBeatmapChanged);
|
|||
|
}
|
|||
|
|
|||
|
private void onBeatmapChanged(ValueChangedEvent<WorkingBeatmap> working)
|
|||
|
{
|
|||
|
title.Text = working.NewValue?.Metadata?.Title;
|
|||
|
artist.Text = working.NewValue?.Metadata?.Artist;
|
|||
|
|
|||
|
this.FadeIn(duration, Easing.OutQuint).Delay(4000).Then().FadeOut(duration, Easing.OutQuint);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|