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;
|
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
|
2020-03-03 22:37:01 +08:00
|
|
|
|
namespace osu.Game.Overlays.Home.Friends
|
|
|
|
|
{
|
|
|
|
|
public class FriendsOnlineStatusControl : OverlayUpdateStreamControl<FriendsBundle>
|
|
|
|
|
{
|
|
|
|
|
protected override OverlayUpdateStreamItem<FriendsBundle> CreateStreamItem(FriendsBundle value) => new FriendsOnlineStatusItem(value);
|
2020-03-03 23:08:51 +08:00
|
|
|
|
|
|
|
|
|
public void Populate(List<User> users)
|
|
|
|
|
{
|
|
|
|
|
var userCount = users.Count;
|
|
|
|
|
var onlineUsersCount = users.Count(user => user.IsOnline);
|
|
|
|
|
|
|
|
|
|
AddItem(new FriendsBundle(FriendsOnlineStatus.All, userCount));
|
|
|
|
|
AddItem(new FriendsBundle(FriendsOnlineStatus.Online, onlineUsersCount));
|
|
|
|
|
AddItem(new FriendsBundle(FriendsOnlineStatus.Offline, userCount - onlineUsersCount));
|
|
|
|
|
|
|
|
|
|
Current.Value = Items.FirstOrDefault();
|
|
|
|
|
}
|
2020-03-03 22:37:01 +08:00
|
|
|
|
}
|
|
|
|
|
}
|