1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 20:07:24 +08:00
osu-lazer/osu.Game/Screens/Edit/Editor.cs

150 lines
5.2 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-09-29 19:13:58 +08:00
using OpenTK.Graphics;
2017-02-17 17:59:30 +08:00
using osu.Framework.Screens;
2016-11-14 16:23:33 +08:00
using osu.Game.Screens.Backgrounds;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
using osu.Game.Screens.Edit.Menus;
2017-09-26 14:45:27 +08:00
using osu.Game.Screens.Edit.Components.Timelines.Summary;
2017-09-20 16:09:38 +08:00
using OpenTK;
using osu.Framework.Allocation;
using osu.Game.Screens.Edit.Screens;
2017-10-02 09:09:21 +08:00
using osu.Game.Screens.Edit.Screens.Compose;
2017-10-04 18:24:19 +08:00
using osu.Game.Screens.Edit.Screens.Design;
2016-09-29 19:13:58 +08:00
2016-11-14 16:23:33 +08:00
namespace osu.Game.Screens.Edit
2016-09-29 19:13:58 +08:00
{
internal class Editor : OsuScreen
2016-09-29 19:13:58 +08:00
{
2017-02-17 17:59:30 +08:00
protected override BackgroundScreen CreateBackground() => new BackgroundScreenCustom(@"Backgrounds/bg4");
2016-10-05 19:03:52 +08:00
internal override bool ShowOverlays => false;
private readonly Box bottomBackground;
2017-10-02 08:27:27 +08:00
private readonly Container screenContainer;
private EditorScreen currentScreen;
public Editor()
{
2017-10-02 08:26:16 +08:00
EditorMenuBar menuBar;
SummaryTimeline timeline;
Children = new[]
{
2017-10-02 08:26:16 +08:00
new Container
{
2017-10-02 08:26:16 +08:00
Name = "Top bar",
RelativeSizeAxes = Axes.X,
Height = 40,
Child = menuBar = new EditorMenuBar
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
2017-10-02 08:10:40 +08:00
RelativeSizeAxes = Axes.Both
}
2017-10-02 08:26:16 +08:00
},
new Container
2017-09-20 16:09:38 +08:00
{
2017-10-02 08:26:16 +08:00
Name = "Bottom bar",
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
RelativeSizeAxes = Axes.X,
Height = 60,
Children = new Drawable[]
{
2017-10-02 08:26:16 +08:00
bottomBackground = new Box { RelativeSizeAxes = Axes.Both },
new Container
{
RelativeSizeAxes = Axes.Both,
2017-10-02 08:26:16 +08:00
Padding = new MarginPadding { Top = 5, Bottom = 5, Left = 10, Right = 10 },
Child = new FillFlowContainer
{
2017-10-02 08:26:16 +08:00
Name = "Bottom bar",
RelativeSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(10, 0),
Children = new[]
{
2017-10-02 08:26:16 +08:00
timeline = new SummaryTimeline
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
Width = 0.65f
}
}
}
}
}
2017-10-02 08:26:16 +08:00
},
2017-10-02 09:07:34 +08:00
new Container
{
Name = "Screen container",
RelativeSizeAxes = Axes.Both,
2017-10-02 09:07:34 +08:00
Padding = new MarginPadding { Top = 40, Bottom = 60 },
Child = screenContainer = new Container
{
RelativeSizeAxes = Axes.Both,
Masking = true
}
2017-09-20 16:09:38 +08:00
}
2017-10-02 08:26:16 +08:00
};
2017-10-02 08:26:16 +08:00
timeline.Beatmap.BindTo(Beatmap);
menuBar.Mode.ValueChanged += onModeChanged;
}
2017-09-20 16:09:38 +08:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
bottomBackground.Colour = colours.Gray2;
}
private void onModeChanged(EditorScreenMode mode)
{
currentScreen?.Exit();
switch (mode)
{
2017-10-02 09:09:21 +08:00
case EditorScreenMode.Compose:
currentScreen = new Compose();
break;
2017-10-04 18:24:19 +08:00
case EditorScreenMode.Design:
currentScreen = new Design();
break;
default:
currentScreen = new EditorScreen();
break;
}
2017-10-04 14:02:11 +08:00
currentScreen.Beatmap.BindTo(Beatmap);
2017-10-02 08:27:27 +08:00
screenContainer.Add(currentScreen);
}
protected override void OnResuming(Screen last)
{
2017-07-19 12:32:16 +08:00
Beatmap.Value.Track?.Stop();
base.OnResuming(last);
}
2017-02-17 17:59:30 +08:00
protected override void OnEntering(Screen last)
2016-10-05 19:03:52 +08:00
{
base.OnEntering(last);
2017-06-08 13:51:22 +08:00
Background.FadeColour(Color4.DarkGray, 500);
2017-07-19 12:32:16 +08:00
Beatmap.Value.Track?.Stop();
2016-10-05 19:03:52 +08:00
}
2017-02-17 17:59:30 +08:00
protected override bool OnExiting(Screen next)
2016-10-05 19:03:52 +08:00
{
2017-06-08 13:51:22 +08:00
Background.FadeColour(Color4.White, 500);
2017-07-19 12:32:16 +08:00
Beatmap.Value.Track?.Start();
return base.OnExiting(next);
2016-10-05 19:03:52 +08:00
}
2016-09-29 19:13:58 +08:00
}
}