1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-20 21:52:56 +08:00
osu-lazer/osu.Game/Screens/OnlinePlay/Components/OverlinedPlaylistHeader.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.3 KiB
C#
Raw Normal View History

2020-12-03 16:59:39 +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.
2024-11-14 16:57:32 +08:00
using System.ComponentModel;
using osu.Framework.Allocation;
2020-12-25 12:38:11 +08:00
using osu.Game.Online.Rooms;
using osu.Game.Rulesets;
2020-12-03 16:59:39 +08:00
namespace osu.Game.Screens.OnlinePlay.Components
2020-12-03 16:59:39 +08:00
{
public partial class OverlinedPlaylistHeader : OverlinedHeader
{
2024-11-14 16:57:32 +08:00
private readonly Room room;
[Resolved]
private RulesetStore rulesets { get; set; } = null!;
2024-11-14 16:57:32 +08:00
public OverlinedPlaylistHeader(Room room)
2020-12-03 16:59:39 +08:00
: base("Playlist")
{
2024-11-14 16:57:32 +08:00
this.room = room;
2020-12-03 16:59:39 +08:00
}
protected override void LoadComplete()
{
base.LoadComplete();
2024-11-14 16:57:32 +08:00
room.PropertyChanged += onRoomPropertyChanged;
updateDuration();
}
private void onRoomPropertyChanged(object? sender, PropertyChangedEventArgs e)
{
if (e.PropertyName == nameof(Room.Playlist))
updateDuration();
}
private void updateDuration()
=> Details.Value = room.Playlist.GetTotalDuration(rulesets);
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
room.PropertyChanged -= onRoomPropertyChanged;
2020-12-03 16:59:39 +08:00
}
}
}