This repository has been archived on 2025-10-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RDTKEditor/RhythmBaseCore/Components/RDRotatedRect.cs
T

128 lines
4.5 KiB
C#

using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
namespace RhythmBase.Components
{
/// <summary>
/// Represents a rotated rectangle with non-integer coordinates.
/// </summary>
[DebuggerDisplay($"{{{nameof(GetDebuggerDisplay)}(),nq}}")]
public struct RDRotatedRect(RDPoint location, RDSize size, RDPoint? pivot, float? angle = 0) : IEquatable<RDRotatedRect>
{
/// <summary>
/// Gets or sets the location of the rectangle.
/// </summary>
public RDPoint? Location { get; set; } = location;
/// <summary>
/// Gets or sets the size of the rectangle.
/// </summary>
public RDSize? Size { get; set; } = size;
/// <summary>
/// Gets or sets the pivot point of the rotation.
/// </summary>
public RDPoint? Pivot { get; set; } = pivot;
/// <summary>
/// Gets or sets the angle of rotation in degrees.
/// </summary>
public float? Angle { get; set; } = angle;
/// <summary>
/// Gets the rectangle without rotation.
/// </summary>
public readonly RDRect WithoutRotate => new(Location - (RDSize?)Pivot, Size);
/// <summary>
/// IItializes a new instance of the <see cref="RDRotatedRect"/> struct.
/// </summary>
/// <param name="rect">The rectangle.</param>
/// <param name="pivot">The pivot point.</param>
/// <param name="angle">The angle of rotation.</param>
public RDRotatedRect(RDRect rect, RDPoint? pivot, float angle) : this(rect.Location, rect.Size, pivot, angle) { }
/// <summary>
/// IItializes a new instance of the <see cref="RDRotatedRect"/> struct.
/// </summary>
/// <param name="rect">The rectangle.</param>
public RDRotatedRect(RDRect rect) : this(rect.Location, rect.Size, default, 0f) { }
/// <summary>
/// Inflates the specified rectangle by the specified size.
/// </summary>
/// <param name="rect">The rectangle to inflate.</param>
/// <param name="size">The size to inflate by.</param>
/// <returns>The inflated rectangle.</returns>
public static RDRotatedRect Inflate(RDRotatedRect rect, RDSize size)
{
RDRotatedRect result = rect;
result.Inflate(size);
return result;
}
/// <summary>
/// Inflates the specified rectangle by the specified width and height.
/// </summary>
/// <param name="rect">The rectangle to inflate.</param>
/// <param name="x">The width to inflate by.</param>
/// <param name="y">The height to inflate by.</param>
/// <returns>The inflated rectangle.</returns>
public static RDRotatedRect Inflate(RDRotatedRect rect, int x, int y)
{
RDRotatedRect result = rect;
result.Inflate(x, y);
return result;
}
/// <summary>
/// Offsets the rectangle by the specified x and y values.
/// </summary>
/// <param name="x">The x value to offset by.</param>
/// <param name="y">The y value to offset by.</param>
public void Offset(float? x, float? y) => Location += new RDSize(x, y);
/// <summary>
/// Offsets the rectangle by the specified point.
/// </summary>
/// <param name="p">The point to offset by.</param>
public void Offset(RDPoint p) => Offset(p.X, p.Y);
/// <summary>
/// Inflates the rectangle by the specified size.
/// </summary>
/// <param name="size">The size to inflate by.</param>
public void Inflate(RDSize size)
{
Size += new RDSize(size.Width * 2, size.Height * 2);
Pivot -= new RDSize(size.Width, size.Height);
}
/// <summary>
/// Inflates the rectangle by the specified width and height.
/// </summary>
/// <param name="width">The width to inflate by.</param>
/// <param name="height">The height to inflate by.</param>
public void Inflate(float? width, float? height)
{
Size += new RDSize(width * 2, height * 2);
Pivot -= new RDSize(width, height);
}
/// <inheritdoc/>
public static bool operator ==(RDRotatedRect rect1, RDRotatedRect rect2) => rect1.Equals(rect2);
/// <inheritdoc/>
public static bool operator !=(RDRotatedRect rect1, RDRotatedRect rect2) => !rect1.Equals(rect2);
/// <inheritdoc/>
public override readonly bool Equals([NotNullWhen(true)] object? obj) => obj is RDRotatedRect e && Equals(e);
/// <inheritdoc/>
public override readonly int GetHashCode() => HashCode.Combine(Location, Size, Pivot, Angle);
/// <inheritdoc/>
public override readonly string ToString() => $"{{Location=[{Location}],Size=[{Size}],Pivot[{Pivot}],Angle={Angle}}}";
/// <inheritdoc/>
public readonly bool Equals(RDRotatedRect other) =>
Location == other.Location &&
Size == other.Size && Pivot
== other.Pivot &&
Angle == other.Angle;
private readonly string GetDebuggerDisplay() => ToString();
}
}