Files
OpenRA/OpenRA.Game/WDist.cs
2024-07-29 21:56:36 +02:00

156 lines
5.1 KiB
C#

#region Copyright & License Information
/*
* Copyright (c) The OpenRA Developers and Contributors
* This file is part of OpenRA, which is free software. It is made
* available to you 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. For more
* information, see COPYING.
*/
#endregion
using System;
using System.Linq;
using Eluant;
using Eluant.ObjectBinding;
using OpenRA.Scripting;
using OpenRA.Support;
namespace OpenRA
{
/// <summary>
/// 1d world distance - 1024 units = 1 cell.
/// </summary>
public readonly struct WDist : IComparable, IComparable<WDist>, IEquatable<WDist>,
IScriptBindable, ILuaAdditionBinding, ILuaSubtractionBinding, ILuaEqualityBinding, ILuaTableBinding
{
public readonly int Length;
public long LengthSquared => (long)Length * Length;
public WDist(int r) { Length = r; }
public static readonly WDist Zero = new(0);
public static readonly WDist MaxValue = new(int.MaxValue);
public static WDist FromCells(int cells) { return new WDist(1024 * cells); }
public static WDist operator +(WDist a, WDist b) { return new WDist(a.Length + b.Length); }
public static WDist operator -(WDist a, WDist b) { return new WDist(a.Length - b.Length); }
public static WDist operator -(WDist a) { return new WDist(-a.Length); }
public static WDist operator /(WDist a, int b) { return new WDist(a.Length / b); }
public static WDist operator *(WDist a, int b) { return new WDist(a.Length * b); }
public static WDist operator *(int a, WDist b) { return new WDist(a * b.Length); }
public static bool operator <(WDist a, WDist b) { return a.Length < b.Length; }
public static bool operator >(WDist a, WDist b) { return a.Length > b.Length; }
public static bool operator <=(WDist a, WDist b) { return a.Length <= b.Length; }
public static bool operator >=(WDist a, WDist b) { return a.Length >= b.Length; }
public static bool operator ==(WDist me, WDist other) { return me.Length == other.Length; }
public static bool operator !=(WDist me, WDist other) { return !(me == other); }
// Sampled a N-sample probability density function in the range [-1024..1024]
// 1 sample produces a rectangular probability
// 2 samples produces a triangular probability
// ...
// N samples approximates a true Gaussian
public static WDist FromPDF(MersenneTwister r, int samples)
{
return new WDist(Exts.MakeArray(samples, _ => r.Next(-1024, 1024))
.Sum() / samples);
}
public static bool TryParse(string s, out WDist result)
{
result = Zero;
if (string.IsNullOrEmpty(s))
return false;
s = s.ToLowerInvariant();
var components = s.Split('c');
var cell = 0;
int subcell;
switch (components.Length)
{
case 2:
if (!Exts.TryParseInt32Invariant(components[0], out cell) ||
!Exts.TryParseInt32Invariant(components[1], out subcell))
return false;
break;
case 1:
if (!Exts.TryParseInt32Invariant(components[0], out subcell))
return false;
break;
default: return false;
}
// Propagate sign to fractional part
if (cell < 0)
subcell = -subcell;
result = new WDist(1024 * cell + subcell);
return true;
}
public override int GetHashCode() { return Length.GetHashCode(); }
public bool Equals(WDist other) { return other == this; }
public override bool Equals(object obj) { return obj is WDist dist && Equals(dist); }
public int CompareTo(object obj)
{
if (obj is not WDist)
return 1;
return Length.CompareTo(((WDist)obj).Length);
}
public int CompareTo(WDist other) { return Length.CompareTo(other.Length); }
public override string ToString()
{
var absLength = Math.Abs(Length);
var absValue = (absLength / 1024).ToStringInvariant() + "c" + (absLength % 1024).ToStringInvariant();
return Length < 0 ? "-" + absValue : absValue;
}
#region Scripting interface
public LuaValue Add(LuaRuntime runtime, LuaValue left, LuaValue right)
{
if (!left.TryGetClrValue(out WDist a) || !right.TryGetClrValue(out WDist b))
throw new LuaException("Attempted to call WDist.Add(WDist, WDist) with invalid arguments.");
return new LuaCustomClrObject(a + b);
}
public LuaValue Subtract(LuaRuntime runtime, LuaValue left, LuaValue right)
{
if (!left.TryGetClrValue(out WDist a) || !right.TryGetClrValue(out WDist b))
throw new LuaException("Attempted to call WDist.Subtract(WDist, WDist) with invalid arguments.");
return new LuaCustomClrObject(a - b);
}
public LuaValue Equals(LuaRuntime runtime, LuaValue left, LuaValue right)
{
if (!left.TryGetClrValue(out WDist a) || !right.TryGetClrValue(out WDist b))
throw new LuaException("Attempted to call WDist.Equals(WDist, WDist) with invalid arguments.");
return a == b;
}
public LuaValue this[LuaRuntime runtime, LuaValue key]
{
get
{
switch (key.ToString())
{
case "Length": return Length;
default: throw new LuaException($"WDist does not define a member '{key}'");
}
}
set => throw new LuaException("WDist is read-only. Use WDist.New to create a new value");
}
#endregion
}
}