2020-07-13 06:22:05 +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.
|
|
|
|
|
|
2021-07-30 20:35:25 +08:00
|
|
|
|
using System;
|
2021-07-31 01:07:49 +08:00
|
|
|
|
using osu.Framework.Extensions.LocalisationExtensions;
|
2021-07-30 20:35:25 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
|
|
|
|
|
2020-07-13 06:22:05 +08:00
|
|
|
|
namespace osu.Game.Overlays.Rankings
|
|
|
|
|
{
|
|
|
|
|
public class RankingsSortTabControl : OverlaySortTabControl<RankingsSortCriteria>
|
|
|
|
|
{
|
|
|
|
|
public RankingsSortTabControl()
|
|
|
|
|
{
|
2021-07-31 01:07:49 +08:00
|
|
|
|
Title = RankingsStrings.FilterTitle.ToUpper();
|
2020-07-13 06:22:05 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-30 20:35:25 +08:00
|
|
|
|
[LocalisableEnum(typeof(RankingsSortCriteriaEnumLocalisationMapper))]
|
2020-07-13 06:22:05 +08:00
|
|
|
|
public enum RankingsSortCriteria
|
|
|
|
|
{
|
|
|
|
|
All,
|
|
|
|
|
Friends
|
|
|
|
|
}
|
2021-07-30 20:35:25 +08:00
|
|
|
|
|
|
|
|
|
public class RankingsSortCriteriaEnumLocalisationMapper : EnumLocalisationMapper<RankingsSortCriteria>
|
|
|
|
|
{
|
|
|
|
|
public override LocalisableString Map(RankingsSortCriteria value)
|
|
|
|
|
{
|
|
|
|
|
switch (value)
|
|
|
|
|
{
|
|
|
|
|
case RankingsSortCriteria.All:
|
|
|
|
|
return SortStrings.All;
|
|
|
|
|
|
|
|
|
|
case RankingsSortCriteria.Friends:
|
|
|
|
|
return SortStrings.Friends;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
throw new ArgumentOutOfRangeException(nameof(value), value, null);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-07-13 06:22:05 +08:00
|
|
|
|
}
|