2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 12:59:30 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-02 17:27:38 +08:00
|
|
|
|
|
2017-07-26 12:22:46 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2016-11-14 17:03:20 +08:00
|
|
|
|
using OpenTK;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2017-03-13 18:15:25 +08:00
|
|
|
|
using OpenTK.Graphics;
|
2017-05-23 12:55:18 +08:00
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2016-09-02 17:27:38 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects
|
2016-09-02 17:27:38 +08:00
|
|
|
|
{
|
2017-03-14 16:01:46 +08:00
|
|
|
|
public abstract class OsuHitObject : HitObject, IHasCombo, IHasPosition
|
2016-09-02 17:27:38 +08:00
|
|
|
|
{
|
2017-03-06 11:58:14 +08:00
|
|
|
|
public const double OBJECT_RADIUS = 64;
|
|
|
|
|
|
2018-01-24 16:44:50 +08:00
|
|
|
|
public double TimePreempt = 600;
|
|
|
|
|
public double TimeFadein = 400;
|
2018-01-01 00:15:14 +08:00
|
|
|
|
|
2016-10-08 04:35:14 +08:00
|
|
|
|
public Vector2 Position { get; set; }
|
2017-04-17 16:23:11 +08:00
|
|
|
|
public float X => Position.X;
|
|
|
|
|
public float Y => Position.Y;
|
2016-10-08 04:35:14 +08:00
|
|
|
|
|
2017-02-09 15:29:21 +08:00
|
|
|
|
public Vector2 StackedPosition => Position + StackOffset;
|
2016-12-11 17:11:22 +08:00
|
|
|
|
|
2016-12-06 20:14:38 +08:00
|
|
|
|
public virtual Vector2 EndPosition => Position;
|
|
|
|
|
|
2017-02-09 15:29:21 +08:00
|
|
|
|
public Vector2 StackedEndPosition => EndPosition + StackOffset;
|
|
|
|
|
|
|
|
|
|
public virtual int StackHeight { get; set; }
|
|
|
|
|
|
2017-02-09 13:56:39 +08:00
|
|
|
|
public Vector2 StackOffset => new Vector2(StackHeight * Scale * -6.4f);
|
|
|
|
|
|
2017-03-06 22:26:57 +08:00
|
|
|
|
public double Radius => OBJECT_RADIUS * Scale;
|
|
|
|
|
|
2017-02-09 15:29:21 +08:00
|
|
|
|
public float Scale { get; set; } = 1;
|
|
|
|
|
|
2017-03-23 16:15:39 +08:00
|
|
|
|
public Color4 ComboColour { get; set; } = Color4.Gray;
|
2017-03-14 16:01:46 +08:00
|
|
|
|
public virtual bool NewCombo { get; set; }
|
2018-01-03 14:12:27 +08:00
|
|
|
|
public int IndexInCurrentCombo { get; set; }
|
2017-03-13 18:15:25 +08:00
|
|
|
|
|
2017-12-22 20:42:54 +08:00
|
|
|
|
protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, BeatmapDifficulty difficulty)
|
2016-12-11 17:11:22 +08:00
|
|
|
|
{
|
2017-12-22 20:42:54 +08:00
|
|
|
|
base.ApplyDefaultsToSelf(controlPointInfo, difficulty);
|
2017-03-16 15:55:08 +08:00
|
|
|
|
|
2018-01-03 23:01:28 +08:00
|
|
|
|
TimePreempt = (float)BeatmapDifficulty.DifficultyRange(difficulty.ApproachRate, 1800, 1200, 450);
|
|
|
|
|
TimeFadein = (float)BeatmapDifficulty.DifficultyRange(difficulty.ApproachRate, 1200, 800, 300);
|
2018-01-01 00:15:14 +08:00
|
|
|
|
|
2017-03-16 16:24:41 +08:00
|
|
|
|
Scale = (1.0f - 0.7f * (difficulty.CircleSize - 5) / 5) / 2;
|
2016-12-11 17:11:22 +08:00
|
|
|
|
}
|
2017-02-14 08:40:26 +08:00
|
|
|
|
}
|
2016-09-02 17:27:38 +08:00
|
|
|
|
}
|