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;
|
2019-10-28 13:44:45 +08:00
|
|
|
|
2017-05-23 12:55:18 +08:00
|
|
|
namespace osu.Game.Beatmaps.ControlPoints
|
|
|
|
{
|
2022-06-20 13:56:04 +08:00
|
|
|
public class EffectControlPoint : ControlPoint, IEquatable<EffectControlPoint>
|
2017-05-23 12:55:18 +08:00
|
|
|
{
|
2020-07-18 10:53:04 +08:00
|
|
|
public static readonly EffectControlPoint DEFAULT = new EffectControlPoint
|
|
|
|
{
|
|
|
|
KiaiModeBindable = { Disabled = true },
|
2021-08-31 22:59:36 +08:00
|
|
|
OmitFirstBarLineBindable = { Disabled = true },
|
2021-09-06 13:56:34 +08:00
|
|
|
ScrollSpeedBindable = { Disabled = true }
|
2020-07-18 10:53:04 +08:00
|
|
|
};
|
|
|
|
|
2017-05-23 13:11:37 +08:00
|
|
|
/// <summary>
|
2019-10-28 13:44:45 +08:00
|
|
|
/// Whether the first bar line of this control point is ignored.
|
2017-05-23 13:11:37 +08:00
|
|
|
/// </summary>
|
2019-10-28 13:44:45 +08:00
|
|
|
public readonly BindableBool OmitFirstBarLineBindable = new BindableBool();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2021-08-31 22:59:36 +08:00
|
|
|
/// <summary>
|
2021-09-06 13:56:34 +08:00
|
|
|
/// The relative scroll speed at this control point.
|
2021-08-31 22:59:36 +08:00
|
|
|
/// </summary>
|
2021-09-06 13:56:34 +08:00
|
|
|
public readonly BindableDouble ScrollSpeedBindable = new BindableDouble(1)
|
2021-08-31 22:59:36 +08:00
|
|
|
{
|
|
|
|
Precision = 0.01,
|
|
|
|
MinValue = 0.01,
|
|
|
|
MaxValue = 10
|
|
|
|
};
|
|
|
|
|
|
|
|
/// <summary>
|
2021-09-06 13:56:34 +08:00
|
|
|
/// The relative scroll speed.
|
2021-08-31 22:59:36 +08:00
|
|
|
/// </summary>
|
2021-09-06 13:56:34 +08:00
|
|
|
public double ScrollSpeed
|
2021-08-31 22:59:36 +08:00
|
|
|
{
|
2021-09-06 13:56:34 +08:00
|
|
|
get => ScrollSpeedBindable.Value;
|
|
|
|
set => ScrollSpeedBindable.Value = value;
|
2021-08-31 22:59:36 +08:00
|
|
|
}
|
|
|
|
|
2020-10-01 18:29:34 +08:00
|
|
|
public override Color4 GetRepresentingColour(OsuColour colours) => colours.Purple;
|
|
|
|
|
2017-05-23 13:11:37 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Whether the first bar line of this control point is ignored.
|
|
|
|
/// </summary>
|
2019-10-28 13:44:45 +08:00
|
|
|
public bool OmitFirstBarLine
|
|
|
|
{
|
|
|
|
get => OmitFirstBarLineBindable.Value;
|
|
|
|
set => OmitFirstBarLineBindable.Value = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Whether this control point enables Kiai mode.
|
|
|
|
/// </summary>
|
|
|
|
public readonly BindableBool KiaiModeBindable = new BindableBool();
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Whether this control point enables Kiai mode.
|
|
|
|
/// </summary>
|
|
|
|
public bool KiaiMode
|
|
|
|
{
|
|
|
|
get => KiaiModeBindable.Value;
|
|
|
|
set => KiaiModeBindable.Value = value;
|
|
|
|
}
|
2018-06-28 17:08:46 +08:00
|
|
|
|
2022-06-20 15:52:01 +08:00
|
|
|
public override bool IsRedundant(ControlPoint? existing)
|
2020-04-17 16:04:09 +08:00
|
|
|
=> !OmitFirstBarLine
|
|
|
|
&& existing is EffectControlPoint existingEffect
|
|
|
|
&& KiaiMode == existingEffect.KiaiMode
|
2021-08-31 22:59:36 +08:00
|
|
|
&& OmitFirstBarLine == existingEffect.OmitFirstBarLine
|
2021-09-06 13:56:34 +08:00
|
|
|
&& ScrollSpeed == existingEffect.ScrollSpeed;
|
2021-01-04 15:37:07 +08:00
|
|
|
|
|
|
|
public override void CopyFrom(ControlPoint other)
|
|
|
|
{
|
|
|
|
KiaiMode = ((EffectControlPoint)other).KiaiMode;
|
|
|
|
OmitFirstBarLine = ((EffectControlPoint)other).OmitFirstBarLine;
|
2021-09-06 13:56:34 +08:00
|
|
|
ScrollSpeed = ((EffectControlPoint)other).ScrollSpeed;
|
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 EffectControlPoint otherEffectControlPoint
|
|
|
|
&& Equals(otherEffectControlPoint);
|
|
|
|
|
|
|
|
public bool Equals(EffectControlPoint? other)
|
|
|
|
=> base.Equals(other)
|
|
|
|
&& OmitFirstBarLine == other.OmitFirstBarLine
|
|
|
|
&& ScrollSpeed == other.ScrollSpeed
|
|
|
|
&& KiaiMode == other.KiaiMode;
|
|
|
|
|
|
|
|
public override int GetHashCode() => HashCode.Combine(base.GetHashCode(), OmitFirstBarLine, ScrollSpeed, KiaiMode);
|
2017-05-23 12:55:18 +08:00
|
|
|
}
|
2018-01-05 19:21:19 +08:00
|
|
|
}
|