1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-29 22:07:29 +08:00
osu-lazer/osu.Game/Overlays/News/Sidebar/YearsPanel.cs

166 lines
5.5 KiB
C#
Raw Normal View History

2021-05-10 12:43:01 +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.
using osu.Framework.Allocation;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.Sprites;
using System.Collections.Generic;
using osu.Game.Graphics;
using osu.Framework.Bindables;
2021-05-11 20:33:27 +08:00
using osu.Game.Online.API.Requests.Responses;
using System;
2021-05-10 12:43:01 +08:00
namespace osu.Game.Overlays.News.Sidebar
{
public class YearsPanel : CompositeDrawable
{
2021-05-11 20:33:27 +08:00
private readonly Bindable<APINewsSidebar> metadata = new Bindable<APINewsSidebar>();
2021-05-10 12:43:01 +08:00
private Container gridPlaceholder;
2021-05-10 12:43:01 +08:00
[BackgroundDependencyLoader]
2021-05-11 20:33:27 +08:00
private void load(OverlayColourProvider colourProvider, Bindable<APINewsSidebar> metadata)
2021-05-10 12:43:01 +08:00
{
2021-05-11 20:33:27 +08:00
this.metadata.BindTo(metadata);
2021-05-10 12:43:01 +08:00
AutoSizeAxes = Axes.Y;
RelativeSizeAxes = Axes.X;
2021-05-10 12:43:01 +08:00
Masking = true;
CornerRadius = 6;
InternalChildren = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = colourProvider.Background3
},
gridPlaceholder = new Container
2021-05-10 12:43:01 +08:00
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Padding = new MarginPadding(5)
2021-05-10 12:43:01 +08:00
}
};
}
protected override void LoadComplete()
{
base.LoadComplete();
2021-05-11 20:33:27 +08:00
metadata.BindValueChanged(m =>
2021-05-10 12:43:01 +08:00
{
2021-05-11 20:33:27 +08:00
if (m.NewValue == null)
2021-05-10 12:43:01 +08:00
{
2021-05-11 20:33:27 +08:00
Hide();
return;
2021-05-10 12:43:01 +08:00
}
2021-05-11 20:33:27 +08:00
gridPlaceholder.Child = new YearsGridContainer(m.NewValue.Years);
2021-05-11 20:33:27 +08:00
Show();
2021-05-10 12:43:01 +08:00
}, true);
}
private class YearButton : OsuHoverContainer
{
protected override IEnumerable<Drawable> EffectTargets => new[] { text };
private readonly OsuSpriteText text;
public YearButton(int year)
{
RelativeSizeAxes = Axes.X;
Height = 15;
2021-05-10 12:43:01 +08:00
Child = text = new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Font = OsuFont.GetFont(size: 12),
Text = year.ToString()
};
}
[BackgroundDependencyLoader]
private void load(OverlayColourProvider colourProvider)
{
IdleColour = colourProvider.Light2;
HoverColour = colourProvider.Light1;
Action = () => { }; // Avoid button being disabled since there's no proper action assigned.
2021-05-10 12:43:01 +08:00
}
}
private class YearsGridContainer : GridContainer
{
private const int column_count = 4;
private const float spacing = 5f;
private readonly int rowCount;
private readonly int[] years;
public YearsGridContainer(int[] years)
{
this.years = years;
rowCount = (int)Math.Ceiling((float)years.Length / column_count);
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
RowDimensions = getRowDimensions();
ColumnDimensions = getColumnDimensions();
Content = createContent();
}
private Dimension[] getRowDimensions()
{
var rowDimensions = new Dimension[rowCount];
for (int i = 0; i < rowCount; i++)
rowDimensions[i] = new Dimension(GridSizeMode.AutoSize);
return rowDimensions;
}
private Dimension[] getColumnDimensions()
{
var columnDimensions = new Dimension[column_count];
for (int i = 0; i < column_count; i++)
columnDimensions[i] = new Dimension(GridSizeMode.Relative, size: 1f / column_count);
return columnDimensions;
}
private Drawable[][] createContent()
{
var buttons = new Drawable[rowCount][];
for (int i = 0; i < rowCount; i++)
{
buttons[i] = new Drawable[column_count];
for (int j = 0; j < column_count; j++)
{
var index = i * column_count + j;
buttons[i][j] = index >= years.Length
? Empty()
: new Container
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Padding = new MarginPadding
{
Top = i == 0 ? 0 : spacing / 2,
Bottom = i == rowCount - 1 ? 0 : spacing / 2,
Left = j == 0 ? 0 : spacing / 2,
Right = j == column_count - 1 ? 0 : spacing / 2
},
Child = new YearButton(years[index])
};
}
}
return buttons;
}
}
2021-05-10 12:43:01 +08:00
}
}