fix support for 35+, add support for 39
This commit is contained in:
@@ -2,58 +2,27 @@
|
||||
|
||||
namespace Il2CppInspector.Next.Metadata;
|
||||
|
||||
public struct GenericContainerIndex(int value) : IReadable, IEquatable<GenericContainerIndex>
|
||||
public struct GenericContainerIndex(int value) : IIndexType<GenericContainerIndex>, IReadable, IEquatable<GenericContainerIndex>
|
||||
{
|
||||
public const string TagPrefix = nameof(GenericContainerIndex);
|
||||
public const string TagPrefix = nameof(GenericContainerIndex);
|
||||
|
||||
static string IIndexType<GenericContainerIndex>.TagPrefix => TagPrefix;
|
||||
static StructVersion IIndexType<GenericContainerIndex>.AddedVersion => MetadataVersions.V390;
|
||||
|
||||
private int _value = value;
|
||||
|
||||
public static implicit operator int(GenericContainerIndex idx) => idx._value;
|
||||
public static implicit operator GenericContainerIndex(int idx) => new(idx);
|
||||
|
||||
public static int Size(in StructVersion version = default, bool is32Bit = false)
|
||||
{
|
||||
if (version >= MetadataVersions.V380
|
||||
&& version.Tag != null
|
||||
&& version.Tag.Contains(TagPrefix)
|
||||
&& !version.Tag.Contains($"{TagPrefix}4"))
|
||||
{
|
||||
if (version.Tag.Contains($"{TagPrefix}2"))
|
||||
return sizeof(ushort);
|
||||
|
||||
if (version.Tag.Contains($"{TagPrefix}1"))
|
||||
return sizeof(byte);
|
||||
}
|
||||
|
||||
return sizeof(int);
|
||||
}
|
||||
=> IIndexType<GenericContainerIndex>.IndexSize(version, is32Bit);
|
||||
|
||||
public void Read<TReader>(ref TReader reader, in StructVersion version = default) where TReader : IReader, allows ref struct
|
||||
{
|
||||
if (version >= MetadataVersions.V380
|
||||
&& version.Tag != null
|
||||
&& version.Tag.Contains(TagPrefix)
|
||||
&& !version.Tag.Contains($"{TagPrefix}4"))
|
||||
{
|
||||
if (version.Tag.Contains($"{TagPrefix}2"))
|
||||
{
|
||||
_value = reader.ReadPrimitive<short>();
|
||||
_value = _value == ushort.MaxValue ? -1 : _value;
|
||||
return;
|
||||
}
|
||||
|
||||
if (version.Tag.Contains($"{TagPrefix}1"))
|
||||
{
|
||||
_value = reader.ReadPrimitive<byte>();
|
||||
_value = _value == byte.MaxValue ? -1 : _value;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
_value = reader.ReadPrimitive<int>();
|
||||
_value = IIndexType<GenericContainerIndex>.ReadIndex(ref reader, in version);
|
||||
}
|
||||
|
||||
#region Equality operators + ToString
|
||||
#region Operators + ToString
|
||||
|
||||
public static implicit operator int(GenericContainerIndex idx) => idx._value;
|
||||
public static implicit operator GenericContainerIndex(int idx) => new(idx);
|
||||
|
||||
public static bool operator ==(GenericContainerIndex left, GenericContainerIndex right)
|
||||
=> left._value == right._value;
|
||||
@@ -61,7 +30,7 @@ public struct GenericContainerIndex(int value) : IReadable, IEquatable<GenericCo
|
||||
public static bool operator !=(GenericContainerIndex left, GenericContainerIndex right)
|
||||
=> !(left == right);
|
||||
|
||||
public readonly override bool Equals(object? obj)
|
||||
public readonly override bool Equals(object obj)
|
||||
=> obj is GenericContainerIndex other && Equals(other);
|
||||
|
||||
public readonly bool Equals(GenericContainerIndex other)
|
||||
|
||||
55
Il2CppInspector.Common/Next/Metadata/IIndexType.cs
Normal file
55
Il2CppInspector.Common/Next/Metadata/IIndexType.cs
Normal file
@@ -0,0 +1,55 @@
|
||||
using VersionedSerialization;
|
||||
|
||||
namespace Il2CppInspector.Next.Metadata;
|
||||
|
||||
public interface IIndexType<T> where T
|
||||
: IIndexType<T>, allows ref struct
|
||||
{
|
||||
public static abstract string TagPrefix { get; }
|
||||
public static abstract StructVersion AddedVersion { get; }
|
||||
|
||||
private static string TagSize4 => $"{T.TagPrefix}4";
|
||||
private static string TagSize2 => $"{T.TagPrefix}2";
|
||||
private static string TagSize1 => $"{T.TagPrefix}1";
|
||||
|
||||
private static bool HasCustomSize(in StructVersion version)
|
||||
=> version >= T.AddedVersion
|
||||
&& version.Tag != null
|
||||
&& version.Tag.Contains(T.TagPrefix)
|
||||
&& !version.Tag.Contains(TagSize4);
|
||||
|
||||
public static int IndexSize(in StructVersion version = default, bool is32Bit = false)
|
||||
{
|
||||
if (version.Tag != null && HasCustomSize(version))
|
||||
{
|
||||
if (version.Tag.Contains(TagSize2))
|
||||
return sizeof(ushort);
|
||||
|
||||
if (version.Tag.Contains(TagSize1))
|
||||
return sizeof(byte);
|
||||
}
|
||||
|
||||
return sizeof(int);
|
||||
|
||||
}
|
||||
|
||||
public static int ReadIndex<TReader>(ref TReader reader, in StructVersion version = default) where TReader : IReader, allows ref struct
|
||||
{
|
||||
if (version.Tag != null && HasCustomSize(version))
|
||||
{
|
||||
if (version.Tag.Contains(TagSize2))
|
||||
{
|
||||
var value = reader.ReadPrimitive<ushort>();
|
||||
return value == ushort.MaxValue ? -1 : value;
|
||||
}
|
||||
|
||||
if (version.Tag.Contains(TagSize1))
|
||||
{
|
||||
var value = reader.ReadPrimitive<byte>();
|
||||
return value == byte.MaxValue ? -1 : value;
|
||||
}
|
||||
}
|
||||
|
||||
return reader.ReadPrimitive<int>();
|
||||
}
|
||||
}
|
||||
@@ -66,7 +66,7 @@ public partial record struct Il2CppGlobalMetadataHeader
|
||||
[VersionCondition(LessThan = "35.0")]
|
||||
public int MethodsSize { get; private set; }
|
||||
|
||||
[VersionCondition(GreaterThan = "16.0")]
|
||||
[VersionCondition(GreaterThan = "16.0", LessThan = "35.0")]
|
||||
[VersionCondition(EqualTo = "16.0")]
|
||||
public int ParameterDefaultValuesOffset { get; private set; }
|
||||
|
||||
|
||||
@@ -4,7 +4,6 @@ using VersionedSerialization.Attributes;
|
||||
namespace Il2CppInspector.Next.Metadata;
|
||||
|
||||
using StringIndex = int;
|
||||
using ParameterIndex = int;
|
||||
|
||||
[VersionedStruct]
|
||||
public partial record struct Il2CppMethodDefinition
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
namespace Il2CppInspector.Next.Metadata;
|
||||
|
||||
using ParameterIndex = int;
|
||||
using DefaultValueDataIndex = int;
|
||||
using VersionedSerialization.Attributes;
|
||||
|
||||
|
||||
46
Il2CppInspector.Common/Next/Metadata/ParameterIndex.cs
Normal file
46
Il2CppInspector.Common/Next/Metadata/ParameterIndex.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
using NoisyCowStudios.Bin2Object;
|
||||
using VersionedSerialization;
|
||||
|
||||
namespace Il2CppInspector.Next.Metadata;
|
||||
|
||||
public struct ParameterIndex(int value) : IIndexType<ParameterIndex>, IReadable, IEquatable<ParameterIndex>
|
||||
{
|
||||
public const string TagPrefix = nameof(ParameterIndex);
|
||||
|
||||
static string IIndexType<ParameterIndex>.TagPrefix => TagPrefix;
|
||||
static StructVersion IIndexType<ParameterIndex>.AddedVersion => MetadataVersions.V390;
|
||||
|
||||
private int _value = value;
|
||||
|
||||
public static int Size(in StructVersion version = default, bool is32Bit = false)
|
||||
=> IIndexType<ParameterIndex>.IndexSize(version, is32Bit);
|
||||
|
||||
public void Read<TReader>(ref TReader reader, in StructVersion version = default) where TReader : IReader, allows ref struct
|
||||
{
|
||||
_value = IIndexType<ParameterIndex>.ReadIndex(ref reader, in version);
|
||||
}
|
||||
|
||||
#region Operators + ToString
|
||||
|
||||
public static implicit operator int(ParameterIndex idx) => idx._value;
|
||||
public static implicit operator ParameterIndex(int idx) => new(idx);
|
||||
|
||||
public static bool operator ==(ParameterIndex left, ParameterIndex right)
|
||||
=> left._value == right._value;
|
||||
|
||||
public static bool operator !=(ParameterIndex left, ParameterIndex right)
|
||||
=> !(left == right);
|
||||
|
||||
public readonly override bool Equals(object obj)
|
||||
=> obj is ParameterIndex other && Equals(other);
|
||||
|
||||
public readonly bool Equals(ParameterIndex other)
|
||||
=> this == other;
|
||||
|
||||
public readonly override int GetHashCode()
|
||||
=> HashCode.Combine(_value);
|
||||
|
||||
public readonly override string ToString() => _value.ToString();
|
||||
|
||||
#endregion
|
||||
}
|
||||
@@ -2,57 +2,27 @@
|
||||
|
||||
namespace Il2CppInspector.Next.Metadata;
|
||||
|
||||
public struct TypeDefinitionIndex(int value) : IReadable, IEquatable<TypeDefinitionIndex>
|
||||
public struct TypeDefinitionIndex(int value) : IIndexType<TypeDefinitionIndex>, IReadable, IEquatable<TypeDefinitionIndex>
|
||||
{
|
||||
public const string TagPrefix = nameof(TypeDefinitionIndex);
|
||||
public const string TagPrefix = nameof(TypeDefinitionIndex);
|
||||
|
||||
static string IIndexType<TypeDefinitionIndex>.TagPrefix => TagPrefix;
|
||||
static StructVersion IIndexType<TypeDefinitionIndex>.AddedVersion => MetadataVersions.V390;
|
||||
|
||||
private int _value = value;
|
||||
|
||||
public static implicit operator int(TypeDefinitionIndex idx) => idx._value;
|
||||
public static implicit operator TypeDefinitionIndex(int idx) => new(idx);
|
||||
|
||||
public static int Size(in StructVersion version = default, bool is32Bit = false)
|
||||
{
|
||||
if (version >= MetadataVersions.V380
|
||||
&& version.Tag != null
|
||||
&& version.Tag.Contains(TagPrefix)
|
||||
&& !version.Tag.Contains($"{TagPrefix}4"))
|
||||
{
|
||||
if (version.Tag.Contains($"{TagPrefix}2"))
|
||||
return sizeof(ushort);
|
||||
|
||||
if (version.Tag.Contains($"{TagPrefix}1"))
|
||||
return sizeof(byte);
|
||||
}
|
||||
|
||||
return sizeof(int);
|
||||
}
|
||||
=> IIndexType<TypeDefinitionIndex>.IndexSize(version, is32Bit);
|
||||
|
||||
public void Read<TReader>(ref TReader reader, in StructVersion version = default) where TReader : IReader, allows ref struct
|
||||
{
|
||||
if (version >= MetadataVersions.V380
|
||||
&& version.Tag != null
|
||||
&& version.Tag.Contains(TagPrefix)
|
||||
&& !version.Tag.Contains($"{TagPrefix}4"))
|
||||
{
|
||||
if (version.Tag.Contains($"{TagPrefix}2"))
|
||||
{
|
||||
_value = reader.ReadPrimitive<ushort>();
|
||||
return;
|
||||
}
|
||||
|
||||
if (version.Tag.Contains($"{TagPrefix}1"))
|
||||
{
|
||||
_value = reader.ReadPrimitive<byte>();
|
||||
_value = _value == byte.MaxValue ? -1 : _value;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
_value = reader.ReadPrimitive<int>();
|
||||
_value = IIndexType<TypeDefinitionIndex>.ReadIndex(ref reader, in version);
|
||||
}
|
||||
|
||||
#region Equality operators + ToString
|
||||
#region Operators + ToString
|
||||
|
||||
public static implicit operator int(TypeDefinitionIndex idx) => idx._value;
|
||||
public static implicit operator TypeDefinitionIndex(int idx) => new(idx);
|
||||
|
||||
public static bool operator ==(TypeDefinitionIndex left, TypeDefinitionIndex right)
|
||||
=> left._value == right._value;
|
||||
@@ -60,7 +30,7 @@ public struct TypeDefinitionIndex(int value) : IReadable, IEquatable<TypeDefinit
|
||||
public static bool operator !=(TypeDefinitionIndex left, TypeDefinitionIndex right)
|
||||
=> !(left == right);
|
||||
|
||||
public readonly override bool Equals(object? obj)
|
||||
public readonly override bool Equals(object obj)
|
||||
=> obj is TypeDefinitionIndex other && Equals(other);
|
||||
|
||||
public readonly bool Equals(TypeDefinitionIndex other)
|
||||
|
||||
@@ -2,58 +2,27 @@
|
||||
|
||||
namespace Il2CppInspector.Next.Metadata;
|
||||
|
||||
public struct TypeIndex(int value) : IReadable, IEquatable<TypeIndex>
|
||||
public struct TypeIndex(int value) : IIndexType<TypeIndex>, IReadable, IEquatable<TypeIndex>
|
||||
{
|
||||
public const string TagPrefix = nameof(TypeIndex);
|
||||
public const string TagPrefix = nameof(TypeIndex);
|
||||
|
||||
static string IIndexType<TypeIndex>.TagPrefix => TagPrefix;
|
||||
static StructVersion IIndexType<TypeIndex>.AddedVersion => MetadataVersions.V390;
|
||||
|
||||
private int _value = value;
|
||||
|
||||
public static implicit operator int(TypeIndex idx) => idx._value;
|
||||
public static implicit operator TypeIndex(int idx) => new(idx);
|
||||
|
||||
public static int Size(in StructVersion version = default, bool is32Bit = false)
|
||||
{
|
||||
if (version >= MetadataVersions.V380
|
||||
&& version.Tag != null
|
||||
&& version.Tag.Contains(TagPrefix)
|
||||
&& !version.Tag.Contains($"{TagPrefix}4"))
|
||||
{
|
||||
if (version.Tag.Contains($"{TagPrefix}2"))
|
||||
return sizeof(ushort);
|
||||
|
||||
if (version.Tag.Contains($"{TagPrefix}1"))
|
||||
return sizeof(byte);
|
||||
}
|
||||
|
||||
return sizeof(int);
|
||||
}
|
||||
=> IIndexType<TypeIndex>.IndexSize(version, is32Bit);
|
||||
|
||||
public void Read<TReader>(ref TReader reader, in StructVersion version = default) where TReader : IReader, allows ref struct
|
||||
{
|
||||
if (version >= MetadataVersions.V380
|
||||
&& version.Tag != null
|
||||
&& version.Tag.Contains(TagPrefix)
|
||||
&& !version.Tag.Contains($"{TagPrefix}4"))
|
||||
{
|
||||
if (version.Tag.Contains($"{TagPrefix}2"))
|
||||
{
|
||||
_value = reader.ReadPrimitive<ushort>();
|
||||
_value = _value == ushort.MaxValue ? -1 : _value;
|
||||
return;
|
||||
}
|
||||
|
||||
if (version.Tag.Contains($"{TagPrefix}1"))
|
||||
{
|
||||
_value = reader.ReadPrimitive<byte>();
|
||||
_value = _value == byte.MaxValue ? -1 : _value;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
_value = reader.ReadPrimitive<int>();
|
||||
_value = IIndexType<TypeIndex>.ReadIndex(ref reader, in version);
|
||||
}
|
||||
|
||||
#region Equality operators + ToString
|
||||
#region Operators + ToString
|
||||
|
||||
public static implicit operator int(TypeIndex idx) => idx._value;
|
||||
public static implicit operator TypeIndex(int idx) => new(idx);
|
||||
|
||||
public static bool operator ==(TypeIndex left, TypeIndex right)
|
||||
=> left._value == right._value;
|
||||
@@ -61,7 +30,7 @@ public struct TypeIndex(int value) : IReadable, IEquatable<TypeIndex>
|
||||
public static bool operator !=(TypeIndex left, TypeIndex right)
|
||||
=> !(left == right);
|
||||
|
||||
public readonly override bool Equals(object? obj)
|
||||
public readonly override bool Equals(object obj)
|
||||
=> obj is TypeIndex other && Equals(other);
|
||||
|
||||
public readonly bool Equals(TypeIndex other)
|
||||
|
||||
@@ -35,4 +35,8 @@ public static class MetadataVersions
|
||||
// Unity 6000.3.0a5
|
||||
public static readonly StructVersion V380 = new(38);
|
||||
// NOTE: This version uses tags to specify the size of TypeIndex, TypeDefinitionIndex, and GenericContainerIndex.
|
||||
|
||||
// Unity 6000.3.0b1
|
||||
public static readonly StructVersion V390 = new(39);
|
||||
// NOTE This version additionally uses a tag to specify the size of ParameterIndex.
|
||||
}
|
||||
Reference in New Issue
Block a user