2017-03-14 11:58:31 +08:00
|
|
|
|
// Copyright (c) 2007-2017 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-11-24 13:49:38 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2017-09-19 20:40:38 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2017-09-15 19:54:34 +08:00
|
|
|
|
using OpenTK.Graphics;
|
2016-11-14 17:54:24 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects
|
2016-09-02 17:27:38 +08:00
|
|
|
|
{
|
2017-11-28 17:37:41 +08:00
|
|
|
|
public abstract class CatchHitObject : HitObject, IHasXPosition, IHasCombo
|
2016-09-02 17:27:38 +08:00
|
|
|
|
{
|
2017-11-28 17:37:41 +08:00
|
|
|
|
public const double OBJECT_RADIUS = 44;
|
|
|
|
|
|
2017-09-19 20:40:38 +08:00
|
|
|
|
public float X { get; set; }
|
2017-09-15 19:54:34 +08:00
|
|
|
|
|
|
|
|
|
public Color4 ComboColour { get; set; } = Color4.Gray;
|
|
|
|
|
public int ComboIndex { get; set; }
|
|
|
|
|
|
|
|
|
|
public virtual bool NewCombo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The next fruit starts a new combo. Used for explodey.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public virtual bool LastInCombo { get; set; }
|
2017-11-24 13:49:38 +08:00
|
|
|
|
|
|
|
|
|
public float Scale { get; set; } = 1;
|
|
|
|
|
|
|
|
|
|
public override void ApplyDefaults(ControlPointInfo controlPointInfo, BeatmapDifficulty difficulty)
|
|
|
|
|
{
|
|
|
|
|
base.ApplyDefaults(controlPointInfo, difficulty);
|
|
|
|
|
|
|
|
|
|
Scale = 1.0f - 0.7f * (difficulty.CircleSize - 5) / 5;
|
|
|
|
|
}
|
2016-09-02 17:27:38 +08:00
|
|
|
|
}
|
|
|
|
|
}
|