2019-01-24 16:43:03 +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.
|
2018-12-27 15:18:48 +08:00
|
|
|
|
|
|
|
using System;
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
using osu.Framework.Bindables;
|
2018-12-27 15:18:48 +08:00
|
|
|
using osu.Framework.Extensions;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Online.Multiplayer;
|
|
|
|
using osu.Game.Online.Multiplayer.RoomStatuses;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Multi.Components
|
|
|
|
{
|
2019-02-05 18:00:01 +08:00
|
|
|
public class RoomStatusInfo : MultiplayerComposite
|
2018-12-27 15:18:48 +08:00
|
|
|
{
|
2019-02-05 18:00:01 +08:00
|
|
|
public RoomStatusInfo()
|
2018-12-27 15:18:48 +08:00
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both;
|
2019-02-05 18:00:01 +08:00
|
|
|
}
|
2018-12-27 15:18:48 +08:00
|
|
|
|
2019-02-05 18:00:01 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2018-12-27 15:18:48 +08:00
|
|
|
StatusPart statusPart;
|
|
|
|
EndDatePart endDatePart;
|
|
|
|
|
|
|
|
InternalChild = new FillFlowContainer
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
statusPart = new StatusPart
|
|
|
|
{
|
2019-02-12 12:04:46 +08:00
|
|
|
Font = OsuFont.GetFont(weight: FontWeight.Bold, size: 14)
|
2018-12-27 15:18:48 +08:00
|
|
|
},
|
2019-02-12 12:04:46 +08:00
|
|
|
endDatePart = new EndDatePart { Font = OsuFont.GetFont(size: 14) }
|
2018-12-27 15:18:48 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-05 18:00:01 +08:00
|
|
|
statusPart.EndDate.BindTo(EndDate);
|
|
|
|
statusPart.Status.BindTo(Status);
|
|
|
|
statusPart.Availability.BindTo(Availability);
|
|
|
|
endDatePart.EndDate.BindTo(EndDate);
|
2018-12-27 15:18:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private class EndDatePart : DrawableDate
|
|
|
|
{
|
|
|
|
public readonly IBindable<DateTimeOffset> EndDate = new Bindable<DateTimeOffset>();
|
|
|
|
|
|
|
|
public EndDatePart()
|
|
|
|
: base(DateTimeOffset.UtcNow)
|
|
|
|
{
|
2019-02-22 19:13:38 +08:00
|
|
|
EndDate.BindValueChanged(date => Date = date.NewValue);
|
2018-12-27 15:18:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override string Format()
|
|
|
|
{
|
|
|
|
var diffToNow = Date.Subtract(DateTimeOffset.Now);
|
|
|
|
|
|
|
|
if (diffToNow.TotalSeconds < -5)
|
|
|
|
return $"Closed {base.Format()}";
|
|
|
|
|
|
|
|
if (diffToNow.TotalSeconds < 0)
|
|
|
|
return "Closed";
|
|
|
|
|
|
|
|
if (diffToNow.TotalSeconds < 5)
|
|
|
|
return "Closing soon";
|
|
|
|
|
|
|
|
return $"Closing {base.Format()}";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class StatusPart : EndDatePart
|
|
|
|
{
|
|
|
|
public readonly IBindable<RoomStatus> Status = new Bindable<RoomStatus>();
|
|
|
|
public readonly IBindable<RoomAvailability> Availability = new Bindable<RoomAvailability>();
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private OsuColour colours { get; set; }
|
|
|
|
|
|
|
|
public StatusPart()
|
|
|
|
{
|
|
|
|
EndDate.BindValueChanged(_ => Format());
|
|
|
|
Status.BindValueChanged(_ => Format());
|
|
|
|
Availability.BindValueChanged(_ => Format());
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
Text = Format();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override string Format()
|
|
|
|
{
|
|
|
|
if (!IsLoaded)
|
|
|
|
return string.Empty;
|
|
|
|
|
|
|
|
RoomStatus status = Date < DateTimeOffset.Now ? new RoomStatusEnded() : Status.Value ?? new RoomStatusOpen();
|
|
|
|
|
|
|
|
this.FadeColour(status.GetAppropriateColour(colours), 100);
|
|
|
|
return $"{Availability.Value.GetDescription()}, {status.Message}";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|