1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 21:27:24 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Objects/OsuHitObject.cs

137 lines
4.7 KiB
C#
Raw Normal View History

// 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
using System;
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
{
public abstract class OsuHitObject : HitObject, IHasComboInformation, IHasPosition
2018-04-13 17:19:50 +08:00
{
/// <summary>
/// The radius of hit objects (ie. the radius of a <see cref="HitCircle"/>).
/// </summary>
public const float OBJECT_RADIUS = 64;
2018-04-13 17:19:50 +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;
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
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>();
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-04-13 17:19:50 +08:00
public Vector2 StackOffset => new Vector2(StackHeight * Scale * -6.4f);
public double Radius => OBJECT_RADIUS * Scale;
public readonly Bindable<float> ScaleBindable = new BindableFloat(1);
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-04-13 17:19:50 +08:00
public virtual bool NewCombo { get; set; }
public readonly Bindable<int> ComboOffsetBindable = new Bindable<int>();
public int ComboOffset
{
get => ComboOffsetBindable.Value;
set => ComboOffsetBindable.Value = value;
}
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
public Bindable<int> ComboIndexBindable { get; } = new Bindable<int>();
2018-04-13 17:19:50 +08:00
public virtual int ComboIndex
{
get => ComboIndexBindable.Value;
set => ComboIndexBindable.Value = value;
}
public int ComboIndexWithOffsets { get; set; }
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
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;
}
protected override HitWindows CreateHitWindows() => new OsuHitWindows();
2018-04-13 17:19:50 +08:00
}
}