mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:57:25 +08:00
215 lines
8.8 KiB
C#
215 lines
8.8 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.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
using osuTK;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Game.Online.API.Requests;
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Framework.Extensions.LocalisationExtensions;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Resources.Localisation.Web;
|
|
|
|
namespace osu.Game.Overlays.Rankings
|
|
{
|
|
public class SpotlightSelector : CompositeDrawable, IHasCurrentValue<APISpotlight>
|
|
{
|
|
private readonly BindableWithCurrent<APISpotlight> current = new BindableWithCurrent<APISpotlight>();
|
|
public readonly Bindable<RankingsSortCriteria> Sort = new Bindable<RankingsSortCriteria>();
|
|
|
|
public Bindable<APISpotlight> Current
|
|
{
|
|
get => current.Current;
|
|
set => current.Current = value;
|
|
}
|
|
|
|
public IEnumerable<APISpotlight> Spotlights
|
|
{
|
|
get => dropdown.Items;
|
|
set => dropdown.Items = value;
|
|
}
|
|
|
|
private readonly Box background;
|
|
private readonly SpotlightsDropdown dropdown;
|
|
private readonly InfoColumn startDateColumn;
|
|
private readonly InfoColumn endDateColumn;
|
|
private readonly InfoColumn mapCountColumn;
|
|
private readonly InfoColumn participantsColumn;
|
|
|
|
public SpotlightSelector()
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
InternalChildren = new Drawable[]
|
|
{
|
|
background = new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
},
|
|
new Container
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Padding = new MarginPadding { Horizontal = UserProfileOverlay.CONTENT_X_MARGIN },
|
|
Child = new FillFlowContainer
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Direction = FillDirection.Vertical,
|
|
Children = new Drawable[]
|
|
{
|
|
new Container
|
|
{
|
|
Margin = new MarginPadding { Vertical = 20 },
|
|
RelativeSizeAxes = Axes.X,
|
|
Height = 40,
|
|
Depth = -float.MaxValue,
|
|
Child = dropdown = new SpotlightsDropdown
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Current = Current
|
|
}
|
|
},
|
|
new Container
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Children = new Drawable[]
|
|
{
|
|
new FillFlowContainer
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Direction = FillDirection.Horizontal,
|
|
Spacing = new Vector2(10, 0),
|
|
Margin = new MarginPadding { Bottom = 5 },
|
|
Children = new Drawable[]
|
|
{
|
|
startDateColumn = new InfoColumn(RankingsStrings.SpotlightStartDate),
|
|
endDateColumn = new InfoColumn(RankingsStrings.SpotlightEndDate),
|
|
mapCountColumn = new InfoColumn(RankingsStrings.SpotlightMapCount),
|
|
participantsColumn = new InfoColumn(RankingsStrings.SpotlightParticipants)
|
|
}
|
|
},
|
|
new RankingsSortTabControl
|
|
{
|
|
Anchor = Anchor.CentreRight,
|
|
Origin = Anchor.CentreRight,
|
|
Current = Sort
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OverlayColourProvider colourProvider)
|
|
{
|
|
background.Colour = colourProvider.Dark3;
|
|
}
|
|
|
|
public void ShowInfo(GetSpotlightRankingsResponse response)
|
|
{
|
|
startDateColumn.Value = dateToString(response.Spotlight.StartDate);
|
|
endDateColumn.Value = dateToString(response.Spotlight.EndDate);
|
|
mapCountColumn.Value = response.BeatmapSets.Count.ToLocalisableString(@"N0");
|
|
participantsColumn.Value = response.Spotlight.Participants?.ToLocalisableString(@"N0");
|
|
}
|
|
|
|
private LocalisableString dateToString(DateTimeOffset date) => date.ToLocalisableString(@"yyyy-MM-dd");
|
|
|
|
private class InfoColumn : FillFlowContainer
|
|
{
|
|
public LocalisableString Value
|
|
{
|
|
set => valueText.Text = value;
|
|
}
|
|
|
|
private readonly OsuSpriteText valueText;
|
|
|
|
public InfoColumn(LocalisableString name)
|
|
{
|
|
AutoSizeAxes = Axes.Both;
|
|
Direction = FillDirection.Vertical;
|
|
Padding = new MarginPadding { Vertical = 15 };
|
|
Children = new Drawable[]
|
|
{
|
|
new OsuSpriteText
|
|
{
|
|
Text = name,
|
|
Font = OsuFont.GetFont(size: 10, weight: FontWeight.Regular),
|
|
},
|
|
new Container
|
|
{
|
|
AutoSizeAxes = Axes.X,
|
|
Height = 25,
|
|
Child = valueText = new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
Font = OsuFont.GetFont(size: 20, weight: FontWeight.Light),
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OverlayColourProvider colourProvider)
|
|
{
|
|
valueText.Colour = colourProvider.Content2;
|
|
}
|
|
}
|
|
|
|
private class SpotlightsDropdown : OsuDropdown<APISpotlight>
|
|
{
|
|
private OsuDropdownMenu menu;
|
|
|
|
protected override DropdownMenu CreateMenu() => menu = (OsuDropdownMenu)base.CreateMenu().With(m => m.MaxHeight = 400);
|
|
|
|
protected override DropdownHeader CreateHeader() => new SpotlightsDropdownHeader();
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OverlayColourProvider colourProvider)
|
|
{
|
|
menu.BackgroundColour = colourProvider.Background5;
|
|
menu.HoverColour = colourProvider.Background4;
|
|
menu.SelectionColour = colourProvider.Background3;
|
|
Padding = new MarginPadding { Vertical = 20 };
|
|
}
|
|
|
|
private class SpotlightsDropdownHeader : OsuDropdownHeader
|
|
{
|
|
public SpotlightsDropdownHeader()
|
|
{
|
|
AutoSizeAxes = Axes.Y;
|
|
Text.Font = OsuFont.GetFont(size: 15);
|
|
Text.Padding = new MarginPadding { Vertical = 1.5f }; // osu-web line-height difference compensation
|
|
Foreground.Padding = new MarginPadding { Horizontal = 10, Vertical = 15 };
|
|
Margin = Icon.Margin = new MarginPadding(0);
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OverlayColourProvider colourProvider)
|
|
{
|
|
BackgroundColour = colourProvider.Background6.Opacity(0.5f);
|
|
// osu-web adds a 0.6 opacity container on top of the 0.5 base one when hovering, 0.8 on a single container here matches the resulting colour
|
|
BackgroundColourHover = colourProvider.Background6.Opacity(0.8f);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|