2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
2020-02-12 18:52:47 +08:00
|
|
|
|
using System.Collections.Generic;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Select
|
|
|
|
|
{
|
|
|
|
|
public class BeatmapDetailAreaTabControl : Container
|
|
|
|
|
{
|
2019-11-12 20:07:01 +08:00
|
|
|
|
public const float HEIGHT = 24;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-02-12 18:52:47 +08:00
|
|
|
|
public Bindable<BeatmapDetailAreaTabItem> Current
|
|
|
|
|
{
|
|
|
|
|
get => tabs.Current;
|
|
|
|
|
set => tabs.Current = value;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-16 12:33:52 +08:00
|
|
|
|
public Bindable<bool> CurrentModsFilter
|
|
|
|
|
{
|
|
|
|
|
get => modsCheckbox.Current;
|
|
|
|
|
set => modsCheckbox.Current = value;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-05 09:31:11 +08:00
|
|
|
|
public Action<BeatmapDetailAreaTabItem, bool> OnFilter; // passed the selected tab and if mods is checked
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-02-12 18:52:47 +08:00
|
|
|
|
public IReadOnlyList<BeatmapDetailAreaTabItem> TabItems
|
|
|
|
|
{
|
|
|
|
|
get => tabs.Items;
|
|
|
|
|
set => tabs.Items = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private readonly OsuTabControlCheckbox modsCheckbox;
|
|
|
|
|
private readonly OsuTabControl<BeatmapDetailAreaTabItem> tabs;
|
|
|
|
|
private readonly Container tabsContainer;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public BeatmapDetailAreaTabControl()
|
|
|
|
|
{
|
|
|
|
|
Height = HEIGHT;
|
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = 1,
|
|
|
|
|
Colour = Color4.White.Opacity(0.2f),
|
|
|
|
|
},
|
2019-10-08 07:17:58 +08:00
|
|
|
|
tabsContainer = new Container
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-02-12 18:52:47 +08:00
|
|
|
|
Child = tabs = new OsuTabControl<BeatmapDetailAreaTabItem>
|
2019-10-07 01:22:55 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2019-12-23 11:47:47 +08:00
|
|
|
|
IsSwitchable = true,
|
2019-10-07 01:22:55 +08:00
|
|
|
|
},
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
modsCheckbox = new OsuTabControlCheckbox
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.BottomRight,
|
|
|
|
|
Origin = Anchor.BottomRight,
|
2019-09-20 03:47:32 +08:00
|
|
|
|
Text = @"Selected Mods",
|
2019-07-26 14:51:51 +08:00
|
|
|
|
Alpha = 0,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
2019-02-22 16:51:39 +08:00
|
|
|
|
tabs.Current.ValueChanged += _ => invokeOnFilter();
|
|
|
|
|
modsCheckbox.Current.ValueChanged += _ => invokeOnFilter();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2019-07-26 14:49:21 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colour, OsuConfigManager config)
|
|
|
|
|
{
|
|
|
|
|
modsCheckbox.AccentColour = tabs.AccentColour = colour.YellowLight;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void invokeOnFilter()
|
|
|
|
|
{
|
|
|
|
|
OnFilter?.Invoke(tabs.Current.Value, modsCheckbox.Current.Value);
|
|
|
|
|
|
2020-02-12 18:52:47 +08:00
|
|
|
|
if (tabs.Current.Value.FilterableByMods)
|
|
|
|
|
{
|
|
|
|
|
modsCheckbox.FadeTo(1, 200, Easing.OutQuint);
|
|
|
|
|
tabsContainer.Padding = new MarginPadding { Right = 100 };
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
modsCheckbox.FadeTo(0, 200, Easing.OutQuint);
|
|
|
|
|
tabsContainer.Padding = new MarginPadding();
|
|
|
|
|
}
|
2019-07-26 14:49:21 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|