mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 05:27:40 +08:00
433b701df3
Also tidies up code.
120 lines
3.7 KiB
C#
120 lines
3.7 KiB
C#
// 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.
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Game.Screens.Select.Leaderboards;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osuTK;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Graphics;
|
|
using osu.Framework.Allocation;
|
|
using osuTK.Graphics;
|
|
using osu.Framework.Graphics.Colour;
|
|
using osu.Framework.Input.Events;
|
|
|
|
namespace osu.Game.Overlays.BeatmapSet
|
|
{
|
|
public class LeaderboardScopeSelector : PageTabControl<BeatmapLeaderboardScope>
|
|
{
|
|
protected override bool AddEnumEntriesAutomatically => false;
|
|
|
|
protected override Dropdown<BeatmapLeaderboardScope> CreateDropdown() => null;
|
|
|
|
protected override TabItem<BeatmapLeaderboardScope> CreateTabItem(BeatmapLeaderboardScope value) => new ScopeSelectorTabItem(value);
|
|
|
|
public LeaderboardScopeSelector()
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
AddItem(BeatmapLeaderboardScope.Global);
|
|
AddItem(BeatmapLeaderboardScope.Country);
|
|
AddItem(BeatmapLeaderboardScope.Friend);
|
|
|
|
AddInternal(new GradientLine
|
|
{
|
|
Anchor = Anchor.BottomCentre,
|
|
Origin = Anchor.BottomCentre,
|
|
});
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
AccentColour = colours.Blue;
|
|
}
|
|
|
|
protected override TabFillFlowContainer CreateTabFlow() => new TabFillFlowContainer
|
|
{
|
|
Anchor = Anchor.BottomCentre,
|
|
Origin = Anchor.BottomCentre,
|
|
AutoSizeAxes = Axes.X,
|
|
RelativeSizeAxes = Axes.Y,
|
|
Direction = FillDirection.Horizontal,
|
|
Spacing = new Vector2(20, 0),
|
|
};
|
|
|
|
private class ScopeSelectorTabItem : PageTabItem
|
|
{
|
|
public ScopeSelectorTabItem(BeatmapLeaderboardScope value)
|
|
: base(value)
|
|
{
|
|
Text.Font = OsuFont.GetFont(size: 16);
|
|
}
|
|
|
|
protected override bool OnHover(HoverEvent e)
|
|
{
|
|
Text.FadeColour(AccentColour);
|
|
|
|
return base.OnHover(e);
|
|
}
|
|
|
|
protected override void OnHoverLost(HoverLostEvent e)
|
|
{
|
|
base.OnHoverLost(e);
|
|
|
|
Text.FadeColour(Color4.White);
|
|
}
|
|
}
|
|
|
|
private class GradientLine : GridContainer
|
|
{
|
|
public GradientLine()
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
Size = new Vector2(0.8f, 1.5f);
|
|
|
|
ColumnDimensions = new[]
|
|
{
|
|
new Dimension(),
|
|
new Dimension(mode: GridSizeMode.Relative, size: 0.4f),
|
|
new Dimension(),
|
|
};
|
|
|
|
Content = new[]
|
|
{
|
|
new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = ColourInfo.GradientHorizontal(Color4.Transparent, Color4.Gray),
|
|
},
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = Color4.Gray,
|
|
},
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = ColourInfo.GradientHorizontal(Color4.Gray, Color4.Transparent),
|
|
},
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|