2017-02-07 04:59:30 +00: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 11:13:58 +00:00
|
|
|
|
|
2016-11-22 07:13:38 +00:00
|
|
|
|
using System.Threading;
|
2017-03-14 08:29:20 +00:00
|
|
|
|
using OpenTK;
|
|
|
|
|
using OpenTK.Input;
|
2016-11-14 08:23:33 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Audio;
|
2017-03-14 08:29:20 +00:00
|
|
|
|
using osu.Framework.Audio.Sample;
|
2016-11-14 08:23:33 +00:00
|
|
|
|
using osu.Framework.Audio.Track;
|
2016-10-08 10:12:31 +00:00
|
|
|
|
using osu.Framework.Configuration;
|
2016-10-11 17:52:16 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-03-14 08:29:20 +00:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Input;
|
|
|
|
|
using osu.Framework.Screens;
|
2017-04-28 11:44:16 +00:00
|
|
|
|
using osu.Framework.Threading;
|
2016-11-14 08:23:33 +00:00
|
|
|
|
using osu.Game.Beatmaps;
|
2016-10-13 17:49:44 +00:00
|
|
|
|
using osu.Game.Database;
|
2017-03-14 08:29:20 +00:00
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
|
using osu.Game.Overlays;
|
2016-11-14 08:23:33 +00:00
|
|
|
|
using osu.Game.Screens.Backgrounds;
|
2017-03-03 01:20:30 +00:00
|
|
|
|
using osu.Game.Screens.Select.Options;
|
2016-09-29 11:13:58 +00:00
|
|
|
|
|
2016-11-20 19:34:16 +00:00
|
|
|
|
namespace osu.Game.Screens.Select
|
2016-09-29 11:13:58 +00:00
|
|
|
|
{
|
2017-03-14 08:58:34 +00:00
|
|
|
|
public abstract class SongSelect : OsuScreen
|
2016-09-29 11:13:58 +00:00
|
|
|
|
{
|
2017-04-17 08:43:48 +00:00
|
|
|
|
private readonly Bindable<RulesetInfo> ruleset = new Bindable<RulesetInfo>();
|
2016-10-27 08:35:00 +00:00
|
|
|
|
private BeatmapDatabase database;
|
2017-02-17 09:59:30 +00:00
|
|
|
|
protected override BackgroundScreen CreateBackground() => new BackgroundScreenBeatmap(Beatmap);
|
2016-11-19 16:39:43 +00:00
|
|
|
|
|
2017-03-23 04:41:50 +00:00
|
|
|
|
private readonly BeatmapCarousel carousel;
|
2016-10-28 10:55:48 +00:00
|
|
|
|
private TrackManager trackManager;
|
2017-02-28 06:09:36 +00:00
|
|
|
|
private DialogOverlay dialogOverlay;
|
2016-11-20 09:02:20 +00:00
|
|
|
|
|
2017-03-15 05:34:19 +00:00
|
|
|
|
private static readonly Vector2 wedged_container_size = new Vector2(0.5f, 245);
|
|
|
|
|
|
|
|
|
|
private const float left_area_padding = 20;
|
|
|
|
|
|
2017-03-23 04:41:50 +00:00
|
|
|
|
private readonly BeatmapInfoWedge beatmapInfoWedge;
|
2016-10-14 01:40:44 +00:00
|
|
|
|
|
2017-03-15 05:34:19 +00:00
|
|
|
|
protected Container LeftContent;
|
|
|
|
|
|
2017-02-07 07:15:45 +00:00
|
|
|
|
private static readonly Vector2 background_blur = new Vector2(20);
|
2016-11-22 07:13:38 +00:00
|
|
|
|
private CancellationTokenSource initialAddSetsTask;
|
2016-11-19 16:39:43 +00:00
|
|
|
|
|
2017-02-18 08:35:04 +00:00
|
|
|
|
private SampleChannel sampleChangeDifficulty;
|
|
|
|
|
private SampleChannel sampleChangeBeatmap;
|
2017-02-08 11:30:05 +00:00
|
|
|
|
|
2017-03-15 02:10:59 +00:00
|
|
|
|
protected virtual bool ShowFooter => true;
|
|
|
|
|
|
2017-03-14 13:51:26 +00:00
|
|
|
|
/// <summary>
|
2017-03-16 05:08:37 +00:00
|
|
|
|
/// Can be null if <see cref="ShowFooter"/> is false.
|
2017-03-14 13:51:26 +00:00
|
|
|
|
/// </summary>
|
2017-03-15 02:10:59 +00:00
|
|
|
|
protected readonly BeatmapOptionsOverlay BeatmapOptions;
|
|
|
|
|
|
2017-03-14 13:51:26 +00:00
|
|
|
|
/// <summary>
|
2017-03-16 05:08:37 +00:00
|
|
|
|
/// Can be null if <see cref="ShowFooter"/> is false.
|
2017-03-14 13:51:26 +00:00
|
|
|
|
/// </summary>
|
2017-03-15 02:10:59 +00:00
|
|
|
|
protected readonly Footer Footer;
|
2017-01-26 14:07:49 +00:00
|
|
|
|
|
2017-03-23 10:32:58 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Contains any panel which is triggered by a footer button.
|
|
|
|
|
/// Helps keep them located beneath the footer itself.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected readonly Container FooterPanels;
|
|
|
|
|
|
2017-03-16 05:23:48 +00:00
|
|
|
|
public readonly FilterControl FilterControl;
|
2017-01-13 04:49:05 +00:00
|
|
|
|
|
2017-03-15 02:10:59 +00:00
|
|
|
|
protected SongSelect()
|
2016-10-11 18:15:22 +00:00
|
|
|
|
{
|
2017-02-07 07:15:45 +00:00
|
|
|
|
const float carousel_width = 640;
|
2017-02-08 11:30:05 +00:00
|
|
|
|
const float filter_height = 100;
|
|
|
|
|
|
2017-03-14 13:51:26 +00:00
|
|
|
|
Add(new ParallaxContainer
|
2016-10-11 18:15:22 +00:00
|
|
|
|
{
|
2017-03-14 13:51:26 +00:00
|
|
|
|
Padding = new MarginPadding { Top = filter_height },
|
|
|
|
|
ParallaxAmount = 0.005f,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Children = new[]
|
2016-10-13 20:55:15 +00:00
|
|
|
|
{
|
2017-03-14 13:51:26 +00:00
|
|
|
|
new WedgeBackground
|
2016-10-19 18:02:03 +00:00
|
|
|
|
{
|
2017-03-14 13:51:26 +00:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Right = carousel_width * 0.76f },
|
2016-10-19 18:02:03 +00:00
|
|
|
|
}
|
2017-03-14 13:51:26 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
2017-03-15 05:34:19 +00:00
|
|
|
|
Add(LeftContent = new Container
|
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Size = new Vector2(wedged_container_size.X, 1),
|
|
|
|
|
Padding = new MarginPadding
|
|
|
|
|
{
|
|
|
|
|
Bottom = 50,
|
|
|
|
|
Top = wedged_container_size.Y + left_area_padding,
|
|
|
|
|
Left = left_area_padding,
|
|
|
|
|
Right = left_area_padding * 2,
|
|
|
|
|
}
|
|
|
|
|
});
|
2017-03-17 10:12:54 +00:00
|
|
|
|
Add(carousel = new BeatmapCarousel
|
2017-03-14 13:51:26 +00:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
|
|
|
|
Size = new Vector2(carousel_width, 1),
|
|
|
|
|
Anchor = Anchor.CentreRight,
|
|
|
|
|
Origin = Anchor.CentreRight,
|
2017-03-17 10:12:15 +00:00
|
|
|
|
SelectionChanged = selectionChanged,
|
|
|
|
|
StartRequested = raiseSelect
|
2017-03-14 13:51:26 +00:00
|
|
|
|
});
|
2017-03-16 07:35:44 +00:00
|
|
|
|
Add(FilterControl = new FilterControl
|
2017-03-14 13:51:26 +00:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = filter_height,
|
2017-03-17 10:54:51 +00:00
|
|
|
|
FilterChanged = criteria => filterChanged(criteria),
|
2017-03-14 13:51:26 +00:00
|
|
|
|
Exit = Exit,
|
|
|
|
|
});
|
|
|
|
|
Add(beatmapInfoWedge = new BeatmapInfoWedge
|
|
|
|
|
{
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
Size = wedged_container_size,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Margin = new MarginPadding
|
2016-11-20 09:02:20 +00:00
|
|
|
|
{
|
2017-03-15 05:34:19 +00:00
|
|
|
|
Top = left_area_padding,
|
|
|
|
|
Right = left_area_padding,
|
2016-11-20 09:02:20 +00:00
|
|
|
|
},
|
2017-03-14 13:51:26 +00:00
|
|
|
|
X = -50,
|
|
|
|
|
});
|
2017-03-15 02:10:59 +00:00
|
|
|
|
|
|
|
|
|
if (ShowFooter)
|
2017-03-14 13:51:26 +00:00
|
|
|
|
{
|
2017-03-23 10:32:58 +00:00
|
|
|
|
Add(FooterPanels = new Container
|
2017-02-16 20:05:03 +00:00
|
|
|
|
{
|
2017-03-23 10:32:58 +00:00
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
2017-02-18 11:28:22 +00:00
|
|
|
|
Margin = new MarginPadding
|
|
|
|
|
{
|
2017-03-23 10:32:58 +00:00
|
|
|
|
Bottom = Footer.HEIGHT,
|
2017-02-18 11:28:22 +00:00
|
|
|
|
},
|
2017-03-14 13:51:26 +00:00
|
|
|
|
});
|
|
|
|
|
Add(Footer = new Footer
|
2016-10-21 14:52:52 +00:00
|
|
|
|
{
|
2017-01-26 14:07:49 +00:00
|
|
|
|
OnBack = Exit,
|
2017-03-14 13:51:26 +00:00
|
|
|
|
OnStart = raiseSelect,
|
|
|
|
|
});
|
2017-03-23 10:32:58 +00:00
|
|
|
|
|
|
|
|
|
FooterPanels.Add(BeatmapOptions = new BeatmapOptionsOverlay());
|
2017-03-14 13:51:26 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-01-26 14:07:49 +00:00
|
|
|
|
|
2017-03-14 13:51:26 +00:00
|
|
|
|
[BackgroundDependencyLoader(permitNulls: true)]
|
2017-03-17 10:12:15 +00:00
|
|
|
|
private void load(BeatmapDatabase beatmaps, AudioManager audio, DialogOverlay dialog, OsuGame osu, OsuColour colours)
|
2017-03-14 13:51:26 +00:00
|
|
|
|
{
|
|
|
|
|
if (Footer != null)
|
|
|
|
|
{
|
|
|
|
|
Footer.AddButton(@"random", colours.Green, SelectRandom, Key.F2);
|
|
|
|
|
Footer.AddButton(@"options", colours.Blue, BeatmapOptions.ToggleVisibility, Key.F3);
|
2017-03-14 12:18:14 +00:00
|
|
|
|
|
2017-03-14 13:51:26 +00:00
|
|
|
|
BeatmapOptions.AddButton(@"Delete", @"Beatmap", FontAwesome.fa_trash, colours.Pink, promptDelete, Key.Number4, float.MaxValue);
|
|
|
|
|
}
|
2017-03-14 12:18:14 +00:00
|
|
|
|
|
2016-10-27 08:35:00 +00:00
|
|
|
|
if (database == null)
|
2016-11-08 23:13:20 +00:00
|
|
|
|
database = beatmaps;
|
2016-10-27 08:35:00 +00:00
|
|
|
|
|
2017-04-14 20:22:41 +00:00
|
|
|
|
if (osu != null)
|
|
|
|
|
ruleset.BindTo(osu.Ruleset);
|
2017-04-05 01:15:39 +00:00
|
|
|
|
|
2017-02-24 08:21:14 +00:00
|
|
|
|
database.BeatmapSetAdded += onBeatmapSetAdded;
|
|
|
|
|
database.BeatmapSetRemoved += onBeatmapSetRemoved;
|
2016-10-27 08:35:00 +00:00
|
|
|
|
|
2016-11-08 23:13:20 +00:00
|
|
|
|
trackManager = audio.Track;
|
2017-03-01 22:41:00 +00:00
|
|
|
|
dialogOverlay = dialog;
|
2016-10-28 10:55:48 +00:00
|
|
|
|
|
2016-12-05 11:09:56 +00:00
|
|
|
|
sampleChangeDifficulty = audio.Sample.Get(@"SongSelect/select-difficulty");
|
|
|
|
|
sampleChangeBeatmap = audio.Sample.Get(@"SongSelect/select-expand");
|
|
|
|
|
|
2016-11-22 07:13:38 +00:00
|
|
|
|
initialAddSetsTask = new CancellationTokenSource();
|
|
|
|
|
|
2017-03-17 10:12:15 +00:00
|
|
|
|
carousel.BeatmapsChanged = beatmapsLoaded;
|
2017-05-06 07:37:53 +00:00
|
|
|
|
carousel.Beatmaps = database.GetAllWithChildren<BeatmapSetInfo>(b => !b.DeletePending);
|
2017-03-17 10:12:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void beatmapsLoaded()
|
|
|
|
|
{
|
|
|
|
|
if (Beatmap != null)
|
|
|
|
|
carousel.SelectBeatmap(Beatmap.BeatmapInfo, false);
|
|
|
|
|
else
|
|
|
|
|
carousel.SelectNext();
|
2016-11-22 07:13:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-14 13:51:26 +00:00
|
|
|
|
private void raiseSelect()
|
|
|
|
|
{
|
2017-04-29 11:12:09 +00:00
|
|
|
|
var pendingSelection = selectionChangedDebounce;
|
|
|
|
|
selectionChangedDebounce = null;
|
|
|
|
|
|
|
|
|
|
pendingSelection?.RunTask();
|
2017-04-29 11:28:56 +00:00
|
|
|
|
pendingSelection?.Cancel(); // cancel the already scheduled task.
|
2017-04-29 11:12:09 +00:00
|
|
|
|
|
2017-03-14 13:51:26 +00:00
|
|
|
|
if (Beatmap == null) return;
|
|
|
|
|
|
2017-03-14 14:22:23 +00:00
|
|
|
|
OnSelected();
|
2017-03-14 13:51:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-14 10:38:06 +00:00
|
|
|
|
public void SelectRandom() => carousel.SelectRandom();
|
2017-03-14 08:58:34 +00:00
|
|
|
|
|
2017-03-14 14:22:23 +00:00
|
|
|
|
protected abstract void OnSelected();
|
2017-01-27 02:31:28 +00:00
|
|
|
|
|
2017-03-17 10:54:51 +00:00
|
|
|
|
private void filterChanged(FilterCriteria criteria, bool debounce = true)
|
2017-01-18 00:18:15 +00:00
|
|
|
|
{
|
2017-03-17 10:54:51 +00:00
|
|
|
|
carousel.Filter(criteria, debounce);
|
2017-01-18 00:18:15 +00:00
|
|
|
|
}
|
2017-02-02 08:33:39 +00:00
|
|
|
|
|
2017-03-17 10:12:15 +00:00
|
|
|
|
private void onBeatmapSetAdded(BeatmapSetInfo s) => carousel.AddBeatmap(s);
|
2016-10-08 10:12:31 +00:00
|
|
|
|
|
2017-02-24 08:21:14 +00:00
|
|
|
|
private void onBeatmapSetRemoved(BeatmapSetInfo s) => Schedule(() => removeBeatmapSet(s));
|
2016-10-08 10:12:31 +00:00
|
|
|
|
|
2017-02-17 09:59:30 +00:00
|
|
|
|
protected override void OnEntering(Screen last)
|
2016-10-28 10:55:48 +00:00
|
|
|
|
{
|
|
|
|
|
base.OnEntering(last);
|
|
|
|
|
ensurePlayingSelected();
|
2016-11-19 16:39:43 +00:00
|
|
|
|
|
2016-11-20 09:02:20 +00:00
|
|
|
|
changeBackground(Beatmap);
|
2016-11-20 11:16:54 +00:00
|
|
|
|
|
|
|
|
|
Content.FadeInFromZero(250);
|
2016-12-07 11:47:28 +00:00
|
|
|
|
|
2017-03-14 08:29:20 +00:00
|
|
|
|
beatmapInfoWedge.State = Visibility.Visible;
|
2017-02-08 11:30:05 +00:00
|
|
|
|
|
2017-03-16 05:23:48 +00:00
|
|
|
|
FilterControl.Activate();
|
2016-10-28 10:55:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 09:59:30 +00:00
|
|
|
|
protected override void OnResuming(Screen last)
|
2016-10-28 10:55:48 +00:00
|
|
|
|
{
|
2016-11-20 09:02:20 +00:00
|
|
|
|
changeBackground(Beatmap);
|
2016-10-28 10:55:48 +00:00
|
|
|
|
ensurePlayingSelected();
|
|
|
|
|
base.OnResuming(last);
|
2016-11-20 11:16:54 +00:00
|
|
|
|
|
|
|
|
|
Content.FadeIn(250);
|
2016-12-07 11:47:28 +00:00
|
|
|
|
|
|
|
|
|
Content.ScaleTo(1, 250, EasingTypes.OutSine);
|
2017-01-30 18:43:21 +00:00
|
|
|
|
|
2017-03-16 05:23:48 +00:00
|
|
|
|
FilterControl.Activate();
|
2016-11-20 11:16:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 09:59:30 +00:00
|
|
|
|
protected override void OnSuspending(Screen next)
|
2016-11-20 11:16:54 +00:00
|
|
|
|
{
|
2016-12-07 11:47:28 +00:00
|
|
|
|
Content.ScaleTo(1.1f, 250, EasingTypes.InSine);
|
|
|
|
|
|
2016-11-20 11:16:54 +00:00
|
|
|
|
Content.FadeOut(250);
|
2017-02-08 11:30:05 +00:00
|
|
|
|
|
2017-03-16 05:23:48 +00:00
|
|
|
|
FilterControl.Deactivate();
|
2016-11-20 11:16:54 +00:00
|
|
|
|
base.OnSuspending(next);
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 09:59:30 +00:00
|
|
|
|
protected override bool OnExiting(Screen next)
|
2016-11-20 11:16:54 +00:00
|
|
|
|
{
|
2017-03-14 08:29:20 +00:00
|
|
|
|
beatmapInfoWedge.State = Visibility.Hidden;
|
2016-12-07 11:47:28 +00:00
|
|
|
|
|
2016-11-20 11:16:54 +00:00
|
|
|
|
Content.FadeOut(100);
|
2017-01-30 18:43:21 +00:00
|
|
|
|
|
2017-03-16 05:23:48 +00:00
|
|
|
|
FilterControl.Deactivate();
|
2016-11-20 11:16:54 +00:00
|
|
|
|
return base.OnExiting(next);
|
2016-10-28 10:55:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-08 10:12:31 +00:00
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
base.Dispose(isDisposing);
|
2016-11-22 07:13:38 +00:00
|
|
|
|
|
2017-02-24 08:21:14 +00:00
|
|
|
|
database.BeatmapSetAdded -= onBeatmapSetAdded;
|
|
|
|
|
database.BeatmapSetRemoved -= onBeatmapSetRemoved;
|
2016-11-22 07:13:38 +00:00
|
|
|
|
|
|
|
|
|
initialAddSetsTask.Cancel();
|
2016-10-06 14:33:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-20 09:02:20 +00:00
|
|
|
|
private void changeBackground(WorkingBeatmap beatmap)
|
2016-10-26 14:52:04 +00:00
|
|
|
|
{
|
2017-02-17 09:59:30 +00:00
|
|
|
|
var backgroundModeBeatmap = Background as BackgroundScreenBeatmap;
|
2016-11-19 16:39:43 +00:00
|
|
|
|
if (backgroundModeBeatmap != null)
|
|
|
|
|
{
|
|
|
|
|
backgroundModeBeatmap.Beatmap = beatmap;
|
2017-02-07 07:15:45 +00:00
|
|
|
|
backgroundModeBeatmap.BlurTo(background_blur, 1000);
|
2017-02-22 12:43:29 +00:00
|
|
|
|
backgroundModeBeatmap.FadeTo(1, 250);
|
2016-11-19 16:39:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-13 20:59:44 +00:00
|
|
|
|
beatmapInfoWedge.UpdateBeatmap(beatmap);
|
2016-11-20 09:02:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The global Beatmap was changed.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected override void OnBeatmapChanged(WorkingBeatmap beatmap)
|
|
|
|
|
{
|
|
|
|
|
base.OnBeatmapChanged(beatmap);
|
|
|
|
|
|
2016-11-22 13:07:15 +00:00
|
|
|
|
//todo: change background in selectionChanged instead; support per-difficulty backgrounds.
|
2016-11-20 09:02:20 +00:00
|
|
|
|
changeBackground(beatmap);
|
2017-03-13 20:59:44 +00:00
|
|
|
|
carousel.SelectBeatmap(beatmap?.BeatmapInfo);
|
2016-10-28 10:55:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-28 11:50:23 +00:00
|
|
|
|
private ScheduledDelegate selectionChangedDebounce;
|
2017-04-28 11:44:16 +00:00
|
|
|
|
|
|
|
|
|
// We need to keep track of the last selected beatmap ignoring debounce to play the correct selection sounds.
|
|
|
|
|
private BeatmapInfo selectionChangeNoBounce;
|
|
|
|
|
|
2016-10-28 10:55:48 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// selection has been changed as the result of interaction with the carousel.
|
|
|
|
|
/// </summary>
|
2017-04-28 11:43:42 +00:00
|
|
|
|
private void selectionChanged(BeatmapInfo beatmap)
|
2016-10-28 10:55:48 +00:00
|
|
|
|
{
|
2016-12-15 23:11:48 +00:00
|
|
|
|
bool beatmapSetChange = false;
|
2016-12-15 23:28:22 +00:00
|
|
|
|
|
2016-10-28 12:08:32 +00:00
|
|
|
|
if (!beatmap.Equals(Beatmap?.BeatmapInfo))
|
2016-12-05 11:09:56 +00:00
|
|
|
|
{
|
2017-04-28 11:44:16 +00:00
|
|
|
|
if (beatmap.BeatmapSetInfoID == selectionChangeNoBounce?.BeatmapSetInfoID)
|
2016-12-05 11:09:56 +00:00
|
|
|
|
sampleChangeDifficulty.Play();
|
|
|
|
|
else
|
2016-12-15 23:11:48 +00:00
|
|
|
|
{
|
2016-12-05 11:09:56 +00:00
|
|
|
|
sampleChangeBeatmap.Play();
|
2016-12-15 23:11:48 +00:00
|
|
|
|
beatmapSetChange = true;
|
|
|
|
|
}
|
2016-12-05 11:09:56 +00:00
|
|
|
|
}
|
2017-04-28 11:44:16 +00:00
|
|
|
|
|
|
|
|
|
selectionChangeNoBounce = beatmap;
|
|
|
|
|
|
|
|
|
|
selectionChangedDebounce?.Cancel();
|
|
|
|
|
selectionChangedDebounce = Scheduler.AddDelayed(delegate
|
|
|
|
|
{
|
|
|
|
|
Beatmap = database.GetWorkingBeatmap(beatmap, Beatmap);
|
|
|
|
|
ensurePlayingSelected(beatmapSetChange);
|
|
|
|
|
}, 100);
|
2016-10-26 14:52:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-12-18 14:19:41 +00:00
|
|
|
|
private void ensurePlayingSelected(bool preview = false)
|
2016-10-28 10:55:48 +00:00
|
|
|
|
{
|
2017-02-18 08:35:04 +00:00
|
|
|
|
Track track = Beatmap?.Track;
|
2016-10-28 10:55:48 +00:00
|
|
|
|
|
2016-12-18 14:19:41 +00:00
|
|
|
|
if (track != null)
|
2016-10-28 10:55:48 +00:00
|
|
|
|
{
|
2016-12-18 14:19:41 +00:00
|
|
|
|
trackManager.SetExclusive(track);
|
|
|
|
|
if (preview)
|
2017-05-06 06:03:08 +00:00
|
|
|
|
track.Seek(Beatmap.Metadata.PreviewTime);
|
2016-12-18 14:19:41 +00:00
|
|
|
|
track.Start();
|
|
|
|
|
}
|
2016-10-28 10:55:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-24 05:37:54 +00:00
|
|
|
|
private void removeBeatmapSet(BeatmapSetInfo beatmapSet)
|
|
|
|
|
{
|
2017-03-17 10:12:15 +00:00
|
|
|
|
carousel.RemoveBeatmap(beatmapSet);
|
|
|
|
|
if (carousel.SelectedBeatmap == null)
|
2017-02-24 05:37:54 +00:00
|
|
|
|
Beatmap = null;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-14 12:18:14 +00:00
|
|
|
|
private void promptDelete()
|
2017-03-02 12:40:55 +00:00
|
|
|
|
{
|
|
|
|
|
if (Beatmap != null)
|
|
|
|
|
dialogOverlay?.Push(new BeatmapDeleteDialog(Beatmap));
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-15 11:55:37 +00:00
|
|
|
|
protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
|
|
|
|
|
{
|
2017-03-14 13:51:26 +00:00
|
|
|
|
if (args.Repeat) return false;
|
|
|
|
|
|
|
|
|
|
switch (args.Key)
|
2016-12-15 11:55:37 +00:00
|
|
|
|
{
|
2017-03-14 13:51:26 +00:00
|
|
|
|
case Key.Enter:
|
|
|
|
|
raiseSelect();
|
|
|
|
|
return true;
|
|
|
|
|
case Key.Delete:
|
|
|
|
|
if (state.Keyboard.ShiftPressed)
|
|
|
|
|
{
|
|
|
|
|
promptDelete();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2016-12-15 11:55:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base.OnKeyDown(state, args);
|
|
|
|
|
}
|
2016-09-29 11:13:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|