mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 18:10:04 +08:00
42 lines
1.2 KiB
C#
42 lines
1.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 System;
|
|
using osu.Framework.Extensions;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Graphics;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Dashboard.Friends
|
|
{
|
|
public class FriendsOnlineStatusItem : OverlayStreamItem<FriendStream>
|
|
{
|
|
public FriendsOnlineStatusItem(FriendStream value)
|
|
: base(value)
|
|
{
|
|
}
|
|
|
|
protected override LocalisableString MainText => Value.Status.GetLocalisableDescription();
|
|
|
|
protected override LocalisableString AdditionalText => Value.Count.ToString();
|
|
|
|
protected override Color4 GetBarColour(OsuColour colours)
|
|
{
|
|
switch (Value.Status)
|
|
{
|
|
case OnlineStatus.All:
|
|
return Color4.White;
|
|
|
|
case OnlineStatus.Online:
|
|
return colours.GreenLight;
|
|
|
|
case OnlineStatus.Offline:
|
|
return Color4.Black;
|
|
|
|
default:
|
|
throw new ArgumentException($@"{Value.Status} status does not provide a colour in {nameof(GetBarColour)}.");
|
|
}
|
|
}
|
|
}
|
|
}
|