2022-07-15 19:07:01 +08: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.
|
|
|
|
|
2022-07-05 14:41:40 +08:00
|
|
|
using System.Collections.Generic;
|
2022-07-14 16:29:23 +08:00
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
2022-07-05 14:41:40 +08:00
|
|
|
|
2022-07-15 19:07:01 +08:00
|
|
|
namespace osu.Game.Rulesets.Taiko.Difficulty.Preprocessing.Colour.Data
|
2022-07-05 14:41:40 +08:00
|
|
|
{
|
2022-07-14 16:29:23 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Encodes a list of <see cref="MonoEncoding"/>s.
|
|
|
|
/// <see cref="MonoEncoding"/>s with the same <see cref="MonoEncoding.RunLength"/> are grouped together.
|
|
|
|
/// </summary>
|
2022-07-05 14:41:40 +08:00
|
|
|
public class ColourEncoding
|
|
|
|
{
|
2022-07-14 16:29:23 +08:00
|
|
|
/// <summary>
|
|
|
|
/// <see cref="MonoEncoding"/>s that are grouped together within this <see cref="ColourEncoding"/>.
|
|
|
|
/// </summary>
|
2022-08-15 20:30:40 +08:00
|
|
|
public readonly List<MonoEncoding> Payload = new List<MonoEncoding>();
|
2022-07-05 14:41:40 +08:00
|
|
|
|
2022-07-22 18:20:35 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The parent <see cref="CoupledColourEncoding"/> that contains this <see cref="ColourEncoding"/>
|
|
|
|
/// </summary>
|
2022-07-21 19:15:22 +08:00
|
|
|
public CoupledColourEncoding? Parent;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Index of this encoding within it's parent encoding
|
|
|
|
/// </summary>
|
|
|
|
public int Index;
|
|
|
|
|
2022-07-14 16:29:23 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Determine if this <see cref="ColourEncoding"/> is a repetition of another <see cref="ColourEncoding"/>. This
|
|
|
|
/// is a strict comparison and is true if and only if the colour sequence is exactly the same.
|
|
|
|
/// </summary>
|
2022-07-15 19:07:01 +08:00
|
|
|
public bool IsRepetitionOf(ColourEncoding other)
|
2022-07-05 14:41:40 +08:00
|
|
|
{
|
2022-07-15 19:07:01 +08:00
|
|
|
return HasIdenticalMonoLength(other) &&
|
|
|
|
other.Payload.Count == Payload.Count &&
|
|
|
|
(other.Payload[0].EncodedData[0].BaseObject as Hit)?.Type ==
|
|
|
|
(Payload[0].EncodedData[0].BaseObject as Hit)?.Type;
|
2022-07-05 14:41:40 +08:00
|
|
|
}
|
|
|
|
|
2022-07-14 16:29:23 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Determine if this <see cref="ColourEncoding"/> has the same mono length of another <see cref="ColourEncoding"/>.
|
|
|
|
/// </summary>
|
2022-07-15 19:07:01 +08:00
|
|
|
public bool HasIdenticalMonoLength(ColourEncoding other)
|
2022-07-05 14:41:40 +08:00
|
|
|
{
|
|
|
|
return other.Payload[0].RunLength == Payload[0].RunLength;
|
|
|
|
}
|
|
|
|
}
|
2022-07-15 19:07:01 +08:00
|
|
|
}
|