1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-19 14:00:22 +08:00
Files
osu-lazer/osu.Game/Screens/SelectV2/BeatmapDetailsArea_Header.cs
T

222 lines
8.9 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 System;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Localisation;
using osu.Game.Configuration;
using osu.Game.Graphics.UserInterface;
using osu.Game.Graphics.UserInterfaceV2;
using osu.Game.Screens.Select;
using osu.Game.Screens.Select.Leaderboards;
using osuTK;
namespace osu.Game.Screens.SelectV2
{
public partial class BeatmapDetailsArea
{
public partial class Header : CompositeDrawable
{
private WedgeSelector<Selection> tabControl = null!;
private FillFlowContainer leaderboardControls = null!;
private ShearedDropdown<BeatmapLeaderboardScope> scopeDropdown = null!;
private ShearedToggleButton selectedModsToggle = null!;
public IBindable<Selection> Type => tabControl.Current;
public IBindable<BeatmapLeaderboardScope> Scope => scopeDropdown.Current;
private readonly Bindable<BeatmapDetailTab> configDetailTab = new Bindable<BeatmapDetailTab>();
public IBindable<bool> FilterBySelectedMods => selectedModsToggle.Active;
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
InternalChildren = new Drawable[]
{
new Container
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Left = SongSelect.WEDGE_CONTENT_MARGIN, Right = 20f },
Children = new Drawable[]
{
tabControl = new WedgeSelector<Selection>(20f)
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Width = 200,
Height = 22,
Margin = new MarginPadding { Top = 2f },
IsSwitchable = true,
},
leaderboardControls = new FillFlowContainer
{
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
AutoSizeAxes = Axes.Both,
Spacing = new Vector2(5f, 0f),
Children = new Drawable[]
{
new Container
{
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
Size = new Vector2(128f, 30f),
Child = selectedModsToggle = new ShearedToggleButton
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Text = @"Selected Mods",
Height = 30,
},
},
// new Container
// {
// Anchor = Anchor.CentreRight,
// Origin = Anchor.CentreRight,
// Size = new Vector2(150f, 33f),
// Child = new ShearedDropdown<RankingsSort>(@"Sort")
// {
// Width = 150f,
// Items = Enum.GetValues<RankingsSort>(),
// },
// },
new Container
{
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
Size = new Vector2(160f, 32f),
Child = scopeDropdown = new ScopeDropdown
{
Width = 160f,
Current = { Value = BeatmapLeaderboardScope.Global },
},
},
},
},
},
},
};
config.BindWith(OsuSetting.BeatmapDetailTab, configDetailTab);
config.BindWith(OsuSetting.BeatmapDetailModsFilter, selectedModsToggle.Active);
}
protected override void LoadComplete()
{
base.LoadComplete();
scopeDropdown.Current.Value = tryMapDetailTabToLeaderboardScope(configDetailTab.Value) ?? scopeDropdown.Current.Value;
scopeDropdown.Current.BindValueChanged(_ => updateConfigDetailTab());
tabControl.Current.Value = configDetailTab.Value == BeatmapDetailTab.Details ? Selection.Details : Selection.Ranking;
tabControl.Current.BindValueChanged(v =>
{
leaderboardControls.FadeTo(v.NewValue == Selection.Ranking ? 1 : 0, 300, Easing.OutQuint);
updateConfigDetailTab();
}, true);
}
#region Reading / writing state from / to configuration
private void updateConfigDetailTab()
{
switch (tabControl.Current.Value)
{
case Selection.Details:
configDetailTab.Value = BeatmapDetailTab.Details;
return;
case Selection.Ranking:
configDetailTab.Value = mapLeaderboardScopeToDetailTab(scopeDropdown.Current.Value);
return;
default:
throw new ArgumentOutOfRangeException(nameof(tabControl.Current.Value), tabControl.Current.Value, null);
}
}
private static BeatmapLeaderboardScope? tryMapDetailTabToLeaderboardScope(BeatmapDetailTab tab)
{
switch (tab)
{
case BeatmapDetailTab.Local:
return BeatmapLeaderboardScope.Local;
case BeatmapDetailTab.Country:
return BeatmapLeaderboardScope.Country;
case BeatmapDetailTab.Global:
return BeatmapLeaderboardScope.Global;
case BeatmapDetailTab.Friends:
return BeatmapLeaderboardScope.Friend;
case BeatmapDetailTab.Team:
return BeatmapLeaderboardScope.Team;
default:
return null;
}
}
private static BeatmapDetailTab mapLeaderboardScopeToDetailTab(BeatmapLeaderboardScope scope)
{
switch (scope)
{
case BeatmapLeaderboardScope.Local:
return BeatmapDetailTab.Local;
case BeatmapLeaderboardScope.Country:
return BeatmapDetailTab.Country;
case BeatmapLeaderboardScope.Global:
return BeatmapDetailTab.Global;
case BeatmapLeaderboardScope.Friend:
return BeatmapDetailTab.Friends;
case BeatmapLeaderboardScope.Team:
return BeatmapDetailTab.Team;
default:
throw new ArgumentOutOfRangeException(nameof(scope), scope, null);
}
}
#endregion
public enum Selection
{
Details,
Ranking,
}
// public enum RankingsSort
// {
// Score,
// Accuracy,
// Combo,
// Misses,
// Date,
// }
private partial class ScopeDropdown : ShearedDropdown<BeatmapLeaderboardScope>
{
public ScopeDropdown()
: base("Scope")
{
Items = Enum.GetValues<BeatmapLeaderboardScope>();
}
protected override LocalisableString GenerateItemText(BeatmapLeaderboardScope item) => item.ToString();
}
}
}
}