1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-10 06:27:19 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

82 lines
2.9 KiB
C#
Raw Normal View History

// 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 18:19:50 +09:00
2022-06-17 16:37:17 +09:00
#nullable disable
2018-11-20 16:51:59 +09:00
using osuTK;
2017-03-25 23:33:03 +01:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using System.Collections.Generic;
using System.Linq;
2021-02-25 15:38:56 +09:00
using osu.Framework.Extensions.EnumExtensions;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Graphics.UserInterface
2017-03-25 23:33:03 +01:00
{
public class BarGraph : FillFlowContainer<Bar>
{
2017-04-10 16:42:23 +02:00
/// <summary>
/// Manually sets the max value, if null <see cref="Enumerable.Max(IEnumerable{float})"/> is instead used
/// </summary>
public float? MaxValue { get; set; }
2018-04-13 18:19:50 +09:00
2017-04-04 17:17:22 +02:00
private BarDirection direction = BarDirection.BottomToTop;
2019-02-28 13:31:40 +09:00
2017-04-04 17:17:22 +02:00
public new BarDirection Direction
{
get => direction;
2017-04-04 17:17:22 +02:00
set
{
direction = value;
2021-02-25 15:38:56 +09:00
base.Direction = direction.HasFlagFast(BarDirection.Horizontal) ? FillDirection.Vertical : FillDirection.Horizontal;
2019-04-01 12:16:05 +09:00
2017-04-04 17:17:22 +02:00
foreach (var bar in Children)
{
2021-02-25 15:38:56 +09:00
bar.Size = direction.HasFlagFast(BarDirection.Horizontal) ? new Vector2(1, 1.0f / Children.Count) : new Vector2(1.0f / Children.Count, 1);
2017-04-04 17:17:22 +02:00
bar.Direction = direction;
}
2017-04-04 17:17:22 +02:00
}
}
2018-04-13 18:19:50 +09:00
2017-04-10 16:42:23 +02:00
/// <summary>
/// A list of floats that defines the length of each <see cref="Bar"/>
/// </summary>
public IEnumerable<float> Values
{
set
{
2017-04-11 18:43:48 +02:00
List<Bar> bars = Children.ToList();
2019-04-01 12:16:05 +09:00
2017-04-11 18:43:48 +02:00
foreach (var bar in value.Select((length, index) => new { Value = length, Bar = bars.Count > index ? bars[index] : null }))
{
float length = MaxValue ?? value.Max();
if (length != 0)
length = bar.Value / length;
2018-04-13 18:19:50 +09:00
float size = value.Count();
if (size != 0)
size = 1.0f / size;
2018-04-13 18:19:50 +09:00
2017-04-11 18:43:48 +02:00
if (bar.Bar != null)
{
bar.Bar.Length = length;
2021-02-25 15:38:56 +09:00
bar.Bar.Size = direction.HasFlagFast(BarDirection.Horizontal) ? new Vector2(1, size) : new Vector2(size, 1);
}
else
{
Add(new Bar
{
RelativeSizeAxes = Axes.Both,
2021-02-25 15:38:56 +09:00
Size = direction.HasFlagFast(BarDirection.Horizontal) ? new Vector2(1, size) : new Vector2(size, 1),
Length = length,
2017-04-04 17:17:22 +02:00
Direction = Direction,
});
}
}
2019-02-28 13:31:40 +09:00
//I'm using ToList() here because Where() returns an Enumerable which can change it's elements afterwards
2017-07-11 16:58:06 +03:00
RemoveRange(Children.Where((bar, index) => index >= value.Count()).ToList());
}
}
}
2018-01-05 20:21:19 +09:00
}