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
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2017-06-14 20:37:07 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2017-06-14 20:37:07 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Lines;
|
2020-02-24 19:52:15 +08:00
|
|
|
|
using osu.Framework.Layout;
|
2018-12-23 04:50:25 +08:00
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-06-14 20:37:07 +08:00
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
|
|
|
{
|
|
|
|
|
public class LineGraph : Container
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Manually set the max value, otherwise <see cref="Enumerable.Max(IEnumerable{float})"/> will be used.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public float? MaxValue { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-06-14 20:37:07 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Manually set the min value, otherwise <see cref="Enumerable.Min(IEnumerable{float})"/> will be used.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public float? MinValue { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-06-16 14:47:14 +08:00
|
|
|
|
public float ActualMaxValue { get; private set; } = float.NaN;
|
|
|
|
|
public float ActualMinValue { get; private set; } = float.NaN;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-06-26 15:26:43 +08:00
|
|
|
|
private const double transform_duration = 1500;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-06-14 20:37:07 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Hold an empty area if values are less.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int DefaultValueCount;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-06-15 00:46:39 +08:00
|
|
|
|
private readonly Container<Path> maskingContainer;
|
|
|
|
|
private readonly Path path;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-06-14 22:00:22 +08:00
|
|
|
|
private float[] values;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-06-14 20:37:07 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A list of floats decides position of each line node.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public IEnumerable<float> Values
|
|
|
|
|
{
|
2019-02-28 12:58:19 +08:00
|
|
|
|
get => values;
|
2017-06-14 20:37:07 +08:00
|
|
|
|
set
|
|
|
|
|
{
|
2017-06-14 22:00:22 +08:00
|
|
|
|
values = value.ToArray();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-12-22 17:58:35 +08:00
|
|
|
|
float max = values.Max(), min = values.Min();
|
|
|
|
|
if (MaxValue > max) max = MaxValue.Value;
|
|
|
|
|
if (MinValue < min) min = MinValue.Value;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-12-22 17:58:35 +08:00
|
|
|
|
ActualMaxValue = max;
|
|
|
|
|
ActualMinValue = min;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-12-22 17:58:35 +08:00
|
|
|
|
pathCached.Invalidate();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-06-15 00:46:39 +08:00
|
|
|
|
maskingContainer.Width = 0;
|
2017-07-23 02:50:25 +08:00
|
|
|
|
maskingContainer.ResizeWidthTo(1, transform_duration, Easing.OutQuint);
|
2017-06-14 22:00:22 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-12-23 04:50:25 +08:00
|
|
|
|
public Color4 LineColour
|
|
|
|
|
{
|
|
|
|
|
get => maskingContainer.Colour;
|
|
|
|
|
set => maskingContainer.Colour = value;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-15 00:46:39 +08:00
|
|
|
|
public LineGraph()
|
|
|
|
|
{
|
|
|
|
|
Add(maskingContainer = new Container<Path>
|
|
|
|
|
{
|
|
|
|
|
Masking = true,
|
2017-06-23 13:02:19 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2019-07-26 16:48:19 +08:00
|
|
|
|
Child = path = new SmoothPath
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.None,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
PathRadius = 1
|
|
|
|
|
}
|
2017-06-15 00:46:39 +08:00
|
|
|
|
});
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-02-24 19:52:15 +08:00
|
|
|
|
AddLayout(pathCached);
|
2017-06-14 22:00:22 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-02-24 19:52:15 +08:00
|
|
|
|
private readonly LayoutValue pathCached = new LayoutValue(Invalidation.DrawSize);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-12-22 17:58:35 +08:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
2019-04-01 11:16:05 +08:00
|
|
|
|
|
2017-12-22 17:58:35 +08:00
|
|
|
|
if (!pathCached.IsValid)
|
|
|
|
|
{
|
|
|
|
|
applyPath();
|
|
|
|
|
pathCached.Validate();
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-06-14 22:00:22 +08:00
|
|
|
|
private void applyPath()
|
|
|
|
|
{
|
2017-06-23 13:02:19 +08:00
|
|
|
|
path.ClearVertices();
|
2017-06-14 22:00:22 +08:00
|
|
|
|
if (values == null) return;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-06-14 22:00:22 +08:00
|
|
|
|
int count = Math.Max(values.Length, DefaultValueCount);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-06-14 22:00:22 +08:00
|
|
|
|
for (int i = 0; i < values.Length; i++)
|
|
|
|
|
{
|
2019-03-07 12:45:55 +08:00
|
|
|
|
// Make sure that we are accounting for path width when calculating vertex positions
|
2019-03-07 16:25:51 +08:00
|
|
|
|
// We need to apply 2x the path radius to account for it because the full diameter of the line accounts into height
|
2019-03-07 16:39:19 +08:00
|
|
|
|
float x = (i + count - values.Length) / (float)(count - 1) * (DrawWidth - 2 * path.PathRadius);
|
|
|
|
|
float y = GetYPosition(values[i]) * (DrawHeight - 2 * path.PathRadius);
|
2017-06-15 00:46:39 +08:00
|
|
|
|
path.AddVertex(new Vector2(x, y));
|
2017-06-14 20:37:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-06-16 14:47:14 +08:00
|
|
|
|
protected float GetYPosition(float value)
|
|
|
|
|
{
|
2020-11-24 05:12:32 +08:00
|
|
|
|
if (ActualMaxValue == ActualMinValue)
|
|
|
|
|
// show line at top if the only value on the graph is positive,
|
|
|
|
|
// and at bottom if the only value on the graph is zero or negative.
|
|
|
|
|
// just kind of makes most sense intuitively.
|
|
|
|
|
return value > 1 ? 0 : 1;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2017-06-16 14:47:14 +08:00
|
|
|
|
return (ActualMaxValue - value) / (ActualMaxValue - ActualMinValue);
|
|
|
|
|
}
|
2017-06-14 20:37:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|