* Removes BodyValue * Removes BodyPicker gump * Fixes setting Body and BodyMod in props gump * Props will now look for an `implicit cast` in order to find a way to allow you to modify values with the props gump. * Fixed `[self set body 0x190` so it works too.
137 lines
4.7 KiB
C#
137 lines
4.7 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Server
|
|
{
|
|
public enum BodyType : byte
|
|
{
|
|
Empty,
|
|
Monster,
|
|
Sea,
|
|
Animal,
|
|
Human,
|
|
Equipment
|
|
}
|
|
|
|
[Parsable]
|
|
public readonly struct Body : IEquatable<object>, IEquatable<Body>, IEquatable<int>, IComparable<int>, IComparable<Body>
|
|
{
|
|
private static readonly BodyType[] m_Types = Array.Empty<BodyType>();
|
|
|
|
static Body()
|
|
{
|
|
if (File.Exists("Data/bodyTable.cfg"))
|
|
{
|
|
using var ip = new StreamReader("Data/bodyTable.cfg");
|
|
m_Types = new BodyType[0x1000];
|
|
|
|
string line;
|
|
|
|
while ((line = ip.ReadLine()) != null)
|
|
{
|
|
if (line.Length == 0 || line.StartsWithOrdinal("#"))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
var split = line.Split('\t');
|
|
|
|
if (int.TryParse(split[0], out var bodyID) && Enum.TryParse(split[1], true, out BodyType type) &&
|
|
bodyID >= 0 &&
|
|
bodyID < m_Types.Length)
|
|
{
|
|
m_Types[bodyID] = type;
|
|
}
|
|
else
|
|
{
|
|
Console.WriteLine("Warning: Invalid bodyTable entry:");
|
|
Console.WriteLine(line);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Console.WriteLine("Warning: Data/bodyTable.cfg does not exist");
|
|
}
|
|
}
|
|
|
|
public Body(int bodyID) => BodyID = bodyID;
|
|
|
|
public BodyType Type => BodyID >= 0 && BodyID < m_Types.Length ? m_Types[BodyID] : BodyType.Empty;
|
|
|
|
public bool IsHuman => BodyID >= 0
|
|
&& BodyID < m_Types.Length
|
|
&& m_Types[BodyID] == BodyType.Human
|
|
&& BodyID != 402
|
|
&& BodyID != 403
|
|
&& BodyID != 607
|
|
&& BodyID != 608
|
|
&& BodyID != 694
|
|
&& BodyID != 695
|
|
&& BodyID != 970;
|
|
|
|
public bool IsGargoyle => BodyID is 666 or 667 or 694 or 695;
|
|
|
|
public bool IsMale => BodyID is 183 or 185 or 400 or 402 or 605 or 607 or 666 or 694 or 750;
|
|
|
|
public bool IsFemale => BodyID is 184 or 186 or 401 or 403 or 606 or 608 or 667 or 695 or 751;
|
|
|
|
public bool IsGhost => BodyID is 402 or 403 or 607 or 608 or 694 or 695 or 970;
|
|
|
|
public bool IsMonster => BodyID >= 0
|
|
&& BodyID < m_Types.Length
|
|
&& m_Types[BodyID] == BodyType.Monster;
|
|
|
|
public bool IsAnimal => BodyID >= 0
|
|
&& BodyID < m_Types.Length
|
|
&& m_Types[BodyID] == BodyType.Animal;
|
|
|
|
public bool IsEmpty => BodyID >= 0
|
|
&& BodyID < m_Types.Length
|
|
&& m_Types[BodyID] == BodyType.Empty;
|
|
|
|
public bool IsSea => BodyID >= 0
|
|
&& BodyID < m_Types.Length
|
|
&& m_Types[BodyID] == BodyType.Sea;
|
|
|
|
public bool IsEquipment => BodyID >= 0
|
|
&& BodyID < m_Types.Length
|
|
&& m_Types[BodyID] == BodyType.Equipment;
|
|
|
|
public int BodyID { get; }
|
|
|
|
public static implicit operator int(Body a) => a.BodyID;
|
|
|
|
public static implicit operator Body(int a) => new(a);
|
|
|
|
public override string ToString() => $"0x{BodyID:X}";
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public override int GetHashCode() => BodyID.GetHashCode();
|
|
|
|
public override bool Equals(object o) => o is Body b && b.BodyID == BodyID;
|
|
|
|
public bool Equals(Body b) => b.BodyID == BodyID;
|
|
|
|
public bool Equals(int number) => number == BodyID;
|
|
|
|
public static bool operator ==(Body l, Body r) => l.BodyID == r.BodyID;
|
|
|
|
public static bool operator !=(Body l, Body r) => l.BodyID != r.BodyID;
|
|
|
|
public static bool operator >(Body l, Body r) => l.BodyID > r.BodyID;
|
|
|
|
public static bool operator >=(Body l, Body r) => l.BodyID >= r.BodyID;
|
|
|
|
public static bool operator <(Body l, Body r) => l.BodyID < r.BodyID;
|
|
|
|
public static bool operator <=(Body l, Body r) => l.BodyID <= r.BodyID;
|
|
|
|
public int CompareTo(Body other) => BodyID.CompareTo(other.BodyID);
|
|
|
|
public int CompareTo(int other) => BodyID.CompareTo(other);
|
|
|
|
public static Body Parse(string value) => Utility.ToInt32(value);
|
|
}
|
|
}
|