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-05-26 04:51:05 +08:00
|
|
|
|
using System.Linq;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-28 17:44:40 +08:00
|
|
|
|
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;
|
2018-10-02 11:02:47 +08:00
|
|
|
|
using osu.Framework.Input.Events;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
|
using osu.Game.Online.API.Requests;
|
|
|
|
|
using osu.Game.Overlays.BeatmapSet;
|
|
|
|
|
using osu.Game.Overlays.BeatmapSet.Scores;
|
2018-05-26 04:51:05 +08:00
|
|
|
|
using osu.Game.Rulesets;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2019-07-09 22:56:08 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
namespace osu.Game.Overlays
|
|
|
|
|
{
|
2019-05-14 13:18:06 +08:00
|
|
|
|
public class BeatmapSetOverlay : FullscreenOverlay
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public const float X_PADDING = 40;
|
2019-06-19 22:38:43 +08:00
|
|
|
|
public const float TOP_PADDING = 25;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public const float RIGHT_WIDTH = 275;
|
2019-06-27 03:42:34 +08:00
|
|
|
|
protected readonly Header Header;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
private RulesetStore rulesets;
|
2019-07-10 23:42:14 +08:00
|
|
|
|
|
2019-02-28 17:44:40 +08:00
|
|
|
|
private readonly Bindable<BeatmapSetInfo> beatmapSet = new Bindable<BeatmapSetInfo>();
|
2018-04-18 12:08:53 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
// receive input outside our bounds so we can trigger a close event on ourselves.
|
2018-09-26 13:01:15 +08:00
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => true;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public BeatmapSetOverlay()
|
|
|
|
|
{
|
2019-06-27 11:00:31 +08:00
|
|
|
|
OsuScrollContainer scroll;
|
2019-02-28 18:58:21 +08:00
|
|
|
|
Info info;
|
2019-07-11 00:40:29 +08:00
|
|
|
|
ScoresContainer scoreContainer;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Colour = OsuColour.Gray(0.2f)
|
|
|
|
|
},
|
2019-06-14 14:55:32 +08:00
|
|
|
|
scroll = new OsuScrollContainer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
ScrollbarVisible = false,
|
|
|
|
|
Child = new ReverseChildIDFillFlowContainer<Drawable>
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2019-06-12 22:37:34 +08:00
|
|
|
|
Header = new Header(),
|
2018-04-13 17:19:50 +08:00
|
|
|
|
info = new Info(),
|
2019-07-10 23:42:14 +08:00
|
|
|
|
scoreContainer = new ScoresContainer(),
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
2019-06-12 22:37:34 +08:00
|
|
|
|
Header.BeatmapSet.BindTo(beatmapSet);
|
2019-02-28 17:44:40 +08:00
|
|
|
|
info.BeatmapSet.BindTo(beatmapSet);
|
|
|
|
|
|
2019-06-12 22:37:34 +08:00
|
|
|
|
Header.Picker.Beatmap.ValueChanged += b =>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-02-22 16:51:39 +08:00
|
|
|
|
info.Beatmap = b.NewValue;
|
2019-07-11 00:40:29 +08:00
|
|
|
|
scoreContainer.Beatmap = b.NewValue;
|
2019-06-27 11:00:31 +08:00
|
|
|
|
|
|
|
|
|
scroll.ScrollToStart();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2019-05-14 14:07:18 +08:00
|
|
|
|
private void load(RulesetStore rulesets)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
this.rulesets = rulesets;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-14 14:19:23 +08:00
|
|
|
|
protected override void PopOutComplete()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-05-14 14:19:23 +08:00
|
|
|
|
base.PopOutComplete();
|
|
|
|
|
beatmapSet.Value = null;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 11:02:47 +08:00
|
|
|
|
protected override bool OnClick(ClickEvent e)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-06-11 13:28:52 +08:00
|
|
|
|
Hide();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-18 14:58:45 +08:00
|
|
|
|
public void FetchAndShowBeatmap(int beatmapId)
|
2018-04-18 12:08:53 +08:00
|
|
|
|
{
|
2019-02-28 17:44:40 +08:00
|
|
|
|
beatmapSet.Value = null;
|
2019-07-09 22:38:17 +08:00
|
|
|
|
|
2018-04-18 12:08:53 +08:00
|
|
|
|
var req = new GetBeatmapSetRequest(beatmapId, BeatmapSetLookupType.BeatmapId);
|
|
|
|
|
req.Success += res =>
|
|
|
|
|
{
|
2019-02-28 17:44:40 +08:00
|
|
|
|
beatmapSet.Value = res.ToBeatmapSet(rulesets);
|
2019-06-12 22:37:34 +08:00
|
|
|
|
Header.Picker.Beatmap.Value = Header.BeatmapSet.Value.Beatmaps.First(b => b.OnlineBeatmapID == beatmapId);
|
2018-04-18 12:08:53 +08:00
|
|
|
|
};
|
2019-05-14 14:07:18 +08:00
|
|
|
|
API.Queue(req);
|
2019-07-09 22:38:17 +08:00
|
|
|
|
|
2018-04-18 12:08:53 +08:00
|
|
|
|
Show();
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-18 14:58:45 +08:00
|
|
|
|
public void FetchAndShowBeatmapSet(int beatmapSetId)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-02-28 17:44:40 +08:00
|
|
|
|
beatmapSet.Value = null;
|
2019-07-09 22:38:17 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
var req = new GetBeatmapSetRequest(beatmapSetId);
|
2019-02-28 17:44:40 +08:00
|
|
|
|
req.Success += res => beatmapSet.Value = res.ToBeatmapSet(rulesets);
|
2019-05-14 14:07:18 +08:00
|
|
|
|
API.Queue(req);
|
2019-07-09 22:38:17 +08:00
|
|
|
|
|
2018-04-18 12:08:53 +08:00
|
|
|
|
Show();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-27 11:00:31 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Show an already fully-populated beatmap set.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="set">The set to show.</param>
|
|
|
|
|
public void ShowBeatmapSet(BeatmapSetInfo set)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-06-27 11:00:31 +08:00
|
|
|
|
beatmapSet.Value = set;
|
|
|
|
|
Show();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|