1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 01:27:35 +08:00
osu-lazer/osu.Game/Overlays/SocialOverlay.cs

85 lines
2.8 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-05-26 13:00:38 +08:00
using System.Collections.Generic;
using System.Linq;
using OpenTK;
using OpenTK.Graphics;
using osu.Framework.Graphics;
2017-05-26 13:00:38 +08:00
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics;
2017-05-26 13:44:09 +08:00
using osu.Game.Overlays.SearchableList;
using osu.Game.Overlays.Social;
2017-05-26 13:00:38 +08:00
using osu.Game.Users;
namespace osu.Game.Overlays
{
2017-05-26 13:44:09 +08:00
public class SocialOverlay : SearchableListOverlay<SocialTab, SocialSortCriteria>
{
2017-05-26 13:00:38 +08:00
private readonly FillFlowContainer<UserPanel> panelFlow;
2017-05-26 13:16:56 +08:00
protected override Color4 BackgroundColour => OsuColour.FromHex(@"60284b");
protected override Color4 TrianglesColourLight => OsuColour.FromHex(@"672b51");
protected override Color4 TrianglesColourDark => OsuColour.FromHex(@"5c2648");
2017-05-26 13:44:09 +08:00
protected override SearchableListHeader<SocialTab> CreateHeader() => new Header();
protected override SearchableListFilterControl<SocialSortCriteria> CreateFilterControl() => new FilterControl();
2017-05-26 13:16:56 +08:00
2017-05-26 13:00:38 +08:00
private IEnumerable<User> users;
public IEnumerable<User> Users
{
get { return users; }
set
{
if (users == value) return;
users = value;
panelFlow.Children = users.Select(u =>
{
var p = new UserPanel(u) { Width = 300 };
p.Status.BindTo(u.Status);
return p;
});
}
}
public SocialOverlay()
{
2017-05-26 13:55:25 +08:00
FirstWaveColour = OsuColour.FromHex(@"CB5FA0");
SecondWaveColour = OsuColour.FromHex(@"B04384");
ThirdWaveColour = OsuColour.FromHex(@"9B2B6E");
FourthWaveColour = OsuColour.FromHex(@"6D214D");
2017-05-26 13:00:38 +08:00
ScrollFlow.Children = new Drawable[]
{
new Container
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Padding = new MarginPadding { Vertical = 10 },
Children = new[]
{
new DisplayStyleControl<SortDirection>
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
},
},
},
2017-05-26 13:00:38 +08:00
panelFlow = new FillFlowContainer<UserPanel>
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Spacing = new Vector2(10f),
},
};
}
}
public enum SortDirection
{
Ascending,
Descending,
}
}