2019-01-24 16:43:03 +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.
|
2018-12-04 19:33:29 +08:00
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-04-02 13:51:28 +08:00
|
|
|
using osu.Framework.Graphics.Effects;
|
2018-12-04 19:33:29 +08:00
|
|
|
using osu.Framework.Graphics.Shapes;
|
2019-01-23 19:52:00 +08:00
|
|
|
using osu.Framework.Screens;
|
2018-12-06 10:58:09 +08:00
|
|
|
using osu.Game.Graphics;
|
2018-12-04 19:33:29 +08:00
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
using osu.Game.Online.API;
|
|
|
|
using osu.Game.Overlays.AccountCreation;
|
|
|
|
using osuTK;
|
2018-12-06 10:58:09 +08:00
|
|
|
using osuTK.Graphics;
|
2018-12-04 19:33:29 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Overlays
|
|
|
|
{
|
|
|
|
public class AccountCreationOverlay : OsuFocusedOverlayContainer, IOnlineComponent
|
|
|
|
{
|
|
|
|
private const float transition_time = 400;
|
|
|
|
|
2018-12-06 11:38:11 +08:00
|
|
|
private ScreenWelcome welcomeScreen;
|
|
|
|
|
2018-12-04 19:33:29 +08:00
|
|
|
public AccountCreationOverlay()
|
|
|
|
{
|
|
|
|
Size = new Vector2(620, 450);
|
|
|
|
Anchor = Anchor.Centre;
|
|
|
|
Origin = Anchor.Centre;
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2019-03-13 11:56:47 +08:00
|
|
|
private void load(OsuColour colours, IAPIProvider api)
|
2018-12-04 19:33:29 +08:00
|
|
|
{
|
|
|
|
api.Register(this);
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new Container
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
EdgeEffect = new EdgeEffectParameters
|
|
|
|
{
|
|
|
|
Type = EdgeEffectType.Shadow,
|
|
|
|
Radius = 5,
|
|
|
|
Colour = Color4.Black.Opacity(0.2f),
|
|
|
|
},
|
|
|
|
Masking = true,
|
|
|
|
CornerRadius = 10,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Colour = Color4.Black,
|
|
|
|
Alpha = 0.6f,
|
|
|
|
},
|
|
|
|
new DelayedLoadWrapper(new AccountCreationBackground(), 0),
|
|
|
|
new Container
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Width = 0.6f,
|
|
|
|
AutoSizeDuration = transition_time,
|
|
|
|
AutoSizeEasing = Easing.OutQuint,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Colour = Color4.Black,
|
|
|
|
Alpha = 0.9f,
|
|
|
|
},
|
2019-02-15 16:01:51 +08:00
|
|
|
new ScreenStack(welcomeScreen = new ScreenWelcome())
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
},
|
2018-12-04 19:33:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void PopIn()
|
|
|
|
{
|
|
|
|
base.PopIn();
|
|
|
|
this.FadeIn(transition_time, Easing.OutQuint);
|
2018-12-06 11:38:11 +08:00
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
if (welcomeScreen.GetChildScreen() != null)
|
2018-12-06 11:38:11 +08:00
|
|
|
welcomeScreen.MakeCurrent();
|
2018-12-04 19:33:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void PopOut()
|
|
|
|
{
|
|
|
|
base.PopOut();
|
|
|
|
this.FadeOut(100);
|
|
|
|
}
|
|
|
|
|
2019-03-13 11:56:47 +08:00
|
|
|
public void APIStateChanged(IAPIProvider api, APIState state)
|
2018-12-04 19:33:29 +08:00
|
|
|
{
|
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case APIState.Offline:
|
|
|
|
case APIState.Failing:
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
2018-12-04 19:33:29 +08:00
|
|
|
case APIState.Connecting:
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
2018-12-04 19:33:29 +08:00
|
|
|
case APIState.Online:
|
2018-12-05 16:30:16 +08:00
|
|
|
State = Visibility.Hidden;
|
2018-12-04 19:33:29 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|