1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 18:47:28 +08:00
osu-lazer/osu.Game.Tournament/Screens/SetupScreen.cs

143 lines
4.6 KiB
C#
Raw Normal View History

2019-09-22 01:10:04 +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.
2019-09-23 03:22:50 +08:00
using System;
using osu.Framework.Allocation;
2019-09-23 03:22:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
2019-09-23 03:45:23 +08:00
using osu.Game.Online.API;
using osu.Game.Overlays;
2019-09-23 03:22:50 +08:00
using osu.Game.Screens.Edit.Setup.Components.LabelledComponents;
using osu.Game.Tournament.IPC;
2019-09-23 03:22:50 +08:00
using osuTK;
using osuTK.Graphics;
2019-09-22 01:10:04 +08:00
namespace osu.Game.Tournament.Screens
{
2019-09-23 03:49:21 +08:00
public class SetupScreen : TournamentScreen, IProvideVideo
2019-09-22 01:10:04 +08:00
{
2019-09-23 03:45:23 +08:00
private FillFlowContainer fillFlow;
private LoginOverlay loginOverlay;
[Resolved]
private MatchIPCInfo ipc { get; set; }
2019-09-23 03:45:23 +08:00
[Resolved]
private IAPIProvider api { get; set; }
[BackgroundDependencyLoader]
private void load()
{
2019-09-23 03:45:23 +08:00
InternalChild = fillFlow = new FillFlowContainer
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Padding = new MarginPadding(10),
Spacing = new Vector2(10),
};
api.LocalUser.BindValueChanged(_ => Schedule(reload));
2019-09-23 03:22:50 +08:00
reload();
}
private void reload()
{
var fileBasedIpc = ipc as FileBasedIPC;
2019-09-23 03:45:23 +08:00
fillFlow.Children = new Drawable[]
2019-09-23 03:22:50 +08:00
{
new ActionableInfo
{
Label = "Current IPC source",
ButtonText = "Refresh",
Action = () =>
{
fileBasedIpc?.LocateStableStorage();
reload();
},
Value = fileBasedIpc?.Storage?.GetFullPath(string.Empty) ?? "Not found",
Failing = fileBasedIpc?.Storage == null,
Description = "The osu!stable installation which is currently being used as a data source. If a source is not found, make sure you have created an empty ipc.txt in your stable cutting-edge installation, and that it is registered as the default osu! install."
2019-09-23 03:45:23 +08:00
},
new ActionableInfo
{
Label = "Current User",
ButtonText = "Change Login",
Action = () =>
{
api.Logout();
if (loginOverlay == null)
{
2019-09-23 03:49:21 +08:00
AddInternal(loginOverlay = new LoginOverlay
2019-09-23 03:45:23 +08:00
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
});
}
loginOverlay.State.Value = Visibility.Visible;
},
Value = api?.LocalUser.Value.Username,
Failing = api?.IsLoggedIn != true,
Description = "In order to access the API and display metadata, a login is required."
2019-09-23 03:22:50 +08:00
}
};
}
2019-09-24 17:22:02 +08:00
private class ActionableInfo : LabelledComponent<Drawable>
2019-09-23 03:22:50 +08:00
{
private OsuButton button;
public ActionableInfo()
: base(true)
{
}
public string ButtonText
{
set => button.Text = value;
}
public string Value
{
set => valueText.Text = value;
}
public bool Failing
{
set => valueText.Colour = value ? Color4.Red : Color4.White;
}
public Action Action;
private OsuSpriteText valueText;
protected override Drawable CreateComponent() => new Container
{
2019-09-23 03:22:50 +08:00
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Children = new Drawable[]
{
valueText = new OsuSpriteText
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
},
button = new TriangleButton
{
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
Size = new Vector2(100, 30),
Action = () => Action?.Invoke()
},
}
};
}
2019-09-22 01:10:04 +08:00
}
}