2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-11-22 18:40:44 +08:00
|
|
|
|
using System;
|
2020-09-09 18:31:18 +08:00
|
|
|
|
using System.Collections.Generic;
|
2020-09-12 14:33:13 +08:00
|
|
|
|
using System.Diagnostics;
|
2020-09-11 18:54:20 +08:00
|
|
|
|
using System.Linq;
|
2020-09-09 18:31:18 +08:00
|
|
|
|
using osu.Framework;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2020-04-22 16:41:24 +08:00
|
|
|
|
using osu.Framework.Input;
|
2019-06-30 18:31:31 +08:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
2020-09-09 18:31:18 +08:00
|
|
|
|
using osu.Framework.Input.Events;
|
2020-03-13 13:28:11 +08:00
|
|
|
|
using osu.Framework.Logging;
|
2020-09-09 18:31:18 +08:00
|
|
|
|
using osu.Framework.Platform;
|
|
|
|
|
using osu.Framework.Screens;
|
|
|
|
|
using osu.Framework.Timing;
|
2019-12-27 18:46:33 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2020-11-03 15:01:14 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2020-09-09 18:31:18 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2019-11-07 21:51:49 +08:00
|
|
|
|
using osu.Game.Graphics.Cursor;
|
2020-09-09 18:31:18 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2019-06-30 18:31:31 +08:00
|
|
|
|
using osu.Game.Input.Bindings;
|
2020-09-11 18:54:20 +08:00
|
|
|
|
using osu.Game.IO.Serialization;
|
2020-09-01 17:56:49 +08:00
|
|
|
|
using osu.Game.Online.API;
|
2020-09-09 18:31:18 +08:00
|
|
|
|
using osu.Game.Overlays;
|
2020-01-23 13:39:56 +08:00
|
|
|
|
using osu.Game.Rulesets.Edit;
|
2020-09-09 18:31:18 +08:00
|
|
|
|
using osu.Game.Screens.Edit.Components;
|
|
|
|
|
using osu.Game.Screens.Edit.Components.Menus;
|
|
|
|
|
using osu.Game.Screens.Edit.Components.Timelines.Summary;
|
2019-10-09 15:04:58 +08:00
|
|
|
|
using osu.Game.Screens.Edit.Compose;
|
2020-09-09 18:31:18 +08:00
|
|
|
|
using osu.Game.Screens.Edit.Design;
|
2019-10-08 13:23:13 +08:00
|
|
|
|
using osu.Game.Screens.Edit.Setup;
|
|
|
|
|
using osu.Game.Screens.Edit.Timing;
|
2019-12-12 12:04:32 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
2019-04-13 04:54:35 +08:00
|
|
|
|
using osu.Game.Users;
|
2020-09-09 18:31:18 +08:00
|
|
|
|
using osuTK.Graphics;
|
|
|
|
|
using osuTK.Input;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit
|
|
|
|
|
{
|
2020-01-23 13:39:56 +08:00
|
|
|
|
[Cached(typeof(IBeatSnapProvider))]
|
2020-10-27 13:31:56 +08:00
|
|
|
|
[Cached(typeof(ISamplePlaybackDisabler))]
|
2020-09-24 17:55:49 +08:00
|
|
|
|
[Cached]
|
2020-10-27 13:31:56 +08:00
|
|
|
|
public class Editor : ScreenWithBeatmapBackground, IKeyBindingHandler<GlobalAction>, IKeyBindingHandler<PlatformAction>, IBeatSnapProvider, ISamplePlaybackDisabler
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-06 17:11:56 +08:00
|
|
|
|
public override float BackgroundParallaxAmount => 0.1f;
|
|
|
|
|
|
2019-06-25 15:55:49 +08:00
|
|
|
|
public override bool AllowBackButton => false;
|
|
|
|
|
|
2019-01-28 14:41:54 +08:00
|
|
|
|
public override bool HideOverlaysOnEnter => true;
|
2019-02-01 14:42:15 +08:00
|
|
|
|
|
|
|
|
|
public override bool DisallowExternalBeatmapRulesetChanges => true;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-01-24 12:10:02 +08:00
|
|
|
|
public override bool AllowRateAdjustments => false;
|
|
|
|
|
|
2020-09-09 18:57:28 +08:00
|
|
|
|
protected bool HasUnsavedChanges => lastSavedHash != changeHandler.CurrentStateHash;
|
2020-09-09 18:42:03 +08:00
|
|
|
|
|
2020-01-10 18:57:34 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private BeatmapManager beatmapManager { get; set; }
|
|
|
|
|
|
2020-09-09 18:31:18 +08:00
|
|
|
|
[Resolved(canBeNull: true)]
|
|
|
|
|
private DialogOverlay dialogOverlay { get; set; }
|
|
|
|
|
|
2020-10-27 13:31:56 +08:00
|
|
|
|
public IBindable<bool> SamplePlaybackDisabled => samplePlaybackDisabled;
|
|
|
|
|
|
|
|
|
|
private readonly Bindable<bool> samplePlaybackDisabled = new Bindable<bool>();
|
|
|
|
|
|
2020-09-09 18:31:18 +08:00
|
|
|
|
private bool exitConfirmed;
|
|
|
|
|
|
2020-09-09 18:40:41 +08:00
|
|
|
|
private string lastSavedHash;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private Box bottomBackground;
|
2020-09-24 16:03:54 +08:00
|
|
|
|
private Container<EditorScreen> screenContainer;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
private EditorScreen currentScreen;
|
|
|
|
|
|
|
|
|
|
private readonly BindableBeatDivisor beatDivisor = new BindableBeatDivisor();
|
|
|
|
|
private EditorClock clock;
|
|
|
|
|
|
2019-12-27 18:46:33 +08:00
|
|
|
|
private IBeatmap playableBeatmap;
|
|
|
|
|
private EditorBeatmap editorBeatmap;
|
2020-04-09 20:22:07 +08:00
|
|
|
|
private EditorChangeHandler changeHandler;
|
2019-12-27 18:46:33 +08:00
|
|
|
|
|
2020-09-22 14:55:25 +08:00
|
|
|
|
private EditorMenuBar menuBar;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private DependencyContainer dependencies;
|
|
|
|
|
|
2020-10-04 22:47:16 +08:00
|
|
|
|
private bool isNewBeatmap;
|
|
|
|
|
|
2019-06-12 15:33:15 +08:00
|
|
|
|
protected override UserActivity InitialActivity => new UserActivity.Editing(Beatmap.Value.BeatmapInfo);
|
2019-04-13 04:54:35 +08:00
|
|
|
|
|
2018-07-11 16:07:14 +08:00
|
|
|
|
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
|
|
|
|
|
=> dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-09-01 17:56:49 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private IAPIProvider api { get; set; }
|
|
|
|
|
|
2020-09-24 17:55:49 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private MusicController music { get; set; }
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2020-11-03 15:01:14 +08:00
|
|
|
|
private void load(OsuColour colours, GameHost host, OsuConfigManager config)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-12-01 15:16:26 +08:00
|
|
|
|
if (Beatmap.Value is DummyWorkingBeatmap)
|
|
|
|
|
{
|
|
|
|
|
isNewBeatmap = true;
|
2021-01-22 16:47:38 +08:00
|
|
|
|
|
|
|
|
|
var newBeatmap = beatmapManager.CreateNew(Ruleset.Value, api.LocalUser.Value);
|
|
|
|
|
|
|
|
|
|
// this is a bit haphazard, but guards against setting the lease Beatmap bindable if
|
|
|
|
|
// the editor has already been exited.
|
|
|
|
|
if (!ValidForPush)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// this probably shouldn't be set in the asynchronous load method, but everything following relies on it.
|
|
|
|
|
Beatmap.Value = newBeatmap;
|
2020-12-01 15:16:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-02 13:36:52 +08:00
|
|
|
|
beatDivisor.Value = Beatmap.Value.BeatmapInfo.BeatDivisor;
|
|
|
|
|
beatDivisor.BindValueChanged(divisor => Beatmap.Value.BeatmapInfo.BeatDivisor = divisor.NewValue);
|
|
|
|
|
|
2019-11-08 16:12:47 +08:00
|
|
|
|
// Todo: should probably be done at a DrawableRuleset level to share logic with Player.
|
2018-05-28 17:01:15 +08:00
|
|
|
|
clock = new EditorClock(Beatmap.Value, beatDivisor) { IsCoupled = false };
|
2020-09-24 17:55:49 +08:00
|
|
|
|
|
|
|
|
|
UpdateClockSource();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-05-22 15:37:28 +08:00
|
|
|
|
dependencies.CacheAs(clock);
|
2020-05-22 15:40:52 +08:00
|
|
|
|
AddInternal(clock);
|
2020-01-23 13:39:56 +08:00
|
|
|
|
|
2020-10-27 13:31:56 +08:00
|
|
|
|
clock.SeekingOrStopped.BindValueChanged(_ => updateSampleDisabledState());
|
|
|
|
|
|
2020-01-23 13:39:56 +08:00
|
|
|
|
// todo: remove caching of this and consume via editorBeatmap?
|
2018-04-13 17:19:50 +08:00
|
|
|
|
dependencies.Cache(beatDivisor);
|
2020-01-23 13:39:56 +08:00
|
|
|
|
|
2020-03-13 13:28:11 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
playableBeatmap = Beatmap.Value.GetPlayableBeatmap(Beatmap.Value.BeatmapInfo.Ruleset);
|
2021-01-25 17:29:00 +08:00
|
|
|
|
|
|
|
|
|
// clone these locally for now to avoid incurring overhead on GetPlayableBeatmap usages.
|
|
|
|
|
// eventually we will want to improve how/where this is done as there are issues with *not* cloning it in all cases.
|
|
|
|
|
playableBeatmap.ControlPointInfo = playableBeatmap.ControlPointInfo.CreateCopy();
|
2020-03-13 13:28:11 +08:00
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
2020-03-16 10:29:28 +08:00
|
|
|
|
Logger.Error(e, "Could not load beatmap successfully!");
|
|
|
|
|
// couldn't load, hard abort!
|
2020-03-13 13:28:11 +08:00
|
|
|
|
this.Exit();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-31 03:12:45 +08:00
|
|
|
|
AddInternal(editorBeatmap = new EditorBeatmap(playableBeatmap, Beatmap.Value.Skin));
|
2019-12-27 18:46:33 +08:00
|
|
|
|
dependencies.CacheAs(editorBeatmap);
|
2020-04-09 20:22:07 +08:00
|
|
|
|
changeHandler = new EditorChangeHandler(editorBeatmap);
|
|
|
|
|
dependencies.CacheAs<IEditorChangeHandler>(changeHandler);
|
|
|
|
|
|
2020-09-09 18:40:41 +08:00
|
|
|
|
updateLastSavedHash();
|
|
|
|
|
|
2020-04-16 12:25:08 +08:00
|
|
|
|
OsuMenuItem undoMenuItem;
|
|
|
|
|
OsuMenuItem redoMenuItem;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-09-11 18:54:20 +08:00
|
|
|
|
EditorMenuItem cutMenuItem;
|
|
|
|
|
EditorMenuItem copyMenuItem;
|
|
|
|
|
EditorMenuItem pasteMenuItem;
|
|
|
|
|
|
2020-02-25 19:52:33 +08:00
|
|
|
|
var fileMenuItems = new List<MenuItem>
|
|
|
|
|
{
|
2020-09-09 18:57:28 +08:00
|
|
|
|
new EditorMenuItem("Save", MenuItemType.Standard, Save)
|
2020-02-25 19:52:33 +08:00
|
|
|
|
};
|
2020-02-25 17:59:16 +08:00
|
|
|
|
|
|
|
|
|
if (RuntimeInfo.IsDesktop)
|
|
|
|
|
fileMenuItems.Add(new EditorMenuItem("Export package", MenuItemType.Standard, exportBeatmap));
|
|
|
|
|
|
|
|
|
|
fileMenuItems.Add(new EditorMenuItemSpacer());
|
|
|
|
|
fileMenuItems.Add(new EditorMenuItem("Exit", MenuItemType.Standard, this.Exit));
|
|
|
|
|
|
2020-02-05 16:16:15 +08:00
|
|
|
|
AddInternal(new OsuContextMenuContainer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-07 21:51:49 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Children = new[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-07 21:51:49 +08:00
|
|
|
|
new Container
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-07 21:51:49 +08:00
|
|
|
|
Name = "Screen container",
|
2018-04-13 17:19:50 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2019-11-07 21:51:49 +08:00
|
|
|
|
Padding = new MarginPadding { Top = 40, Bottom = 60 },
|
2020-09-24 16:03:54 +08:00
|
|
|
|
Child = screenContainer = new Container<EditorScreen>
|
2019-11-07 21:51:49 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Masking = true
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
new Container
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-07 21:51:49 +08:00
|
|
|
|
Name = "Top bar",
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = 40,
|
|
|
|
|
Child = menuBar = new EditorMenuBar
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-07 21:51:49 +08:00
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-08-24 18:38:05 +08:00
|
|
|
|
Mode = { Value = isNewBeatmap ? EditorScreenMode.SongSetup : EditorScreenMode.Compose },
|
2019-11-07 21:51:49 +08:00
|
|
|
|
Items = new[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-07 21:51:49 +08:00
|
|
|
|
new MenuItem("File")
|
|
|
|
|
{
|
2020-02-25 17:59:16 +08:00
|
|
|
|
Items = fileMenuItems
|
2020-04-09 20:22:07 +08:00
|
|
|
|
},
|
|
|
|
|
new MenuItem("Edit")
|
|
|
|
|
{
|
|
|
|
|
Items = new[]
|
|
|
|
|
{
|
2020-04-22 17:14:21 +08:00
|
|
|
|
undoMenuItem = new EditorMenuItem("Undo", MenuItemType.Standard, Undo),
|
2020-09-11 18:54:20 +08:00
|
|
|
|
redoMenuItem = new EditorMenuItem("Redo", MenuItemType.Standard, Redo),
|
|
|
|
|
new EditorMenuItemSpacer(),
|
|
|
|
|
cutMenuItem = new EditorMenuItem("Cut", MenuItemType.Standard, Cut),
|
|
|
|
|
copyMenuItem = new EditorMenuItem("Copy", MenuItemType.Standard, Copy),
|
|
|
|
|
pasteMenuItem = new EditorMenuItem("Paste", MenuItemType.Standard, Paste),
|
2020-04-09 20:22:07 +08:00
|
|
|
|
}
|
2020-11-03 15:01:14 +08:00
|
|
|
|
},
|
|
|
|
|
new MenuItem("View")
|
|
|
|
|
{
|
|
|
|
|
Items = new[]
|
|
|
|
|
{
|
|
|
|
|
new WaveformOpacityMenu(config)
|
|
|
|
|
}
|
2019-11-07 21:51:49 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-07 21:51:49 +08:00
|
|
|
|
},
|
|
|
|
|
new Container
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-07 21:51:49 +08:00
|
|
|
|
Name = "Bottom bar",
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = 60,
|
|
|
|
|
Children = new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-07 21:51:49 +08:00
|
|
|
|
bottomBackground = new Box { RelativeSizeAxes = Axes.Both },
|
|
|
|
|
new Container
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2019-11-07 21:51:49 +08:00
|
|
|
|
Padding = new MarginPadding { Vertical = 5, Horizontal = 10 },
|
|
|
|
|
Child = new GridContainer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-07 21:51:49 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
ColumnDimensions = new[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-07 21:51:49 +08:00
|
|
|
|
new Dimension(GridSizeMode.Absolute, 220),
|
|
|
|
|
new Dimension(),
|
|
|
|
|
new Dimension(GridSizeMode.Absolute, 220)
|
|
|
|
|
},
|
|
|
|
|
Content = new[]
|
|
|
|
|
{
|
|
|
|
|
new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-07 21:51:49 +08:00
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Right = 10 },
|
|
|
|
|
Child = new TimeInfoContainer { RelativeSizeAxes = Axes.Both },
|
|
|
|
|
},
|
|
|
|
|
new SummaryTimeline
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Left = 10 },
|
|
|
|
|
Child = new PlaybackControl { RelativeSizeAxes = Axes.Both },
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
2019-11-07 21:51:49 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2019-11-07 21:51:49 +08:00
|
|
|
|
},
|
|
|
|
|
}
|
2020-02-05 16:16:15 +08:00
|
|
|
|
});
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-04-16 12:25:08 +08:00
|
|
|
|
changeHandler.CanUndo.BindValueChanged(v => undoMenuItem.Action.Disabled = !v.NewValue, true);
|
|
|
|
|
changeHandler.CanRedo.BindValueChanged(v => redoMenuItem.Action.Disabled = !v.NewValue, true);
|
|
|
|
|
|
2020-09-11 21:53:03 +08:00
|
|
|
|
editorBeatmap.SelectedHitObjects.BindCollectionChanged((_, __) =>
|
2020-09-11 18:54:20 +08:00
|
|
|
|
{
|
|
|
|
|
var hasObjects = editorBeatmap.SelectedHitObjects.Count > 0;
|
|
|
|
|
|
|
|
|
|
cutMenuItem.Action.Disabled = !hasObjects;
|
|
|
|
|
copyMenuItem.Action.Disabled = !hasObjects;
|
2020-09-11 21:53:03 +08:00
|
|
|
|
}, true);
|
2020-09-11 18:54:20 +08:00
|
|
|
|
|
|
|
|
|
clipboard.BindValueChanged(content => pasteMenuItem.Action.Disabled = string.IsNullOrEmpty(content.NewValue));
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
menuBar.Mode.ValueChanged += onModeChanged;
|
|
|
|
|
|
|
|
|
|
bottomBackground.Colour = colours.Gray2;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-24 17:55:49 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// If the beatmap's track has changed, this method must be called to keep the editor in a valid state.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public void UpdateClockSource()
|
|
|
|
|
{
|
|
|
|
|
var sourceClock = (IAdjustableClock)Beatmap.Value.Track ?? new StopwatchClock();
|
|
|
|
|
clock.ChangeSource(sourceClock);
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-09 18:57:28 +08:00
|
|
|
|
protected void Save()
|
|
|
|
|
{
|
2020-10-04 22:47:16 +08:00
|
|
|
|
// no longer new after first user-triggered save.
|
|
|
|
|
isNewBeatmap = false;
|
|
|
|
|
|
2020-09-09 18:57:28 +08:00
|
|
|
|
// apply any set-level metadata changes.
|
|
|
|
|
beatmapManager.Update(playableBeatmap.BeatmapInfo.BeatmapSet);
|
|
|
|
|
|
|
|
|
|
// save the loaded beatmap's data stream.
|
|
|
|
|
beatmapManager.Save(playableBeatmap.BeatmapInfo, editorBeatmap, editorBeatmap.BeatmapSkin);
|
|
|
|
|
|
|
|
|
|
updateLastSavedHash();
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-18 17:21:53 +08:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
clock.ProcessFrame();
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-22 16:41:24 +08:00
|
|
|
|
public bool OnPressed(PlatformAction action)
|
|
|
|
|
{
|
|
|
|
|
switch (action.ActionType)
|
|
|
|
|
{
|
2020-09-11 18:55:41 +08:00
|
|
|
|
case PlatformActionType.Cut:
|
|
|
|
|
Cut();
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case PlatformActionType.Copy:
|
|
|
|
|
Copy();
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case PlatformActionType.Paste:
|
|
|
|
|
Paste();
|
|
|
|
|
return true;
|
|
|
|
|
|
2020-04-22 16:41:24 +08:00
|
|
|
|
case PlatformActionType.Undo:
|
2020-04-22 17:14:21 +08:00
|
|
|
|
Undo();
|
2020-04-22 16:41:24 +08:00
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case PlatformActionType.Redo:
|
2020-04-22 17:14:21 +08:00
|
|
|
|
Redo();
|
2020-04-22 16:41:24 +08:00
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case PlatformActionType.Save:
|
2020-09-09 18:57:28 +08:00
|
|
|
|
Save();
|
2020-04-22 16:41:24 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void OnReleased(PlatformAction action)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-30 13:57:25 +08:00
|
|
|
|
protected override bool OnKeyDown(KeyDownEvent e)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-11-30 13:57:25 +08:00
|
|
|
|
switch (e.Key)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-11-30 13:57:25 +08:00
|
|
|
|
case Key.Left:
|
2018-11-30 14:47:55 +08:00
|
|
|
|
seek(e, -1);
|
2018-11-30 13:57:25 +08:00
|
|
|
|
return true;
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2018-11-30 13:57:25 +08:00
|
|
|
|
case Key.Right:
|
2018-11-30 14:47:55 +08:00
|
|
|
|
seek(e, 1);
|
2018-11-30 13:57:25 +08:00
|
|
|
|
return true;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-30 13:57:25 +08:00
|
|
|
|
return base.OnKeyDown(e);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-22 18:40:44 +08:00
|
|
|
|
private double scrollAccumulation;
|
|
|
|
|
|
2018-10-02 11:02:47 +08:00
|
|
|
|
protected override bool OnScroll(ScrollEvent e)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-11-25 15:46:19 +08:00
|
|
|
|
if (e.ControlPressed || e.AltPressed || e.SuperPressed)
|
|
|
|
|
return false;
|
|
|
|
|
|
2020-07-17 15:03:13 +08:00
|
|
|
|
const double precision = 1;
|
2018-11-22 18:40:44 +08:00
|
|
|
|
|
2020-07-17 15:03:13 +08:00
|
|
|
|
double scrollComponent = e.ScrollDelta.X + e.ScrollDelta.Y;
|
2018-11-22 19:13:40 +08:00
|
|
|
|
|
2020-07-17 15:03:13 +08:00
|
|
|
|
double scrollDirection = Math.Sign(scrollComponent);
|
|
|
|
|
|
|
|
|
|
// this is a special case to handle the "pivot" scenario.
|
|
|
|
|
// if we are precise scrolling in one direction then change our mind and scroll backwards,
|
|
|
|
|
// the existing accumulation should be applied in the inverse direction to maintain responsiveness.
|
2020-08-31 17:01:16 +08:00
|
|
|
|
if (scrollAccumulation != 0 && Math.Sign(scrollAccumulation) != scrollDirection)
|
2020-07-17 15:03:13 +08:00
|
|
|
|
scrollAccumulation = scrollDirection * (precision - Math.Abs(scrollAccumulation));
|
|
|
|
|
|
|
|
|
|
scrollAccumulation += scrollComponent * (e.IsPrecise ? 0.1 : 1);
|
|
|
|
|
|
|
|
|
|
// because we are doing snapped seeking, we need to add up precise scrolls until they accumulate to an arbitrary cut-off.
|
|
|
|
|
while (Math.Abs(scrollAccumulation) >= precision)
|
2018-11-22 19:13:40 +08:00
|
|
|
|
{
|
|
|
|
|
if (scrollAccumulation > 0)
|
2018-11-30 14:47:55 +08:00
|
|
|
|
seek(e, -1);
|
2018-11-22 19:13:40 +08:00
|
|
|
|
else
|
2018-11-30 14:47:55 +08:00
|
|
|
|
seek(e, 1);
|
2018-11-22 19:13:40 +08:00
|
|
|
|
|
|
|
|
|
scrollAccumulation = scrollAccumulation < 0 ? Math.Min(0, scrollAccumulation + precision) : Math.Max(0, scrollAccumulation - precision);
|
|
|
|
|
}
|
2018-11-22 18:40:44 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-30 18:31:31 +08:00
|
|
|
|
public bool OnPressed(GlobalAction action)
|
|
|
|
|
{
|
2020-09-22 14:55:25 +08:00
|
|
|
|
switch (action)
|
2019-06-30 18:31:31 +08:00
|
|
|
|
{
|
2020-09-22 14:55:25 +08:00
|
|
|
|
case GlobalAction.Back:
|
|
|
|
|
// as we don't want to display the back button, manual handling of exit action is required.
|
|
|
|
|
this.Exit();
|
|
|
|
|
return true;
|
2019-06-30 18:31:31 +08:00
|
|
|
|
|
2020-09-22 14:55:25 +08:00
|
|
|
|
case GlobalAction.EditorComposeMode:
|
|
|
|
|
menuBar.Mode.Value = EditorScreenMode.Compose;
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case GlobalAction.EditorDesignMode:
|
|
|
|
|
menuBar.Mode.Value = EditorScreenMode.Design;
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case GlobalAction.EditorTimingMode:
|
|
|
|
|
menuBar.Mode.Value = EditorScreenMode.Timing;
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
case GlobalAction.EditorSetupMode:
|
|
|
|
|
menuBar.Mode.Value = EditorScreenMode.SongSetup;
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2019-06-30 18:31:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-22 12:22:34 +08:00
|
|
|
|
public void OnReleased(GlobalAction action)
|
|
|
|
|
{
|
|
|
|
|
}
|
2019-06-30 18:31:31 +08:00
|
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
|
public override void OnEntering(IScreen last)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
base.OnEntering(last);
|
2019-07-10 23:22:40 +08:00
|
|
|
|
|
2021-01-04 17:32:23 +08:00
|
|
|
|
ApplyToBackground(b =>
|
|
|
|
|
{
|
|
|
|
|
// todo: temporary. we want to be applying dim using the UserDimContainer eventually.
|
|
|
|
|
b.FadeColour(Color4.DarkGray, 500);
|
2019-11-08 17:51:01 +08:00
|
|
|
|
|
2021-01-04 17:32:23 +08:00
|
|
|
|
b.EnableUserDim.Value = false;
|
|
|
|
|
b.BlurAmount.Value = 0;
|
|
|
|
|
});
|
2019-12-12 12:04:32 +08:00
|
|
|
|
|
2019-11-08 17:51:01 +08:00
|
|
|
|
resetTrack(true);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
|
public override bool OnExiting(IScreen next)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-10-04 22:57:28 +08:00
|
|
|
|
if (!exitConfirmed)
|
2020-09-09 18:31:18 +08:00
|
|
|
|
{
|
2020-10-04 22:57:28 +08:00
|
|
|
|
// if the confirm dialog is already showing (or we can't show it, ie. in tests) exit without save.
|
|
|
|
|
if (dialogOverlay == null || dialogOverlay.CurrentDialog is PromptForSaveDialog)
|
|
|
|
|
{
|
|
|
|
|
confirmExit();
|
2020-12-21 16:49:10 +08:00
|
|
|
|
return base.OnExiting(next);
|
2020-10-04 22:57:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isNewBeatmap || HasUnsavedChanges)
|
|
|
|
|
{
|
2020-10-28 12:32:39 +08:00
|
|
|
|
dialogOverlay?.Push(new PromptForSaveDialog(() =>
|
|
|
|
|
{
|
|
|
|
|
confirmExit();
|
|
|
|
|
this.Exit();
|
|
|
|
|
}, () =>
|
|
|
|
|
{
|
|
|
|
|
confirmExitWithSave();
|
|
|
|
|
this.Exit();
|
|
|
|
|
}));
|
|
|
|
|
|
2020-10-04 22:57:28 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2020-09-09 18:31:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-04 17:32:23 +08:00
|
|
|
|
ApplyToBackground(b => b.FadeColour(Color4.White, 500));
|
2019-07-10 23:22:40 +08:00
|
|
|
|
resetTrack();
|
2019-07-10 16:43:02 +08:00
|
|
|
|
|
2021-01-04 15:37:49 +08:00
|
|
|
|
Beatmap.Value = beatmapManager.GetWorkingBeatmap(Beatmap.Value.BeatmapInfo);
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return base.OnExiting(next);
|
|
|
|
|
}
|
2019-07-10 23:22:40 +08:00
|
|
|
|
|
2020-09-09 18:31:18 +08:00
|
|
|
|
private void confirmExitWithSave()
|
|
|
|
|
{
|
|
|
|
|
exitConfirmed = true;
|
2020-09-09 18:57:28 +08:00
|
|
|
|
Save();
|
2020-09-09 18:31:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void confirmExit()
|
|
|
|
|
{
|
2020-10-09 12:11:44 +08:00
|
|
|
|
// stop the track if playing to allow the parent screen to choose a suitable playback mode.
|
|
|
|
|
Beatmap.Value.Track.Stop();
|
|
|
|
|
|
2020-10-04 22:47:16 +08:00
|
|
|
|
if (isNewBeatmap)
|
|
|
|
|
{
|
|
|
|
|
// confirming exit without save means we should delete the new beatmap completely.
|
|
|
|
|
beatmapManager.Delete(playableBeatmap.BeatmapInfo.BeatmapSet);
|
2020-10-09 12:11:44 +08:00
|
|
|
|
|
2020-11-08 03:31:44 +08:00
|
|
|
|
// eagerly clear contents before restoring default beatmap to prevent value change callbacks from firing.
|
|
|
|
|
ClearInternal();
|
|
|
|
|
|
2020-10-09 12:11:44 +08:00
|
|
|
|
// in theory this shouldn't be required but due to EF core not sharing instance states 100%
|
|
|
|
|
// MusicController is unaware of the changed DeletePending state.
|
|
|
|
|
Beatmap.SetDefault();
|
2020-10-04 22:47:16 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-09 18:31:18 +08:00
|
|
|
|
exitConfirmed = true;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-11 18:54:20 +08:00
|
|
|
|
private readonly Bindable<string> clipboard = new Bindable<string>();
|
|
|
|
|
|
|
|
|
|
protected void Cut()
|
|
|
|
|
{
|
|
|
|
|
Copy();
|
2020-10-06 21:09:48 +08:00
|
|
|
|
editorBeatmap.RemoveRange(editorBeatmap.SelectedHitObjects.ToArray());
|
2020-09-11 18:54:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void Copy()
|
|
|
|
|
{
|
2020-09-12 14:33:13 +08:00
|
|
|
|
if (editorBeatmap.SelectedHitObjects.Count == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-09-11 18:54:20 +08:00
|
|
|
|
clipboard.Value = new ClipboardContent(editorBeatmap).Serialize();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void Paste()
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrEmpty(clipboard.Value))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
var objects = clipboard.Value.Deserialize<ClipboardContent>().HitObjects;
|
2020-09-12 14:33:13 +08:00
|
|
|
|
|
|
|
|
|
Debug.Assert(objects.Any());
|
|
|
|
|
|
2020-09-13 21:53:30 +08:00
|
|
|
|
double timeOffset = clock.CurrentTime - objects.Min(o => o.StartTime);
|
2020-09-11 18:54:20 +08:00
|
|
|
|
|
|
|
|
|
foreach (var h in objects)
|
|
|
|
|
h.StartTime += timeOffset;
|
|
|
|
|
|
2020-10-08 16:43:27 +08:00
|
|
|
|
editorBeatmap.BeginChange();
|
2020-09-14 13:45:49 +08:00
|
|
|
|
|
2020-09-11 22:02:23 +08:00
|
|
|
|
editorBeatmap.SelectedHitObjects.Clear();
|
|
|
|
|
|
2020-09-11 18:54:20 +08:00
|
|
|
|
editorBeatmap.AddRange(objects);
|
2020-09-11 22:02:23 +08:00
|
|
|
|
editorBeatmap.SelectedHitObjects.AddRange(objects);
|
2020-09-14 13:45:49 +08:00
|
|
|
|
|
2020-10-08 16:43:27 +08:00
|
|
|
|
editorBeatmap.EndChange();
|
2020-09-11 18:54:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-22 17:14:21 +08:00
|
|
|
|
protected void Undo() => changeHandler.RestoreState(-1);
|
2020-04-09 20:22:07 +08:00
|
|
|
|
|
2020-04-22 17:14:21 +08:00
|
|
|
|
protected void Redo() => changeHandler.RestoreState(1);
|
2020-04-09 20:22:07 +08:00
|
|
|
|
|
2019-11-08 17:51:01 +08:00
|
|
|
|
private void resetTrack(bool seekToStart = false)
|
2019-07-10 23:22:40 +08:00
|
|
|
|
{
|
|
|
|
|
Beatmap.Value.Track?.Stop();
|
2019-11-08 17:51:01 +08:00
|
|
|
|
|
|
|
|
|
if (seekToStart)
|
|
|
|
|
{
|
|
|
|
|
double targetTime = 0;
|
|
|
|
|
|
|
|
|
|
if (Beatmap.Value.Beatmap.HitObjects.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
// seek to one beat length before the first hitobject
|
|
|
|
|
targetTime = Beatmap.Value.Beatmap.HitObjects[0].StartTime;
|
|
|
|
|
targetTime -= Beatmap.Value.Beatmap.ControlPointInfo.TimingPointAt(targetTime).BeatLength;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
clock.Seek(Math.Max(0, targetTime));
|
|
|
|
|
}
|
2019-07-10 23:22:40 +08:00
|
|
|
|
}
|
2018-11-30 13:57:25 +08:00
|
|
|
|
|
2019-02-21 17:56:34 +08:00
|
|
|
|
private void onModeChanged(ValueChangedEvent<EditorScreenMode> e)
|
2018-11-30 13:57:25 +08:00
|
|
|
|
{
|
2020-09-24 16:03:54 +08:00
|
|
|
|
var lastScreen = currentScreen;
|
|
|
|
|
|
|
|
|
|
lastScreen?
|
|
|
|
|
.ScaleTo(0.98f, 200, Easing.OutQuint)
|
|
|
|
|
.FadeOut(200, Easing.OutQuint);
|
|
|
|
|
|
2020-10-27 13:31:56 +08:00
|
|
|
|
try
|
2020-09-24 16:03:54 +08:00
|
|
|
|
{
|
2020-10-27 13:31:56 +08:00
|
|
|
|
if ((currentScreen = screenContainer.SingleOrDefault(s => s.Type == e.NewValue)) != null)
|
|
|
|
|
{
|
|
|
|
|
screenContainer.ChangeChildDepth(currentScreen, lastScreen?.Depth + 1 ?? 0);
|
2020-09-24 16:03:54 +08:00
|
|
|
|
|
2020-10-27 13:31:56 +08:00
|
|
|
|
currentScreen
|
|
|
|
|
.ScaleTo(1, 200, Easing.OutQuint)
|
|
|
|
|
.FadeIn(200, Easing.OutQuint);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2018-11-30 13:57:25 +08:00
|
|
|
|
|
2020-10-27 13:31:56 +08:00
|
|
|
|
switch (e.NewValue)
|
|
|
|
|
{
|
|
|
|
|
case EditorScreenMode.SongSetup:
|
|
|
|
|
currentScreen = new SetupScreen();
|
|
|
|
|
break;
|
2019-10-08 13:23:13 +08:00
|
|
|
|
|
2020-10-27 13:31:56 +08:00
|
|
|
|
case EditorScreenMode.Compose:
|
|
|
|
|
currentScreen = new ComposeScreen();
|
|
|
|
|
break;
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2020-10-27 13:31:56 +08:00
|
|
|
|
case EditorScreenMode.Design:
|
|
|
|
|
currentScreen = new DesignScreen();
|
|
|
|
|
break;
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2020-10-27 13:31:56 +08:00
|
|
|
|
case EditorScreenMode.Timing:
|
|
|
|
|
currentScreen = new TimingScreen();
|
|
|
|
|
break;
|
|
|
|
|
}
|
2018-11-30 13:57:25 +08:00
|
|
|
|
|
2020-10-27 13:31:56 +08:00
|
|
|
|
LoadComponentAsync(currentScreen, newScreen =>
|
|
|
|
|
{
|
|
|
|
|
if (newScreen == currentScreen)
|
|
|
|
|
screenContainer.Add(newScreen);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
finally
|
2020-09-08 18:50:29 +08:00
|
|
|
|
{
|
2020-10-27 13:31:56 +08:00
|
|
|
|
updateSampleDisabledState();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateSampleDisabledState()
|
|
|
|
|
{
|
|
|
|
|
samplePlaybackDisabled.Value = clock.SeekingOrStopped.Value || !(currentScreen is ComposeScreen);
|
2018-11-30 13:57:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-30 14:47:55 +08:00
|
|
|
|
private void seek(UIEvent e, int direction)
|
2018-11-30 13:57:25 +08:00
|
|
|
|
{
|
2020-10-06 16:47:22 +08:00
|
|
|
|
double amount = e.ShiftPressed ? 4 : 1;
|
2018-11-30 13:57:25 +08:00
|
|
|
|
|
2020-10-16 12:07:00 +08:00
|
|
|
|
bool trackPlaying = clock.IsRunning;
|
|
|
|
|
|
|
|
|
|
if (trackPlaying)
|
|
|
|
|
{
|
|
|
|
|
// generally users are not looking to perform tiny seeks when the track is playing,
|
|
|
|
|
// so seeks should always be by one full beat, bypassing the beatDivisor.
|
|
|
|
|
// this multiplication undoes the division that will be applied in the underlying seek operation.
|
|
|
|
|
amount *= beatDivisor.Value;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-30 13:57:25 +08:00
|
|
|
|
if (direction < 1)
|
2020-10-16 12:07:00 +08:00
|
|
|
|
clock.SeekBackward(!trackPlaying, amount);
|
2018-11-30 13:57:25 +08:00
|
|
|
|
else
|
2020-10-16 12:07:00 +08:00
|
|
|
|
clock.SeekForward(!trackPlaying, amount);
|
2018-11-30 13:57:25 +08:00
|
|
|
|
}
|
2020-01-14 18:05:52 +08:00
|
|
|
|
|
2020-01-15 12:48:28 +08:00
|
|
|
|
private void exportBeatmap()
|
|
|
|
|
{
|
2020-09-09 18:57:28 +08:00
|
|
|
|
Save();
|
2020-01-15 12:48:28 +08:00
|
|
|
|
beatmapManager.Export(Beatmap.Value.BeatmapSetInfo);
|
|
|
|
|
}
|
2020-01-23 13:39:56 +08:00
|
|
|
|
|
2020-09-09 18:40:41 +08:00
|
|
|
|
private void updateLastSavedHash()
|
|
|
|
|
{
|
|
|
|
|
lastSavedHash = changeHandler.CurrentStateHash;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-28 11:48:24 +08:00
|
|
|
|
public double SnapTime(double time, double? referenceTime) => editorBeatmap.SnapTime(time, referenceTime);
|
2020-01-23 13:39:56 +08:00
|
|
|
|
|
2020-01-23 14:31:56 +08:00
|
|
|
|
public double GetBeatLengthAtTime(double referenceTime) => editorBeatmap.GetBeatLengthAtTime(referenceTime);
|
2020-01-23 13:39:56 +08:00
|
|
|
|
|
|
|
|
|
public int BeatDivisor => beatDivisor.Value;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|