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

80 lines
2.5 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
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;
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
{
public const double OBJECT_RADIUS = 64;
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;
2018-11-09 12:58:46 +08:00
public readonly Bindable<float> ScaleBindable = new Bindable<float>(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; }
2018-08-15 10:47:31 +08:00
public int ComboOffset { get; set; }
2018-06-29 00:34:47 +08:00
public virtual int IndexInCurrentCombo { get; set; }
2018-04-13 17:19:50 +08:00
2018-06-29 00:34:47 +08:00
public virtual int ComboIndex { get; set; }
2018-04-13 17:19:50 +08:00
public bool LastInCombo { get; set; }
protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, BeatmapDifficulty difficulty)
{
base.ApplyDefaultsToSelf(controlPointInfo, difficulty);
TimePreempt = (float)BeatmapDifficulty.DifficultyRange(difficulty.ApproachRate, 1800, 1200, 450);
TimeFadeIn = (float)BeatmapDifficulty.DifficultyRange(difficulty.ApproachRate, 1200, 800, 300);
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
}
}