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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
2.0 KiB
C#
Raw Normal View History

2020-02-03 19:35:07 +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.
2022-06-17 15:37:17 +08:00
#nullable disable
using osu.Framework.Allocation;
2020-02-03 19:35:07 +08:00
using osu.Framework.Bindables;
using osu.Framework.Extensions.Color4Extensions;
2020-02-03 19:35:07 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Effects;
using osu.Game.Online.API.Requests.Responses;
2021-08-03 15:34:21 +08:00
using osu.Game.Resources.Localisation.Web;
2020-02-03 19:35:07 +08:00
using osu.Game.Rulesets;
using osuTK;
using osuTK.Graphics;
2020-02-03 19:35:07 +08:00
namespace osu.Game.Overlays.BeatmapSet
{
public partial class BeatmapSetHeader : OverlayHeader
{
public readonly Bindable<APIBeatmapSet> BeatmapSet = new Bindable<APIBeatmapSet>();
public BeatmapSetHeaderContent HeaderContent { get; private set; }
2020-02-04 11:55:09 +08:00
[Cached]
2020-02-04 11:55:09 +08:00
public BeatmapRulesetSelector RulesetSelector { get; private set; }
2020-02-03 19:35:07 +08:00
[Cached(typeof(IBindable<RulesetInfo>))]
private readonly Bindable<RulesetInfo> ruleset = new Bindable<RulesetInfo>();
public BeatmapSetHeader()
{
Masking = true;
EdgeEffect = new EdgeEffectParameters
{
Colour = Color4.Black.Opacity(0.25f),
Type = EdgeEffectType.Shadow,
Radius = 3,
Offset = new Vector2(0f, 1f),
};
}
protected override Drawable CreateContent() => HeaderContent = new BeatmapSetHeaderContent
{
BeatmapSet = { BindTarget = BeatmapSet }
};
2020-02-03 19:35:07 +08:00
protected override Drawable CreateTitleContent() => RulesetSelector = new BeatmapRulesetSelector
{
Current = ruleset
2020-02-03 19:35:07 +08:00
};
protected override OverlayTitle CreateTitle() => new BeatmapHeaderTitle();
private partial class BeatmapHeaderTitle : OverlayTitle
2020-02-03 19:35:07 +08:00
{
public BeatmapHeaderTitle()
{
2021-08-03 15:34:21 +08:00
Title = PageTitleStrings.MainBeatmapsetsControllerShow;
2020-09-03 16:05:45 +08:00
IconTexture = "Icons/Hexacons/beatmap";
2020-02-03 19:35:07 +08:00
}
}
}
}