1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 14:07:25 +08:00

Tidy up options login section code; fix incorrect flow logic for online state.

This commit is contained in:
Dean Herbert 2016-12-01 13:07:19 +09:00
parent 9d05c132e8
commit 13d26d0601

View File

@ -14,27 +14,14 @@ namespace osu.Game.Overlays.Options.General
public class LoginOptions : OptionsSubsection, IOnlineComponent
{
private Container loginForm;
private APIAccess api;
protected override string Header => "Sign In";
public LoginOptions()
{
Children = new[]
{
loginForm = new Container
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Children = new[] { new LoadingAnimation() }
}
};
}
private Action performLogout;
protected override string Header => "Sign In";
[BackgroundDependencyLoader(permitNulls: true)]
private void load(APIAccess api)
{
this.api = api;
api?.Register(this);
{
api?.Register(this);
}
public void APIStateChanged(APIAccess api, APIState state)
@ -42,13 +29,13 @@ namespace osu.Game.Overlays.Options.General
switch (state)
{
case APIState.Offline:
loginForm.Children = new Drawable[]
Children = new Drawable[]
{
new LoginForm(api)
new LoginForm()
};
break;
case APIState.Failing:
loginForm.Children = new Drawable[]
Children = new Drawable[]
{
new SpriteText
{
@ -57,7 +44,7 @@ namespace osu.Game.Overlays.Options.General
};
break;
case APIState.Connecting:
loginForm.Children = new Drawable[]
Children = new Drawable[]
{
new SpriteText
{
@ -66,7 +53,7 @@ namespace osu.Game.Overlays.Options.General
};
break;
case APIState.Online:
loginForm.Children = new Drawable[]
Children = new Drawable[]
{
new SpriteText
{
@ -76,26 +63,20 @@ namespace osu.Game.Overlays.Options.General
{
RelativeSizeAxes = Axes.X,
Text = "Sign out",
Action = performLogout
Action = api.Logout
}
};
break;
}
}
private void performLogout()
{
api.Logout();
}
class LoginForm : FlowContainer
{
private APIAccess api;
private TextBox username;
private TextBox password;
private APIAccess api;
public LoginForm(APIAccess api)
public LoginForm()
{
Direction = FlowDirection.VerticalOnly;
AutoSizeAxes = Axes.Y;