2018-01-05 20:21:19 +09:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 13:59:30 +09:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-02 18:27:38 +09:00
|
|
|
|
|
2017-11-24 14:49:38 +09:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2017-04-18 16:05:58 +09:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2017-09-19 21:40:38 +09:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2017-09-15 20:54:34 +09:00
|
|
|
|
using OpenTK.Graphics;
|
2016-11-14 18:54:24 +09:00
|
|
|
|
|
2017-04-18 16:05:58 +09:00
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects
|
2016-09-02 18:27:38 +09:00
|
|
|
|
{
|
2017-11-28 18:37:41 +09:00
|
|
|
|
public abstract class CatchHitObject : HitObject, IHasXPosition, IHasCombo
|
2016-09-02 18:27:38 +09:00
|
|
|
|
{
|
2017-11-28 18:37:41 +09:00
|
|
|
|
public const double OBJECT_RADIUS = 44;
|
|
|
|
|
|
2017-09-19 21:40:38 +09:00
|
|
|
|
public float X { get; set; }
|
2017-09-15 20:54:34 +09:00
|
|
|
|
|
2018-01-03 20:52:01 +09:00
|
|
|
|
public Color4 ComboColour { get; set; }
|
2018-01-03 16:31:57 +09:00
|
|
|
|
|
|
|
|
|
public int IndexInBeatmap { get; set; }
|
|
|
|
|
|
|
|
|
|
public virtual FruitVisualRepresentation VisualRepresentation => (FruitVisualRepresentation)(IndexInBeatmap % 4);
|
2017-09-15 20:54:34 +09:00
|
|
|
|
|
|
|
|
|
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 14:49:38 +09:00
|
|
|
|
|
|
|
|
|
public float Scale { get; set; } = 1;
|
|
|
|
|
|
2017-12-01 19:24:48 +09:00
|
|
|
|
/// <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;
|
2017-12-01 15:08:12 +09:00
|
|
|
|
|
2017-12-22 21:42:54 +09:00
|
|
|
|
protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, BeatmapDifficulty difficulty)
|
2017-11-24 14:49:38 +09:00
|
|
|
|
{
|
2017-12-22 21:42:54 +09:00
|
|
|
|
base.ApplyDefaultsToSelf(controlPointInfo, difficulty);
|
2017-11-24 14:49:38 +09:00
|
|
|
|
|
|
|
|
|
Scale = 1.0f - 0.7f * (difficulty.CircleSize - 5) / 5;
|
|
|
|
|
}
|
2016-09-02 18:27:38 +09:00
|
|
|
|
}
|
2018-01-03 16:31:57 +09:00
|
|
|
|
|
|
|
|
|
public enum FruitVisualRepresentation
|
|
|
|
|
{
|
2018-01-04 18:20:23 +09:00
|
|
|
|
Pear,
|
2018-01-03 16:31:57 +09:00
|
|
|
|
Grape,
|
2018-01-04 18:20:23 +09:00
|
|
|
|
Raspberry,
|
2018-01-03 18:26:54 +09:00
|
|
|
|
Pineapple,
|
2018-01-03 16:31:57 +09:00
|
|
|
|
Banana // banananananannaanana
|
|
|
|
|
}
|
2016-09-02 18:27:38 +09:00
|
|
|
|
}
|