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
|
|
|
|
|
2020-12-09 23:26:35 +08:00
|
|
|
|
using System;
|
2019-10-21 15:15:41 +08:00
|
|
|
|
using System.Linq;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2019-09-06 14:24:00 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Scoring;
|
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects
|
|
|
|
|
{
|
2021-07-20 19:15:43 +08:00
|
|
|
|
public abstract class OsuHitObject : HitObject, IHasComboInformation, IHasPosition
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-10-17 15:36:47 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The radius of hit objects (ie. the radius of a <see cref="HitCircle"/>).
|
|
|
|
|
/// </summary>
|
2019-07-18 14:59:22 +08:00
|
|
|
|
public const float OBJECT_RADIUS = 64;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-10-17 15:36:47 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Scoring distance with a speed-adjusted beat length of 1 second (ie. the speed slider balls move through their track).
|
|
|
|
|
/// </summary>
|
|
|
|
|
internal const float BASE_SCORING_DISTANCE = 100;
|
|
|
|
|
|
2021-02-10 21:06:19 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Minimum preempt time at AR=10.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public const double PREEMPT_MIN = 450;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public double TimePreempt = 600;
|
2018-07-05 10:32:09 +08:00
|
|
|
|
public double TimeFadeIn = 400;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-11-09 12:58:46 +08:00
|
|
|
|
public readonly Bindable<Vector2> PositionBindable = new Bindable<Vector2>();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-10-25 17:16:25 +08:00
|
|
|
|
public virtual Vector2 Position
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-02-21 17:56:34 +08:00
|
|
|
|
get => PositionBindable.Value;
|
2018-11-09 12:58:46 +08:00
|
|
|
|
set => PositionBindable.Value = value;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public float X => Position.X;
|
|
|
|
|
public float Y => Position.Y;
|
|
|
|
|
|
|
|
|
|
public Vector2 StackedPosition => Position + StackOffset;
|
|
|
|
|
|
|
|
|
|
public virtual Vector2 EndPosition => Position;
|
|
|
|
|
|
|
|
|
|
public Vector2 StackedEndPosition => EndPosition + StackOffset;
|
|
|
|
|
|
2018-11-09 12:58:46 +08:00
|
|
|
|
public readonly Bindable<int> StackHeightBindable = new Bindable<int>();
|
2018-10-03 16:06:18 +08:00
|
|
|
|
|
|
|
|
|
public int StackHeight
|
|
|
|
|
{
|
2019-02-21 17:56:34 +08:00
|
|
|
|
get => StackHeightBindable.Value;
|
2018-11-09 12:58:46 +08:00
|
|
|
|
set => StackHeightBindable.Value = value;
|
2018-10-03 16:06:18 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public Vector2 StackOffset => new Vector2(StackHeight * Scale * -6.4f);
|
|
|
|
|
|
|
|
|
|
public double Radius => OBJECT_RADIUS * Scale;
|
|
|
|
|
|
2020-02-02 05:50:29 +08:00
|
|
|
|
public readonly Bindable<float> ScaleBindable = new BindableFloat(1);
|
2018-10-26 14:26:19 +08:00
|
|
|
|
|
|
|
|
|
public float Scale
|
|
|
|
|
{
|
2019-02-21 17:56:34 +08:00
|
|
|
|
get => ScaleBindable.Value;
|
2018-11-09 12:58:46 +08:00
|
|
|
|
set => ScaleBindable.Value = value;
|
2018-10-26 14:26:19 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public virtual bool NewCombo { get; set; }
|
|
|
|
|
|
2021-07-20 19:15:43 +08:00
|
|
|
|
public readonly Bindable<int> ComboOffsetBindable = new Bindable<int>();
|
|
|
|
|
|
|
|
|
|
public int ComboOffset
|
|
|
|
|
{
|
|
|
|
|
get => ComboOffsetBindable.Value;
|
|
|
|
|
set => ComboOffsetBindable.Value = value;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-26 15:55:08 +08:00
|
|
|
|
public Bindable<int> IndexInCurrentComboBindable { get; } = new Bindable<int>();
|
|
|
|
|
|
|
|
|
|
public virtual int IndexInCurrentCombo
|
|
|
|
|
{
|
|
|
|
|
get => IndexInCurrentComboBindable.Value;
|
|
|
|
|
set => IndexInCurrentComboBindable.Value = value;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-09-26 15:55:08 +08:00
|
|
|
|
public Bindable<int> ComboIndexBindable { get; } = new Bindable<int>();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-09-26 15:55:08 +08:00
|
|
|
|
public virtual int ComboIndex
|
|
|
|
|
{
|
|
|
|
|
get => ComboIndexBindable.Value;
|
|
|
|
|
set => ComboIndexBindable.Value = value;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-22 21:22:42 +08:00
|
|
|
|
public Bindable<int> ComboIndexWithOffsetsBindable { get; } = new Bindable<int>();
|
|
|
|
|
|
|
|
|
|
public int ComboIndexWithOffsets
|
|
|
|
|
{
|
|
|
|
|
get => ComboIndexWithOffsetsBindable.Value;
|
|
|
|
|
set => ComboIndexWithOffsetsBindable.Value = value;
|
|
|
|
|
}
|
2021-07-20 19:15:43 +08:00
|
|
|
|
|
2019-09-26 15:55:08 +08:00
|
|
|
|
public Bindable<bool> LastInComboBindable { get; } = new Bindable<bool>();
|
|
|
|
|
|
|
|
|
|
public bool LastInCombo
|
|
|
|
|
{
|
|
|
|
|
get => LastInComboBindable.Value;
|
|
|
|
|
set => LastInComboBindable.Value = value;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-10-21 15:15:41 +08:00
|
|
|
|
protected OsuHitObject()
|
|
|
|
|
{
|
|
|
|
|
StackHeightBindable.BindValueChanged(height =>
|
|
|
|
|
{
|
|
|
|
|
foreach (var nested in NestedHitObjects.OfType<OsuHitObject>())
|
|
|
|
|
nested.StackHeight = height.NewValue;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, BeatmapDifficulty difficulty)
|
|
|
|
|
{
|
|
|
|
|
base.ApplyDefaultsToSelf(controlPointInfo, difficulty);
|
|
|
|
|
|
2021-02-10 21:06:19 +08:00
|
|
|
|
TimePreempt = (float)BeatmapDifficulty.DifficultyRange(difficulty.ApproachRate, 1800, 1200, PREEMPT_MIN);
|
|
|
|
|
|
|
|
|
|
// Preempt time can go below 450ms. Normally, this is achieved via the DT mod which uniformly speeds up all animations game wide regardless of AR.
|
|
|
|
|
// This uniform speedup is hard to match 1:1, however we can at least make AR>10 (via mods) feel good by extending the upper linear function above.
|
|
|
|
|
// Note that this doesn't exactly match the AR>10 visuals as they're classically known, but it feels good.
|
|
|
|
|
// This adjustment is necessary for AR>10, otherwise TimePreempt can become smaller leading to hitcircles not fully fading in.
|
|
|
|
|
TimeFadeIn = 400 * Math.Min(1, TimePreempt / PREEMPT_MIN);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
Scale = (1.0f - 0.7f * (difficulty.CircleSize - 5) / 5) / 2;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-17 12:35:06 +08:00
|
|
|
|
protected override HitWindows CreateHitWindows() => new OsuHitWindows();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|