2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
2019-10-28 05:44:45 +00:00
|
|
|
using osu.Framework.Bindables;
|
2020-10-01 10:29:34 +00:00
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps.ControlPoints
|
|
|
|
{
|
2021-08-31 14:59:36 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// Note that going forward, this control point type should always be assigned directly to HitObjects.
|
|
|
|
/// </remarks>
|
2019-10-25 08:00:56 +00:00
|
|
|
public class DifficultyControlPoint : ControlPoint
|
2018-04-13 09:19:50 +00:00
|
|
|
{
|
2020-07-18 02:53:04 +00:00
|
|
|
public static readonly DifficultyControlPoint DEFAULT = new DifficultyControlPoint
|
|
|
|
{
|
2021-08-31 14:59:36 +00:00
|
|
|
SliderVelocityBindable = { Disabled = true },
|
2020-07-18 02:53:04 +00:00
|
|
|
};
|
|
|
|
|
2019-10-28 05:44:45 +00:00
|
|
|
/// <summary>
|
2021-08-31 14:59:36 +00:00
|
|
|
/// The slider velocity at this control point.
|
2019-10-28 05:44:45 +00:00
|
|
|
/// </summary>
|
2021-08-31 14:59:36 +00:00
|
|
|
public readonly BindableDouble SliderVelocityBindable = new BindableDouble(1)
|
2019-10-28 05:44:45 +00:00
|
|
|
{
|
2021-03-19 08:09:49 +00:00
|
|
|
Precision = 0.01,
|
2019-10-28 07:21:14 +00:00
|
|
|
Default = 1,
|
2019-10-28 05:44:45 +00:00
|
|
|
MinValue = 0.1,
|
|
|
|
MaxValue = 10
|
|
|
|
};
|
|
|
|
|
2021-04-14 11:54:29 +00:00
|
|
|
public override Color4 GetRepresentingColour(OsuColour colours) => colours.Lime1;
|
2020-10-01 10:29:34 +00:00
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The speed multiplier at this control point.
|
|
|
|
/// </summary>
|
2021-08-31 14:59:36 +00:00
|
|
|
public double SliderVelocity
|
2018-04-13 09:19:50 +00:00
|
|
|
{
|
2021-08-31 14:59:36 +00:00
|
|
|
get => SliderVelocityBindable.Value;
|
|
|
|
set => SliderVelocityBindable.Value = value;
|
2018-04-13 09:19:50 +00:00
|
|
|
}
|
|
|
|
|
2020-04-17 08:06:12 +00:00
|
|
|
public override bool IsRedundant(ControlPoint existing)
|
2020-04-17 08:04:09 +00:00
|
|
|
=> existing is DifficultyControlPoint existingDifficulty
|
2021-08-31 14:59:36 +00:00
|
|
|
&& SliderVelocity == existingDifficulty.SliderVelocity;
|
2021-01-04 07:37:07 +00:00
|
|
|
|
|
|
|
public override void CopyFrom(ControlPoint other)
|
|
|
|
{
|
2021-08-31 14:59:36 +00:00
|
|
|
SliderVelocity = ((DifficultyControlPoint)other).SliderVelocity;
|
2021-01-04 07:37:07 +00:00
|
|
|
|
|
|
|
base.CopyFrom(other);
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
}
|
|
|
|
}
|