/************************************************************************* * ModernUO * * Copyright 2019-2023 - ModernUO Development Team * * Email: hi@modernuo.com * * File: Point3D.cs * * * * This program is free software: you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation, either version 3 of the License, or * * (at your option) any later version. * * * * You should have received a copy of the GNU General Public License * * along with this program. If not, see . * *************************************************************************/ using System; using System.Runtime.CompilerServices; namespace Server; public struct Point3D : IPoint3D, IComparable, IComparable, IEquatable, IEquatable, IEquatable, ISpanFormattable, ISpanParsable { internal int m_X; internal int m_Y; internal int m_Z; public static readonly Point3D Zero = new(0, 0, 0); [CommandProperty(AccessLevel.Counselor)] public int X { get => m_X; set => m_X = value; } [CommandProperty(AccessLevel.Counselor)] public int Y { get => m_Y; set => m_Y = value; } [CommandProperty(AccessLevel.Counselor)] public int Z { get => m_Z; set => m_Z = value; } [MethodImpl(MethodImplOptions.AggressiveInlining)] public Point3D(IPoint3D p) : this(p.X, p.Y, p.Z) { } [MethodImpl(MethodImplOptions.AggressiveInlining)] public Point3D(Point3D p) : this(p.X, p.Y, p.Z) { } [MethodImpl(MethodImplOptions.AggressiveInlining)] public Point3D(Point2D p, int z) : this(p.X, p.Y, z) { } public Point3D(int x, int y, int z) { m_X = x; m_Y = y; m_Z = z; } public bool Equals(Point3D other) => m_X == other.m_X && m_Y == other.m_Y && m_Z == other.m_Z; public bool Equals(IPoint3D other) => m_X == other?.X && m_Y == other.Y && m_Z == other.Z; public override bool Equals(object obj) => obj is Point3D other && Equals(other); public override int GetHashCode() => HashCode.Combine(m_X, m_Y, m_Z); public static bool operator ==(Point3D l, Point3D r) => l.m_X == r.m_X && l.m_Y == r.m_Y && l.m_Z == r.m_Z; public static bool operator ==(Point3D l, IPoint3D r) => !ReferenceEquals(r, null) && l.m_X == r.X && l.m_Y == r.Y && l.m_Z == r.Z; public static bool operator !=(Point3D l, Point3D r) => l.m_X != r.m_X || l.m_Y != r.m_Y || l.m_Z != r.m_Z; public static bool operator !=(Point3D l, IPoint3D r) => !ReferenceEquals(r, null) && (l.m_X != r.X || l.m_Y != r.Y || l.m_Z != r.Z); public static bool operator >(Point3D l, Point3D r) => l.m_X > r.m_X && l.m_Y > r.m_Y && l.m_Z > r.m_Z; public static bool operator >(Point3D l, IPoint3D r) => !ReferenceEquals(r, null) && l.m_X > r.X && l.m_Y > r.Y && l.m_Z > r.Z; public static bool operator <(Point3D l, Point3D r) => l.m_X < r.m_X && l.m_Y < r.m_Y && l.m_Z > r.m_Z; public static bool operator <(Point3D l, IPoint3D r) => !ReferenceEquals(r, null) && l.m_X < r.X && l.m_Y < r.Y && l.m_Z > r.Z; public static bool operator >=(Point3D l, Point3D r) => l.m_X >= r.m_X && l.m_Y >= r.m_Y && l.m_Z > r.m_Z; public static bool operator >=(Point3D l, IPoint3D r) => !ReferenceEquals(r, null) && l.m_X >= r.X && l.m_Y >= r.Y && l.m_Z > r.Z; public static bool operator <=(Point3D l, Point3D r) => l.m_X <= r.m_X && l.m_Y <= r.m_Y && l.m_Z > r.m_Z; public static bool operator <=(Point3D l, IPoint3D r) => !ReferenceEquals(r, null) && l.m_X <= r.X && l.m_Y <= r.Y && l.m_Z > r.Z; public int CompareTo(Point3D other) { var xComparison = m_X.CompareTo(other.m_X); if (xComparison != 0) { return xComparison; } var yComparison = m_Y.CompareTo(other.m_Y); if (yComparison != 0) { return yComparison; } return m_Z.CompareTo(other.m_Z); } public int CompareTo(IPoint3D other) { var xComparison = m_X.CompareTo(other.X); if (xComparison != 0) { return xComparison; } var yComparison = m_Y.CompareTo(other.Y); if (yComparison != 0) { return yComparison; } return m_Z.CompareTo(other.Z); } public bool TryFormat(Span destination, out int charsWritten, ReadOnlySpan format, IFormatProvider provider) => destination.TryWrite(provider, $"({m_X}, {m_Y}, {m_Z})", out charsWritten); public override string ToString() { // Maximum number of characters that are needed to represent this: // 6 characters for (, , ) // Up to 11 characters to represent each integer const int maxLength = 6 + 11 * 3; Span span = stackalloc char[maxLength]; TryFormat(span, out var charsWritten, null, null); return span[..charsWritten].ToString(); } public string ToString(string format, IFormatProvider formatProvider) { // format and formatProvider are not doing anything right now, so use the // default ToString implementation. return ToString(); } [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Point3D Parse(string s) => Parse(s, null); [MethodImpl(MethodImplOptions.AggressiveInlining)] public static Point3D Parse(string s, IFormatProvider provider) => Parse(s.AsSpan(), provider); [MethodImpl(MethodImplOptions.AggressiveInlining)] public static bool TryParse(string s, IFormatProvider provider, out Point3D result) => TryParse(s.AsSpan(), provider, out result); public static Point3D Parse(ReadOnlySpan s, IFormatProvider provider) { s = s.Trim(); if (!s.StartsWithOrdinal('(') || !s.EndsWithOrdinal(')')) { throw new FormatException($"The input string '{s}' was not in a correct format."); } var firstComma = s.IndexOfOrdinal(','); if (firstComma == -1) { throw new FormatException($"The input string '{s}' was not in a correct format."); } var first = s.Slice(1, firstComma - 1).Trim(); if (!Utility.ToInt32(first, out var x)) { throw new FormatException($"The input string '{s}' was not in a correct format."); } var offset = firstComma + 1; var secondComma = s[offset..].IndexOfOrdinal(','); if (secondComma == -1) { throw new FormatException($"The input string '{s}' was not in a correct format."); } var second = s.Slice(firstComma + 1, secondComma).Trim(); if (!Utility.ToInt32(second, out var y)) { throw new FormatException($"The input string '{s}' was not in a correct format."); } offset += secondComma + 1; var third = s.Slice(offset, s.Length - offset - 1).Trim(); if (!Utility.ToInt32(third, out var z)) { throw new FormatException($"The input string '{s}' was not in a correct format."); } return new Point3D(x, y, z); } public static bool TryParse(ReadOnlySpan s, IFormatProvider provider, out Point3D result) { s = s.Trim(); if (!s.StartsWithOrdinal('(') || !s.EndsWithOrdinal(')')) { result = default; return false; } var firstComma = s.IndexOfOrdinal(','); if (firstComma == -1) { result = default; return false; } var first = s.Slice(1, firstComma - 1).Trim(); if (!Utility.ToInt32(first, out var x)) { result = default; return false; } var offset = firstComma + 1; var secondComma = s[offset..].IndexOfOrdinal(','); if (secondComma == -1) { result = default; return false; } var second = s.Slice(firstComma + 1, secondComma).Trim(); if (!Utility.ToInt32(second, out var y)) { result = default; return false; } offset += secondComma + 1; var third = s.Slice(offset, s.Length - offset - 1).Trim(); if (!Utility.ToInt32(third, out var z)) { result = default; return false; } result = new Point3D(x, y, z); return true; } }