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