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
|
|
|
|
|
2019-09-26 15:55:08 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2019-08-01 12:33:00 +08:00
|
|
|
|
using osu.Game.Rulesets.Catch.Beatmaps;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2019-09-06 14:24:00 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects
|
|
|
|
|
{
|
|
|
|
|
public abstract class CatchHitObject : HitObject, IHasXPosition, IHasComboInformation
|
|
|
|
|
{
|
2020-02-17 18:16:40 +08:00
|
|
|
|
public const float OBJECT_RADIUS = 64;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-08-01 12:33:00 +08:00
|
|
|
|
private float x;
|
|
|
|
|
|
|
|
|
|
public float X
|
|
|
|
|
{
|
|
|
|
|
get => x + XOffset;
|
|
|
|
|
set => x = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A random offset applied to <see cref="X"/>, set by the <see cref="CatchBeatmapProcessor"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
internal float XOffset { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-06-28 16:34:04 +08:00
|
|
|
|
public double TimePreempt = 1000;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public int IndexInBeatmap { get; set; }
|
|
|
|
|
|
2020-02-19 13:41:25 +08:00
|
|
|
|
public virtual FruitVisualRepresentation VisualRepresentation => (FruitVisualRepresentation)(IndexInBeatmap % 4);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public virtual bool NewCombo { get; set; }
|
|
|
|
|
|
2018-08-15 10:47:31 +08:00
|
|
|
|
public int ComboOffset { get; set; }
|
|
|
|
|
|
2019-09-26 15:55:08 +08:00
|
|
|
|
public Bindable<int> IndexInCurrentComboBindable { get; } = new Bindable<int>();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-09-26 15:55:08 +08:00
|
|
|
|
public int IndexInCurrentCombo
|
|
|
|
|
{
|
|
|
|
|
get => IndexInCurrentComboBindable.Value;
|
|
|
|
|
set => IndexInCurrentComboBindable.Value = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Bindable<int> ComboIndexBindable { get; } = new Bindable<int>();
|
|
|
|
|
|
|
|
|
|
public int ComboIndex
|
|
|
|
|
{
|
|
|
|
|
get => ComboIndexBindable.Value;
|
|
|
|
|
set => ComboIndexBindable.Value = value;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2018-09-13 23:01:33 +08:00
|
|
|
|
/// 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).
|
2018-05-21 09:58:46 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
public float DistanceToHyperDash { get; set; }
|
|
|
|
|
|
2019-09-26 15:55:08 +08:00
|
|
|
|
public Bindable<bool> LastInComboBindable { get; } = new Bindable<bool>();
|
|
|
|
|
|
2018-05-21 09:58:46 +08:00
|
|
|
|
/// <summary>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// The next fruit starts a new combo. Used for explodey.
|
|
|
|
|
/// </summary>
|
2019-09-26 15:55:08 +08:00
|
|
|
|
public virtual bool LastInCombo
|
|
|
|
|
{
|
|
|
|
|
get => LastInComboBindable.Value;
|
|
|
|
|
set => LastInComboBindable.Value = value;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public float Scale { get; set; } = 1;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether this fruit can initiate a hyperdash.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool HyperDash => HyperDashTarget != null;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The target fruit if we are to initiate a hyperdash.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public CatchHitObject HyperDashTarget;
|
|
|
|
|
|
|
|
|
|
protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, BeatmapDifficulty difficulty)
|
|
|
|
|
{
|
|
|
|
|
base.ApplyDefaultsToSelf(controlPointInfo, difficulty);
|
|
|
|
|
|
2019-06-28 16:34:04 +08:00
|
|
|
|
TimePreempt = (float)BeatmapDifficulty.DifficultyRange(difficulty.ApproachRate, 1800, 1200, 450);
|
|
|
|
|
|
2020-02-19 08:52:29 +08:00
|
|
|
|
Scale = (1.0f - 0.7f * (difficulty.CircleSize - 5) / 5) / 2;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2018-05-11 14:52:51 +08:00
|
|
|
|
|
2019-10-09 18:08:31 +08:00
|
|
|
|
protected override HitWindows CreateHitWindows() => HitWindows.Empty;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum FruitVisualRepresentation
|
|
|
|
|
{
|
|
|
|
|
Pear,
|
|
|
|
|
Grape,
|
|
|
|
|
Pineapple,
|
2020-02-19 13:31:43 +08:00
|
|
|
|
Raspberry,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Banana // banananananannaanana
|
|
|
|
|
}
|
|
|
|
|
}
|