2017-03-14 16:58:34 +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
|
|
|
|
|
|
2017-03-14 18:38:06 +08:00
|
|
|
|
using OpenTK.Input;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
2017-03-23 18:35:46 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2017-03-14 16:58:34 +08:00
|
|
|
|
using osu.Framework.Screens;
|
|
|
|
|
using osu.Game.Beatmaps;
|
2017-03-14 18:38:06 +08:00
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Overlays.Mods;
|
2017-03-14 22:18:40 +08:00
|
|
|
|
using osu.Game.Screens.Edit;
|
2017-03-14 16:58:34 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
2017-04-11 13:01:47 +08:00
|
|
|
|
using osu.Game.Screens.Ranking;
|
2017-03-14 16:58:34 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Select
|
|
|
|
|
{
|
|
|
|
|
public class PlaySongSelect : SongSelect
|
|
|
|
|
{
|
|
|
|
|
private OsuScreen player;
|
2017-03-23 12:41:50 +08:00
|
|
|
|
private readonly ModSelectOverlay modSelect;
|
2017-03-23 13:29:23 +08:00
|
|
|
|
private readonly BeatmapDetailArea beatmapDetails;
|
2017-03-14 18:38:06 +08:00
|
|
|
|
|
2017-03-15 10:10:59 +08:00
|
|
|
|
public PlaySongSelect()
|
2017-03-14 18:38:06 +08:00
|
|
|
|
{
|
2017-03-23 18:32:58 +08:00
|
|
|
|
FooterPanels.Add(modSelect = new ModSelectOverlay
|
2017-03-14 18:38:06 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
|
});
|
2017-03-15 16:11:08 +08:00
|
|
|
|
|
2017-03-23 12:19:29 +08:00
|
|
|
|
LeftContent.Add(beatmapDetails = new BeatmapDetailArea
|
2017-03-15 16:11:08 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-03-23 15:36:52 +08:00
|
|
|
|
Padding = new MarginPadding { Top = 10, Right = 5 },
|
2017-03-15 16:11:08 +08:00
|
|
|
|
});
|
2017-04-11 13:01:47 +08:00
|
|
|
|
|
|
|
|
|
beatmapDetails.Leaderboard.ScoreSelected += s => Push(new Results(s));
|
2017-03-14 21:51:26 +08:00
|
|
|
|
}
|
2017-03-14 18:38:06 +08:00
|
|
|
|
|
2017-03-14 21:51:26 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
2017-03-14 20:18:14 +08:00
|
|
|
|
Footer.AddButton(@"mods", colours.Yellow, modSelect.ToggleVisibility, Key.F1, float.MaxValue);
|
2017-03-14 19:38:21 +08:00
|
|
|
|
|
2017-03-14 21:13:57 +08:00
|
|
|
|
BeatmapOptions.AddButton(@"Remove", @"from unplayed", FontAwesome.fa_times_circle_o, colours.Purple, null, Key.Number1);
|
|
|
|
|
BeatmapOptions.AddButton(@"Clear", @"local scores", FontAwesome.fa_eraser, colours.Purple, null, Key.Number2);
|
2017-03-14 22:18:40 +08:00
|
|
|
|
BeatmapOptions.AddButton(@"Edit", @"Beatmap", FontAwesome.fa_pencil, colours.Yellow, () =>
|
|
|
|
|
{
|
|
|
|
|
ValidForResume = false;
|
|
|
|
|
Push(new Editor());
|
|
|
|
|
}, Key.Number3);
|
2017-07-19 12:32:16 +08:00
|
|
|
|
|
|
|
|
|
Beatmap.ValueChanged += beatmap_ValueChanged;
|
2017-03-14 18:38:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-19 12:32:16 +08:00
|
|
|
|
private void beatmap_ValueChanged(WorkingBeatmap beatmap)
|
2017-03-14 18:38:06 +08:00
|
|
|
|
{
|
2017-07-19 12:32:16 +08:00
|
|
|
|
if (!IsCurrentScreen) return;
|
|
|
|
|
|
2017-07-19 14:45:23 +08:00
|
|
|
|
beatmap.Mods.BindTo(modSelect.SelectedMods);
|
2017-03-15 16:11:08 +08:00
|
|
|
|
|
2017-03-23 15:31:08 +08:00
|
|
|
|
beatmapDetails.Beatmap = beatmap;
|
2017-05-22 00:00:31 +08:00
|
|
|
|
|
2017-07-19 14:45:23 +08:00
|
|
|
|
if (beatmap.Track != null)
|
2017-05-22 00:16:54 +08:00
|
|
|
|
beatmap.Track.Looping = true;
|
2017-03-16 11:34:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-14 16:58:34 +08:00
|
|
|
|
protected override void OnResuming(Screen last)
|
|
|
|
|
{
|
|
|
|
|
player = null;
|
2017-05-22 03:33:54 +08:00
|
|
|
|
|
2017-07-19 12:32:16 +08:00
|
|
|
|
Beatmap.Value.Track.Looping = true;
|
2017-05-21 21:57:41 +08:00
|
|
|
|
|
2017-03-14 16:58:34 +08:00
|
|
|
|
base.OnResuming(last);
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-06 08:01:44 +08:00
|
|
|
|
protected override void OnSuspending(Screen next)
|
|
|
|
|
{
|
2017-05-06 09:16:48 +08:00
|
|
|
|
modSelect.Hide();
|
2017-05-06 08:01:44 +08:00
|
|
|
|
|
|
|
|
|
base.OnSuspending(next);
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-23 18:35:46 +08:00
|
|
|
|
protected override bool OnExiting(Screen next)
|
|
|
|
|
{
|
|
|
|
|
if (modSelect.State == Visibility.Visible)
|
|
|
|
|
{
|
|
|
|
|
modSelect.Hide();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-21 21:57:41 +08:00
|
|
|
|
if (base.OnExiting(next))
|
|
|
|
|
return true;
|
2017-05-21 22:13:20 +08:00
|
|
|
|
|
2017-07-19 14:45:23 +08:00
|
|
|
|
if (Beatmap.Value.Track != null)
|
2017-07-19 12:32:16 +08:00
|
|
|
|
Beatmap.Value.Track.Looping = false;
|
2017-05-21 21:57:41 +08:00
|
|
|
|
|
|
|
|
|
return false;
|
2017-03-23 18:35:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-14 22:22:23 +08:00
|
|
|
|
protected override void OnSelected()
|
2017-03-14 16:58:34 +08:00
|
|
|
|
{
|
|
|
|
|
if (player != null) return;
|
|
|
|
|
|
2017-07-19 12:32:16 +08:00
|
|
|
|
Beatmap.Value.Track.Looping = false;
|
2017-07-20 10:50:31 +08:00
|
|
|
|
Beatmap.Disabled = true;
|
2017-05-21 21:57:41 +08:00
|
|
|
|
|
2017-07-19 12:32:16 +08:00
|
|
|
|
LoadComponentAsync(player = new PlayerLoader(new Player()), l => Push(player));
|
2017-03-14 16:58:34 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|