osu/osu.Game.Rulesets.Catch/Objects/CatchHitObject.cs

61 lines
1.8 KiB
C#
Raw Normal View History

2018-01-05 11:21:19 +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
2017-11-24 05:49:38 +00:00
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
2017-04-18 07:05:58 +00:00
using osu.Game.Rulesets.Objects;
2017-09-19 12:40:38 +00:00
using osu.Game.Rulesets.Objects.Types;
2016-11-14 09:54:24 +00:00
2017-04-18 07:05:58 +00:00
namespace osu.Game.Rulesets.Catch.Objects
{
2018-03-22 03:35:17 +00:00
public abstract class CatchHitObject : HitObject, IHasXPosition, IHasComboInformation
{
public const double OBJECT_RADIUS = 44;
2017-09-19 12:40:38 +00:00
public float X { get; set; }
public int IndexInBeatmap { get; set; }
public virtual FruitVisualRepresentation VisualRepresentation => (FruitVisualRepresentation)(IndexInBeatmap % 4);
public virtual bool NewCombo { get; set; }
public int IndexInCurrentCombo { get; set; }
public int ComboIndex { get; set; }
/// <summary>
/// The next fruit starts a new combo. Used for explodey.
/// </summary>
public virtual bool LastInCombo { get; set; }
2017-11-24 05:49:38 +00:00
public float Scale { get; set; } = 1;
/// <summary>
/// Whether this fruit can initiate a hyperdash.
/// </summary>
public bool HyperDash => HyperDashTarget != null;
/// <summary>
/// The target fruit if we are to initiate a hyperdash.
/// </summary>
public CatchHitObject HyperDashTarget;
protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, BeatmapDifficulty difficulty)
2017-11-24 05:49:38 +00:00
{
base.ApplyDefaultsToSelf(controlPointInfo, difficulty);
2017-11-24 05:49:38 +00:00
Scale = 1.0f - 0.7f * (difficulty.CircleSize - 5) / 5;
}
}
public enum FruitVisualRepresentation
{
2018-01-04 09:20:23 +00:00
Pear,
Grape,
2018-01-04 09:20:23 +00:00
Raspberry,
2018-01-03 09:26:54 +00:00
Pineapple,
Banana // banananananannaanana
}
}