mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:27:31 +08:00
49 lines
1.4 KiB
C#
49 lines
1.4 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.
|
|
|
|
#nullable disable
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Beatmaps.Legacy;
|
|
using osu.Game.Tournament.Components;
|
|
using osu.Game.Tournament.IPC;
|
|
using osu.Game.Tournament.Models;
|
|
|
|
namespace osu.Game.Tournament.Screens
|
|
{
|
|
public abstract partial class BeatmapInfoScreen : TournamentMatchScreen
|
|
{
|
|
protected readonly SongBar SongBar;
|
|
|
|
protected BeatmapInfoScreen()
|
|
{
|
|
AddInternal(SongBar = new SongBar
|
|
{
|
|
Anchor = Anchor.BottomRight,
|
|
Origin = Anchor.BottomRight,
|
|
Depth = float.MinValue,
|
|
});
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(MatchIPCInfo ipc)
|
|
{
|
|
ipc.Beatmap.BindValueChanged(beatmapChanged, true);
|
|
ipc.Mods.BindValueChanged(modsChanged, true);
|
|
}
|
|
|
|
private void modsChanged(ValueChangedEvent<LegacyMods> mods)
|
|
{
|
|
SongBar.Mods = mods.NewValue;
|
|
}
|
|
|
|
private void beatmapChanged(ValueChangedEvent<TournamentBeatmap> beatmap)
|
|
{
|
|
SongBar.FadeInFromZero(300, Easing.OutQuint);
|
|
SongBar.Beatmap = beatmap.NewValue;
|
|
}
|
|
}
|
|
}
|