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
|
|
|
|
|
|
|
|
|
using System;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using System.Linq;
|
2016-11-22 15:13:38 +08:00
|
|
|
|
using System.Threading;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Audio;
|
|
|
|
|
using osu.Framework.Audio.Track;
|
2016-10-08 18:12:31 +08:00
|
|
|
|
using osu.Framework.Configuration;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Framework.GameModes;
|
2016-10-12 01:52:16 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-10-19 22:31:10 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Framework.Graphics.Primitives;
|
2016-10-19 22:31:10 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2016-10-14 01:49:44 +08:00
|
|
|
|
using osu.Game.Database;
|
2016-11-14 17:03:20 +08:00
|
|
|
|
using osu.Game.Modes;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Game.Screens.Backgrounds;
|
2016-10-14 04:55:15 +08:00
|
|
|
|
using OpenTK;
|
|
|
|
|
using OpenTK.Graphics;
|
2016-11-21 03:34:16 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
2016-11-21 03:43:43 +08:00
|
|
|
|
using osu.Framework;
|
2016-12-05 19:09:56 +08:00
|
|
|
|
using osu.Framework.Audio.Sample;
|
2016-12-07 19:47:28 +08:00
|
|
|
|
using osu.Framework.Graphics.Transformations;
|
2016-11-23 10:59:50 +08:00
|
|
|
|
using osu.Game.Beatmaps.Drawables;
|
2016-11-23 13:29:20 +08:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2017-01-26 22:07:49 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2016-12-15 19:55:37 +08:00
|
|
|
|
using osu.Framework.Input;
|
|
|
|
|
using OpenTK.Input;
|
2017-01-10 06:18:47 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2017-01-18 08:18:15 +08:00
|
|
|
|
using System.Collections.Generic;
|
2017-01-27 10:31:28 +08:00
|
|
|
|
using osu.Framework.Threading;
|
2016-09-29 19:13:58 +08:00
|
|
|
|
|
2016-11-21 03:34:16 +08:00
|
|
|
|
namespace osu.Game.Screens.Select
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
2016-10-14 03:10:00 +08:00
|
|
|
|
public class PlaySongSelect : OsuGameMode
|
2016-09-29 19:13:58 +08:00
|
|
|
|
{
|
2016-10-08 18:12:31 +08:00
|
|
|
|
private Bindable<PlayMode> playMode;
|
2016-10-27 16:35:00 +08:00
|
|
|
|
private BeatmapDatabase database;
|
2016-11-20 00:39:43 +08:00
|
|
|
|
protected override BackgroundMode CreateBackground() => new BackgroundModeBeatmap(Beatmap);
|
|
|
|
|
|
2016-11-23 12:28:49 +08:00
|
|
|
|
private CarouselContainer carousel;
|
2016-10-28 18:55:48 +08:00
|
|
|
|
private TrackManager trackManager;
|
2016-11-20 17:02:20 +08:00
|
|
|
|
|
2016-11-23 12:07:35 +08:00
|
|
|
|
private static readonly Vector2 wedged_container_size = new Vector2(0.5f, 225);
|
2016-11-20 17:02:20 +08:00
|
|
|
|
private static readonly Vector2 wedged_container_start_position = new Vector2(0, 50);
|
2016-11-24 12:48:48 +08:00
|
|
|
|
private BeatmapInfoWedge beatmapInfoWedge;
|
2016-10-14 09:40:44 +08:00
|
|
|
|
|
2017-02-07 15:15:45 +08:00
|
|
|
|
private static readonly Vector2 background_blur = new Vector2(20);
|
2016-11-22 15:13:38 +08:00
|
|
|
|
private CancellationTokenSource initialAddSetsTask;
|
2016-11-20 00:39:43 +08:00
|
|
|
|
|
2016-12-05 19:09:56 +08:00
|
|
|
|
private AudioSample sampleChangeDifficulty;
|
|
|
|
|
private AudioSample sampleChangeBeatmap;
|
2017-01-18 08:18:15 +08:00
|
|
|
|
|
|
|
|
|
private List<BeatmapGroup> beatmapGroups;
|
2016-12-05 19:09:56 +08:00
|
|
|
|
|
2017-01-26 22:07:49 +08:00
|
|
|
|
private Footer footer;
|
|
|
|
|
|
2016-11-23 13:29:20 +08:00
|
|
|
|
class WedgeBackground : Container
|
|
|
|
|
{
|
|
|
|
|
public WedgeBackground()
|
|
|
|
|
{
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Size = new Vector2(1, 0.5f),
|
2017-01-11 02:44:40 +08:00
|
|
|
|
Colour = Color4.Black.Opacity(0.5f),
|
2016-11-23 13:29:20 +08:00
|
|
|
|
Shear = new Vector2(0.15f, 0),
|
|
|
|
|
EdgeSmoothness = new Vector2(2, 0),
|
|
|
|
|
},
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
RelativePositionAxes = Axes.Y,
|
|
|
|
|
Size = new Vector2(1, -0.5f),
|
|
|
|
|
Position = new Vector2(0, 1),
|
2017-01-11 02:44:40 +08:00
|
|
|
|
Colour = Color4.Black.Opacity(0.5f),
|
2016-11-23 13:29:20 +08:00
|
|
|
|
Shear = new Vector2(-0.15f, 0),
|
|
|
|
|
EdgeSmoothness = new Vector2(2, 0),
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-13 12:49:05 +08:00
|
|
|
|
Player player;
|
2017-01-18 08:18:15 +08:00
|
|
|
|
FilterControl filter;
|
2017-01-13 12:49:05 +08:00
|
|
|
|
|
|
|
|
|
private void start()
|
|
|
|
|
{
|
2017-02-03 01:21:34 +08:00
|
|
|
|
if (player != null || Beatmap == null)
|
2017-01-13 12:49:05 +08:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
//in the future we may want to move this logic to a PlayerLoader gamemode or similar, so we can rely on the SongSelect transition
|
|
|
|
|
//and provide a better loading experience (at the moment song select is still accepting input during preload).
|
|
|
|
|
player = new Player
|
|
|
|
|
{
|
|
|
|
|
BeatmapInfo = carousel.SelectedGroup.SelectedPanel.Beatmap,
|
|
|
|
|
PreferredPlayMode = playMode.Value
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
player.Preload(Game, delegate
|
|
|
|
|
{
|
|
|
|
|
if (!Push(player))
|
|
|
|
|
{
|
|
|
|
|
player = null;
|
|
|
|
|
//error occured?
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader(permitNulls: true)]
|
|
|
|
|
private void load(BeatmapDatabase beatmaps, AudioManager audio, BaseGame game,
|
|
|
|
|
OsuGame osuGame, OsuColour colours)
|
2016-10-12 02:15:22 +08:00
|
|
|
|
{
|
2017-02-07 15:15:45 +08:00
|
|
|
|
const float carousel_width = 640;
|
|
|
|
|
const float bottom_tool_height = 50;
|
2017-01-18 08:18:15 +08:00
|
|
|
|
beatmapGroups = new List<BeatmapGroup>();
|
2016-10-14 04:55:15 +08:00
|
|
|
|
Children = new Drawable[]
|
2016-10-12 02:15:22 +08:00
|
|
|
|
{
|
2016-11-23 13:29:20 +08:00
|
|
|
|
new ParallaxContainer
|
2016-10-14 04:55:15 +08:00
|
|
|
|
{
|
2016-11-23 13:29:20 +08:00
|
|
|
|
ParallaxAmount = 0.005f,
|
2016-10-14 04:55:15 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2016-11-23 13:29:20 +08:00
|
|
|
|
Children = new []
|
2016-10-20 02:02:03 +08:00
|
|
|
|
{
|
2016-11-23 13:29:20 +08:00
|
|
|
|
new WedgeBackground
|
2016-10-20 02:02:03 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-02-07 15:15:45 +08:00
|
|
|
|
Padding = new MarginPadding { Right = carousel_width * 0.76f },
|
2016-10-20 02:02:03 +08:00
|
|
|
|
},
|
|
|
|
|
}
|
2016-10-14 04:55:15 +08:00
|
|
|
|
},
|
2016-11-23 12:28:49 +08:00
|
|
|
|
carousel = new CarouselContainer
|
2016-10-12 02:15:22 +08:00
|
|
|
|
{
|
2016-10-20 02:02:03 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
2017-02-07 15:15:45 +08:00
|
|
|
|
Size = new Vector2(carousel_width, 1),
|
2016-10-20 02:02:03 +08:00
|
|
|
|
Anchor = Anchor.CentreRight,
|
|
|
|
|
Origin = Anchor.CentreRight,
|
2016-10-21 22:52:52 +08:00
|
|
|
|
},
|
2017-01-18 08:18:15 +08:00
|
|
|
|
filter = new FilterControl
|
2017-01-11 06:51:22 +08:00
|
|
|
|
{
|
|
|
|
|
Position = wedged_container_start_position,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2017-01-18 08:18:15 +08:00
|
|
|
|
FilterChanged = filterChanged,
|
2017-02-02 16:33:39 +08:00
|
|
|
|
Exit = Exit,
|
2017-01-11 06:51:22 +08:00
|
|
|
|
},
|
2016-11-24 12:48:48 +08:00
|
|
|
|
beatmapInfoWedge = new BeatmapInfoWedge
|
2016-11-20 17:02:20 +08:00
|
|
|
|
{
|
2016-11-20 19:16:54 +08:00
|
|
|
|
Alpha = 0,
|
2016-11-20 17:02:20 +08:00
|
|
|
|
Position = wedged_container_start_position,
|
|
|
|
|
Size = wedged_container_size,
|
2016-11-23 12:07:35 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2016-11-20 17:02:20 +08:00
|
|
|
|
Margin = new MarginPadding { Top = 20, Right = 20, },
|
|
|
|
|
},
|
2017-01-26 22:07:49 +08:00
|
|
|
|
footer = new Footer()
|
2016-10-21 22:52:52 +08:00
|
|
|
|
{
|
2017-01-26 22:07:49 +08:00
|
|
|
|
OnBack = Exit,
|
|
|
|
|
OnStart = start,
|
2016-10-12 02:15:22 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
2017-01-26 22:07:49 +08:00
|
|
|
|
|
|
|
|
|
footer.AddButton(@"mods", colours.Yellow, null);
|
|
|
|
|
footer.AddButton(@"random", colours.Green, carousel.SelectRandom);
|
|
|
|
|
footer.AddButton(@"options", colours.Blue, null);
|
|
|
|
|
|
2016-11-21 03:43:43 +08:00
|
|
|
|
if (osuGame != null)
|
2016-10-14 03:10:00 +08:00
|
|
|
|
{
|
2016-11-21 03:43:43 +08:00
|
|
|
|
playMode = osuGame.PlayMode;
|
2016-10-28 18:55:48 +08:00
|
|
|
|
playMode.ValueChanged += playMode_ValueChanged;
|
2016-10-14 03:10:00 +08:00
|
|
|
|
}
|
2016-10-27 11:31:45 +08:00
|
|
|
|
|
2016-10-27 16:35:00 +08:00
|
|
|
|
if (database == null)
|
2016-11-09 07:13:20 +08:00
|
|
|
|
database = beatmaps;
|
2016-10-27 16:35:00 +08:00
|
|
|
|
|
2016-11-22 15:13:38 +08:00
|
|
|
|
database.BeatmapSetAdded += onDatabaseOnBeatmapSetAdded;
|
2016-10-27 16:35:00 +08:00
|
|
|
|
|
2016-11-09 07:13:20 +08:00
|
|
|
|
trackManager = audio.Track;
|
2016-10-28 18:55:48 +08:00
|
|
|
|
|
2016-12-05 19:09:56 +08:00
|
|
|
|
sampleChangeDifficulty = audio.Sample.Get(@"SongSelect/select-difficulty");
|
|
|
|
|
sampleChangeBeatmap = audio.Sample.Get(@"SongSelect/select-expand");
|
|
|
|
|
|
2016-11-22 15:13:38 +08:00
|
|
|
|
initialAddSetsTask = new CancellationTokenSource();
|
|
|
|
|
|
|
|
|
|
Task.Factory.StartNew(() => addBeatmapSets(game, initialAddSetsTask.Token), initialAddSetsTask.Token);
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-27 10:31:28 +08:00
|
|
|
|
private ScheduledDelegate filterTask;
|
|
|
|
|
|
2017-01-18 08:18:15 +08:00
|
|
|
|
private void filterChanged()
|
|
|
|
|
{
|
2017-01-30 22:48:21 +08:00
|
|
|
|
filterTask?.Cancel();
|
2017-01-27 10:31:28 +08:00
|
|
|
|
filterTask = Scheduler.AddDelayed(() =>
|
2017-01-18 08:18:15 +08:00
|
|
|
|
{
|
2017-01-27 10:31:28 +08:00
|
|
|
|
filterTask = null;
|
|
|
|
|
var search = filter.Search;
|
|
|
|
|
BeatmapGroup newSelection = null;
|
|
|
|
|
foreach (var beatmapGroup in carousel)
|
2017-01-18 08:18:15 +08:00
|
|
|
|
{
|
2017-01-27 10:31:28 +08:00
|
|
|
|
var set = beatmapGroup.BeatmapSet;
|
|
|
|
|
bool match = string.IsNullOrEmpty(search)
|
|
|
|
|
|| (set.Metadata.Artist ?? "").IndexOf(search, StringComparison.InvariantCultureIgnoreCase) != -1
|
|
|
|
|
|| (set.Metadata.ArtistUnicode ?? "").IndexOf(search, StringComparison.InvariantCultureIgnoreCase) != -1
|
|
|
|
|
|| (set.Metadata.Title ?? "").IndexOf(search, StringComparison.InvariantCultureIgnoreCase) != -1
|
|
|
|
|
|| (set.Metadata.TitleUnicode ?? "").IndexOf(search, StringComparison.InvariantCultureIgnoreCase) != -1;
|
|
|
|
|
if (match)
|
|
|
|
|
{
|
2017-01-31 11:35:09 +08:00
|
|
|
|
beatmapGroup.State = BeatmapGroupState.Collapsed;
|
2017-01-27 10:31:28 +08:00
|
|
|
|
if (newSelection == null || beatmapGroup.BeatmapSet.OnlineBeatmapSetID == Beatmap.BeatmapSetInfo.OnlineBeatmapSetID)
|
|
|
|
|
newSelection = beatmapGroup;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2017-01-31 11:35:09 +08:00
|
|
|
|
beatmapGroup.State = BeatmapGroupState.Hidden;
|
2017-01-27 10:31:28 +08:00
|
|
|
|
}
|
2017-01-18 08:18:15 +08:00
|
|
|
|
}
|
2017-01-27 10:31:28 +08:00
|
|
|
|
if (newSelection != null)
|
2017-02-02 16:33:39 +08:00
|
|
|
|
carousel.SelectBeatmap(newSelection.BeatmapSet.Beatmaps[0], false);
|
2017-01-27 10:31:28 +08:00
|
|
|
|
}, 250);
|
2017-01-18 08:18:15 +08:00
|
|
|
|
}
|
2017-02-02 16:33:39 +08:00
|
|
|
|
|
2016-11-22 15:13:38 +08:00
|
|
|
|
private void onDatabaseOnBeatmapSetAdded(BeatmapSetInfo s)
|
|
|
|
|
{
|
2017-01-18 06:05:06 +08:00
|
|
|
|
Schedule(() => addBeatmapSet(s, Game, true));
|
2016-10-08 18:12:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-28 18:55:48 +08:00
|
|
|
|
protected override void OnEntering(GameMode last)
|
|
|
|
|
{
|
|
|
|
|
base.OnEntering(last);
|
|
|
|
|
ensurePlayingSelected();
|
2016-11-20 00:39:43 +08:00
|
|
|
|
|
2016-11-20 17:02:20 +08:00
|
|
|
|
changeBackground(Beatmap);
|
2016-11-20 19:16:54 +08:00
|
|
|
|
|
|
|
|
|
Content.FadeInFromZero(250);
|
2016-12-07 19:47:28 +08:00
|
|
|
|
|
2016-12-18 15:50:39 +08:00
|
|
|
|
beatmapInfoWedge.MoveToX(wedged_container_start_position.X - 50);
|
|
|
|
|
beatmapInfoWedge.MoveToX(wedged_container_start_position.X, 800, EasingTypes.OutQuint);
|
2017-01-31 02:43:21 +08:00
|
|
|
|
|
|
|
|
|
filter.Activate();
|
2016-10-28 18:55:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnResuming(GameMode last)
|
|
|
|
|
{
|
2016-12-15 20:18:30 +08:00
|
|
|
|
player = null;
|
|
|
|
|
|
2016-11-20 17:02:20 +08:00
|
|
|
|
changeBackground(Beatmap);
|
2016-10-28 18:55:48 +08:00
|
|
|
|
ensurePlayingSelected();
|
|
|
|
|
base.OnResuming(last);
|
2016-11-20 19:16:54 +08:00
|
|
|
|
|
|
|
|
|
Content.FadeIn(250);
|
2016-12-07 19:47:28 +08:00
|
|
|
|
|
|
|
|
|
Content.ScaleTo(1, 250, EasingTypes.OutSine);
|
2017-01-31 02:43:21 +08:00
|
|
|
|
|
|
|
|
|
filter.Activate();
|
2016-11-20 19:16:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnSuspending(GameMode next)
|
|
|
|
|
{
|
2016-12-07 19:47:28 +08:00
|
|
|
|
Content.ScaleTo(1.1f, 250, EasingTypes.InSine);
|
|
|
|
|
|
2016-11-20 19:16:54 +08:00
|
|
|
|
Content.FadeOut(250);
|
2017-01-31 02:43:21 +08:00
|
|
|
|
|
|
|
|
|
filter.Deactivate();
|
2016-11-20 19:16:54 +08:00
|
|
|
|
base.OnSuspending(next);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool OnExiting(GameMode next)
|
|
|
|
|
{
|
2016-12-07 19:47:28 +08:00
|
|
|
|
beatmapInfoWedge.MoveTo(wedged_container_start_position + new Vector2(-100, 50), 800, EasingTypes.InQuint);
|
|
|
|
|
beatmapInfoWedge.RotateTo(10, 800, EasingTypes.InQuint);
|
|
|
|
|
|
2016-11-20 19:16:54 +08:00
|
|
|
|
Content.FadeOut(100);
|
2017-01-31 02:43:21 +08:00
|
|
|
|
|
|
|
|
|
filter.Deactivate();
|
2016-11-20 19:16:54 +08:00
|
|
|
|
return base.OnExiting(next);
|
2016-10-28 18:55:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-08 18:12:31 +08:00
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
base.Dispose(isDisposing);
|
2016-10-14 22:47:44 +08:00
|
|
|
|
if (playMode != null)
|
2016-10-28 18:55:48 +08:00
|
|
|
|
playMode.ValueChanged -= playMode_ValueChanged;
|
2016-11-22 15:13:38 +08:00
|
|
|
|
|
|
|
|
|
database.BeatmapSetAdded -= onDatabaseOnBeatmapSetAdded;
|
|
|
|
|
|
|
|
|
|
initialAddSetsTask.Cancel();
|
2016-10-06 22:33:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-28 18:55:48 +08:00
|
|
|
|
private void playMode_ValueChanged(object sender, EventArgs e)
|
2016-10-06 22:33:28 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
2016-10-27 11:31:45 +08:00
|
|
|
|
|
2016-11-20 17:02:20 +08:00
|
|
|
|
private void changeBackground(WorkingBeatmap beatmap)
|
2016-10-26 22:52:04 +08:00
|
|
|
|
{
|
2016-11-20 00:39:43 +08:00
|
|
|
|
var backgroundModeBeatmap = Background as BackgroundModeBeatmap;
|
|
|
|
|
if (backgroundModeBeatmap != null)
|
|
|
|
|
{
|
|
|
|
|
backgroundModeBeatmap.Beatmap = beatmap;
|
2017-02-07 15:15:45 +08:00
|
|
|
|
backgroundModeBeatmap.BlurTo(background_blur, 1000);
|
2016-11-20 00:39:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-30 22:44:02 +08:00
|
|
|
|
if (beatmap != null)
|
|
|
|
|
beatmapInfoWedge.UpdateBeatmap(beatmap);
|
2016-11-20 17:02:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The global Beatmap was changed.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected override void OnBeatmapChanged(WorkingBeatmap beatmap)
|
|
|
|
|
{
|
|
|
|
|
base.OnBeatmapChanged(beatmap);
|
|
|
|
|
|
2016-11-22 21:07:15 +08:00
|
|
|
|
//todo: change background in selectionChanged instead; support per-difficulty backgrounds.
|
2016-11-20 17:02:20 +08:00
|
|
|
|
changeBackground(beatmap);
|
2017-02-02 16:33:39 +08:00
|
|
|
|
carousel.SelectBeatmap(beatmap.BeatmapInfo);
|
2016-10-28 18:55:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// selection has been changed as the result of interaction with the carousel.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void selectionChanged(BeatmapGroup group, BeatmapInfo beatmap)
|
|
|
|
|
{
|
2016-12-16 07:11:48 +08:00
|
|
|
|
bool beatmapSetChange = false;
|
2016-12-16 07:28:22 +08:00
|
|
|
|
|
2016-10-28 20:08:32 +08:00
|
|
|
|
if (!beatmap.Equals(Beatmap?.BeatmapInfo))
|
2016-12-05 19:09:56 +08:00
|
|
|
|
{
|
2016-12-21 14:47:56 +08:00
|
|
|
|
if (beatmap.BeatmapSetInfoID == Beatmap?.BeatmapInfo.BeatmapSetInfoID)
|
2016-12-05 19:09:56 +08:00
|
|
|
|
sampleChangeDifficulty.Play();
|
|
|
|
|
else
|
2016-12-16 07:11:48 +08:00
|
|
|
|
{
|
2016-12-05 19:09:56 +08:00
|
|
|
|
sampleChangeBeatmap.Play();
|
2016-12-16 07:11:48 +08:00
|
|
|
|
beatmapSetChange = true;
|
|
|
|
|
}
|
2016-10-28 19:24:14 +08:00
|
|
|
|
Beatmap = database.GetWorkingBeatmap(beatmap, Beatmap);
|
2016-12-05 19:09:56 +08:00
|
|
|
|
}
|
2016-12-16 07:11:48 +08:00
|
|
|
|
ensurePlayingSelected(beatmapSetChange);
|
2016-10-26 22:52:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-12-18 22:19:41 +08:00
|
|
|
|
private void ensurePlayingSelected(bool preview = false)
|
2016-10-28 18:55:48 +08:00
|
|
|
|
{
|
2016-12-18 22:19:41 +08:00
|
|
|
|
AudioTrack track = Beatmap?.Track;
|
2016-10-28 18:55:48 +08:00
|
|
|
|
|
2016-12-18 22:19:41 +08:00
|
|
|
|
if (track != null)
|
2016-10-28 18:55:48 +08:00
|
|
|
|
{
|
2016-12-18 22:19:41 +08:00
|
|
|
|
trackManager.SetExclusive(track);
|
|
|
|
|
if (preview)
|
|
|
|
|
track.Seek(Beatmap.Beatmap.Metadata.PreviewTime);
|
|
|
|
|
track.Start();
|
|
|
|
|
}
|
2016-10-28 18:55:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-18 06:05:06 +08:00
|
|
|
|
private void addBeatmapSet(BeatmapSetInfo beatmapSet, BaseGame game, bool select = false)
|
2016-10-26 22:52:04 +08:00
|
|
|
|
{
|
2016-12-20 23:56:49 +08:00
|
|
|
|
beatmapSet = database.GetWithChildren<BeatmapSetInfo>(beatmapSet.ID);
|
2016-12-15 21:48:35 +08:00
|
|
|
|
beatmapSet.Beatmaps.ForEach(b =>
|
|
|
|
|
{
|
|
|
|
|
database.GetChildren(b);
|
|
|
|
|
if (b.Metadata == null) b.Metadata = beatmapSet.Metadata;
|
|
|
|
|
});
|
|
|
|
|
|
2017-01-30 14:26:28 +08:00
|
|
|
|
beatmapSet.Beatmaps = beatmapSet.Beatmaps.OrderBy(b => b.StarDifficulty).ToList();
|
2016-11-05 19:00:14 +08:00
|
|
|
|
|
2016-12-15 21:48:35 +08:00
|
|
|
|
var beatmap = new WorkingBeatmap(beatmapSet.Beatmaps.FirstOrDefault(), beatmapSet, database);
|
2016-11-05 19:00:14 +08:00
|
|
|
|
|
2017-01-18 08:18:15 +08:00
|
|
|
|
var group = new BeatmapGroup(beatmap, beatmapSet)
|
2016-12-18 15:59:13 +08:00
|
|
|
|
{
|
|
|
|
|
SelectionChanged = selectionChanged,
|
|
|
|
|
StartRequested = b => start()
|
|
|
|
|
};
|
2016-11-01 22:24:14 +08:00
|
|
|
|
|
2016-11-21 03:34:16 +08:00
|
|
|
|
//for the time being, let's completely load the difficulty panels in the background.
|
|
|
|
|
//this likely won't scale so well, but allows us to completely async the loading flow.
|
|
|
|
|
Task.WhenAll(group.BeatmapPanels.Select(panel => panel.Preload(game))).ContinueWith(task => Schedule(delegate
|
2016-10-26 22:52:04 +08:00
|
|
|
|
{
|
2017-01-18 08:18:15 +08:00
|
|
|
|
beatmapGroups.Add(group);
|
|
|
|
|
|
2016-11-23 12:28:49 +08:00
|
|
|
|
carousel.AddGroup(group);
|
2016-11-01 22:24:14 +08:00
|
|
|
|
|
2017-01-18 06:05:06 +08:00
|
|
|
|
if (Beatmap == null || select)
|
2016-11-23 12:28:49 +08:00
|
|
|
|
carousel.SelectBeatmap(beatmapSet.Beatmaps.First());
|
2016-10-28 22:27:59 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
2016-11-21 03:34:16 +08:00
|
|
|
|
var panel = group.BeatmapPanels.FirstOrDefault(p => p.Beatmap.Equals(Beatmap.BeatmapInfo));
|
|
|
|
|
if (panel != null)
|
2016-11-23 12:28:49 +08:00
|
|
|
|
carousel.SelectGroup(group, panel);
|
2016-10-28 22:27:59 +08:00
|
|
|
|
}
|
2016-11-21 03:34:16 +08:00
|
|
|
|
}));
|
2016-10-26 22:52:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-22 15:13:38 +08:00
|
|
|
|
private void addBeatmapSets(BaseGame game, CancellationToken token)
|
2016-10-26 22:52:04 +08:00
|
|
|
|
{
|
2016-10-27 16:35:00 +08:00
|
|
|
|
foreach (var beatmapSet in database.Query<BeatmapSetInfo>())
|
2016-11-22 15:13:38 +08:00
|
|
|
|
{
|
|
|
|
|
if (token.IsCancellationRequested) return;
|
2016-11-21 03:34:16 +08:00
|
|
|
|
addBeatmapSet(beatmapSet, game);
|
2016-11-22 15:13:38 +08:00
|
|
|
|
}
|
2016-10-26 22:52:04 +08:00
|
|
|
|
}
|
2016-12-15 19:55:37 +08:00
|
|
|
|
|
|
|
|
|
protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
switch (args.Key)
|
|
|
|
|
{
|
|
|
|
|
case Key.Enter:
|
|
|
|
|
start();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base.OnKeyDown(state, args);
|
|
|
|
|
}
|
2016-09-29 19:13:58 +08:00
|
|
|
|
}
|
|
|
|
|
}
|