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

124 lines
3.9 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.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
{
2018-11-07 15:21:52 +08:00
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;
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>();
2018-08-15 10:47:31 +08:00
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 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);
TimePreempt = (float)BeatmapDifficulty.DifficultyRange(difficulty.ApproachRate, 1800, 1200, 450);
TimeFadeIn = 400; // as per osu-stable
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
}
}