2019-01-24 08:43:03 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-09-18 15:29:08 +00:00
|
|
|
|
using System;
|
2021-06-22 08:33:32 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2019-09-26 07:55:08 +00:00
|
|
|
|
using osu.Framework.Bindables;
|
2017-11-24 05:49:38 +00:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2020-07-01 15:21:45 +00:00
|
|
|
|
using osu.Game.Rulesets.Catch.UI;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2023-10-20 09:57:14 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects.Legacy;
|
2017-09-19 12:40:38 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2019-09-06 06:24:00 +00:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2021-07-14 05:38:38 +00:00
|
|
|
|
using osuTK;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects
|
2016-09-02 09:27:38 +00:00
|
|
|
|
{
|
2021-07-14 05:38:38 +00:00
|
|
|
|
public abstract class CatchHitObject : HitObject, IHasPosition, IHasComboInformation
|
2016-09-02 09:27:38 +00:00
|
|
|
|
{
|
2020-02-17 10:16:40 +00:00
|
|
|
|
public const float OBJECT_RADIUS = 64;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-07-19 01:35:07 +00:00
|
|
|
|
private HitObjectProperty<float> originalX;
|
|
|
|
|
|
|
|
|
|
public Bindable<float> OriginalXBindable => originalX.Bindable;
|
2020-11-27 01:31:18 +00:00
|
|
|
|
|
2020-12-14 02:15:49 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The horizontal position of the hit object between 0 and <see cref="CatchPlayfield.WIDTH"/>.
|
|
|
|
|
/// </summary>
|
2021-06-22 08:33:32 +00:00
|
|
|
|
/// <remarks>
|
|
|
|
|
/// Only setter is exposed.
|
|
|
|
|
/// Use <see cref="OriginalX"/> or <see cref="EffectiveX"/> to get the horizontal position.
|
|
|
|
|
/// </remarks>
|
|
|
|
|
[JsonIgnore]
|
2020-12-14 04:39:07 +00:00
|
|
|
|
public float X
|
2020-12-09 08:46:36 +00:00
|
|
|
|
{
|
2022-09-19 15:26:04 +00:00
|
|
|
|
set => originalX.Value = value;
|
2020-12-09 08:46:36 +00:00
|
|
|
|
}
|
2019-08-01 04:33:00 +00:00
|
|
|
|
|
2022-07-19 01:35:07 +00:00
|
|
|
|
private HitObjectProperty<float> xOffset;
|
|
|
|
|
|
|
|
|
|
public Bindable<float> XOffsetBindable => xOffset.Bindable;
|
2020-12-14 02:25:09 +00:00
|
|
|
|
|
2020-12-14 04:18:14 +00:00
|
|
|
|
/// <summary>
|
2020-12-14 04:39:07 +00:00
|
|
|
|
/// A random offset applied to the horizontal position, set by the beatmap processing.
|
2020-12-14 04:18:14 +00:00
|
|
|
|
/// </summary>
|
2020-12-14 04:39:07 +00:00
|
|
|
|
public float XOffset
|
2020-12-14 04:18:14 +00:00
|
|
|
|
{
|
2022-07-19 01:35:07 +00:00
|
|
|
|
get => xOffset.Value;
|
|
|
|
|
set => xOffset.Value = value;
|
2020-12-14 04:18:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-14 02:15:49 +00:00
|
|
|
|
/// <summary>
|
2020-12-14 04:39:07 +00:00
|
|
|
|
/// The horizontal position of the hit object between 0 and <see cref="CatchPlayfield.WIDTH"/>.
|
2020-12-14 02:15:49 +00:00
|
|
|
|
/// </summary>
|
2020-12-14 04:39:07 +00:00
|
|
|
|
/// <remarks>
|
|
|
|
|
/// This value is the original <see cref="X"/> value specified in the beatmap, not affected by the beatmap processing.
|
|
|
|
|
/// Use <see cref="EffectiveX"/> for a gameplay.
|
|
|
|
|
/// </remarks>
|
2021-06-22 08:33:32 +00:00
|
|
|
|
public float OriginalX
|
|
|
|
|
{
|
2022-07-19 01:35:07 +00:00
|
|
|
|
get => originalX.Value;
|
|
|
|
|
set => originalX.Value = value;
|
2021-06-22 08:33:32 +00:00
|
|
|
|
}
|
2020-11-27 01:31:18 +00:00
|
|
|
|
|
2019-08-01 04:33:00 +00:00
|
|
|
|
/// <summary>
|
2020-12-14 04:39:07 +00:00
|
|
|
|
/// The effective horizontal position of the hit object between 0 and <see cref="CatchPlayfield.WIDTH"/>.
|
2019-08-01 04:33:00 +00:00
|
|
|
|
/// </summary>
|
2020-12-14 04:39:07 +00:00
|
|
|
|
/// <remarks>
|
|
|
|
|
/// This value is the original <see cref="X"/> value plus the offset applied by the beatmap processing.
|
|
|
|
|
/// Use <see cref="OriginalX"/> if a value not affected by the offset is desired.
|
|
|
|
|
/// </remarks>
|
2022-09-19 15:26:04 +00:00
|
|
|
|
public float EffectiveX => Math.Clamp(OriginalX + XOffset, 0, CatchPlayfield.WIDTH);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-06-22 08:33:32 +00:00
|
|
|
|
public double TimePreempt { get; set; } = 1000;
|
2019-06-28 08:34:04 +00:00
|
|
|
|
|
2022-07-19 01:35:07 +00:00
|
|
|
|
private HitObjectProperty<int> indexInBeatmap;
|
|
|
|
|
|
|
|
|
|
public Bindable<int> IndexInBeatmapBindable => indexInBeatmap.Bindable;
|
2020-11-27 01:31:18 +00:00
|
|
|
|
|
|
|
|
|
public int IndexInBeatmap
|
|
|
|
|
{
|
2022-07-19 01:35:07 +00:00
|
|
|
|
get => indexInBeatmap.Value;
|
|
|
|
|
set => indexInBeatmap.Value = value;
|
2020-11-27 01:31:18 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-09-15 11:54:34 +00:00
|
|
|
|
public virtual bool NewCombo { get; set; }
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-07-20 11:15:43 +00:00
|
|
|
|
public int ComboOffset { get; set; }
|
|
|
|
|
|
2022-07-19 01:35:07 +00:00
|
|
|
|
private HitObjectProperty<int> indexInCurrentCombo;
|
|
|
|
|
|
|
|
|
|
public Bindable<int> IndexInCurrentComboBindable => indexInCurrentCombo.Bindable;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-09-26 07:55:08 +00:00
|
|
|
|
public int IndexInCurrentCombo
|
|
|
|
|
{
|
2022-07-19 01:35:07 +00:00
|
|
|
|
get => indexInCurrentCombo.Value;
|
|
|
|
|
set => indexInCurrentCombo.Value = value;
|
2019-09-26 07:55:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-07-19 01:35:07 +00:00
|
|
|
|
private HitObjectProperty<int> comboIndex;
|
|
|
|
|
|
|
|
|
|
public Bindable<int> ComboIndexBindable => comboIndex.Bindable;
|
2019-09-26 07:55:08 +00:00
|
|
|
|
|
|
|
|
|
public int ComboIndex
|
|
|
|
|
{
|
2022-07-19 01:35:07 +00:00
|
|
|
|
get => comboIndex.Value;
|
|
|
|
|
set => comboIndex.Value = value;
|
2019-09-26 07:55:08 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-07-19 01:35:07 +00:00
|
|
|
|
private HitObjectProperty<int> comboIndexWithOffsets;
|
|
|
|
|
|
|
|
|
|
public Bindable<int> ComboIndexWithOffsetsBindable => comboIndexWithOffsets.Bindable;
|
2021-07-22 13:22:42 +00:00
|
|
|
|
|
|
|
|
|
public int ComboIndexWithOffsets
|
|
|
|
|
{
|
2022-07-19 01:35:07 +00:00
|
|
|
|
get => comboIndexWithOffsets.Value;
|
|
|
|
|
set => comboIndexWithOffsets.Value = value;
|
2021-07-22 13:22:42 +00:00
|
|
|
|
}
|
2021-07-20 11:15:43 +00:00
|
|
|
|
|
2022-07-19 01:35:07 +00:00
|
|
|
|
private HitObjectProperty<bool> lastInCombo;
|
|
|
|
|
|
|
|
|
|
public Bindable<bool> LastInComboBindable => lastInCombo.Bindable;
|
2019-09-26 07:55:08 +00:00
|
|
|
|
|
2018-05-21 01:58:46 +00:00
|
|
|
|
/// <summary>
|
2017-09-15 11:54:34 +00:00
|
|
|
|
/// The next fruit starts a new combo. Used for explodey.
|
|
|
|
|
/// </summary>
|
2019-09-26 07:55:08 +00:00
|
|
|
|
public virtual bool LastInCombo
|
|
|
|
|
{
|
2022-07-19 01:35:07 +00:00
|
|
|
|
get => lastInCombo.Value;
|
|
|
|
|
set => lastInCombo.Value = value;
|
2019-09-26 07:55:08 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-07-19 03:57:31 +00:00
|
|
|
|
private HitObjectProperty<float> scale = new HitObjectProperty<float>(1);
|
2022-07-19 01:35:07 +00:00
|
|
|
|
|
|
|
|
|
public Bindable<float> ScaleBindable => scale.Bindable;
|
2020-11-27 01:31:18 +00:00
|
|
|
|
|
|
|
|
|
public float Scale
|
|
|
|
|
{
|
2022-07-19 01:35:07 +00:00
|
|
|
|
get => scale.Value;
|
|
|
|
|
set => scale.Value = value;
|
2020-11-27 01:31:18 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2020-12-02 08:12:30 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The seed value used for visual randomness such as fruit rotation.
|
2020-12-02 11:53:47 +00:00
|
|
|
|
/// The value is <see cref="HitObject.StartTime"/> truncated to an integer.
|
2020-12-02 08:12:30 +00:00
|
|
|
|
/// </summary>
|
2020-12-02 11:53:47 +00:00
|
|
|
|
public int RandomSeed => (int)StartTime;
|
2020-12-02 08:12:30 +00:00
|
|
|
|
|
2021-10-01 05:56:42 +00:00
|
|
|
|
protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, IBeatmapDifficultyInfo difficulty)
|
2017-11-24 05:49:38 +00:00
|
|
|
|
{
|
2017-12-22 12:42:54 +00:00
|
|
|
|
base.ApplyDefaultsToSelf(controlPointInfo, difficulty);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-10-01 05:56:42 +00:00
|
|
|
|
TimePreempt = (float)IBeatmapDifficultyInfo.DifficultyRange(difficulty.ApproachRate, 1800, 1200, 450);
|
2019-06-28 08:34:04 +00:00
|
|
|
|
|
2023-10-20 09:57:14 +00:00
|
|
|
|
Scale = LegacyRulesetExtensions.CalculateScaleFromCircleSize(difficulty.CircleSize);
|
2017-11-24 05:49:38 +00:00
|
|
|
|
}
|
2018-05-11 06:52:51 +00:00
|
|
|
|
|
2023-11-23 04:41:01 +00:00
|
|
|
|
public void UpdateComboInformation(IHasComboInformation? lastObj)
|
|
|
|
|
{
|
2023-11-24 01:25:23 +00:00
|
|
|
|
// Note that this implementation is shared with the osu! ruleset's implementation.
|
|
|
|
|
// If a change is made here, OsuHitObject.cs should also be updated.
|
2023-11-23 04:41:01 +00:00
|
|
|
|
ComboIndex = lastObj?.ComboIndex ?? 0;
|
|
|
|
|
ComboIndexWithOffsets = lastObj?.ComboIndexWithOffsets ?? 0;
|
|
|
|
|
IndexInCurrentCombo = (lastObj?.IndexInCurrentCombo + 1) ?? 0;
|
|
|
|
|
|
|
|
|
|
if (this is BananaShower)
|
|
|
|
|
{
|
|
|
|
|
// For the purpose of combo colours, spinners never start a new combo even if they are flagged as doing so.
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// At decode time, the first hitobject in the beatmap and the first hitobject after a banana shower are both enforced to be a new combo,
|
|
|
|
|
// but this isn't directly enforced by the editor so the extra checks against the last hitobject are duplicated here.
|
|
|
|
|
if (NewCombo || lastObj == null || lastObj is BananaShower)
|
|
|
|
|
{
|
|
|
|
|
IndexInCurrentCombo = 0;
|
|
|
|
|
ComboIndex++;
|
|
|
|
|
ComboIndexWithOffsets += ComboOffset + 1;
|
|
|
|
|
|
|
|
|
|
if (lastObj != null)
|
|
|
|
|
lastObj.LastInCombo = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-09 10:08:31 +00:00
|
|
|
|
protected override HitWindows CreateHitWindows() => HitWindows.Empty;
|
2021-07-14 05:38:38 +00:00
|
|
|
|
|
|
|
|
|
#region Hit object conversion
|
|
|
|
|
|
|
|
|
|
// The half of the height of the osu! playfield.
|
|
|
|
|
public const float DEFAULT_LEGACY_CONVERT_Y = 192;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The Y position of the hit object is not used in the normal osu!catch gameplay.
|
|
|
|
|
/// It is preserved to maximize the backward compatibility with the legacy editor, in which the mappers use the Y position to organize the patterns.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public float LegacyConvertedY { get; set; } = DEFAULT_LEGACY_CONVERT_Y;
|
|
|
|
|
|
|
|
|
|
float IHasXPosition.X => OriginalX;
|
|
|
|
|
|
|
|
|
|
float IHasYPosition.Y => LegacyConvertedY;
|
|
|
|
|
|
|
|
|
|
Vector2 IHasPosition.Position => new Vector2(OriginalX, LegacyConvertedY);
|
|
|
|
|
|
|
|
|
|
#endregion
|
2016-09-02 09:27:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|