2017-02-07 12:59:30 +08:00
|
|
|
|
// 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
|
|
|
|
|
2017-03-14 19:53:20 +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;
|
2017-07-15 00:18:12 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-08-28 16:55:50 +08:00
|
|
|
|
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 17:16:03 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2017-10-06 23:51:30 +08:00
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2017-10-02 08:26:41 +08:00
|
|
|
|
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;
|
2017-11-17 17:26:13 +08:00
|
|
|
|
using osu.Game.Screens.Edit.Components;
|
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
|
|
|
|
{
|
2017-10-23 18:29:47 +08:00
|
|
|
|
public 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
|
|
|
|
|
2017-11-01 15:57:59 +08:00
|
|
|
|
public override bool ShowOverlays => false;
|
2017-08-28 16:55:50 +08:00
|
|
|
|
|
2017-09-20 17:16:03 +08:00
|
|
|
|
private readonly Box bottomBackground;
|
2017-10-02 08:27:27 +08:00
|
|
|
|
private readonly Container screenContainer;
|
2017-10-02 08:26:41 +08:00
|
|
|
|
|
|
|
|
|
private EditorScreen currentScreen;
|
2017-09-20 17:16:03 +08:00
|
|
|
|
|
2017-08-28 16:55:50 +08:00
|
|
|
|
public Editor()
|
|
|
|
|
{
|
2017-10-02 08:26:16 +08:00
|
|
|
|
EditorMenuBar menuBar;
|
2017-11-17 17:26:13 +08:00
|
|
|
|
TimeInfoContainer timeInfo;
|
2017-10-02 08:26:16 +08:00
|
|
|
|
SummaryTimeline timeline;
|
2017-11-22 10:22:46 +08:00
|
|
|
|
PlaybackControl playback;
|
2017-10-02 08:26:16 +08:00
|
|
|
|
|
|
|
|
|
Children = new[]
|
2017-08-28 16:55:50 +08:00
|
|
|
|
{
|
2017-10-07 00:56:11 +08:00
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
Name = "Screen container",
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Top = 40, Bottom = 60 },
|
|
|
|
|
Child = screenContainer = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Masking = true
|
|
|
|
|
}
|
|
|
|
|
},
|
2017-10-02 08:26:16 +08:00
|
|
|
|
new Container
|
2017-08-28 16:55:50 +08:00
|
|
|
|
{
|
2017-10-02 08:26:16 +08:00
|
|
|
|
Name = "Top bar",
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = 40,
|
|
|
|
|
Child = menuBar = new EditorMenuBar
|
2017-08-28 16:55:50 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
|
Origin = Anchor.CentreLeft,
|
2017-10-06 23:51:30 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Items = new[]
|
|
|
|
|
{
|
|
|
|
|
new MenuItem("File")
|
|
|
|
|
{
|
|
|
|
|
Items = new[]
|
|
|
|
|
{
|
|
|
|
|
new EditorMenuItem("Exit", MenuItemType.Standard, Exit)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-08-28 16:55:50 +08:00
|
|
|
|
}
|
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-09-20 17:16:03 +08:00
|
|
|
|
{
|
2017-10-02 08:26:16 +08:00
|
|
|
|
bottomBackground = new Box { RelativeSizeAxes = Axes.Both },
|
|
|
|
|
new Container
|
2017-09-20 17:16:03 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-11-17 17:26:13 +08:00
|
|
|
|
Padding = new MarginPadding { Vertical = 5, Horizontal = 10 },
|
2017-11-18 06:48:50 +08:00
|
|
|
|
Child = new GridContainer
|
2017-09-20 17:16:03 +08:00
|
|
|
|
{
|
2017-11-18 06:48:50 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-11-18 08:09:09 +08:00
|
|
|
|
ColumnDimensions = new[]
|
2017-09-20 17:16:03 +08:00
|
|
|
|
{
|
2017-11-21 16:51:07 +08:00
|
|
|
|
new Dimension(GridSizeMode.Absolute, 220),
|
2017-11-18 06:51:23 +08:00
|
|
|
|
new Dimension(),
|
2017-11-21 16:51:07 +08:00
|
|
|
|
new Dimension(GridSizeMode.Absolute, 220)
|
2017-11-17 17:26:13 +08:00
|
|
|
|
},
|
2017-11-18 08:09:09 +08:00
|
|
|
|
Content = new[]
|
2017-11-17 17:26:13 +08:00
|
|
|
|
{
|
2017-11-18 06:48:50 +08:00
|
|
|
|
new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Right = 10 },
|
|
|
|
|
Child = timeInfo = new TimeInfoContainer { RelativeSizeAxes = Axes.Both },
|
2017-11-18 08:09:09 +08:00
|
|
|
|
},
|
2017-11-18 06:48:50 +08:00
|
|
|
|
timeline = new SummaryTimeline
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Left = 10 },
|
2017-11-22 10:22:46 +08:00
|
|
|
|
Child = playback = new PlaybackControl { RelativeSizeAxes = Axes.Both },
|
2017-11-18 06:48:50 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
2017-09-20 17:16:03 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-10-02 08:26:16 +08:00
|
|
|
|
},
|
|
|
|
|
};
|
2017-09-26 16:56:16 +08:00
|
|
|
|
|
2017-11-17 18:35:41 +08:00
|
|
|
|
timeInfo.Beatmap.BindTo(Beatmap);
|
2017-10-02 08:26:16 +08:00
|
|
|
|
timeline.Beatmap.BindTo(Beatmap);
|
2017-11-17 18:35:41 +08:00
|
|
|
|
playback.Beatmap.BindTo(Beatmap);
|
2017-10-04 18:37:17 +08:00
|
|
|
|
menuBar.Mode.ValueChanged += onModeChanged;
|
2017-09-20 17:16:03 +08:00
|
|
|
|
}
|
2017-09-20 16:09:38 +08:00
|
|
|
|
|
2017-09-20 17:16:03 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
bottomBackground.Colour = colours.Gray2;
|
2017-08-28 16:55:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-02 08:26:41 +08:00
|
|
|
|
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;
|
2017-10-02 08:26:41 +08:00
|
|
|
|
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);
|
2017-10-02 08:26:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-14 22:18:40 +08:00
|
|
|
|
protected override void OnResuming(Screen last)
|
|
|
|
|
{
|
2017-07-19 12:32:16 +08:00
|
|
|
|
Beatmap.Value.Track?.Stop();
|
2017-03-14 22:18:40 +08:00
|
|
|
|
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-11-20 14:29:26 +08:00
|
|
|
|
if (Beatmap.Value.Track != null)
|
|
|
|
|
{
|
|
|
|
|
Beatmap.Value.Track.Tempo.Value = 1;
|
|
|
|
|
Beatmap.Value.Track.Start();
|
|
|
|
|
}
|
2016-10-07 17:58:20 +08:00
|
|
|
|
return base.OnExiting(next);
|
2016-10-05 19:03:52 +08:00
|
|
|
|
}
|
2016-09-29 19:13:58 +08:00
|
|
|
|
}
|
|
|
|
|
}
|