2020-11-25 07:00:11 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2020-11-24 18:16:03 +08:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
2021-06-22 16:33:32 +08:00
|
|
|
|
using Newtonsoft.Json;
|
2020-11-27 09:31:18 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2020-11-26 17:14:25 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2021-05-05 12:17:27 +08:00
|
|
|
|
using osu.Game.Skinning;
|
2020-11-26 17:14:25 +08:00
|
|
|
|
using osuTK.Graphics;
|
|
|
|
|
|
2020-11-24 18:16:03 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represents a single object that can be caught by the catcher.
|
2020-11-25 07:00:11 +08:00
|
|
|
|
/// This includes normal fruits, droplets, and bananas but excludes objects that act only as a container of nested hit objects.
|
2020-11-24 18:16:03 +08:00
|
|
|
|
/// </summary>
|
2020-11-26 17:14:25 +08:00
|
|
|
|
public abstract class PalpableCatchHitObject : CatchHitObject, IHasComboInformation
|
2020-11-24 18:16:03 +08:00
|
|
|
|
{
|
2020-11-24 18:57:37 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Difference between the distance to the next object
|
|
|
|
|
/// and the distance that would have triggered a hyper dash.
|
|
|
|
|
/// A value close to 0 indicates a difficult jump (for difficulty calculation).
|
|
|
|
|
/// </summary>
|
|
|
|
|
public float DistanceToHyperDash { get; set; }
|
|
|
|
|
|
2020-11-27 09:31:18 +08:00
|
|
|
|
public readonly Bindable<bool> HyperDashBindable = new Bindable<bool>();
|
|
|
|
|
|
2020-11-24 18:57:37 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether this fruit can initiate a hyperdash.
|
|
|
|
|
/// </summary>
|
2020-11-27 09:31:18 +08:00
|
|
|
|
public bool HyperDash => HyperDashBindable.Value;
|
|
|
|
|
|
|
|
|
|
private CatchHitObject hyperDashTarget;
|
2020-11-24 18:57:37 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The target fruit if we are to initiate a hyperdash.
|
|
|
|
|
/// </summary>
|
2021-06-22 16:33:32 +08:00
|
|
|
|
[JsonIgnore]
|
2020-11-27 09:31:18 +08:00
|
|
|
|
public CatchHitObject HyperDashTarget
|
|
|
|
|
{
|
|
|
|
|
get => hyperDashTarget;
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
hyperDashTarget = value;
|
|
|
|
|
HyperDashBindable.Value = value != null;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-11-26 17:14:25 +08:00
|
|
|
|
|
2021-05-05 12:17:27 +08:00
|
|
|
|
Color4 IHasComboInformation.GetComboColour(ISkin skin) => IHasComboInformation.GetSkinComboColour(this, skin, IndexInBeatmap + 1);
|
2020-11-24 18:16:03 +08:00
|
|
|
|
}
|
|
|
|
|
}
|