2017-02-07 04:59:30 +00:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-02 09:27:38 +00:00
|
|
|
|
|
2017-07-26 04:22:46 +00:00
|
|
|
|
using osu.Game.Beatmaps;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2016-11-14 09:03:20 +00:00
|
|
|
|
using OpenTK;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Osu.Objects.Drawables;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2017-03-13 10:15:25 +00:00
|
|
|
|
using OpenTK.Graphics;
|
2017-05-23 04:55:18 +00:00
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2016-09-02 09:27:38 +00:00
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects
|
2016-09-02 09:27:38 +00:00
|
|
|
|
{
|
2017-03-14 08:01:46 +00:00
|
|
|
|
public abstract class OsuHitObject : HitObject, IHasCombo, IHasPosition
|
2016-09-02 09:27:38 +00:00
|
|
|
|
{
|
2017-03-06 03:58:14 +00:00
|
|
|
|
public const double OBJECT_RADIUS = 64;
|
|
|
|
|
|
2017-03-06 14:26:57 +00:00
|
|
|
|
private const double hittable_range = 300;
|
|
|
|
|
private const double hit_window_50 = 150;
|
|
|
|
|
private const double hit_window_100 = 80;
|
|
|
|
|
private const double hit_window_300 = 30;
|
|
|
|
|
|
2016-10-07 20:35:14 +00:00
|
|
|
|
public Vector2 Position { get; set; }
|
2017-04-17 08:23:11 +00:00
|
|
|
|
public float X => Position.X;
|
|
|
|
|
public float Y => Position.Y;
|
2016-10-07 20:35:14 +00:00
|
|
|
|
|
2017-02-09 07:29:21 +00:00
|
|
|
|
public Vector2 StackedPosition => Position + StackOffset;
|
2016-12-11 09:11:22 +00:00
|
|
|
|
|
2016-12-06 12:14:38 +00:00
|
|
|
|
public virtual Vector2 EndPosition => Position;
|
|
|
|
|
|
2017-02-09 07:29:21 +00:00
|
|
|
|
public Vector2 StackedEndPosition => EndPosition + StackOffset;
|
|
|
|
|
|
|
|
|
|
public virtual int StackHeight { get; set; }
|
|
|
|
|
|
2017-02-09 05:56:39 +00:00
|
|
|
|
public Vector2 StackOffset => new Vector2(StackHeight * Scale * -6.4f);
|
|
|
|
|
|
2017-03-06 14:26:57 +00:00
|
|
|
|
public double Radius => OBJECT_RADIUS * Scale;
|
|
|
|
|
|
2017-02-09 07:29:21 +00:00
|
|
|
|
public float Scale { get; set; } = 1;
|
|
|
|
|
|
2017-03-23 08:15:39 +00:00
|
|
|
|
public Color4 ComboColour { get; set; } = Color4.Gray;
|
2017-03-14 08:01:46 +00:00
|
|
|
|
public virtual bool NewCombo { get; set; }
|
2017-03-13 10:15:25 +00:00
|
|
|
|
public int ComboIndex { get; set; }
|
|
|
|
|
|
2017-03-06 03:58:14 +00:00
|
|
|
|
public double HitWindowFor(OsuScoreResult result)
|
|
|
|
|
{
|
|
|
|
|
switch (result)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
return 300;
|
|
|
|
|
case OsuScoreResult.Hit50:
|
|
|
|
|
return 150;
|
|
|
|
|
case OsuScoreResult.Hit100:
|
|
|
|
|
return 80;
|
|
|
|
|
case OsuScoreResult.Hit300:
|
|
|
|
|
return 30;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-06 04:59:11 +00:00
|
|
|
|
public OsuScoreResult ScoreResultForOffset(double offset)
|
|
|
|
|
{
|
|
|
|
|
if (offset < HitWindowFor(OsuScoreResult.Hit300))
|
|
|
|
|
return OsuScoreResult.Hit300;
|
|
|
|
|
if (offset < HitWindowFor(OsuScoreResult.Hit100))
|
|
|
|
|
return OsuScoreResult.Hit100;
|
|
|
|
|
if (offset < HitWindowFor(OsuScoreResult.Hit50))
|
|
|
|
|
return OsuScoreResult.Hit50;
|
|
|
|
|
return OsuScoreResult.Miss;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-23 04:55:18 +00:00
|
|
|
|
public override void ApplyDefaults(ControlPointInfo controlPointInfo, BeatmapDifficulty difficulty)
|
2016-12-11 09:11:22 +00:00
|
|
|
|
{
|
2017-05-23 04:55:18 +00:00
|
|
|
|
base.ApplyDefaults(controlPointInfo, difficulty);
|
2017-03-16 07:55:08 +00:00
|
|
|
|
|
2017-03-16 08:24:41 +00:00
|
|
|
|
Scale = (1.0f - 0.7f * (difficulty.CircleSize - 5) / 5) / 2;
|
2016-12-11 09:11:22 +00:00
|
|
|
|
}
|
2017-02-14 00:40:26 +00:00
|
|
|
|
}
|
2016-09-02 09:27:38 +00:00
|
|
|
|
}
|