1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-12 23:58:28 +08:00

76 lines
2.3 KiB
C#
Raw Normal View History

2018-01-05 20:21:19 +09:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2018-03-09 23:12:34 +09:00
using System;
2017-07-26 13:22:46 +09:00
using osu.Game.Beatmaps;
2017-04-18 16:05:58 +09:00
using osu.Game.Rulesets.Objects;
2016-11-14 18:03:20 +09:00
using OpenTK;
2017-04-18 16:05:58 +09:00
using osu.Game.Rulesets.Objects.Types;
using osu.Game.Beatmaps.ControlPoints;
2018-03-29 22:38:44 +09:00
using osu.Game.Rulesets.Edit.Types;
2017-04-18 16:05:58 +09:00
namespace osu.Game.Rulesets.Osu.Objects
{
2018-03-29 22:38:44 +09:00
public abstract class OsuHitObject : HitObject, IHasComboInformation, IHasEditablePosition
{
public const double OBJECT_RADIUS = 64;
2018-03-09 23:12:34 +09:00
public event Action<Vector2> PositionChanged;
public double TimePreempt = 600;
public double TimeFadein = 400;
2017-12-31 11:15:14 -05:00
2018-03-09 23:12:34 +09:00
private Vector2 position;
public Vector2 Position
{
get => position;
set
{
if (position == value)
return;
position = value;
2018-03-10 01:23:53 +09:00
2018-03-09 23:12:34 +09:00
PositionChanged?.Invoke(value);
}
}
public float X => Position.X;
public float Y => Position.Y;
2016-10-07 16:35:14 -04:00
public Vector2 StackedPosition => Position + StackOffset;
public virtual Vector2 EndPosition => Position;
public Vector2 StackedEndPosition => EndPosition + StackOffset;
public virtual int StackHeight { get; set; }
2017-02-09 06:56:39 +01:00
public Vector2 StackOffset => new Vector2(StackHeight * Scale * -6.4f);
public double Radius => OBJECT_RADIUS * Scale;
public float Scale { get; set; } = 1;
2017-03-14 17:01:46 +09:00
public virtual bool NewCombo { get; set; }
2018-01-03 15:12:27 +09:00
public int IndexInCurrentCombo { get; set; }
public int ComboIndex { get; set; }
public bool LastInCombo { get; set; }
protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, BeatmapDifficulty difficulty)
{
base.ApplyDefaultsToSelf(controlPointInfo, difficulty);
2017-03-16 16:55:08 +09:00
2018-01-03 10:01:28 -05:00
TimePreempt = (float)BeatmapDifficulty.DifficultyRange(difficulty.ApproachRate, 1800, 1200, 450);
TimeFadein = (float)BeatmapDifficulty.DifficultyRange(difficulty.ApproachRate, 1200, 800, 300);
2017-12-31 11:15:14 -05:00
Scale = (1.0f - 0.7f * (difficulty.CircleSize - 5) / 5) / 2;
}
2018-03-09 23:12:34 +09:00
2018-03-10 00:02:13 +09:00
public virtual void OffsetPosition(Vector2 offset) => Position += offset;
}
}