1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00
osu-lazer/osu.Game/Overlays/BeatmapSetOverlay.cs

137 lines
4.2 KiB
C#
Raw Normal View History

// 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
using System.Linq;
2018-04-13 17:19:50 +08:00
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;
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;
using osu.Game.Rulesets;
2018-11-20 15:51:59 +08:00
using osuTK;
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
{
private const int fade_duration = 300;
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;
protected readonly Header Header;
2018-04-13 17:19:50 +08:00
private RulesetStore rulesets;
private readonly OsuScrollContainer scroll;
2018-04-13 17:19:50 +08:00
private readonly Bindable<BeatmapSetInfo> beatmapSet = new Bindable<BeatmapSetInfo>();
2018-04-13 17:19:50 +08:00
// receive input outside our bounds so we can trigger a close event on ourselves.
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => true;
2018-04-13 17:19:50 +08:00
public BeatmapSetOverlay()
{
2019-02-28 18:58:21 +08:00
Info info;
ScoresContainer scores;
2018-04-13 17:19:50 +08:00
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = OsuColour.Gray(0.2f)
},
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[]
{
Header = new Header(),
2018-04-13 17:19:50 +08:00
info = new Info(),
scores = new ScoresContainer(),
},
},
},
};
Header.BeatmapSet.BindTo(beatmapSet);
info.BeatmapSet.BindTo(beatmapSet);
Header.Picker.Beatmap.ValueChanged += b =>
2018-04-13 17:19:50 +08:00
{
info.Beatmap = b.NewValue;
scores.Beatmap = b.NewValue;
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
{
Hide();
2018-04-13 17:19:50 +08:00
return true;
}
public void FetchAndShowBeatmap(int beatmapId)
{
beatmapSet.Value = null;
var req = new GetBeatmapSetRequest(beatmapId, BeatmapSetLookupType.BeatmapId);
req.Success += res =>
{
beatmapSet.Value = res.ToBeatmapSet(rulesets);
Header.Picker.Beatmap.Value = Header.BeatmapSet.Value.Beatmaps.First(b => b.OnlineBeatmapID == beatmapId);
};
2019-05-14 14:07:18 +08:00
API.Queue(req);
Show();
}
public void FetchAndShowBeatmapSet(int beatmapSetId)
2018-04-13 17:19:50 +08:00
{
beatmapSet.Value = null;
2018-04-13 17:19:50 +08:00
var req = new GetBeatmapSetRequest(beatmapSetId);
req.Success += res => beatmapSet.Value = res.ToBeatmapSet(rulesets);
2019-05-14 14:07:18 +08:00
API.Queue(req);
Show();
2018-04-13 17:19:50 +08:00
}
public void ShowBeatmapSet(BeatmapSetInfo set, bool refetch = true)
2018-04-13 17:19:50 +08:00
{
// Re-fetching is the correct way forward.
if (refetch)
FetchAndShowBeatmapSet(set?.OnlineBeatmapSetID ?? 0);
else
{
beatmapSet.Value = set;
Show();
}
2018-04-13 17:19:50 +08:00
scroll.ScrollTo(0);
}
}
}