2020-04-16 16:01:36 +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-04-16 17:05:51 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Threading;
|
2020-04-16 16:01:36 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2020-04-16 17:05:51 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2020-04-16 16:01:36 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2020-04-16 17:05:51 +08:00
|
|
|
|
using osu.Game.Online.API;
|
2020-04-16 16:01:36 +08:00
|
|
|
|
using osu.Game.Overlays.Dashboard;
|
2020-04-16 17:05:51 +08:00
|
|
|
|
using osu.Game.Overlays.Dashboard.Friends;
|
2020-04-16 16:01:36 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays
|
|
|
|
|
{
|
2020-09-03 15:27:31 +08:00
|
|
|
|
public class DashboardOverlay : FullscreenOverlay<DashboardOverlayHeader>
|
2020-04-16 16:01:36 +08:00
|
|
|
|
{
|
2020-04-16 17:05:51 +08:00
|
|
|
|
private CancellationTokenSource cancellationToken;
|
|
|
|
|
|
2020-04-20 14:34:48 +08:00
|
|
|
|
private Container content;
|
|
|
|
|
private LoadingLayer loading;
|
|
|
|
|
private OverlayScrollContainer scrollFlow;
|
2020-04-16 16:01:36 +08:00
|
|
|
|
|
|
|
|
|
public DashboardOverlay()
|
2020-09-03 15:27:31 +08:00
|
|
|
|
: base(OverlayColourScheme.Purple, new DashboardOverlayHeader
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Depth = -float.MaxValue
|
|
|
|
|
})
|
2020-04-20 14:34:48 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
2020-04-16 16:01:36 +08:00
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2020-07-08 23:24:13 +08:00
|
|
|
|
new Box
|
2020-04-16 16:01:36 +08:00
|
|
|
|
{
|
2020-07-08 23:24:13 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = ColourProvider.Background5
|
2020-04-16 16:01:36 +08:00
|
|
|
|
},
|
2020-04-16 17:05:51 +08:00
|
|
|
|
scrollFlow = new OverlayScrollContainer
|
2020-04-16 16:01:36 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
ScrollbarVisible = false,
|
|
|
|
|
Child = new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2020-09-03 15:27:31 +08:00
|
|
|
|
Header,
|
2020-04-16 16:01:36 +08:00
|
|
|
|
content = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2020-04-16 17:05:51 +08:00
|
|
|
|
loading = new LoadingLayer(content),
|
2020-04-16 16:01:36 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
2020-04-16 17:05:51 +08:00
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
2020-04-20 14:34:48 +08:00
|
|
|
|
|
2020-09-03 15:27:31 +08:00
|
|
|
|
Header.Current.BindValueChanged(onTabChanged);
|
2020-04-16 17:05:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool displayUpdateRequired = true;
|
|
|
|
|
|
|
|
|
|
protected override void PopIn()
|
|
|
|
|
{
|
|
|
|
|
base.PopIn();
|
|
|
|
|
|
2020-04-16 19:10:39 +08:00
|
|
|
|
// We don't want to create a new display on every call, only when exiting from fully closed state.
|
2020-04-16 17:05:51 +08:00
|
|
|
|
if (displayUpdateRequired)
|
|
|
|
|
{
|
2020-09-03 15:27:31 +08:00
|
|
|
|
Header.Current.TriggerChange();
|
2020-04-16 17:05:51 +08:00
|
|
|
|
displayUpdateRequired = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PopOutComplete()
|
|
|
|
|
{
|
|
|
|
|
base.PopOutComplete();
|
|
|
|
|
loadDisplay(Empty());
|
|
|
|
|
displayUpdateRequired = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void loadDisplay(Drawable display)
|
|
|
|
|
{
|
|
|
|
|
scrollFlow.ScrollToStart();
|
|
|
|
|
|
|
|
|
|
LoadComponentAsync(display, loaded =>
|
|
|
|
|
{
|
2020-04-16 19:10:39 +08:00
|
|
|
|
if (API.IsLoggedIn)
|
|
|
|
|
loading.Hide();
|
|
|
|
|
|
2020-04-16 17:05:51 +08:00
|
|
|
|
content.Child = loaded;
|
|
|
|
|
}, (cancellationToken = new CancellationTokenSource()).Token);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void onTabChanged(ValueChangedEvent<DashboardOverlayTabs> tab)
|
|
|
|
|
{
|
|
|
|
|
cancellationToken?.Cancel();
|
|
|
|
|
loading.Show();
|
|
|
|
|
|
2020-04-16 19:10:39 +08:00
|
|
|
|
if (!API.IsLoggedIn)
|
|
|
|
|
{
|
|
|
|
|
loadDisplay(Empty());
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-16 17:05:51 +08:00
|
|
|
|
switch (tab.NewValue)
|
|
|
|
|
{
|
|
|
|
|
case DashboardOverlayTabs.Friends:
|
|
|
|
|
loadDisplay(new FriendDisplay());
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
throw new NotImplementedException($"Display for {tab.NewValue} tab is not implemented");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void APIStateChanged(IAPIProvider api, APIState state)
|
|
|
|
|
{
|
2020-04-16 19:10:39 +08:00
|
|
|
|
if (State.Value == Visibility.Hidden)
|
|
|
|
|
return;
|
2020-04-16 17:05:51 +08:00
|
|
|
|
|
2020-09-03 15:27:31 +08:00
|
|
|
|
Header.Current.TriggerChange();
|
2020-04-16 17:05:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
cancellationToken?.Cancel();
|
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
}
|
2020-04-16 16:01:36 +08:00
|
|
|
|
}
|
|
|
|
|
}
|