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
|
|
|
|
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2019-08-01 04:33:00 +00:00
|
|
|
|
using osu.Game.Rulesets.Catch.Beatmaps;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2019-09-06 06:24:00 +00:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects
|
|
|
|
|
{
|
|
|
|
|
public abstract class CatchHitObject : HitObject, IHasXPosition, IHasComboInformation
|
|
|
|
|
{
|
|
|
|
|
public const double OBJECT_RADIUS = 44;
|
|
|
|
|
|
2019-08-01 04:33:00 +00: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 09:19:50 +00:00
|
|
|
|
|
2019-06-28 08:34:04 +00:00
|
|
|
|
public double TimePreempt = 1000;
|
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
public int IndexInBeatmap { get; set; }
|
|
|
|
|
|
2018-09-13 19:52:15 +00:00
|
|
|
|
public virtual FruitVisualRepresentation VisualRepresentation => (FruitVisualRepresentation)(ComboIndex % 4);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
public virtual bool NewCombo { get; set; }
|
|
|
|
|
|
2018-08-15 02:47:31 +00:00
|
|
|
|
public int ComboOffset { get; set; }
|
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
public int IndexInCurrentCombo { get; set; }
|
|
|
|
|
|
|
|
|
|
public int ComboIndex { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2018-09-13 15:01:33 +00: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 01:58:46 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
public float DistanceToHyperDash { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2018-04-13 09:19:50 +00:00
|
|
|
|
/// The next fruit starts a new combo. Used for explodey.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public virtual bool LastInCombo { get; set; }
|
|
|
|
|
|
|
|
|
|
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 08:34:04 +00:00
|
|
|
|
TimePreempt = (float)BeatmapDifficulty.DifficultyRange(difficulty.ApproachRate, 1800, 1200, 450);
|
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
Scale = 1.0f - 0.7f * (difficulty.CircleSize - 5) / 5;
|
|
|
|
|
}
|
2018-05-11 06:52:51 +00:00
|
|
|
|
|
|
|
|
|
protected override HitWindows CreateHitWindows() => null;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum FruitVisualRepresentation
|
|
|
|
|
{
|
|
|
|
|
Pear,
|
|
|
|
|
Grape,
|
|
|
|
|
Raspberry,
|
|
|
|
|
Pineapple,
|
|
|
|
|
Banana // banananananannaanana
|
|
|
|
|
}
|
|
|
|
|
}
|