1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 04:07:26 +08:00
osu-lazer/osu.Game/Screens/Edit/Setup/SetupScreen.cs

78 lines
2.4 KiB
C#
Raw Normal View History

// 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-09-07 18:21:35 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
using osu.Game.Overlays;
2020-09-07 18:21:35 +08:00
namespace osu.Game.Screens.Edit.Setup
{
public class SetupScreen : EditorScreen
{
[Resolved]
private OsuColour colours { get; set; }
[Cached]
protected readonly OverlayColourProvider ColourProvider;
public SetupScreen()
: base(EditorScreenMode.SongSetup)
{
ColourProvider = new OverlayColourProvider(OverlayColourScheme.Green);
}
2020-09-07 18:21:35 +08:00
[BackgroundDependencyLoader]
private void load()
{
Child = new Container
2020-09-07 18:21:35 +08:00
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding(50),
Child = new Container
2020-09-07 18:21:35 +08:00
{
RelativeSizeAxes = Axes.Both,
Masking = true,
CornerRadius = 10,
Children = new Drawable[]
2020-09-07 18:21:35 +08:00
{
new Box
2020-09-07 18:21:35 +08:00
{
Colour = colours.GreySeafoamDark,
RelativeSizeAxes = Axes.Both,
},
new SectionsContainer<SetupSection>
{
FixedHeader = new SetupScreenHeader(),
RelativeSizeAxes = Axes.Both,
Children = new SetupSection[]
2020-09-07 18:21:35 +08:00
{
new ResourcesSection(),
new MetadataSection(),
}
},
}
}
2020-09-07 18:21:35 +08:00
};
}
}
internal class SetupScreenHeader : OverlayHeader
{
protected override OverlayTitle CreateTitle() => new SetupScreenTitle();
private class SetupScreenTitle : OverlayTitle
{
public SetupScreenTitle()
{
Title = "beatmap setup";
Description = "change general settings of your beatmap";
IconTexture = "Icons/Hexacons/social";
}
}
}
}