2020-03-03 22:37:01 +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.
|
|
|
|
|
|
2020-03-03 23:08:51 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2020-03-17 13:51:54 +08:00
|
|
|
|
using osu.Game.Users;
|
2020-03-03 23:08:51 +08:00
|
|
|
|
|
2020-03-16 14:42:21 +08:00
|
|
|
|
namespace osu.Game.Overlays.Dashboard.Friends
|
2020-03-03 22:37:01 +08:00
|
|
|
|
{
|
2020-03-23 09:47:27 +08:00
|
|
|
|
public class FriendOnlineStreamControl : OverlayStreamControl<FriendStream>
|
2020-03-03 22:37:01 +08:00
|
|
|
|
{
|
2020-03-23 09:47:27 +08:00
|
|
|
|
protected override OverlayStreamItem<FriendStream> CreateStreamItem(FriendStream value) => new FriendsOnlineStatusItem(value);
|
2020-03-03 23:08:51 +08:00
|
|
|
|
|
2020-03-17 13:51:54 +08:00
|
|
|
|
public void Populate(List<User> users)
|
2020-03-03 23:08:51 +08:00
|
|
|
|
{
|
2020-03-16 14:42:21 +08:00
|
|
|
|
Clear();
|
2020-03-03 23:08:51 +08:00
|
|
|
|
|
2020-03-23 01:13:54 +08:00
|
|
|
|
var userCount = users.Count;
|
|
|
|
|
var onlineUsersCount = users.Count(user => user.IsOnline);
|
|
|
|
|
|
2020-03-23 09:47:27 +08:00
|
|
|
|
AddItem(new FriendStream(OnlineStatus.All, userCount));
|
|
|
|
|
AddItem(new FriendStream(OnlineStatus.Online, onlineUsersCount));
|
|
|
|
|
AddItem(new FriendStream(OnlineStatus.Offline, userCount - onlineUsersCount));
|
2020-03-03 23:08:51 +08:00
|
|
|
|
|
|
|
|
|
Current.Value = Items.FirstOrDefault();
|
|
|
|
|
}
|
2020-03-03 22:37:01 +08:00
|
|
|
|
}
|
|
|
|
|
}
|