osu/osu.Game.Rulesets.Osu/Objects/OsuHitObject.cs

105 lines
2.9 KiB
C#
Raw Normal View History

2018-04-13 09:19:50 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Objects;
using OpenTK;
using osu.Game.Rulesets.Objects.Types;
using osu.Game.Beatmaps.ControlPoints;
namespace osu.Game.Rulesets.Osu.Objects
{
2018-11-07 07:21:52 +00:00
public abstract class OsuHitObject : HitObject, IHasComboInformation, IHasPosition
2018-04-13 09:19:50 +00:00
{
public const double OBJECT_RADIUS = 64;
public event Action<Vector2> PositionChanged;
public event Action<int> StackHeightChanged;
public event Action<float> ScaleChanged;
2018-04-13 09:19:50 +00:00
public double TimePreempt = 600;
public double TimeFadeIn = 400;
2018-04-13 09:19:50 +00:00
private Vector2 position;
public virtual Vector2 Position
2018-04-13 09:19:50 +00:00
{
get => position;
set
{
if (position == value)
return;
position = value;
PositionChanged?.Invoke(value);
}
}
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;
private int stackHeight;
public int StackHeight
{
get => stackHeight;
set
{
if (stackHeight == value)
return;
stackHeight = value;
StackHeightChanged?.Invoke(value);
}
}
2018-04-13 09:19:50 +00:00
public Vector2 StackOffset => new Vector2(StackHeight * Scale * -6.4f);
public double Radius => OBJECT_RADIUS * Scale;
private float scale = 1;
public float Scale
{
get => scale;
set
{
if (scale == value)
return;
scale = value;
ScaleChanged?.Invoke(value);
}
}
2018-04-13 09:19:50 +00:00
public virtual bool NewCombo { get; set; }
2018-08-15 02:47:31 +00:00
public int ComboOffset { get; set; }
2018-06-28 16:34:47 +00:00
public virtual int IndexInCurrentCombo { get; set; }
2018-04-13 09:19:50 +00:00
2018-06-28 16:34:47 +00:00
public virtual int ComboIndex { get; set; }
2018-04-13 09:19:50 +00: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 09:19:50 +00:00
Scale = (1.0f - 0.7f * (difficulty.CircleSize - 5) / 5) / 2;
}
protected override HitWindows CreateHitWindows() => new OsuHitWindows();
2018-04-13 09:19:50 +00:00
}
}