Decompiled source of Lexicons are Wikis v1.21.11
Plugins/SideLoader/Newtonsoft.Json.dll
Decompiled a day ago
The result has been truncated due to the large size, download it to view full contents!
using System; using System.Collections; using System.Collections.Concurrent; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Collections.Specialized; using System.ComponentModel; using System.Data; using System.Data.SqlTypes; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Dynamic; using System.Globalization; using System.IO; using System.Linq; using System.Linq.Expressions; using System.Numerics; using System.Reflection; using System.Reflection.Emit; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Serialization; using System.Runtime.Serialization.Formatters; using System.Runtime.Versioning; using System.Security; using System.Security.Permissions; using System.Text; using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; using System.Xml; using System.Xml.Linq; using Microsoft.CodeAnalysis; using Newtonsoft.Json.Bson; using Newtonsoft.Json.Converters; using Newtonsoft.Json.Linq; using Newtonsoft.Json.Linq.JsonPath; using Newtonsoft.Json.Schema; using Newtonsoft.Json.Serialization; using Newtonsoft.Json.Utilities; [assembly: CompilationRelaxations(8)] [assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] [assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] [assembly: AllowPartiallyTrustedCallers] [assembly: InternalsVisibleTo("Newtonsoft.Json.Schema, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f561df277c6c0b497d629032b410cdcf286e537c054724f7ffa0164345f62b3e642029d7a80cc351918955328c4adc8a048823ef90b0cf38ea7db0d729caf2b633c3babe08b0310198c1081995c19029bc675193744eab9d7345b8a67258ec17d112cebdbbb2a281487dceeafb9d83aa930f32103fbe1d2911425bc5744002c7")] [assembly: InternalsVisibleTo("Newtonsoft.Json.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f561df277c6c0b497d629032b410cdcf286e537c054724f7ffa0164345f62b3e642029d7a80cc351918955328c4adc8a048823ef90b0cf38ea7db0d729caf2b633c3babe08b0310198c1081995c19029bc675193744eab9d7345b8a67258ec17d112cebdbbb2a281487dceeafb9d83aa930f32103fbe1d2911425bc5744002c7")] [assembly: InternalsVisibleTo("Newtonsoft.Json.Dynamic, PublicKey=0024000004800000940000000602000000240000525341310004000001000100cbd8d53b9d7de30f1f1278f636ec462cf9c254991291e66ebb157a885638a517887633b898ccbcf0d5c5ff7be85a6abe9e765d0ac7cd33c68dac67e7e64530e8222101109f154ab14a941c490ac155cd1d4fcba0fabb49016b4ef28593b015cab5937da31172f03f67d09edda404b88a60023f062ae71d0b2e4438b74cc11dc9")] [assembly: AssemblyTrademark("")] [assembly: ComVisible(false)] [assembly: Guid("9ca358aa-317b-4925-8ada-4a29e943a363")] [assembly: CLSCompliant(true)] [assembly: TargetFramework(".NETFramework,Version=v4.5", FrameworkDisplayName = ".NET Framework 4.5")] [assembly: AssemblyCompany("Newtonsoft")] [assembly: AssemblyConfiguration("Release")] [assembly: AssemblyCopyright("Copyright © James Newton-King 2008")] [assembly: AssemblyDescription("Json.NET is a popular high-performance JSON framework for .NET")] [assembly: AssemblyFileVersion("13.0.4.30916")] [assembly: AssemblyInformationalVersion("13.0.4+4e13299d4b0ec96bd4df9954ef646bd2d1b5bf2a")] [assembly: AssemblyProduct("Json.NET")] [assembly: AssemblyTitle("Json.NET .NET 4.5")] [assembly: AssemblyMetadata("RepositoryUrl", "https://github.com/JamesNK/Newtonsoft.Json")] [assembly: NeutralResourcesLanguage("en-US")] [assembly: AssemblyVersion("13.0.0.0")] namespace Microsoft.CodeAnalysis { [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] internal sealed class EmbeddedAttribute : Attribute { } } namespace System.Runtime.CompilerServices { [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] internal sealed class IsReadOnlyAttribute : Attribute { } [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.ReturnValue | AttributeTargets.GenericParameter, AllowMultiple = false, Inherited = false)] internal sealed class NullableAttribute : Attribute { public readonly byte[] NullableFlags; public NullableAttribute(byte P_0) { NullableFlags = new byte[1] { P_0 }; } public NullableAttribute(byte[] P_0) { NullableFlags = P_0; } } [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Interface | AttributeTargets.Delegate, AllowMultiple = false, Inherited = false)] internal sealed class NullableContextAttribute : Attribute { public readonly byte Flag; public NullableContextAttribute(byte P_0) { Flag = P_0; } } } namespace System.Diagnostics.CodeAnalysis { [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Interface | AttributeTargets.Parameter | AttributeTargets.ReturnValue | AttributeTargets.GenericParameter, Inherited = false)] internal sealed class DynamicallyAccessedMembersAttribute : Attribute { public DynamicallyAccessedMemberTypes MemberTypes { get; } public DynamicallyAccessedMembersAttribute(DynamicallyAccessedMemberTypes memberTypes) { MemberTypes = memberTypes; } } [Flags] internal enum DynamicallyAccessedMemberTypes { None = 0, PublicParameterlessConstructor = 1, PublicConstructors = 3, NonPublicConstructors = 4, PublicMethods = 8, NonPublicMethods = 0x10, PublicFields = 0x20, NonPublicFields = 0x40, PublicNestedTypes = 0x80, NonPublicNestedTypes = 0x100, PublicProperties = 0x200, NonPublicProperties = 0x400, PublicEvents = 0x800, NonPublicEvents = 0x1000, Interfaces = 0x2000, All = -1 } [AttributeUsage(AttributeTargets.Property, Inherited = false, AllowMultiple = true)] internal sealed class FeatureGuardAttribute : Attribute { public Type FeatureType { get; } public FeatureGuardAttribute(Type featureType) { FeatureType = featureType; } } [AttributeUsage(AttributeTargets.Property, Inherited = false)] internal sealed class FeatureSwitchDefinitionAttribute : Attribute { public string SwitchName { get; } public FeatureSwitchDefinitionAttribute(string switchName) { SwitchName = switchName; } } [AttributeUsage(AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.ReturnValue, AllowMultiple = true)] internal sealed class NotNullAttribute : Attribute { } [AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false)] internal sealed class NotNullWhenAttribute : Attribute { public bool ReturnValue { get; } public NotNullWhenAttribute(bool returnValue) { ReturnValue = returnValue; } } [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.ReturnValue, Inherited = false)] internal sealed class MaybeNullAttribute : Attribute { } [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter, Inherited = false)] internal sealed class AllowNullAttribute : Attribute { } [AttributeUsage(AttributeTargets.Parameter, Inherited = false)] internal class DoesNotReturnIfAttribute : Attribute { public bool ParameterValue { get; } public DoesNotReturnIfAttribute(bool parameterValue) { ParameterValue = parameterValue; } } [AttributeUsage(AttributeTargets.Class | AttributeTargets.Constructor | AttributeTargets.Method, Inherited = false)] internal sealed class RequiresDynamicCodeAttribute : Attribute { public string Message { get; } public string? Url { get; set; } public RequiresDynamicCodeAttribute(string message) { Message = message; } } [AttributeUsage(AttributeTargets.Class | AttributeTargets.Constructor | AttributeTargets.Method, Inherited = false)] internal sealed class RequiresUnreferencedCodeAttribute : Attribute { public string Message { get; } public string? Url { get; set; } public RequiresUnreferencedCodeAttribute(string message) { Message = message; } } [AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = true)] internal sealed class UnconditionalSuppressMessageAttribute : Attribute { public string Category { get; } public string CheckId { get; } public string? Scope { get; set; } public string? Target { get; set; } public string? MessageId { get; set; } public string? Justification { get; set; } public UnconditionalSuppressMessageAttribute(string category, string checkId) { Category = category; CheckId = checkId; } } } namespace Newtonsoft.Json { public enum ConstructorHandling { Default, AllowNonPublicDefaultConstructor } public enum DateFormatHandling { IsoDateFormat, MicrosoftDateFormat } public enum DateParseHandling { None, DateTime, DateTimeOffset } public enum DateTimeZoneHandling { Local, Utc, Unspecified, RoundtripKind } public class DefaultJsonNameTable : JsonNameTable { private class Entry { internal readonly string Value; internal readonly int HashCode; internal Entry Next; internal Entry(string value, int hashCode, Entry next) { Value = value; HashCode = hashCode; Next = next; } } private static readonly int HashCodeRandomizer; private int _count; private Entry[] _entries; private int _mask = 31; static DefaultJsonNameTable() { HashCodeRandomizer = Environment.TickCount; } public DefaultJsonNameTable() { _entries = new Entry[_mask + 1]; } public override string? Get(char[] key, int start, int length) { if (length == 0) { return string.Empty; } int num = length + HashCodeRandomizer; num += (num << 7) ^ key[start]; int num2 = start + length; for (int i = start + 1; i < num2; i++) { num += (num << 7) ^ key[i]; } num -= num >> 17; num -= num >> 11; num -= num >> 5; int num3 = Volatile.Read(ref _mask); int num4 = num & num3; for (Entry entry = _entries[num4]; entry != null; entry = entry.Next) { if (entry.HashCode == num && TextEquals(entry.Value, key, start, length)) { return entry.Value; } } return null; } public string Add(string key) { if (key == null) { throw new ArgumentNullException("key"); } int length = key.Length; if (length == 0) { return string.Empty; } int num = length + HashCodeRandomizer; for (int i = 0; i < key.Length; i++) { num += (num << 7) ^ key[i]; } num -= num >> 17; num -= num >> 11; num -= num >> 5; for (Entry entry = _entries[num & _mask]; entry != null; entry = entry.Next) { if (entry.HashCode == num && entry.Value.Equals(key, StringComparison.Ordinal)) { return entry.Value; } } return AddEntry(key, num); } private string AddEntry(string str, int hashCode) { int num = hashCode & _mask; Entry entry = new Entry(str, hashCode, _entries[num]); _entries[num] = entry; if (_count++ == _mask) { Grow(); } return entry.Value; } private void Grow() { Entry[] entries = _entries; int num = _mask * 2 + 1; Entry[] array = new Entry[num + 1]; for (int i = 0; i < entries.Length; i++) { Entry entry = entries[i]; while (entry != null) { int num2 = entry.HashCode & num; Entry next = entry.Next; entry.Next = array[num2]; array[num2] = entry; entry = next; } } _entries = array; Volatile.Write(ref _mask, num); } private static bool TextEquals(string str1, char[] str2, int str2Start, int str2Length) { if (str1.Length != str2Length) { return false; } for (int i = 0; i < str1.Length; i++) { if (str1[i] != str2[str2Start + i]) { return false; } } return true; } } [Flags] public enum DefaultValueHandling { Include = 0, Ignore = 1, Populate = 2, IgnoreAndPopulate = 3 } public enum FloatFormatHandling { String, Symbol, DefaultValue } public enum FloatParseHandling { Double, Decimal } public enum Formatting { None, Indented } public interface IArrayPool<T> { T[] Rent(int minimumLength); void Return(T[]? array); } public interface IJsonLineInfo { int LineNumber { get; } int LinePosition { get; } bool HasLineInfo(); } [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface, AllowMultiple = false)] public sealed class JsonArrayAttribute : JsonContainerAttribute { private bool _allowNullItems; public bool AllowNullItems { get { return _allowNullItems; } set { _allowNullItems = value; } } public JsonArrayAttribute() { } public JsonArrayAttribute(bool allowNullItems) { _allowNullItems = allowNullItems; } public JsonArrayAttribute(string id) : base(id) { } } [AttributeUsage(AttributeTargets.Constructor, AllowMultiple = false)] public sealed class JsonConstructorAttribute : Attribute { } [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface, AllowMultiple = false)] public abstract class JsonContainerAttribute : Attribute { internal bool? _isReference; internal bool? _itemIsReference; internal ReferenceLoopHandling? _itemReferenceLoopHandling; internal TypeNameHandling? _itemTypeNameHandling; private Type? _namingStrategyType; private object[]? _namingStrategyParameters; public string? Id { get; set; } public string? Title { get; set; } public string? Description { get; set; } public Type? ItemConverterType { get; set; } public object[]? ItemConverterParameters { get; set; } public Type? NamingStrategyType { get { return _namingStrategyType; } set { _namingStrategyType = value; NamingStrategyInstance = null; } } public object[]? NamingStrategyParameters { get { return _namingStrategyParameters; } set { _namingStrategyParameters = value; NamingStrategyInstance = null; } } internal NamingStrategy? NamingStrategyInstance { get; set; } public bool IsReference { get { return _isReference.GetValueOrDefault(); } set { _isReference = value; } } public bool ItemIsReference { get { return _itemIsReference.GetValueOrDefault(); } set { _itemIsReference = value; } } public ReferenceLoopHandling ItemReferenceLoopHandling { get { return _itemReferenceLoopHandling.GetValueOrDefault(); } set { _itemReferenceLoopHandling = value; } } public TypeNameHandling ItemTypeNameHandling { get { return _itemTypeNameHandling.GetValueOrDefault(); } set { _itemTypeNameHandling = value; } } protected JsonContainerAttribute() { } protected JsonContainerAttribute(string id) { Id = id; } } public static class JsonConvert { public static readonly string True = "true"; public static readonly string False = "false"; public static readonly string Null = "null"; public static readonly string Undefined = "undefined"; public static readonly string PositiveInfinity = "Infinity"; public static readonly string NegativeInfinity = "-Infinity"; public static readonly string NaN = "NaN"; public static Func<JsonSerializerSettings>? DefaultSettings { get; set; } public static string ToString(DateTime value) { return ToString(value, DateFormatHandling.IsoDateFormat, DateTimeZoneHandling.RoundtripKind); } public static string ToString(DateTime value, DateFormatHandling format, DateTimeZoneHandling timeZoneHandling) { DateTime value2 = DateTimeUtils.EnsureDateTime(value, timeZoneHandling); using StringWriter stringWriter = StringUtils.CreateStringWriter(64); stringWriter.Write('"'); DateTimeUtils.WriteDateTimeString(stringWriter, value2, format, null, CultureInfo.InvariantCulture); stringWriter.Write('"'); return stringWriter.ToString(); } public static string ToString(DateTimeOffset value) { return ToString(value, DateFormatHandling.IsoDateFormat); } public static string ToString(DateTimeOffset value, DateFormatHandling format) { using StringWriter stringWriter = StringUtils.CreateStringWriter(64); stringWriter.Write('"'); DateTimeUtils.WriteDateTimeOffsetString(stringWriter, value, format, null, CultureInfo.InvariantCulture); stringWriter.Write('"'); return stringWriter.ToString(); } public static string ToString(bool value) { if (!value) { return False; } return True; } public static string ToString(char value) { return ToString(char.ToString(value)); } public static string ToString(Enum value) { return value.ToString("D"); } public static string ToString(int value) { return value.ToString(null, CultureInfo.InvariantCulture); } public static string ToString(short value) { return value.ToString(null, CultureInfo.InvariantCulture); } [CLSCompliant(false)] public static string ToString(ushort value) { return value.ToString(null, CultureInfo.InvariantCulture); } [CLSCompliant(false)] public static string ToString(uint value) { return value.ToString(null, CultureInfo.InvariantCulture); } public static string ToString(long value) { return value.ToString(null, CultureInfo.InvariantCulture); } private static string ToStringInternal(BigInteger value) { return value.ToString(null, CultureInfo.InvariantCulture); } [CLSCompliant(false)] public static string ToString(ulong value) { return value.ToString(null, CultureInfo.InvariantCulture); } public static string ToString(float value) { return EnsureDecimalPlace(value, value.ToString("R", CultureInfo.InvariantCulture)); } internal static string ToString(float value, FloatFormatHandling floatFormatHandling, char quoteChar, bool nullable) { return EnsureFloatFormat(value, EnsureDecimalPlace(value, value.ToString("R", CultureInfo.InvariantCulture)), floatFormatHandling, quoteChar, nullable); } private static string EnsureFloatFormat(double value, string text, FloatFormatHandling floatFormatHandling, char quoteChar, bool nullable) { if (floatFormatHandling == FloatFormatHandling.Symbol || (!double.IsInfinity(value) && !double.IsNaN(value))) { return text; } if (floatFormatHandling == FloatFormatHandling.DefaultValue) { if (nullable) { return Null; } return "0.0"; } return quoteChar + text + quoteChar; } public static string ToString(double value) { return EnsureDecimalPlace(value, value.ToString("R", CultureInfo.InvariantCulture)); } internal static string ToString(double value, FloatFormatHandling floatFormatHandling, char quoteChar, bool nullable) { return EnsureFloatFormat(value, EnsureDecimalPlace(value, value.ToString("R", CultureInfo.InvariantCulture)), floatFormatHandling, quoteChar, nullable); } private static string EnsureDecimalPlace(double value, string text) { if (double.IsNaN(value) || double.IsInfinity(value) || StringUtils.IndexOf(text, '.') != -1 || StringUtils.IndexOf(text, 'E') != -1 || StringUtils.IndexOf(text, 'e') != -1) { return text; } return text + ".0"; } private static string EnsureDecimalPlace(string text) { if (StringUtils.IndexOf(text, '.') != -1) { return text; } return text + ".0"; } public static string ToString(byte value) { return value.ToString(null, CultureInfo.InvariantCulture); } [CLSCompliant(false)] public static string ToString(sbyte value) { return value.ToString(null, CultureInfo.InvariantCulture); } public static string ToString(decimal value) { return EnsureDecimalPlace(value.ToString(null, CultureInfo.InvariantCulture)); } public static string ToString(Guid value) { return ToString(value, '"'); } internal static string ToString(Guid value, char quoteChar) { string text = value.ToString("D", CultureInfo.InvariantCulture); string text2 = quoteChar.ToString(CultureInfo.InvariantCulture); return text2 + text + text2; } public static string ToString(TimeSpan value) { return ToString(value, '"'); } internal static string ToString(TimeSpan value, char quoteChar) { return ToString(value.ToString(), quoteChar); } public static string ToString(Uri? value) { if (value == null) { return Null; } return ToString(value, '"'); } internal static string ToString(Uri value, char quoteChar) { return ToString(value.OriginalString, quoteChar); } public static string ToString(string? value) { return ToString(value, '"'); } public static string ToString(string? value, char delimiter) { return ToString(value, delimiter, StringEscapeHandling.Default); } public static string ToString(string? value, char delimiter, StringEscapeHandling stringEscapeHandling) { if (delimiter != '"' && delimiter != '\'') { throw new ArgumentException("Delimiter must be a single or double quote.", "delimiter"); } return JavaScriptUtils.ToEscapedJavaScriptString(value, delimiter, appendDelimiters: true, stringEscapeHandling); } public static string ToString(object? value) { if (value == null) { return Null; } return ConvertUtils.GetTypeCode(value.GetType()) switch { PrimitiveTypeCode.String => ToString((string)value), PrimitiveTypeCode.Char => ToString((char)value), PrimitiveTypeCode.Boolean => ToString((bool)value), PrimitiveTypeCode.SByte => ToString((sbyte)value), PrimitiveTypeCode.Int16 => ToString((short)value), PrimitiveTypeCode.UInt16 => ToString((ushort)value), PrimitiveTypeCode.Int32 => ToString((int)value), PrimitiveTypeCode.Byte => ToString((byte)value), PrimitiveTypeCode.UInt32 => ToString((uint)value), PrimitiveTypeCode.Int64 => ToString((long)value), PrimitiveTypeCode.UInt64 => ToString((ulong)value), PrimitiveTypeCode.Single => ToString((float)value), PrimitiveTypeCode.Double => ToString((double)value), PrimitiveTypeCode.DateTime => ToString((DateTime)value), PrimitiveTypeCode.Decimal => ToString((decimal)value), PrimitiveTypeCode.DBNull => Null, PrimitiveTypeCode.DateTimeOffset => ToString((DateTimeOffset)value), PrimitiveTypeCode.Guid => ToString((Guid)value), PrimitiveTypeCode.Uri => ToString((Uri)value), PrimitiveTypeCode.TimeSpan => ToString((TimeSpan)value), PrimitiveTypeCode.BigInteger => ToStringInternal((BigInteger)value), _ => throw new ArgumentException("Unsupported type: {0}. Use the JsonSerializer class to get the object's JSON representation.".FormatWith(CultureInfo.InvariantCulture, value.GetType())), }; } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static string SerializeObject(object? value) { return SerializeObject(value, (Type?)null, (JsonSerializerSettings?)null); } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static string SerializeObject(object? value, Formatting formatting) { return SerializeObject(value, formatting, (JsonSerializerSettings?)null); } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static string SerializeObject(object? value, params JsonConverter[] converters) { JsonSerializerSettings settings = ((converters != null && converters.Length != 0) ? new JsonSerializerSettings { Converters = converters } : null); return SerializeObject(value, null, settings); } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static string SerializeObject(object? value, Formatting formatting, params JsonConverter[] converters) { JsonSerializerSettings settings = ((converters != null && converters.Length != 0) ? new JsonSerializerSettings { Converters = converters } : null); return SerializeObject(value, null, formatting, settings); } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static string SerializeObject(object? value, JsonSerializerSettings? settings) { return SerializeObject(value, null, settings); } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static string SerializeObject(object? value, Type? type, JsonSerializerSettings? settings) { JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(settings); return SerializeObjectInternal(value, type, jsonSerializer); } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static string SerializeObject(object? value, Formatting formatting, JsonSerializerSettings? settings) { return SerializeObject(value, null, formatting, settings); } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static string SerializeObject(object? value, Type? type, Formatting formatting, JsonSerializerSettings? settings) { JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(settings); jsonSerializer.Formatting = formatting; return SerializeObjectInternal(value, type, jsonSerializer); } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] private static string SerializeObjectInternal(object? value, Type? type, JsonSerializer jsonSerializer) { StringWriter stringWriter = new StringWriter(new StringBuilder(256), CultureInfo.InvariantCulture); using (JsonTextWriter jsonTextWriter = new JsonTextWriter(stringWriter)) { jsonTextWriter.Formatting = jsonSerializer.Formatting; jsonSerializer.Serialize(jsonTextWriter, value, type); } return stringWriter.ToString(); } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static object? DeserializeObject(string value) { return DeserializeObject(value, (Type?)null, (JsonSerializerSettings?)null); } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static object? DeserializeObject(string value, JsonSerializerSettings settings) { return DeserializeObject(value, null, settings); } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static object? DeserializeObject(string value, Type type) { return DeserializeObject(value, type, (JsonSerializerSettings?)null); } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static T? DeserializeObject<T>(string value) { return JsonConvert.DeserializeObject<T>(value, (JsonSerializerSettings?)null); } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static T? DeserializeAnonymousType<T>(string value, T anonymousTypeObject) { return DeserializeObject<T>(value); } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static T? DeserializeAnonymousType<T>(string value, T anonymousTypeObject, JsonSerializerSettings settings) { return DeserializeObject<T>(value, settings); } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static T? DeserializeObject<T>(string value, params JsonConverter[] converters) { return (T)DeserializeObject(value, typeof(T), converters); } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static T? DeserializeObject<T>(string value, JsonSerializerSettings? settings) { return (T)DeserializeObject(value, typeof(T), settings); } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static object? DeserializeObject(string value, Type type, params JsonConverter[] converters) { JsonSerializerSettings settings = ((converters != null && converters.Length != 0) ? new JsonSerializerSettings { Converters = converters } : null); return DeserializeObject(value, type, settings); } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static object? DeserializeObject(string value, Type? type, JsonSerializerSettings? settings) { ValidationUtils.ArgumentNotNull(value, "value"); JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(settings); if (!jsonSerializer.IsCheckAdditionalContentSet()) { jsonSerializer.CheckAdditionalContent = true; } using JsonTextReader reader = new JsonTextReader(new StringReader(value)); return jsonSerializer.Deserialize(reader, type); } [DebuggerStepThrough] [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static void PopulateObject(string value, object target) { PopulateObject(value, target, null); } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static void PopulateObject(string value, object target, JsonSerializerSettings? settings) { JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(settings); using JsonReader jsonReader = new JsonTextReader(new StringReader(value)); jsonSerializer.Populate(jsonReader, target); if (settings == null || !settings.CheckAdditionalContent) { return; } while (jsonReader.Read()) { if (jsonReader.TokenType != JsonToken.Comment) { throw JsonSerializationException.Create(jsonReader, "Additional text found in JSON string after finishing deserializing object."); } } } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static string SerializeXmlNode(XmlNode? node) { return SerializeXmlNode(node, Formatting.None); } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static string SerializeXmlNode(XmlNode? node, Formatting formatting) { XmlNodeConverter xmlNodeConverter = new XmlNodeConverter(); return SerializeObject(node, formatting, xmlNodeConverter); } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static string SerializeXmlNode(XmlNode? node, Formatting formatting, bool omitRootObject) { XmlNodeConverter xmlNodeConverter = new XmlNodeConverter { OmitRootObject = omitRootObject }; return SerializeObject(node, formatting, xmlNodeConverter); } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static XmlDocument? DeserializeXmlNode(string value) { return DeserializeXmlNode(value, null); } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static XmlDocument? DeserializeXmlNode(string value, string? deserializeRootElementName) { return DeserializeXmlNode(value, deserializeRootElementName, writeArrayAttribute: false); } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static XmlDocument? DeserializeXmlNode(string value, string? deserializeRootElementName, bool writeArrayAttribute) { return DeserializeXmlNode(value, deserializeRootElementName, writeArrayAttribute, encodeSpecialCharacters: false); } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static XmlDocument? DeserializeXmlNode(string value, string? deserializeRootElementName, bool writeArrayAttribute, bool encodeSpecialCharacters) { XmlNodeConverter xmlNodeConverter = new XmlNodeConverter(); xmlNodeConverter.DeserializeRootElementName = deserializeRootElementName; xmlNodeConverter.WriteArrayAttribute = writeArrayAttribute; xmlNodeConverter.EncodeSpecialCharacters = encodeSpecialCharacters; return (XmlDocument)DeserializeObject(value, typeof(XmlDocument), xmlNodeConverter); } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static string SerializeXNode(XObject? node) { return SerializeXNode(node, Formatting.None); } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static string SerializeXNode(XObject? node, Formatting formatting) { return SerializeXNode(node, formatting, omitRootObject: false); } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static string SerializeXNode(XObject? node, Formatting formatting, bool omitRootObject) { XmlNodeConverter xmlNodeConverter = new XmlNodeConverter { OmitRootObject = omitRootObject }; return SerializeObject(node, formatting, xmlNodeConverter); } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static XDocument? DeserializeXNode(string value) { return DeserializeXNode(value, null); } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static XDocument? DeserializeXNode(string value, string? deserializeRootElementName) { return DeserializeXNode(value, deserializeRootElementName, writeArrayAttribute: false); } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static XDocument? DeserializeXNode(string value, string? deserializeRootElementName, bool writeArrayAttribute) { return DeserializeXNode(value, deserializeRootElementName, writeArrayAttribute, encodeSpecialCharacters: false); } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public static XDocument? DeserializeXNode(string value, string? deserializeRootElementName, bool writeArrayAttribute, bool encodeSpecialCharacters) { //IL_0035: Unknown result type (might be due to invalid IL or missing references) //IL_003b: Expected O, but got Unknown XmlNodeConverter xmlNodeConverter = new XmlNodeConverter(); xmlNodeConverter.DeserializeRootElementName = deserializeRootElementName; xmlNodeConverter.WriteArrayAttribute = writeArrayAttribute; xmlNodeConverter.EncodeSpecialCharacters = encodeSpecialCharacters; return (XDocument)DeserializeObject(value, typeof(XDocument), xmlNodeConverter); } } public abstract class JsonConverter { public virtual bool CanRead => true; public virtual bool CanWrite => true; public abstract void WriteJson(JsonWriter writer, object? value, JsonSerializer serializer); public abstract object? ReadJson(JsonReader reader, Type objectType, object? existingValue, JsonSerializer serializer); public abstract bool CanConvert(Type objectType); } public abstract class JsonConverter<T> : JsonConverter { public sealed override void WriteJson(JsonWriter writer, object? value, JsonSerializer serializer) { if (!((value != null) ? (value is T) : ReflectionUtils.IsNullable(typeof(T)))) { throw new JsonSerializationException("Converter cannot write specified value to JSON. {0} is required.".FormatWith(CultureInfo.InvariantCulture, typeof(T))); } WriteJson(writer, (T)value, serializer); } public abstract void WriteJson(JsonWriter writer, T? value, JsonSerializer serializer); public sealed override object? ReadJson(JsonReader reader, Type objectType, object? existingValue, JsonSerializer serializer) { bool flag = existingValue == null; if (!flag && !(existingValue is T)) { throw new JsonSerializationException("Converter cannot read JSON with the specified existing value. {0} is required.".FormatWith(CultureInfo.InvariantCulture, typeof(T))); } return ReadJson(reader, objectType, flag ? default(T) : ((T)existingValue), !flag, serializer); } public abstract T? ReadJson(JsonReader reader, Type objectType, T? existingValue, bool hasExistingValue, JsonSerializer serializer); public sealed override bool CanConvert(Type objectType) { return typeof(T).IsAssignableFrom(objectType); } } [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Interface | AttributeTargets.Parameter, AllowMultiple = false)] public sealed class JsonConverterAttribute : Attribute { private readonly Type _converterType; public Type ConverterType => _converterType; public object[]? ConverterParameters { get; } public JsonConverterAttribute(Type converterType) { if (converterType == null) { throw new ArgumentNullException("converterType"); } _converterType = converterType; } public JsonConverterAttribute(Type converterType, params object[] converterParameters) : this(converterType) { ConverterParameters = converterParameters; } } public class JsonConverterCollection : Collection<JsonConverter> { } [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface, AllowMultiple = false)] public sealed class JsonDictionaryAttribute : JsonContainerAttribute { public JsonDictionaryAttribute() { } public JsonDictionaryAttribute(string id) : base(id) { } } [Serializable] public class JsonException : Exception { public JsonException() { } public JsonException(string message) : base(message) { } public JsonException(string message, Exception? innerException) : base(message, innerException) { } public JsonException(SerializationInfo info, StreamingContext context) : base(info, context) { } internal static JsonException Create(IJsonLineInfo lineInfo, string path, string message) { message = JsonPosition.FormatMessage(lineInfo, path, message); return new JsonException(message); } } [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)] public class JsonExtensionDataAttribute : Attribute { public bool WriteData { get; set; } public bool ReadData { get; set; } public JsonExtensionDataAttribute() { WriteData = true; ReadData = true; } } [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)] public sealed class JsonIgnoreAttribute : Attribute { } public abstract class JsonNameTable { public abstract string? Get(char[] key, int start, int length); } [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface, AllowMultiple = false)] public sealed class JsonObjectAttribute : JsonContainerAttribute { private MemberSerialization _memberSerialization; internal MissingMemberHandling? _missingMemberHandling; internal Required? _itemRequired; internal NullValueHandling? _itemNullValueHandling; public MemberSerialization MemberSerialization { get { return _memberSerialization; } set { _memberSerialization = value; } } public MissingMemberHandling MissingMemberHandling { get { return _missingMemberHandling.GetValueOrDefault(); } set { _missingMemberHandling = value; } } public NullValueHandling ItemNullValueHandling { get { return _itemNullValueHandling.GetValueOrDefault(); } set { _itemNullValueHandling = value; } } public Required ItemRequired { get { return _itemRequired.GetValueOrDefault(); } set { _itemRequired = value; } } public JsonObjectAttribute() { } public JsonObjectAttribute(MemberSerialization memberSerialization) { MemberSerialization = memberSerialization; } public JsonObjectAttribute(string id) : base(id) { } } internal enum JsonContainerType { None, Object, Array, Constructor } internal struct JsonPosition { private static readonly char[] SpecialCharacters = new char[18] { '.', ' ', '\'', '/', '"', '[', ']', '(', ')', '\t', '\n', '\r', '\f', '\b', '\\', '\u0085', '\u2028', '\u2029' }; internal JsonContainerType Type; internal int Position; internal string? PropertyName; internal bool HasIndex; public JsonPosition(JsonContainerType type) { Type = type; HasIndex = TypeHasIndex(type); Position = -1; PropertyName = null; } internal int CalculateLength() { switch (Type) { case JsonContainerType.Object: return PropertyName.Length + 5; case JsonContainerType.Array: case JsonContainerType.Constructor: return MathUtils.IntLength((ulong)Position) + 2; default: throw new ArgumentOutOfRangeException("Type"); } } internal void WriteTo(StringBuilder sb, ref StringWriter? writer, ref char[]? buffer) { switch (Type) { case JsonContainerType.Object: { string propertyName = PropertyName; if (propertyName.IndexOfAny(SpecialCharacters) != -1) { sb.Append("['"); if (writer == null) { writer = new StringWriter(sb); } JavaScriptUtils.WriteEscapedJavaScriptString(writer, propertyName, '\'', appendDelimiters: false, JavaScriptUtils.SingleQuoteCharEscapeFlags, StringEscapeHandling.Default, null, ref buffer); sb.Append("']"); } else { if (sb.Length > 0) { sb.Append('.'); } sb.Append(propertyName); } break; } case JsonContainerType.Array: case JsonContainerType.Constructor: sb.Append('['); sb.Append(Position); sb.Append(']'); break; } } internal static bool TypeHasIndex(JsonContainerType type) { if (type != JsonContainerType.Array) { return type == JsonContainerType.Constructor; } return true; } internal static string BuildPath(List<JsonPosition> positions, JsonPosition? currentPosition) { int num = 0; if (positions != null) { for (int i = 0; i < positions.Count; i++) { num += positions[i].CalculateLength(); } } if (currentPosition.HasValue) { num += currentPosition.GetValueOrDefault().CalculateLength(); } StringBuilder stringBuilder = new StringBuilder(num); StringWriter writer = null; char[] buffer = null; if (positions != null) { foreach (JsonPosition position in positions) { position.WriteTo(stringBuilder, ref writer, ref buffer); } } currentPosition?.WriteTo(stringBuilder, ref writer, ref buffer); return stringBuilder.ToString(); } internal static string FormatMessage(IJsonLineInfo? lineInfo, string path, string message) { if (!message.EndsWith(Environment.NewLine, StringComparison.Ordinal)) { message = message.Trim(); if (!StringUtils.EndsWith(message, '.')) { message += "."; } message += " "; } message += "Path '{0}'".FormatWith(CultureInfo.InvariantCulture, path); if (lineInfo != null && lineInfo.HasLineInfo()) { message += ", line {0}, position {1}".FormatWith(CultureInfo.InvariantCulture, lineInfo.LineNumber, lineInfo.LinePosition); } message += "."; return message; } } [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter, AllowMultiple = false)] public sealed class JsonPropertyAttribute : Attribute { internal NullValueHandling? _nullValueHandling; internal DefaultValueHandling? _defaultValueHandling; internal ReferenceLoopHandling? _referenceLoopHandling; internal ObjectCreationHandling? _objectCreationHandling; internal TypeNameHandling? _typeNameHandling; internal bool? _isReference; internal int? _order; internal Required? _required; internal bool? _itemIsReference; internal ReferenceLoopHandling? _itemReferenceLoopHandling; internal TypeNameHandling? _itemTypeNameHandling; public Type? ItemConverterType { get; set; } public object[]? ItemConverterParameters { get; set; } public Type? NamingStrategyType { get; set; } public object[]? NamingStrategyParameters { get; set; } public NullValueHandling NullValueHandling { get { return _nullValueHandling.GetValueOrDefault(); } set { _nullValueHandling = value; } } public DefaultValueHandling DefaultValueHandling { get { return _defaultValueHandling.GetValueOrDefault(); } set { _defaultValueHandling = value; } } public ReferenceLoopHandling ReferenceLoopHandling { get { return _referenceLoopHandling.GetValueOrDefault(); } set { _referenceLoopHandling = value; } } public ObjectCreationHandling ObjectCreationHandling { get { return _objectCreationHandling.GetValueOrDefault(); } set { _objectCreationHandling = value; } } public TypeNameHandling TypeNameHandling { get { return _typeNameHandling.GetValueOrDefault(); } set { _typeNameHandling = value; } } public bool IsReference { get { return _isReference.GetValueOrDefault(); } set { _isReference = value; } } public int Order { get { return _order.GetValueOrDefault(); } set { _order = value; } } public Required Required { get { return _required.GetValueOrDefault(); } set { _required = value; } } public string? PropertyName { get; set; } public ReferenceLoopHandling ItemReferenceLoopHandling { get { return _itemReferenceLoopHandling.GetValueOrDefault(); } set { _itemReferenceLoopHandling = value; } } public TypeNameHandling ItemTypeNameHandling { get { return _itemTypeNameHandling.GetValueOrDefault(); } set { _itemTypeNameHandling = value; } } public bool ItemIsReference { get { return _itemIsReference.GetValueOrDefault(); } set { _itemIsReference = value; } } public JsonPropertyAttribute() { } public JsonPropertyAttribute(string propertyName) { PropertyName = propertyName; } } public abstract class JsonReader : IDisposable { protected internal enum State { Start, Complete, Property, ObjectStart, Object, ArrayStart, Array, Closed, PostValue, ConstructorStart, Constructor, Error, Finished } private JsonToken _tokenType; private object? _value; internal char _quoteChar; internal State _currentState; private JsonPosition _currentPosition; private CultureInfo? _culture; private DateTimeZoneHandling _dateTimeZoneHandling; private int? _maxDepth; private bool _hasExceededMaxDepth; internal DateParseHandling _dateParseHandling; internal FloatParseHandling _floatParseHandling; private string? _dateFormatString; private List<JsonPosition>? _stack; protected State CurrentState => _currentState; public bool CloseInput { get; set; } public bool SupportMultipleContent { get; set; } public virtual char QuoteChar { get { return _quoteChar; } protected internal set { _quoteChar = value; } } public DateTimeZoneHandling DateTimeZoneHandling { get { return _dateTimeZoneHandling; } set { if (value < DateTimeZoneHandling.Local || value > DateTimeZoneHandling.RoundtripKind) { throw new ArgumentOutOfRangeException("value"); } _dateTimeZoneHandling = value; } } public DateParseHandling DateParseHandling { get { return _dateParseHandling; } set { if (value < DateParseHandling.None || value > DateParseHandling.DateTimeOffset) { throw new ArgumentOutOfRangeException("value"); } _dateParseHandling = value; } } public FloatParseHandling FloatParseHandling { get { return _floatParseHandling; } set { if (value < FloatParseHandling.Double || value > FloatParseHandling.Decimal) { throw new ArgumentOutOfRangeException("value"); } _floatParseHandling = value; } } public string? DateFormatString { get { return _dateFormatString; } set { _dateFormatString = value; } } public int? MaxDepth { get { return _maxDepth; } set { if (value <= 0) { throw new ArgumentException("Value must be positive.", "value"); } _maxDepth = value; } } public virtual JsonToken TokenType => _tokenType; public virtual object? Value => _value; public virtual Type? ValueType => _value?.GetType(); public virtual int Depth { get { int num = _stack?.Count ?? 0; if (JsonTokenUtils.IsStartToken(TokenType) || _currentPosition.Type == JsonContainerType.None) { return num; } return num + 1; } } public virtual string Path { get { if (_currentPosition.Type == JsonContainerType.None) { return string.Empty; } JsonPosition? currentPosition = ((_currentState != State.ArrayStart && _currentState != State.ConstructorStart && _currentState != State.ObjectStart) ? new JsonPosition?(_currentPosition) : null); return JsonPosition.BuildPath(_stack, currentPosition); } } public CultureInfo Culture { get { return _culture ?? CultureInfo.InvariantCulture; } set { _culture = value; } } public virtual Task<bool> ReadAsync(CancellationToken cancellationToken = default(CancellationToken)) { return cancellationToken.CancelIfRequestedAsync<bool>() ?? Read().ToAsync(); } public async Task SkipAsync(CancellationToken cancellationToken = default(CancellationToken)) { if (TokenType == JsonToken.PropertyName) { await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false); } if (JsonTokenUtils.IsStartToken(TokenType)) { int depth = Depth; while (await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false) && depth < Depth) { } } } internal async Task ReaderReadAndAssertAsync(CancellationToken cancellationToken) { if (!(await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false))) { throw CreateUnexpectedEndException(); } } public virtual Task<bool?> ReadAsBooleanAsync(CancellationToken cancellationToken = default(CancellationToken)) { return cancellationToken.CancelIfRequestedAsync<bool?>() ?? Task.FromResult(ReadAsBoolean()); } public virtual Task<byte[]?> ReadAsBytesAsync(CancellationToken cancellationToken = default(CancellationToken)) { return cancellationToken.CancelIfRequestedAsync<byte[]>() ?? Task.FromResult(ReadAsBytes()); } internal async Task<byte[]?> ReadArrayIntoByteArrayAsync(CancellationToken cancellationToken) { List<byte> buffer = new List<byte>(); do { if (!(await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false))) { SetToken(JsonToken.None); } } while (!ReadArrayElementIntoByteArrayReportDone(buffer)); byte[] array = buffer.ToArray(); SetToken(JsonToken.Bytes, array, updateIndex: false); return array; } public virtual Task<DateTime?> ReadAsDateTimeAsync(CancellationToken cancellationToken = default(CancellationToken)) { return cancellationToken.CancelIfRequestedAsync<DateTime?>() ?? Task.FromResult(ReadAsDateTime()); } public virtual Task<DateTimeOffset?> ReadAsDateTimeOffsetAsync(CancellationToken cancellationToken = default(CancellationToken)) { return cancellationToken.CancelIfRequestedAsync<DateTimeOffset?>() ?? Task.FromResult(ReadAsDateTimeOffset()); } public virtual Task<decimal?> ReadAsDecimalAsync(CancellationToken cancellationToken = default(CancellationToken)) { return cancellationToken.CancelIfRequestedAsync<decimal?>() ?? Task.FromResult(ReadAsDecimal()); } public virtual Task<double?> ReadAsDoubleAsync(CancellationToken cancellationToken = default(CancellationToken)) { return Task.FromResult(ReadAsDouble()); } public virtual Task<int?> ReadAsInt32Async(CancellationToken cancellationToken = default(CancellationToken)) { return cancellationToken.CancelIfRequestedAsync<int?>() ?? Task.FromResult(ReadAsInt32()); } public virtual Task<string?> ReadAsStringAsync(CancellationToken cancellationToken = default(CancellationToken)) { return cancellationToken.CancelIfRequestedAsync<string>() ?? Task.FromResult(ReadAsString()); } internal async Task<bool> ReadAndMoveToContentAsync(CancellationToken cancellationToken) { bool flag = await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false); if (flag) { flag = await MoveToContentAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false); } return flag; } internal Task<bool> MoveToContentAsync(CancellationToken cancellationToken) { JsonToken tokenType = TokenType; if (tokenType == JsonToken.None || tokenType == JsonToken.Comment) { return MoveToContentFromNonContentAsync(cancellationToken); } return AsyncUtils.True; } private async Task<bool> MoveToContentFromNonContentAsync(CancellationToken cancellationToken) { JsonToken tokenType; do { if (!(await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false))) { return false; } tokenType = TokenType; } while (tokenType == JsonToken.None || tokenType == JsonToken.Comment); return true; } internal JsonPosition GetPosition(int depth) { if (_stack != null && depth < _stack.Count) { return _stack[depth]; } return _currentPosition; } protected JsonReader() { _currentState = State.Start; _dateTimeZoneHandling = DateTimeZoneHandling.RoundtripKind; _dateParseHandling = DateParseHandling.DateTime; _floatParseHandling = FloatParseHandling.Double; _maxDepth = 64; CloseInput = true; } private void Push(JsonContainerType value) { UpdateScopeWithFinishedValue(); if (_currentPosition.Type == JsonContainerType.None) { _currentPosition = new JsonPosition(value); return; } if (_stack == null) { _stack = new List<JsonPosition>(); } _stack.Add(_currentPosition); _currentPosition = new JsonPosition(value); if (!_maxDepth.HasValue || !(Depth + 1 > _maxDepth) || _hasExceededMaxDepth) { return; } _hasExceededMaxDepth = true; throw JsonReaderException.Create(this, "The reader's MaxDepth of {0} has been exceeded.".FormatWith(CultureInfo.InvariantCulture, _maxDepth)); } private JsonContainerType Pop() { JsonPosition currentPosition; if (_stack != null && _stack.Count > 0) { currentPosition = _currentPosition; _currentPosition = _stack[_stack.Count - 1]; _stack.RemoveAt(_stack.Count - 1); } else { currentPosition = _currentPosition; _currentPosition = default(JsonPosition); } if (_maxDepth.HasValue && Depth <= _maxDepth) { _hasExceededMaxDepth = false; } return currentPosition.Type; } private JsonContainerType Peek() { return _currentPosition.Type; } public abstract bool Read(); public virtual int? ReadAsInt32() { JsonToken contentToken = GetContentToken(); switch (contentToken) { case JsonToken.None: case JsonToken.Null: case JsonToken.EndArray: return null; case JsonToken.Integer: case JsonToken.Float: { object value = Value; if (value is int) { return (int)value; } int num; if (value is BigInteger bigInteger) { num = (int)bigInteger; } else { try { num = Convert.ToInt32(value, CultureInfo.InvariantCulture); } catch (Exception ex) { throw JsonReaderException.Create(this, "Could not convert to integer: {0}.".FormatWith(CultureInfo.InvariantCulture, value), ex); } } SetToken(JsonToken.Integer, num, updateIndex: false); return num; } case JsonToken.String: { string s = (string)Value; return ReadInt32String(s); } default: throw JsonReaderException.Create(this, "Error reading integer. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken)); } } internal int? ReadInt32String(string? s) { if (StringUtils.IsNullOrEmpty(s)) { SetToken(JsonToken.Null, null, updateIndex: false); return null; } if (int.TryParse(s, NumberStyles.Integer, Culture, out var result)) { SetToken(JsonToken.Integer, result, updateIndex: false); return result; } SetToken(JsonToken.String, s, updateIndex: false); throw JsonReaderException.Create(this, "Could not convert string to integer: {0}.".FormatWith(CultureInfo.InvariantCulture, s)); } public virtual string? ReadAsString() { JsonToken contentToken = GetContentToken(); switch (contentToken) { case JsonToken.None: case JsonToken.Null: case JsonToken.EndArray: return null; case JsonToken.String: return (string)Value; default: if (JsonTokenUtils.IsPrimitiveToken(contentToken)) { object value = Value; if (value != null) { string text = ((!(value is IFormattable formattable)) ? ((value is Uri uri) ? uri.OriginalString : value.ToString()) : formattable.ToString(null, Culture)); SetToken(JsonToken.String, text, updateIndex: false); return text; } } throw JsonReaderException.Create(this, "Error reading string. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken)); } } public virtual byte[]? ReadAsBytes() { JsonToken contentToken = GetContentToken(); switch (contentToken) { case JsonToken.StartObject: { ReadIntoWrappedTypeObject(); byte[] array2 = ReadAsBytes(); ReaderReadAndAssert(); if (TokenType != JsonToken.EndObject) { throw JsonReaderException.Create(this, "Error reading bytes. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, TokenType)); } SetToken(JsonToken.Bytes, array2, updateIndex: false); return array2; } case JsonToken.String: { string text = (string)Value; Guid g; byte[] array3 = ((text.Length == 0) ? CollectionUtils.ArrayEmpty<byte>() : ((!ConvertUtils.TryConvertGuid(text, out g)) ? Convert.FromBase64String(text) : g.ToByteArray())); SetToken(JsonToken.Bytes, array3, updateIndex: false); return array3; } case JsonToken.None: case JsonToken.Null: case JsonToken.EndArray: return null; case JsonToken.Bytes: if (Value is Guid guid) { byte[] array = guid.ToByteArray(); SetToken(JsonToken.Bytes, array, updateIndex: false); return array; } return (byte[])Value; case JsonToken.StartArray: return ReadArrayIntoByteArray(); default: throw JsonReaderException.Create(this, "Error reading bytes. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken)); } } internal byte[] ReadArrayIntoByteArray() { List<byte> list = new List<byte>(); do { if (!Read()) { SetToken(JsonToken.None); } } while (!ReadArrayElementIntoByteArrayReportDone(list)); byte[] array = list.ToArray(); SetToken(JsonToken.Bytes, array, updateIndex: false); return array; } private bool ReadArrayElementIntoByteArrayReportDone(List<byte> buffer) { switch (TokenType) { case JsonToken.None: throw JsonReaderException.Create(this, "Unexpected end when reading bytes."); case JsonToken.Integer: buffer.Add(Convert.ToByte(Value, CultureInfo.InvariantCulture)); return false; case JsonToken.EndArray: return true; case JsonToken.Comment: return false; default: throw JsonReaderException.Create(this, "Unexpected token when reading bytes: {0}.".FormatWith(CultureInfo.InvariantCulture, TokenType)); } } public virtual double? ReadAsDouble() { JsonToken contentToken = GetContentToken(); switch (contentToken) { case JsonToken.None: case JsonToken.Null: case JsonToken.EndArray: return null; case JsonToken.Integer: case JsonToken.Float: { object value = Value; if (value is double) { return (double)value; } double num = ((!(value is BigInteger bigInteger)) ? Convert.ToDouble(value, CultureInfo.InvariantCulture) : ((double)bigInteger)); SetToken(JsonToken.Float, num, updateIndex: false); return num; } case JsonToken.String: return ReadDoubleString((string)Value); default: throw JsonReaderException.Create(this, "Error reading double. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken)); } } internal double? ReadDoubleString(string? s) { if (StringUtils.IsNullOrEmpty(s)) { SetToken(JsonToken.Null, null, updateIndex: false); return null; } if (double.TryParse(s, NumberStyles.Float | NumberStyles.AllowThousands, Culture, out var result)) { SetToken(JsonToken.Float, result, updateIndex: false); return result; } SetToken(JsonToken.String, s, updateIndex: false); throw JsonReaderException.Create(this, "Could not convert string to double: {0}.".FormatWith(CultureInfo.InvariantCulture, s)); } public virtual bool? ReadAsBoolean() { JsonToken contentToken = GetContentToken(); switch (contentToken) { case JsonToken.None: case JsonToken.Null: case JsonToken.EndArray: return null; case JsonToken.Integer: case JsonToken.Float: { bool flag = ((!(Value is BigInteger bigInteger)) ? Convert.ToBoolean(Value, CultureInfo.InvariantCulture) : (bigInteger != 0L)); SetToken(JsonToken.Boolean, flag, updateIndex: false); return flag; } case JsonToken.String: return ReadBooleanString((string)Value); case JsonToken.Boolean: return (bool)Value; default: throw JsonReaderException.Create(this, "Error reading boolean. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken)); } } internal bool? ReadBooleanString(string? s) { if (StringUtils.IsNullOrEmpty(s)) { SetToken(JsonToken.Null, null, updateIndex: false); return null; } if (bool.TryParse(s, out var result)) { SetToken(JsonToken.Boolean, result, updateIndex: false); return result; } SetToken(JsonToken.String, s, updateIndex: false); throw JsonReaderException.Create(this, "Could not convert string to boolean: {0}.".FormatWith(CultureInfo.InvariantCulture, s)); } public virtual decimal? ReadAsDecimal() { JsonToken contentToken = GetContentToken(); switch (contentToken) { case JsonToken.None: case JsonToken.Null: case JsonToken.EndArray: return null; case JsonToken.Integer: case JsonToken.Float: { object value = Value; if (value is decimal) { return (decimal)value; } decimal num; if (value is BigInteger bigInteger) { num = (decimal)bigInteger; } else { try { num = Convert.ToDecimal(value, CultureInfo.InvariantCulture); } catch (Exception ex) { throw JsonReaderException.Create(this, "Could not convert to decimal: {0}.".FormatWith(CultureInfo.InvariantCulture, value), ex); } } SetToken(JsonToken.Float, num, updateIndex: false); return num; } case JsonToken.String: return ReadDecimalString((string)Value); default: throw JsonReaderException.Create(this, "Error reading decimal. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken)); } } internal decimal? ReadDecimalString(string? s) { if (StringUtils.IsNullOrEmpty(s)) { SetToken(JsonToken.Null, null, updateIndex: false); return null; } if (decimal.TryParse(s, NumberStyles.Number, Culture, out var result)) { SetToken(JsonToken.Float, result, updateIndex: false); return result; } if (ConvertUtils.DecimalTryParse(s.ToCharArray(), 0, s.Length, out result) == ParseResult.Success) { SetToken(JsonToken.Float, result, updateIndex: false); return result; } SetToken(JsonToken.String, s, updateIndex: false); throw JsonReaderException.Create(this, "Could not convert string to decimal: {0}.".FormatWith(CultureInfo.InvariantCulture, s)); } public virtual DateTime? ReadAsDateTime() { switch (GetContentToken()) { case JsonToken.None: case JsonToken.Null: case JsonToken.EndArray: return null; case JsonToken.Date: if (Value is DateTimeOffset dateTimeOffset) { SetToken(JsonToken.Date, dateTimeOffset.DateTime, updateIndex: false); } return (DateTime)Value; case JsonToken.String: return ReadDateTimeString((string)Value); default: throw JsonReaderException.Create(this, "Error reading date. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, TokenType)); } } internal DateTime? ReadDateTimeString(string? s) { if (StringUtils.IsNullOrEmpty(s)) { SetToken(JsonToken.Null, null, updateIndex: false); return null; } if (DateTimeUtils.TryParseDateTime(s, DateTimeZoneHandling, _dateFormatString, Culture, out var dt)) { dt = DateTimeUtils.EnsureDateTime(dt, DateTimeZoneHandling); SetToken(JsonToken.Date, dt, updateIndex: false); return dt; } if (DateTime.TryParse(s, Culture, DateTimeStyles.RoundtripKind, out dt)) { dt = DateTimeUtils.EnsureDateTime(dt, DateTimeZoneHandling); SetToken(JsonToken.Date, dt, updateIndex: false); return dt; } throw JsonReaderException.Create(this, "Could not convert string to DateTime: {0}.".FormatWith(CultureInfo.InvariantCulture, s)); } public virtual DateTimeOffset? ReadAsDateTimeOffset() { JsonToken contentToken = GetContentToken(); switch (contentToken) { case JsonToken.None: case JsonToken.Null: case JsonToken.EndArray: return null; case JsonToken.Date: if (Value is DateTime dateTime) { SetToken(JsonToken.Date, new DateTimeOffset(dateTime), updateIndex: false); } return (DateTimeOffset)Value; case JsonToken.String: { string s = (string)Value; return ReadDateTimeOffsetString(s); } default: throw JsonReaderException.Create(this, "Error reading date. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken)); } } internal DateTimeOffset? ReadDateTimeOffsetString(string? s) { if (StringUtils.IsNullOrEmpty(s)) { SetToken(JsonToken.Null, null, updateIndex: false); return null; } if (DateTimeUtils.TryParseDateTimeOffset(s, _dateFormatString, Culture, out var dt)) { SetToken(JsonToken.Date, dt, updateIndex: false); return dt; } if (DateTimeOffset.TryParse(s, Culture, DateTimeStyles.RoundtripKind, out dt)) { SetToken(JsonToken.Date, dt, updateIndex: false); return dt; } SetToken(JsonToken.String, s, updateIndex: false); throw JsonReaderException.Create(this, "Could not convert string to DateTimeOffset: {0}.".FormatWith(CultureInfo.InvariantCulture, s)); } internal void ReaderReadAndAssert() { if (!Read()) { throw CreateUnexpectedEndException(); } } internal JsonReaderException CreateUnexpectedEndException() { return JsonReaderException.Create(this, "Unexpected end when reading JSON."); } internal void ReadIntoWrappedTypeObject() { ReaderReadAndAssert(); if (Value != null && Value.ToString() == "$type") { ReaderReadAndAssert(); if (Value != null && Value.ToString().StartsWith("System.Byte[]", StringComparison.Ordinal)) { ReaderReadAndAssert(); if (Value.ToString() == "$value") { return; } } } throw JsonReaderException.Create(this, "Error reading bytes. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, JsonToken.StartObject)); } public void Skip() { if (TokenType == JsonToken.PropertyName) { Read(); } if (JsonTokenUtils.IsStartToken(TokenType)) { int depth = Depth; while (Read() && depth < Depth) { } } } protected void SetToken(JsonToken newToken) { SetToken(newToken, null, updateIndex: true); } protected void SetToken(JsonToken newToken, object? value) { SetToken(newToken, value, updateIndex: true); } protected void SetToken(JsonToken newToken, object? value, bool updateIndex) { _tokenType = newToken; _value = value; switch (newToken) { case JsonToken.StartObject: _currentState = State.ObjectStart; Push(JsonContainerType.Object); break; case JsonToken.StartArray: _currentState = State.ArrayStart; Push(JsonContainerType.Array); break; case JsonToken.StartConstructor: _currentState = State.ConstructorStart; Push(JsonContainerType.Constructor); break; case JsonToken.EndObject: ValidateEnd(JsonToken.EndObject); break; case JsonToken.EndArray: ValidateEnd(JsonToken.EndArray); break; case JsonToken.EndConstructor: ValidateEnd(JsonToken.EndConstructor); break; case JsonToken.PropertyName: _currentState = State.Property; _currentPosition.PropertyName = (string)value; break; case JsonToken.Raw: case JsonToken.Integer: case JsonToken.Float: case JsonToken.String: case JsonToken.Boolean: case JsonToken.Null: case JsonToken.Undefined: case JsonToken.Date: case JsonToken.Bytes: SetPostValueState(updateIndex); break; case JsonToken.Comment: break; } } internal void SetPostValueState(bool updateIndex) { if (Peek() != 0 || SupportMultipleContent) { _currentState = State.PostValue; } else { SetFinished(); } if (updateIndex) { UpdateScopeWithFinishedValue(); } } private void UpdateScopeWithFinishedValue() { if (_currentPosition.HasIndex) { _currentPosition.Position++; } } private void ValidateEnd(JsonToken endToken) { JsonContainerType jsonContainerType = Pop(); if (GetTypeForCloseToken(endToken) != jsonContainerType) { throw JsonReaderException.Create(this, "JsonToken {0} is not valid for closing JsonType {1}.".FormatWith(CultureInfo.InvariantCulture, endToken, jsonContainerType)); } if (Peek() != 0 || SupportMultipleContent) { _currentState = State.PostValue; } else { SetFinished(); } } protected void SetStateBasedOnCurrent() { JsonContainerType jsonContainerType = Peek(); switch (jsonContainerType) { case JsonContainerType.Object: _currentState = State.Object; break; case JsonContainerType.Array: _currentState = State.Array; break; case JsonContainerType.Constructor: _currentState = State.Constructor; break; case JsonContainerType.None: SetFinished(); break; default: throw JsonReaderException.Create(this, "While setting the reader state back to current object an unexpected JsonType was encountered: {0}".FormatWith(CultureInfo.InvariantCulture, jsonContainerType)); } } private void SetFinished() { _currentState = ((!SupportMultipleContent) ? State.Finished : State.Start); } private JsonContainerType GetTypeForCloseToken(JsonToken token) { return token switch { JsonToken.EndObject => JsonContainerType.Object, JsonToken.EndArray => JsonContainerType.Array, JsonToken.EndConstructor => JsonContainerType.Constructor, _ => throw JsonReaderException.Create(this, "Not a valid close JsonToken: {0}".FormatWith(CultureInfo.InvariantCulture, token)), }; } void IDisposable.Dispose() { Dispose(disposing: true); GC.SuppressFinalize(this); } protected virtual void Dispose(bool disposing) { if (_currentState != State.Closed && disposing) { Close(); } } public virtual void Close() { _currentState = State.Closed; _tokenType = JsonToken.None; _value = null; } internal void ReadAndAssert() { if (!Read()) { throw JsonSerializationException.Create(this, "Unexpected end when reading JSON."); } } internal void ReadForTypeAndAssert(JsonContract? contract, bool hasConverter) { if (!ReadForType(contract, hasConverter)) { throw JsonSerializationException.Create(this, "Unexpected end when reading JSON."); } } internal bool ReadForType(JsonContract? contract, bool hasConverter) { if (hasConverter) { return Read(); } switch (contract?.InternalReadType ?? ReadType.Read) { case ReadType.Read: return ReadAndMoveToContent(); case ReadType.ReadAsInt32: ReadAsInt32(); break; case ReadType.ReadAsInt64: { bool result = ReadAndMoveToContent(); if (TokenType == JsonToken.Undefined) { throw JsonReaderException.Create(this, "An undefined token is not a valid {0}.".FormatWith(CultureInfo.InvariantCulture, contract?.UnderlyingType ?? typeof(long))); } return result; } case ReadType.ReadAsDecimal: ReadAsDecimal(); break; case ReadType.ReadAsDouble: ReadAsDouble(); break; case ReadType.ReadAsBytes: ReadAsBytes(); break; case ReadType.ReadAsBoolean: ReadAsBoolean(); break; case ReadType.ReadAsString: ReadAsString(); break; case ReadType.ReadAsDateTime: ReadAsDateTime(); break; case ReadType.ReadAsDateTimeOffset: ReadAsDateTimeOffset(); break; default: throw new ArgumentOutOfRangeException(); } return TokenType != JsonToken.None; } internal bool ReadAndMoveToContent() { if (Read()) { return MoveToContent(); } return false; } internal bool MoveToContent() { JsonToken tokenType = TokenType; while (tokenType == JsonToken.None || tokenType == JsonToken.Comment) { if (!Read()) { return false; } tokenType = TokenType; } return true; } private JsonToken GetContentToken() { JsonToken tokenType; do { if (!Read()) { SetToken(JsonToken.None); return JsonToken.None; } tokenType = TokenType; } while (tokenType == JsonToken.Comment); return tokenType; } } [Serializable] public class JsonReaderException : JsonException { public int LineNumber { get; } public int LinePosition { get; } public string? Path { get; } public JsonReaderException() { } public JsonReaderException(string message) : base(message) { } public JsonReaderException(string message, Exception innerException) : base(message, innerException) { } public JsonReaderException(SerializationInfo info, StreamingContext context) : base(info, context) { } public JsonReaderException(string message, string path, int lineNumber, int linePosition, Exception? innerException) : base(message, innerException) { Path = path; LineNumber = lineNumber; LinePosition = linePosition; } internal static JsonReaderException Create(JsonReader reader, string message) { return Create(reader, message, null); } internal static JsonReaderException Create(JsonReader reader, string message, Exception? ex) { return Create(reader as IJsonLineInfo, reader.Path, message, ex); } internal static JsonReaderException Create(IJsonLineInfo? lineInfo, string path, string message, Exception? ex) { message = JsonPosition.FormatMessage(lineInfo, path, message); int lineNumber; int linePosition; if (lineInfo != null && lineInfo.HasLineInfo()) { lineNumber = lineInfo.LineNumber; linePosition = lineInfo.LinePosition; } else { lineNumber = 0; linePosition = 0; } return new JsonReaderException(message, path, lineNumber, linePosition, ex); } } [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)] public sealed class JsonRequiredAttribute : Attribute { } [Serializable] public class JsonSerializationException : JsonException { public int LineNumber { get; } public int LinePosition { get; } public string? Path { get; } public JsonSerializationException() { } public JsonSerializationException(string message) : base(message) { } public JsonSerializationException(string message, Exception innerException) : base(message, innerException) { } public JsonSerializationException(SerializationInfo info, StreamingContext context) : base(info, context) { } public JsonSerializationException(string message, string path, int lineNumber, int linePosition, Exception? innerException) : base(message, innerException) { Path = path; LineNumber = lineNumber; LinePosition = linePosition; } internal static JsonSerializationException Create(JsonReader reader, string message) { return Create(reader, message, null); } internal static JsonSerializationException Create(JsonReader reader, string message, Exception? ex) { return Create(reader as IJsonLineInfo, reader.Path, message, ex); } internal static JsonSerializationException Create(IJsonLineInfo? lineInfo, string path, string message, Exception? ex) { message = JsonPosition.FormatMessage(lineInfo, path, message); int lineNumber; int linePosition; if (lineInfo != null && lineInfo.HasLineInfo()) { lineNumber = lineInfo.LineNumber; linePosition = lineInfo.LinePosition; } else { lineNumber = 0; linePosition = 0; } return new JsonSerializationException(message, path, lineNumber, linePosition, ex); } } [RequiresUnreferencedCode("Newtonsoft.Json relies on reflection over types that may be removed when trimming.")] [RequiresDynamicCode("Newtonsoft.Json relies on dynamically creating types that may not be available with Ahead of Time compilation.")] public class JsonSerializer { internal TypeNameHandling _typeNameHandling; internal TypeNameAssemblyFormatHandling _typeNameAssemblyFormatHandling; internal PreserveReferencesHandling _preserveReferencesHandling; internal ReferenceLoopHandling _referenceLoopHandling; internal MissingMemberHandling _missingMemberHandling; internal ObjectCreationHandling _objectCreationHandling; internal NullValueHandling _nullValueHandling; internal DefaultValueHandling _defaultValueHandling; internal ConstructorHandling _constructorHandling; internal MetadataPropertyHandling _metadataPropertyHandling; internal JsonConverterCollection? _converters; internal IContractResolver _contractResolver; internal ITraceWriter? _traceWriter; internal IEqualityComparer? _equalityComparer; internal ISerializationBinder _serializationBinder; internal StreamingContext _context; private IReferenceResolver? _referenceResolver; private Formatting? _formatting; private DateFormatHandling? _dateFormatHandling; private DateTimeZoneHandling? _dateTimeZoneHandling; private DateParseHandling? _dateParseHandling; private FloatFormatHandling? _floatFormatHandling; private FloatParseHandling? _floatParseHandling; private StringEscapeHandling? _stringEscapeHandling; private CultureInfo _culture; private int? _maxDepth; private bool _maxDepthSet; private bool? _checkAdditionalContent; private string? _dateFormatString; private bool _dateFormatStringSet; public virtual IReferenceResolver? ReferenceResolver { get { return GetReferenceResolver(); } set { if (value == null) { throw new ArgumentNullException("value", "Reference resolver cannot be null."); } _referenceResolver = value; } } [Obsolete("Binder is obsolete. Use SerializationBinder instead.")] public virtual SerializationBinder Binder { get { if (_serializationBinder is SerializationBinder result) { return result; } if (_serializationBinder is SerializationBinderAdapter serializationBinderAdapter) { return serializationBinderAdapter.SerializationBinder; } throw new InvalidOperationException("Cannot get SerializationBinder because an ISerializationBinder was previously set."); } set { if (value == null) { throw new ArgumentNullException("value", "Serialization binder cannot be null."); } _serializationBinder = (value as ISerializationBinder) ?? new SerializationBinderAdapter(value); } } public virtual ISerializationBinder SerializationBinder { get { return _serializationBinder; } set { if (value == null) { throw new ArgumentNullException("value", "Serialization binder cannot be null."); } _serializationBinder = value; } } public virtual ITraceWriter? TraceWriter { get { return _traceWriter; } set { _traceWriter = value; } } public virtual IEqualityComparer? EqualityComparer { get { return _equalityComparer; } set { _equalityComparer = value; } } public virtual TypeNameHandling TypeNameHandling { get { return _typeNameHandling; } set { if (value < TypeNameHandling.None || value > TypeNameHandling.Auto) { throw new ArgumentOutOfRangeException("value"); } _typeNameHandling = value; } } [Obsolete("TypeNameAssemblyFormat is obsolete. Use TypeNameAssemblyFormatHandling instead.")] public virtual FormatterAssemblyStyle TypeNameAssemblyFormat { get { return (FormatterAssemblyStyle)_typeNameAssemblyFormatHandling; } set { if (value < FormatterAssemblyStyle.Simple || value > FormatterAssemblyStyle.Full) { throw new ArgumentOutOfRangeException("value"); } _typeNameAssemblyFormatHandling = (TypeNameAssemblyFormatHandling)value; } } public virtual TypeNameAssemblyFormatHandling TypeNameAssemblyFormatHandling { get { return _typeNameAssemblyFormatHandling; } set { if (value < TypeNameAssemblyFormatHandling.Simple || value > TypeNameAssemblyFormatHandling.Full) { throw new ArgumentOutOfRangeException("value"); } _typeNameAssemblyFormatHandling = value; } } public virtual PreserveReferencesHandling PreserveReferencesHandling { get { return _preserveReferencesHandling; } set { if (value < PreserveReferencesHandling.None || value > PreserveReferencesHandling.All) { throw new ArgumentOutOfRangeException("value"); } _preserveReferencesHandling = value; } } public virtual ReferenceLoopHandling ReferenceLoopHandling { get { return _referenceLoopHandling; } set { if (value < ReferenceLoopHandling.Error || value > ReferenceLoopHandling.Serialize) { throw new ArgumentOutOfRangeException("value"); } _referenceLoopHandling = value; } } public virtual MissingMemberHandling MissingMemberHandling { get { return _missingMemberHandling; } set { if (value < MissingMemberHandling.Ignore || value > MissingMemberHandling.Error) { throw new ArgumentOutOfRangeException("value"); } _missingMemberHandling = value; } } public virtual NullValueHandling NullValueHandling { get { return _nullValueHandling; } set { if (value < NullValueHandling.Include || value > NullValueHandling.Ignore) { throw new ArgumentOutOfRangeException("value"); } _nullValueHandling = value; } } public virtual DefaultValueHandling DefaultValueHandling { get { return _defaultValueHandling; } set { if (value < DefaultValueHandling.Include || value > DefaultValueHandling.IgnoreAndPopulate) { throw new ArgumentOutOfRangeException("value"); } _defaultValueHandling = value; } } public virtual ObjectCreationHandling ObjectCreationHandling { get { return _objectCreationHandling; } set { if (value < ObjectCreationHandling.Auto || value > ObjectCreationHandling.Replace) { throw new ArgumentOutOfRangeException("value"); } _objectCreationHandling = value; } } public virtual ConstructorHandling ConstructorHandling { get { return _constructorHandling; } set { if (value < ConstructorHandling.Default || value > ConstructorHandling.AllowNonPublicDefaultConstructor) { throw new ArgumentOutOfRangeException("value"); } _constructorHandling = value; } } public virtual MetadataPropertyHandling MetadataPropertyHandling { get { return _metadataPropertyHandling; } set { if (value < MetadataPropertyHandling.Default || value > MetadataPropertyHandling.Ignore) { throw new ArgumentOutOfRangeException("value"); } _metadataPropertyHandling = value; } } public virtual JsonConverterCollection Converters { get { if (_converters == null) { _converters = new JsonConverterCollection(); } return _converters; } } public virtual IContractResolver ContractResolver { get { return _contractResolver; } set { _contractResolver = value ?? DefaultContractResolver.Instance; } } public virtual StreamingContext Context { get { return _context; } set { _context = value; } } public virtual Formatting Formatting { get { return _formatting.GetValueOrDefault(); } set { _formatting = value; } } public virtual DateFormatHandling DateFormatHandling { get { return _dateFormatHandling.GetValueOrDefault(); } set { _dateFormatHandling = value; } } public virtual DateTimeZoneHandling DateTimeZoneHandling { get { return _dateTimeZoneHandling.GetValueOrDefault(DateTimeZoneHandling.RoundtripKind); } set { _dateTimeZoneHandling = value; } } public virtual DateParseHandling DateParseHandling { get { return _dateParseHandling.GetValueOrDefault(DateParseHandling.DateTime); } set { _dateParseHandling = value; } } public virtual FloatParseHandling FloatParseHandling { get { return _floatParseHandling.GetValueOrDefault(); } set { _floatParseHandling = value; } } public virtual FloatFormatHandling FloatFormatHandling { get { return _floatFormatHandling.GetValueOrDefault(); } set { _floatFormatHandling = value; } } public virtual StringEscapeHandling StringEscapeHandling { get { return _stringEscapeHandling.GetValueOrDefault(); } set { _stringEscapeHandling = value; } } public virtual string DateFormatString { get { return _dateFormatString ?? "yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK"; } set { _dateFormatString = value; _dateFormatStringSet = true; } } public virtual CultureInfo Culture { get { return _culture ?? JsonSerializerSettings.DefaultCulture; } set { _culture = value; } } public virtual int? MaxDepth { get { return _maxDepth; } set { if (value <= 0) { throw new ArgumentException("Value must be positive.", "value"); } _maxDepth = value; _maxDepthSet = true; } } public virtual bool CheckAdditionalContent { get { return _checkAdditionalContent.GetValueOrDefault(); } set { _checkAdditionalContent = value; } } public virtual event EventHandler<Newtonsoft.Json.Serialization.ErrorEventArgs>? Error; internal bool IsCheckAdditionalContentSet() { return _checkAdditionalContent.HasValue; } public JsonSerializer() { _referenceLoopHandling = ReferenceLoopHandling.Error; _missingMemberHandling = MissingMemberHandling.Ignore; _nullValueHandling = NullValueHandling.Include; _defaultValueHandling = DefaultValueHandling.Include; _objectCreationHandling = ObjectCreationHandling.Auto; _preserveReferencesHandling = PreserveReferencesHandling.None; _constructorHandling = ConstructorHandling.Default; _typeNameHandling = TypeNameHandling.None; _metadataPropertyHandling = MetadataPropertyHandling.Default; _context = JsonSerializerSettings.DefaultContext; _serializationBinder = DefaultSerializationBinder.Instance; _culture = JsonSerializerSettings.DefaultCulture; _contractResolver = DefaultContractResolver.Instance; } public static JsonSerializer Create() { return new JsonSerializer(); } public static JsonSerializer Create(JsonSerializerSettings? settings) { JsonSerializer jsonSerializer = Create(); if (settings != null) { ApplySerializerSettings(jsonSerializer, settings); } return jsonSerializer; } public static JsonSerializer CreateDefault() { return Create(JsonConvert.DefaultSettings?.Invoke()); } public static JsonSerializer CreateDefault(JsonSerializerSettings? settings) { JsonSerializer jsonSerializer = CreateDefault(); if (settings != null) { ApplySerializerSettings(jsonSerializer, settings); } return jsonSerializer; } private static void ApplySerializerSettings(JsonSerializer serializer, JsonSerializerSettings settings) { if (!CollectionUtils.IsNullOrEmpty(settings.Converters)) { for (int i = 0; i < settings.Converters.Count; i++) { serializer.Converters.Insert(i, settings.Converters[i]); } } if (settings._typeNameHandling.HasValue) { serializer.TypeNameHandling = settings.TypeNameHandling; } if (settings._metadataPropertyHandling.HasValue) { serializer.MetadataPropertyHandling = settings.MetadataPropertyHandling; } if (settings._typeNameAssemblyFormatHandling.HasValue) { serializer.TypeNameAssemblyFormatHandling = settings.TypeNameAssemblyFormatHandling; } if (settings._preserveReferencesHandling.HasValue) { serializer.PreserveReferencesHandling = settings.PreserveReferencesHandling; } if (settings._referenceLoopHandling.HasValue) { serializer.ReferenceLoopHandling = settings.ReferenceLoopHandling; } if (settings._missingMemberHandling.HasValue) { serializer.MissingMemberHandling = settings.MissingMemberHandling; } if (settings._objectCreationHandling.HasValue) { serializer.ObjectCreationHandling = settings.ObjectCreationHandling; } if (settings._nullValueHandling.HasValue) { serializer.NullValueHandling = settings.NullValueHandling; } if (settings._defaultValueHandling.HasValue) { serializer.DefaultValueHandling = settings.DefaultValueHandling; } if (settings._constructorHandling.HasValue) { serializer.ConstructorHandling = settings.ConstructorHandling; } if (settings._context.HasValue) { serializer.Context = settings.Context; } if (settings._checkAdditionalContent.HasValue) { serializer._checkAdditionalContent = settings._checkAdditionalContent; } if (settings.Error != null) { serializer.Error += settings.Error; } if (settings.ContractResolver != null) { serializer.ContractResolver = settings.ContractResolver; } if (settings.ReferenceResolverProvider != null) { serializer.ReferenceResolver = settings.ReferenceResolverProvider(); } if (settings.TraceWriter != null) { serializer.TraceWriter = settings.TraceWriter; } if (settings.EqualityComparer != null) { serializer.EqualityComparer = settings.EqualityComparer; } if (settings.SerializationBinder != null) { serializer.SerializationBinder = settings.SerializationBinder; } if (settings._formatting.HasValue) { serializer._formatting = settings._formatting; } if (settings._dateFormatHandling.HasValue) { serializer._dateFormatHandling = settings._dateFormatHandling; } if (settings._dateTimeZoneHandling.HasValue) { serializer._dateTimeZoneHandling = settings._dateTimeZoneHandling; } if (settings._dateParseHandling.HasValue) { serializer._dateParseHandling = settings._dateParseHandling; } if (settings._dateFormatStringSet) { serializer._dateFormatString = settings._dateFormatString; serializer._dateFormatStringSet = settings._dateFormatStringSet; } if (settings._floatFormatHandling.HasValue) { serializer._floatFormatHandling = settings._floatFormatHandling; } if (settings._floatParseHandling.HasValue) { serializer._floatParseHandling = settings._floatParseHandling; } if (settings._stringEscapeHandling.HasValue) { serializer._stringEscapeHandling = settings._stringEscapeHandling; } if (settings._culture != null) { serializer._culture = settings._culture; } if (settings._maxDepthSet) { serializer._maxDepth = settings._maxDepth; serializer._maxDepthSet = settings._maxDepthSet; } } [DebuggerStepThrough] public void Populate(TextReader reader, object target) { Populate(new JsonTextReader(reader), target); } [DebuggerStepThrough] public void Populate(JsonReader reader, object target) { PopulateInternal(reader, target); } internal virtual void PopulateInternal(JsonReader reader, object target) { ValidationUtils.ArgumentNotNull(reader, "reader"); ValidationUtils.ArgumentNotNull(target, "target"); SetupReader(reader, out CultureInfo previousCulture, out DateTimeZoneHandling? previousDateTimeZoneHandling, out DateParseHandling? previousDateParseHandling, out FloatParseHandling? previousFloatParseHandling, out int? previousMaxDepth, out string previousDateFormatString); TraceJsonReader traceJsonReader = ((TraceWriter != null && TraceWriter.LevelFilter >= TraceLevel.Verbose) ? CreateTraceJsonReader(reader) : null); new JsonSerializerInternalReader(this).Populate(traceJsonReader ?? reader, target); if (traceJsonReader != null) { TraceWriter.Trace(TraceLevel.Verbose, traceJsonReader.GetDeserializedJsonMessage(), null); } ResetReader(reader, previousCulture, previousDateTimeZoneHandling, previousDateParseHandling, previousFloatParseHandling, previousMaxDepth, previousDateFormatString); } [DebuggerStepThrough] public object? Deserialize(JsonReader reader) { return Deserialize(reader, null); } [DebuggerStepThrough] public object? Deserialize(TextReader reader, Type objectType) { return Deserialize(new JsonTextReader(reader), objectType); } [DebuggerStepThrough] public T? Deserialize<T>(JsonReader reader) { return (T)Deserialize(reader, typeof(T)); } [DebuggerStepThrough] public object? Deserialize(JsonReader reader, Type? objectType) { return DeserializeInternal(reader, objectType); } internal virtual object? DeserializeInternal(JsonReader reader, Type? objectType) { ValidationUtils.ArgumentNotNull(reader, "reader"); SetupReader(reader, out CultureInfo previousCulture, out DateTimeZoneHandling? previousDateTimeZoneHandling, out DateParseHandling? previousDateParseHandling, out FloatParseHandling? previousFloatParseHandling, out int? previousMaxDepth, out string previousDateFormatString); TraceJsonReader traceJsonReader = ((TraceWriter != null && TraceWriter.LevelFilter >= TraceLevel.Verbose) ? CreateTraceJsonReader(reader) : null); object? result = new JsonSerializerInternalReader(this).Deserialize(traceJsonReader ?? reader, objectType, CheckAdditionalContent); if (traceJsonReader != null) { TraceWriter.Trace(TraceLevel.Verbose, traceJsonReader.GetDeserializedJsonMessage(), null); } ResetReader(reader, previousCulture, previousDateTimeZoneHandling, previousDateParseHandling, previousFloatParseHandling, previousMaxDepth, previousDateFormatString); return result; } internal void SetupReader(JsonReader reader, out CultureInfo? previousCulture, out DateTimeZoneHandling? previousDateTimeZoneHandling, out DateParseHandling? previousDateParseHandling, out FloatParseHandling? previousFloatParseHandling, out int? previousMaxDepth, out string? previousDateFormatString) { if (_culture != null && !_culture.Equals(reader.Culture)) { previousCulture = reader.Culture; reader.Culture = _culture
Plugins/SideLoader/SeriousWikibook.dll
Decompiled a day ago
The result has been truncated due to the large size, download it to view full contents!
using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Versioning; using System.Text; using BepInEx; using HarmonyLib; using Newtonsoft.Json; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.Events; using UnityEngine.UI; [assembly: CompilationRelaxations(8)] [assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] [assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)] [assembly: AssemblyTitle("SeriousWikibook")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("SeriousWikibook")] [assembly: AssemblyCopyright("Copyright © 2026")] [assembly: AssemblyTrademark("")] [assembly: ComVisible(false)] [assembly: Guid("ad8ce1b6-0bdb-406a-88db-cff7f8221c83")] [assembly: AssemblyFileVersion("1.0.0.0")] [assembly: TargetFramework(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] [assembly: AssemblyVersion("1.0.0.0")] namespace SeriousWikiBook; [BepInPlugin("serious.outward.wikibook", "Serious Wiki Book", "1.21.11")] public class WikiBookPlugin : BaseUnityPlugin { public static readonly int[] WikiBookItemIDs = new int[2] { 5100500, 5100510 }; private const int CleanWaterItemID = 5600000; private static readonly HashSet<int> s_equalBuySellItemIDs = new HashSet<int> { 6200040, 6200070, 6200090, 6200100, 6200110, 6200130, 6200170 }; private static readonly HashSet<string> s_equalBuySellItemNames = new HashSet<string>(StringComparer.Ordinal) { "butchersamethyst", "tinyaquamarine", "largeemerald", "smallsapphire", "mediumruby", "hackmanite", "tourmaline" }; private static readonly HashSet<int> s_unsellableItemIDs = new HashSet<int> { 6200010 }; private static readonly HashSet<string> s_unsellableItemNames = new HashSet<string>(StringComparer.Ordinal) { "tsarstone" }; internal static int OpenActionID = -1; internal static WikiBookPlugin Instance; private GameObject m_wikiWindow; private InventoryMenu m_inventoryMenu; private CharacterUI m_characterUI; private bool m_wikiOpen; private CanvasGroup m_inventoryCanvasGroup; private float m_originalInventoryAlpha; private bool m_originalInventoryInteractable; private bool m_originalInventoryBlocksRaycasts; private InputField m_searchField; private RectTransform m_entryListContent; private ScrollRect m_entryListScrollRect; private Scrollbar m_entryListScrollbar; private RectTransform m_articleContent; private ScrollRect m_articleScrollRect; private Text m_articleTitle; private Text m_articleCategory; private GameObject m_lastSelectedWikiObject; private Button m_activeLeftSourceButton; private Coroutine m_focusCoroutine; private readonly List<List<Button>> m_articleButtonRows = new List<List<Button>>(); private WikiCategory m_currentCategory = WikiCategory.None; private WikiViewState m_currentViewState = WikiViewState.CategoryOverview; private readonly List<WikiItemData> m_items = new List<WikiItemData>(); private readonly List<WikiRecipeData> m_cookingRecipes = new List<WikiRecipeData>(); private readonly List<WikiRecipeData> m_alchemyRecipes = new List<WikiRecipeData>(); private readonly List<WikiRecipeData> m_craftingRecipes = new List<WikiRecipeData>(); private readonly List<WikiEnchantmentData> m_enchantments = new List<WikiEnchantmentData>(); private readonly Dictionary<int, WikiItemData> m_itemsByGameId = new Dictionary<int, WikiItemData>(); private readonly List<Item> m_allGameItemPrefabs = new List<Item>(); private readonly List<Recipe> m_allGameRecipes = new List<Recipe>(); private readonly List<EnchantmentRecipe> m_allGameEnchantmentRecipes = new List<EnchantmentRecipe>(); private readonly List<Enchantment> m_allGameEnchantments = new List<Enchantment>(); private readonly Dictionary<int, List<Recipe>> m_gameRecipesByResultItemId = new Dictionary<int, List<Recipe>>(); private readonly Dictionary<int, List<WikiRecipeData>> m_recipesByResultItemId = new Dictionary<int, List<WikiRecipeData>>(); private readonly Dictionary<int, List<WikiRecipeData>> m_recipesUsingItemId = new Dictionary<int, List<WikiRecipeData>>(); private readonly Dictionary<int, List<WikiRecipeData>> m_decraftRecipesUsingItemId = new Dictionary<int, List<WikiRecipeData>>(); private readonly Dictionary<int, EnchantmentRecipe> m_enchantmentRecipesByRecipeId = new Dictionary<int, EnchantmentRecipe>(); private readonly Dictionary<int, List<EnchantmentRecipe>> m_enchantmentRecipesByResultId = new Dictionary<int, List<EnchantmentRecipe>>(); private readonly Dictionary<int, Enchantment> m_enchantmentsByPresetId = new Dictionary<int, Enchantment>(); private readonly Dictionary<int, List<EnchantmentRecipe>> m_compatibleEnchantmentsByItemId = new Dictionary<int, List<EnchantmentRecipe>>(); private readonly Dictionary<int, List<Item>> m_compatibleItemsByEnchantmentResultId = new Dictionary<int, List<Item>>(); private WikiLocalizationData m_localizationData; private WikiCraftingOverrideFile m_craftingOverrideFile; private WikiLegacyUpgradeFile m_legacyUpgradeFile; private readonly Dictionary<int, List<WikiLegacyUpgradeData>> m_legacyUpgradesBySourceItemId = new Dictionary<int, List<WikiLegacyUpgradeData>>(); private readonly Dictionary<int, List<WikiLegacyUpgradeData>> m_legacyUpgradesByResultItemId = new Dictionary<int, List<WikiLegacyUpgradeData>>(); private readonly HashSet<string> m_favorites = new HashSet<string>(StringComparer.Ordinal); private readonly Dictionary<Button, Button> m_leftMainToStar = new Dictionary<Button, Button>(); private readonly Dictionary<Button, Button> m_leftStarToMain = new Dictionary<Button, Button>(); private readonly HashSet<string> m_loggedUnsupportedEffectTypes = new HashSet<string>(StringComparer.Ordinal); private string m_favoritesFilePath; private int m_lastBackHandledFrame = -1; private bool m_gameDataCacheBuilt; private Texture2D m_wikiBackgroundTexture; private Sprite m_wikiBackgroundSprite; private Sprite m_backgroundSprite; private Sprite m_buttonSprite; private Color m_buttonColor = Color.white; private Type m_buttonImageType = (Type)0; private Material m_buttonMaterial; private Transition m_buttonTransition = (Transition)1; private ColorBlock m_buttonColors; private SpriteState m_buttonSpriteState; private Font m_buttonFont; private FontStyle m_buttonFontStyle = (FontStyle)0; private Color m_buttonTextColor = Color.white; private int m_buttonFontSize = 20; private TextAnchor m_buttonTextAlignment = (TextAnchor)4; private Sprite m_separatorSprite; private Color m_separatorColor = Color.white; private Font m_outwardFont; private static readonly Dictionary<string, string> s_englishUiText = new Dictionary<string, string>(StringComparer.Ordinal); internal bool IsWikiOpen => m_wikiOpen; internal bool IsSearchFieldFocused { get { if (!m_wikiOpen || (Object)(object)m_searchField == (Object)null) { return false; } if (m_searchField.isFocused) { return true; } EventSystem current = EventSystem.current; return (Object)(object)current != (Object)null && (Object)(object)current.currentSelectedGameObject == (Object)(object)((Component)m_searchField).gameObject; } } internal static bool UseEnglishUi { get { try { LocalizationManager instance = LocalizationManager.Instance; if ((Object)(object)instance == (Object)null) { return false; } string text = instance.CurrentLanguage ?? ""; return text.StartsWith("en", StringComparison.OrdinalIgnoreCase) || text.IndexOf("english", StringComparison.OrdinalIgnoreCase) >= 0; } catch { return false; } } } internal static bool IsWikiBookItem(int itemId) { return Extensions.Contains(WikiBookItemIDs, itemId); } internal static string L(string german, string english) { return UseEnglishUi ? english : german; } internal static string GetOpenActionText() { return L("Öffnen", "Open"); } internal static string LocalizeUiText(string text) { if (string.IsNullOrEmpty(text)) { return text ?? ""; } if (TryGetJsonExactTranslation(text, out var translated)) { return translated; } if (!UseEnglishUi) { return text; } if (s_englishUiText.TryGetValue(text, out translated)) { return translated; } if (text.StartsWith("<b>", StringComparison.Ordinal) && text.EndsWith("</b>", StringComparison.Ordinal) && text.Length >= 7) { return "<b>" + LocalizeUiText(text.Substring(3, text.Length - 7)) + "</b>"; } if (text.StartsWith("• ", StringComparison.Ordinal)) { return "• " + LocalizeUiText(text.Substring(2)); } if (text.StartsWith("← Zurück zu ", StringComparison.Ordinal)) { return "← Back to " + text.Substring("← Zurück zu ".Length); } if (text.StartsWith("Gültige Items für ", StringComparison.Ordinal)) { return "Valid items for " + text.Substring("Gültige Items für ".Length); } if (text.StartsWith("Kategorie: ", StringComparison.Ordinal)) { return "Category: " + LocalizeUiText(text.Substring("Kategorie: ".Length)); } if (text.StartsWith("[Verzauberung] ", StringComparison.Ordinal)) { return "[Enchantment] " + text.Substring("[Verzauberung] ".Length); } if (text.StartsWith("[Kochrezepte] ", StringComparison.Ordinal)) { return "[Cooking] " + text.Substring("[Kochrezepte] ".Length); } if (text.StartsWith("[Alchemie] ", StringComparison.Ordinal)) { return "[Alchemy] " + text.Substring("[Alchemie] ".Length); } if (text.StartsWith("[Handwerk] ", StringComparison.Ordinal)) { return "[Crafting] " + text.Substring("[Handwerk] ".Length); } if (text.StartsWith("Verzauberung ", StringComparison.Ordinal)) { return "Enchantment " + text.Substring("Verzauberung ".Length); } if (text.StartsWith("Gewährt: ", StringComparison.Ordinal)) { return "Grants: " + LocalizeEnglishUnits(text.Substring("Gewährt: ".Length)); } if (text.StartsWith("Aufbau von „", StringComparison.Ordinal)) { return "Buildup of “" + text.Substring("Aufbau von „".Length).Replace("“", "”"); } if (text.StartsWith("Entfernt: ", StringComparison.Ordinal)) { return "Removes: " + text.Substring("Entfernt: ".Length); } if (text.StartsWith("Entfernt Statuseffekte mit „", StringComparison.Ordinal)) { return text.Replace("Entfernt Statuseffekte mit „", "Removes status effects containing “").Replace("“ im Namen", "” in their name"); } if (text.StartsWith("Entfernt Statuseffekte vom Typ: ", StringComparison.Ordinal)) { return "Removes status effects of type: " + text.Substring("Entfernt Statuseffekte vom Typ: ".Length); } if (text.StartsWith("Verzauberungsort: ", StringComparison.Ordinal)) { return "Enchanting Location: " + LocalizeUiText(text.Substring("Verzauberungsort: ".Length)); } if (text.StartsWith("Ausbau: ", StringComparison.Ordinal)) { return "Upgrade: " + LocalizeUiText(text.Substring("Ausbau: ".Length)); } if (text.EndsWith(" Treffer gefunden.", StringComparison.Ordinal)) { return text.Substring(0, text.Length - " Treffer gefunden.".Length) + " results found."; } if (text.StartsWith("Es werden maximal ", StringComparison.Ordinal) && text.EndsWith(" Treffer angezeigt.", StringComparison.Ordinal)) { string text2 = text.Substring("Es werden maximal ".Length, text.Length - "Es werden maximal ".Length - " Treffer angezeigt.".Length); return "A maximum of " + text2 + " results is shown."; } int num = text.IndexOf(':'); if (num > 0) { string text3 = text.Substring(0, num); string text4 = TranslateDynamicLabel(text3); if (!string.Equals(text3, text4, StringComparison.Ordinal)) { string text5 = text.Substring(num + 1); string text6 = (text5.StartsWith(" ", StringComparison.Ordinal) ? " " : ""); string text7 = text5.TrimStart(Array.Empty<char>()); return text4 + ":" + text6 + LocalizeUiText(text7); } } return LocalizeEnglishUnits(ApplyEnglishPhraseReplacements(text)); } private static string TranslateDynamicLabel(string label) { if (string.IsNullOrEmpty(label)) { return label ?? ""; } if (TryGetJsonExactTranslation(label, out var translated)) { return translated; } if (s_englishUiText.TryGetValue(label, out translated)) { return translated; } if (string.Equals(label, "Kapazität", StringComparison.Ordinal)) { return "Capacity"; } if (label.EndsWith("-Resistenz", StringComparison.Ordinal)) { string text = label.Substring(0, label.Length - "-Resistenz".Length); return LocalizeUiText(text) + " Resistance"; } if (label.EndsWith("-Schadensmodifikator", StringComparison.Ordinal)) { string text2 = label.Substring(0, label.Length - "-Schadensmodifikator".Length); return LocalizeUiText(text2) + " Damage Modifier"; } if (label.EndsWith("-Bonusschaden", StringComparison.Ordinal)) { string text3 = label.Substring(0, label.Length - "-Bonusschaden".Length); return LocalizeUiText(text3) + " Bonus Damage"; } if (label.StartsWith("Aufbau von „", StringComparison.Ordinal)) { return "Buildup of “" + label.Substring("Aufbau von „".Length); } return label; } private static bool TryGetJsonExactTranslation(string text, out string translated) { translated = null; WikiBookPlugin instance = Instance; WikiLocalizationData wikiLocalizationData = (((Object)(object)instance == (Object)null) ? null : instance.m_localizationData); if (wikiLocalizationData == null || wikiLocalizationData.exact == null || string.IsNullOrEmpty(text)) { return false; } if (!wikiLocalizationData.exact.TryGetValue(text, out var value) || value == null) { return false; } translated = (UseEnglishUi ? value.en : value.de); if (string.IsNullOrWhiteSpace(translated)) { translated = (UseEnglishUi ? value.de : value.en); } return !string.IsNullOrWhiteSpace(translated); } private static string LocalizeDataKey(string key, string germanFallback, string englishFallback) { WikiBookPlugin instance = Instance; WikiLocalizationData wikiLocalizationData = (((Object)(object)instance == (Object)null) ? null : instance.m_localizationData); if (wikiLocalizationData != null && wikiLocalizationData.sourceTypeKeys != null && !string.IsNullOrWhiteSpace(key) && wikiLocalizationData.sourceTypeKeys.TryGetValue(key, out var value) && value != null) { string text = (UseEnglishUi ? value.en : value.de); if (string.IsNullOrWhiteSpace(text)) { text = (UseEnglishUi ? value.de : value.en); } if (!string.IsNullOrWhiteSpace(text)) { return text; } } return L(germanFallback, englishFallback); } private static string ApplyJsonReplacementRules(string text, IEnumerable<WikiReplacementRule> rules) { if (string.IsNullOrEmpty(text) || rules == null) { return text ?? ""; } List<WikiReplacementRule> list = (from rule in rules where rule != null && !string.IsNullOrEmpty(rule.de) orderby rule.de.Length descending select rule).ToList(); if (list.Count == 0) { return text; } StringBuilder stringBuilder = new StringBuilder(text.Length + 32); int num = 0; while (num < text.Length) { WikiReplacementRule wikiReplacementRule = null; foreach (WikiReplacementRule item in list) { if (num + item.de.Length > text.Length || string.CompareOrdinal(text, num, item.de, 0, item.de.Length) != 0) { continue; } wikiReplacementRule = item; break; } if (wikiReplacementRule == null) { stringBuilder.Append(text[num]); num++; } else { string text2 = (UseEnglishUi ? wikiReplacementRule.en : wikiReplacementRule.de); stringBuilder.Append(text2 ?? ""); num += wikiReplacementRule.de.Length; } } return stringBuilder.ToString(); } private static string ApplyEnglishPhraseReplacements(string text) { if (string.IsNullOrEmpty(text)) { return text ?? ""; } WikiBookPlugin instance = Instance; return ApplyJsonReplacementRules(text, (((Object)(object)instance == (Object)null) ? null : instance.m_localizationData)?.phraseReplacements); } private static string LocalizeEnglishUnits(string text) { if (string.IsNullOrEmpty(text)) { return text ?? ""; } WikiBookPlugin instance = Instance; text = ApplyJsonReplacementRules(text, (((Object)(object)instance == (Object)null) ? null : instance.m_localizationData)?.unitReplacements); return ApplyEnglishPhraseReplacements(text); } internal bool ShouldBlockInventoryHide(InventoryMenu menu) { if (!m_wikiOpen || !IsSearchFieldFocused) { return false; } return (Object)(object)m_inventoryMenu == (Object)null || (Object)(object)menu == (Object)(object)m_inventoryMenu; } internal bool ShouldHandleCharacterUICancel(CharacterUI characterUI) { if (!m_wikiOpen) { return false; } return (Object)(object)m_characterUI == (Object)null || (Object)(object)characterUI == (Object)(object)m_characterUI; } internal bool ShouldBlockCharacterUIInput(CharacterUI characterUI) { if (!m_wikiOpen) { return false; } if (!IsSearchFieldFocused) { return false; } return (Object)(object)m_characterUI == (Object)null || (Object)(object)characterUI == (Object)(object)m_characterUI; } private void Awake() { //IL_001d: Unknown result type (might be due to invalid IL or missing references) Instance = this; ((BaseUnityPlugin)this).Logger.LogInfo((object)"WikiBook 1.21.11 wird geladen..."); new Harmony("serious.outward.wikibook").PatchAll(); LoadWikiBackground(); LoadWikiData(); LoadFavorites(); ((BaseUnityPlugin)this).Logger.LogInfo((object)"WikiBook 1.21.11 wurde geladen."); } private void Update() { if (!m_wikiOpen) { return; } SyncSearchFieldWithCharacterUI(); EventSystem current = EventSystem.current; if ((Object)(object)current == (Object)null || (Object)(object)current.currentSelectedGameObject == (Object)null) { return; } GameObject currentSelectedGameObject = current.currentSelectedGameObject; if (!((Object)(object)currentSelectedGameObject == (Object)(object)m_lastSelectedWikiObject)) { m_lastSelectedWikiObject = currentSelectedGameObject; if ((Object)(object)m_entryListContent != (Object)null && currentSelectedGameObject.transform.IsChildOf((Transform)(object)m_entryListContent)) { EnsureListElementVisible(currentSelectedGameObject.GetComponent<RectTransform>()); } if ((Object)(object)m_articleContent != (Object)null && currentSelectedGameObject.transform.IsChildOf((Transform)(object)m_articleContent)) { EnsureArticleElementVisible(currentSelectedGameObject.GetComponent<RectTransform>()); } } } private void SyncSearchFieldWithCharacterUI() { if (m_wikiOpen && !((Object)(object)m_searchField == (Object)null) && m_searchField.isFocused && !((Object)(object)m_characterUI == (Object)null)) { GameObject gameObject = ((Component)m_searchField).gameObject; if ((Object)(object)m_characterUI.CurrentSelectedGameObject != (Object)(object)gameObject || (Object)(object)m_characterUI.EventSystemCurrentSelectedGo != (Object)(object)gameObject) { m_characterUI.SetSelectedGameObject(gameObject); } } } private void LoadWikiBackground() { //IL_008d: Unknown result type (might be due to invalid IL or missing references) //IL_0093: Expected O, but got Unknown //IL_00fe: Unknown result type (might be due to invalid IL or missing references) //IL_010d: Unknown result type (might be due to invalid IL or missing references) try { string directoryName = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); if (string.IsNullOrEmpty(directoryName)) { return; } string text = Path.Combine(directoryName, "WikiBG.png"); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Suche Wiki-Hintergrund: " + text)); if (!File.Exists(text)) { ((BaseUnityPlugin)this).Logger.LogWarning((object)"WikiBG.png wurde nicht gefunden."); return; } byte[] array = File.ReadAllBytes(text); if (array != null && array.Length != 0) { Texture2D val = new Texture2D(2, 2, (TextureFormat)5, false); if (!ImageConversion.LoadImage(val, array)) { Object.Destroy((Object)(object)val); ((BaseUnityPlugin)this).Logger.LogWarning((object)"WikiBG.png konnte nicht geladen werden."); return; } ((Object)val).name = "SeriousWikiBackgroundTexture"; ((Texture)val).wrapMode = (TextureWrapMode)1; ((Texture)val).filterMode = (FilterMode)1; m_wikiBackgroundTexture = val; m_wikiBackgroundSprite = Sprite.Create(val, new Rect(0f, 0f, (float)((Texture)val).width, (float)((Texture)val).height), new Vector2(0.5f, 0.5f), 100f); ((Object)m_wikiBackgroundSprite).name = "SeriousWikiBackgroundSprite"; ((BaseUnityPlugin)this).Logger.LogInfo((object)("WikiBG.png erfolgreich geladen: " + ((Texture)val).width + "x" + ((Texture)val).height)); } } catch (Exception ex) { ((BaseUnityPlugin)this).Logger.LogError((object)"Fehler beim Laden von WikiBG.png:"); ((BaseUnityPlugin)this).Logger.LogError((object)ex); } } internal void OpenWiki() { if (m_wikiOpen) { return; } ((BaseUnityPlugin)this).Logger.LogInfo((object)"Versuche eigenständiges Wiki zu öffnen..."); if (m_items.Count == 0 && m_cookingRecipes.Count == 0 && m_alchemyRecipes.Count == 0 && m_craftingRecipes.Count == 0 && m_enchantments.Count == 0) { LoadWikiData(); } BuildGameDataCache(); m_inventoryMenu = Object.FindObjectOfType<InventoryMenu>(); if ((Object)(object)m_inventoryMenu == (Object)null) { ((BaseUnityPlugin)this).Logger.LogError((object)"Kein InventoryMenu gefunden."); return; } ((BaseUnityPlugin)this).Logger.LogInfo((object)("InventoryMenu gefunden: " + ((Object)((Component)m_inventoryMenu).gameObject).name)); m_characterUI = ((Component)m_inventoryMenu).GetComponentInParent<CharacterUI>(); if ((Object)(object)m_characterUI == (Object)null) { m_characterUI = Object.FindObjectOfType<CharacterUI>(); } if ((Object)(object)m_characterUI != (Object)null) { ((BaseUnityPlugin)this).Logger.LogInfo((object)("CharacterUI gefunden. RewiredID=" + m_characterUI.RewiredID)); } else { ((BaseUnityPlugin)this).Logger.LogWarning((object)"Kein CharacterUI gefunden. Die native InputField-Sperre kann dann nicht greifen."); } ExtractOutwardStyles(); Canvas componentInParent = ((Component)m_inventoryMenu).GetComponentInParent<Canvas>(); if ((Object)(object)componentInParent == (Object)null || (Object)(object)componentInParent.rootCanvas == (Object)null) { ((BaseUnityPlugin)this).Logger.LogError((object)"Kein Root-Canvas gefunden."); return; } BuildWikiWindow(((Component)componentInParent.rootCanvas).transform); if (!((Object)(object)m_wikiWindow == (Object)null)) { m_inventoryCanvasGroup = ((Component)m_inventoryMenu).GetComponent<CanvasGroup>(); if ((Object)(object)m_inventoryCanvasGroup != (Object)null) { m_originalInventoryAlpha = m_inventoryCanvasGroup.alpha; m_originalInventoryInteractable = m_inventoryCanvasGroup.interactable; m_originalInventoryBlocksRaycasts = m_inventoryCanvasGroup.blocksRaycasts; m_inventoryCanvasGroup.alpha = 0f; m_inventoryCanvasGroup.interactable = false; m_inventoryCanvasGroup.blocksRaycasts = false; ((BaseUnityPlugin)this).Logger.LogInfo((object)"Inventar wurde für das Wiki unsichtbar gemacht."); } m_wikiWindow.SetActive(true); m_wikiWindow.transform.SetAsLastSibling(); m_wikiOpen = true; m_lastSelectedWikiObject = null; ShowCategoryOverview(); ((BaseUnityPlugin)this).Logger.LogInfo((object)"Wiki wurde geöffnet."); } } private void BuildGameDataCache() { if (!m_gameDataCacheBuilt) { m_allGameItemPrefabs.Clear(); m_allGameRecipes.Clear(); m_allGameEnchantmentRecipes.Clear(); m_allGameEnchantments.Clear(); m_gameRecipesByResultItemId.Clear(); m_recipesByResultItemId.Clear(); m_recipesUsingItemId.Clear(); m_decraftRecipesUsingItemId.Clear(); m_enchantmentRecipesByRecipeId.Clear(); m_enchantmentRecipesByResultId.Clear(); m_enchantmentsByPresetId.Clear(); m_compatibleEnchantmentsByItemId.Clear(); m_compatibleItemsByEnchantmentResultId.Clear(); m_legacyUpgradesBySourceItemId.Clear(); m_legacyUpgradesByResultItemId.Clear(); bool flag = TryLoadItemPrefabsFromPrivateDictionary(); bool flag2 = TryLoadRecipesFromPrivateDictionary(); bool flag3 = TryLoadEnchantmentRecipesFromRecipeManager(); bool flag4 = TryLoadEnchantmentPrefabsFromPrivateDictionary(); if (!flag || !flag2) { TryLoadGameDataFromAssetBundles(!flag, !flag2); } TryLoadEnchantmentDataFromAssetBundles(!flag4, !flag3); ResolveLegacyUpgradeRuntimeData(); BuildGameRecipeLookups(); BuildRecipeRelationshipLookups(); BuildEnchantmentLookups(); BindWikiEnchantmentsToRuntime(); BuildEnchantmentCompatibilityLookups(); m_gameDataCacheBuilt = true; ((BaseUnityPlugin)this).Logger.LogInfo((object)"Outward-Spieldaten gecacht."); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Echte Item-Prefabs: " + m_allGameItemPrefabs.Count)); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Echte Rezepte: " + m_allGameRecipes.Count)); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Echte Verzauberungsrezepte: " + m_allGameEnchantmentRecipes.Count)); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Echte Verzauberungen: " + m_allGameEnchantments.Count)); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Item->Herstellung Beziehungen: " + m_recipesByResultItemId.Count)); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Item->Verwendet-in Beziehungen: " + m_recipesUsingItemId.Count)); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Item->Verzauberungen Beziehungen: " + m_compatibleEnchantmentsByItemId.Count)); } } private void ResolveLegacyUpgradeRuntimeData() { m_legacyUpgradesBySourceItemId.Clear(); m_legacyUpgradesByResultItemId.Clear(); if (m_legacyUpgradeFile == null || m_legacyUpgradeFile.upgrades == null) { return; } int num = 0; int num2 = 0; int num3 = 0; int num4 = 0; foreach (WikiLegacyUpgradeData upgrade in m_legacyUpgradeFile.upgrades) { if (upgrade == null) { continue; } bool flag = upgrade.resolveMissingIdsFromRuntimeName || (m_legacyUpgradeFile.indexPolicy != null && (m_legacyUpgradeFile.indexPolicy.resolveZeroIdsFromRuntimeItemNames || m_legacyUpgradeFile.indexPolicy.resolveFromAliases)); int sourceItemId = upgrade.sourceItemId; int resultItemId = upgrade.resultItemId; if (flag) { upgrade.sourceItemId = ResolveLegacyRuntimeItemId(upgrade, source: true); upgrade.resultItemId = ResolveLegacyRuntimeItemId(upgrade, source: false); } if ((sourceItemId <= 0 && upgrade.sourceItemId > 0) || (resultItemId <= 0 && upgrade.resultItemId > 0)) { num4++; } bool flag2 = upgrade.includeSourceInItemIndex || upgrade.includeSourceInGlobalSearch || (m_legacyUpgradeFile.indexPolicy != null && (m_legacyUpgradeFile.indexPolicy.includeAllSourceItemsInItems || m_legacyUpgradeFile.indexPolicy.includeAllSourceItemsInGlobalSearch)); bool flag3 = upgrade.includeResultInItemIndex || upgrade.includeResultInGlobalSearch || (m_legacyUpgradeFile.indexPolicy != null && (m_legacyUpgradeFile.indexPolicy.includeAllResultItemsInItems || m_legacyUpgradeFile.indexPolicy.includeAllResultItemsInGlobalSearch)); if (upgrade.sourceItemId > 0) { num++; if (flag2) { EnsureWikiItemEntry(upgrade.sourceItemId, GetLegacyPreferredName(upgrade, source: true), "ADDED FROM LEGACY UPGRADES"); } AddToLookup(m_legacyUpgradesBySourceItemId, upgrade.sourceItemId, upgrade); } if (upgrade.resultItemId > 0) { num2++; WikiItemData wikiItemData = (flag3 ? EnsureWikiItemEntry(upgrade.resultItemId, GetLegacyPreferredName(upgrade, source: false), "ADDED FROM LEGACY UPGRADES") : GetItemByGameId(upgrade.resultItemId)); if (wikiItemData != null && string.IsNullOrWhiteSpace(wikiItemData.sourceTypeKey)) { wikiItemData.sourceTypeKey = ((!string.IsNullOrWhiteSpace(upgrade.sourceTypeKey)) ? upgrade.sourceTypeKey : m_legacyUpgradeFile.sourceTypeKey); } AddToLookup(m_legacyUpgradesByResultItemId, upgrade.resultItemId, upgrade); } if (upgrade.sourceItemId <= 0 || upgrade.resultItemId <= 0) { num3++; } } ((BaseUnityPlugin)this).Logger.LogInfo((object)("Legacy-Upgrades aufgelöst: Quellen=" + num + ", Ergebnisse=" + num2 + ", per Alias ergänzt=" + num4 + ", unvollständig=" + num3)); if (m_legacyUpgradeFile.validation != null && m_legacyUpgradeFile.validation.expectedUpgradeCount > 0 && m_legacyUpgradeFile.validation.expectedUpgradeCount != m_legacyUpgradeFile.upgrades.Count) { ((BaseUnityPlugin)this).Logger.LogWarning((object)("Legacy-Upgrades: Erwartet=" + m_legacyUpgradeFile.validation.expectedUpgradeCount + ", geladen=" + m_legacyUpgradeFile.upgrades.Count)); } } private int ResolveLegacyRuntimeItemId(WikiLegacyUpgradeData upgrade, bool source) { if (upgrade == null) { return 0; } int num = (source ? upgrade.sourceItemId : upgrade.resultItemId); List<string> requestedNames = GetLegacyLookupNames(upgrade, source).ToList(); Item cachedGameItemPrefab = GetCachedGameItemPrefab(num); bool flag = string.Equals(upgrade.idStatus, "verified", StringComparison.OrdinalIgnoreCase) || (m_legacyUpgradeFile != null && m_legacyUpgradeFile.indexPolicy != null && m_legacyUpgradeFile.indexPolicy.preferVerifiedItemIds); if ((Object)(object)cachedGameItemPrefab != (Object)null) { if (flag || LegacyRuntimeItemMatchesNames(cachedGameItemPrefab, requestedNames)) { return num; } ((BaseUnityPlugin)this).Logger.LogWarning((object)("Legacy-ID passt nicht zum Namen und wird neu aufgelöst: " + num + " | " + GetLegacyPreferredName(upgrade, source))); } string context = (source ? ("Quelle: " + GetLegacyPreferredName(upgrade, source: true)) : ("Ergebnis: " + GetLegacyPreferredName(upgrade, source: false))); return ResolveRuntimeItemIdByNames(requestedNames, context); } private IEnumerable<string> GetLegacyLookupNames(WikiLegacyUpgradeData upgrade, bool source) { if (upgrade == null) { yield break; } string fallbackName = (source ? upgrade.sourceFallbackName : upgrade.resultFallbackName); string wikiName = (source ? upgrade.sourceWikiName : upgrade.resultWikiName); List<string> aliases = (source ? upgrade.sourceAliases : upgrade.resultAliases); if (!string.IsNullOrWhiteSpace(fallbackName)) { yield return fallbackName; } if (!string.IsNullOrWhiteSpace(wikiName)) { yield return wikiName; } if (aliases == null) { yield break; } foreach (string alias in aliases) { if (!string.IsNullOrWhiteSpace(alias)) { yield return alias; } } } private string GetLegacyPreferredName(WikiLegacyUpgradeData upgrade, bool source) { if (upgrade == null) { return ""; } string text = (source ? upgrade.sourceFallbackName : upgrade.resultFallbackName); if (!string.IsNullOrWhiteSpace(text)) { return text; } string text2 = (source ? upgrade.sourceWikiName : upgrade.resultWikiName); if (!string.IsNullOrWhiteSpace(text2)) { return text2; } List<string> list = (source ? upgrade.sourceAliases : upgrade.resultAliases); if (list != null) { string text3 = list.FirstOrDefault((string x) => !string.IsNullOrWhiteSpace(x)); if (!string.IsNullOrWhiteSpace(text3)) { return text3; } } return ""; } private bool LegacyRuntimeItemMatchesNames(Item item, IEnumerable<string> requestedNames) { if ((Object)(object)item == (Object)null || requestedNames == null) { return false; } HashSet<string> hashSet = new HashSet<string>(from x in requestedNames.Where((string x) => !string.IsNullOrWhiteSpace(x)).Select(NormalizeLegacyItemName) where !string.IsNullOrWhiteSpace(x) select x, StringComparer.Ordinal); if (hashSet.Count == 0) { return true; } foreach (string runtimeItemNameAlias in GetRuntimeItemNameAliases(item)) { string text = NormalizeLegacyItemName(runtimeItemNameAlias); if (hashSet.Contains(text)) { return true; } foreach (string item2 in hashSet) { if (text.EndsWith(item2, StringComparison.Ordinal)) { return true; } } } return false; } private int ResolveRuntimeItemIdByNames(IEnumerable<string> requestedNames, string context) { if (requestedNames == null) { return 0; } List<string> list = (from x in requestedNames.Where((string x) => !string.IsNullOrWhiteSpace(x)).Select(NormalizeLegacyItemName) where !string.IsNullOrWhiteSpace(x) select x).Distinct<string>(StringComparer.Ordinal).ToList(); if (list.Count == 0) { return 0; } int num = 0; List<Item> list2 = new List<Item>(); foreach (Item allGameItemPrefab in m_allGameItemPrefabs) { if (!IsPlayerFacingWikiItem(allGameItemPrefab)) { continue; } int num2 = 0; foreach (string runtimeItemNameAlias in GetRuntimeItemNameAliases(allGameItemPrefab)) { string text = NormalizeLegacyItemName(runtimeItemNameAlias); if (string.IsNullOrWhiteSpace(text)) { continue; } foreach (string item in list) { if (text == item) { num2 = Math.Max(num2, 1000); } else if (text.EndsWith(item, StringComparison.Ordinal) || item.EndsWith(text, StringComparison.Ordinal)) { num2 = Math.Max(num2, 950); } else if (item.Length >= 7 && text.Length >= 7 && (text.Contains(item) || item.Contains(text))) { num2 = Math.Max(num2, 700); } } } if (num2 > 0) { if (num2 > num) { num = num2; list2.Clear(); list2.Add(allGameItemPrefab); } else if (num2 == num) { list2.Add(allGameItemPrefab); } } } List<Item> list3 = (from item in list2 where (Object)(object)item != (Object)null group item by item.ItemID into @group select @group.First()).ToList(); if (num >= 700 && list3.Count == 1) { return list3[0].ItemID; } if (list3.Count > 1) { ((BaseUnityPlugin)this).Logger.LogWarning((object)("Legacy-Itemname ist mehrdeutig: " + context + " | Treffer=" + list3.Count + " | Namen=" + string.Join(", ", requestedNames.ToArray()))); } else { ((BaseUnityPlugin)this).Logger.LogWarning((object)("Legacy-Item nicht aufgelöst: " + context + " | Namen=" + string.Join(", ", requestedNames.ToArray()))); } return 0; } private int ResolveRuntimeItemIdByName(string requestedName) { return ResolveRuntimeItemIdByNames(new string[1] { requestedName }, requestedName); } private string NormalizeLegacyItemName(string value) { string text = NormalizeLookupText(value); if (string.IsNullOrWhiteSpace(text)) { return ""; } int i; for (i = 0; i < text.Length && char.IsDigit(text[i]); i++) { } if (i > 0 && i < text.Length) { text = text.Substring(i); } return text.Replace("sabre", "saber").Replace("helmet", "helm"); } private Item GetCachedGameItemPrefab(int gameItemId) { if (gameItemId <= 0) { return null; } return ((IEnumerable<Item>)m_allGameItemPrefabs).FirstOrDefault((Func<Item, bool>)((Item item) => (Object)(object)item != (Object)null && item.ItemID == gameItemId)); } private IEnumerable<string> GetRuntimeItemNameAliases(Item item) { if (!((Object)(object)item == (Object)null)) { string displayName = GetGameItemDisplayName(item); if (!string.IsNullOrWhiteSpace(displayName)) { yield return displayName; } if (!string.IsNullOrWhiteSpace(((Object)item).name)) { yield return ((Object)item).name; } string reflectedName = GetStringMember(item, "Name", "EDITOR_Name", "EditorName", "ItemName", "PrefabName", "LocalizationKey", "LocalizationID"); if (!string.IsNullOrWhiteSpace(reflectedName)) { yield return reflectedName; } } } private bool TryLoadItemPrefabsFromPrivateDictionary() { try { FieldInfo fieldInfo = AccessTools.Field(typeof(ResourcesPrefabManager), "ITEM_PREFABS"); if (fieldInfo == null) { ((BaseUnityPlugin)this).Logger.LogWarning((object)"ITEM_PREFABS-Feld wurde nicht gefunden."); return false; } if (!(fieldInfo.GetValue(null) is IDictionary dictionary)) { ((BaseUnityPlugin)this).Logger.LogWarning((object)"ITEM_PREFABS konnte nicht als IDictionary gelesen werden."); return false; } HashSet<int> hashSet = new HashSet<int>(); foreach (DictionaryEntry item in dictionary) { object? value = item.Value; Item val = (Item)((value is Item) ? value : null); if (!((Object)(object)val == (Object)null) && val.ItemID > 0 && hashSet.Add(val.ItemID)) { m_allGameItemPrefabs.Add(val); } } ((BaseUnityPlugin)this).Logger.LogInfo((object)("ITEM_PREFABS per Reflection gelesen: " + m_allGameItemPrefabs.Count)); return m_allGameItemPrefabs.Count > 0; } catch (Exception ex) { ((BaseUnityPlugin)this).Logger.LogError((object)"Fehler beim Lesen von ITEM_PREFABS:"); ((BaseUnityPlugin)this).Logger.LogError((object)ex); return false; } } private bool TryLoadRecipesFromPrivateDictionary() { try { FieldInfo fieldInfo = AccessTools.Field(typeof(RecipeManager), "m_recipes"); if (fieldInfo == null) { ((BaseUnityPlugin)this).Logger.LogWarning((object)"RecipeManager.m_recipes wurde nicht gefunden."); return false; } if (!(fieldInfo.GetValue(RecipeManager.Instance) is IDictionary dictionary)) { ((BaseUnityPlugin)this).Logger.LogWarning((object)"RecipeManager.m_recipes konnte nicht als IDictionary gelesen werden."); return false; } HashSet<int> hashSet = new HashSet<int>(); foreach (DictionaryEntry item in dictionary) { object? value = item.Value; Recipe val = (Recipe)((value is Recipe) ? value : null); if (!((Object)(object)val == (Object)null) && (val.RecipeID == 0 || hashSet.Add(val.RecipeID))) { m_allGameRecipes.Add(val); } } ((BaseUnityPlugin)this).Logger.LogInfo((object)("RecipeManager.m_recipes per Reflection gelesen: " + m_allGameRecipes.Count)); return m_allGameRecipes.Count > 0; } catch (Exception ex) { ((BaseUnityPlugin)this).Logger.LogError((object)"Fehler beim Lesen von RecipeManager.m_recipes:"); ((BaseUnityPlugin)this).Logger.LogError((object)ex); return false; } } private void TryLoadGameDataFromAssetBundles(bool loadItems, bool loadRecipes) { try { HashSet<int> hashSet = new HashSet<int>(m_allGameItemPrefabs.Select((Item x) => x.ItemID)); HashSet<int> hashSet2 = new HashSet<int>(from x in m_allGameRecipes where (Object)(object)x != (Object)null select x.RecipeID); DictionaryExt<string, List<Object>> objectAssetsPerBundle = ResourcesPrefabManager.ObjectAssetsPerBundle; if (objectAssetsPerBundle == null) { return; } foreach (string key in objectAssetsPerBundle.Keys) { List<Object> list = objectAssetsPerBundle[key]; if (list == null) { continue; } foreach (Object item in list) { if (item == (Object)null) { continue; } if (loadItems) { GameObject val = (GameObject)(object)((item is GameObject) ? item : null); if ((Object)(object)val != (Object)null) { Item component = val.GetComponent<Item>(); if ((Object)(object)component != (Object)null && component.ItemID > 0 && hashSet.Add(component.ItemID)) { m_allGameItemPrefabs.Add(component); } } } if (loadRecipes) { Recipe val2 = (Recipe)(object)((item is Recipe) ? item : null); if ((Object)(object)val2 != (Object)null && (val2.RecipeID == 0 || hashSet2.Add(val2.RecipeID))) { m_allGameRecipes.Add(val2); } } } } ((BaseUnityPlugin)this).Logger.LogInfo((object)"Fallback-Asset-Suche abgeschlossen."); } catch (Exception ex) { ((BaseUnityPlugin)this).Logger.LogError((object)"Fallback-Asset-Suche fehlgeschlagen:"); ((BaseUnityPlugin)this).Logger.LogError((object)ex); } } private bool TryLoadEnchantmentRecipesFromRecipeManager() { try { RecipeManager instance = RecipeManager.Instance; if (instance == null) { ((BaseUnityPlugin)this).Logger.LogWarning((object)"RecipeManager.Instance ist null. EnchantmentRecipe-Fallback wird benutzt."); return false; } MethodInfo method = typeof(RecipeManager).GetMethod("GetEnchantmentRecipes", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic, null, Type.EmptyTypes, null); if (method == null) { ((BaseUnityPlugin)this).Logger.LogWarning((object)"RecipeManager.GetEnchantmentRecipes() wurde nicht gefunden. AssetBundle-Fallback wird benutzt."); return false; } object obj = method.Invoke(instance, null); if (!(obj is IEnumerable enumerable)) { ((BaseUnityPlugin)this).Logger.LogWarning((object)"GetEnchantmentRecipes() lieferte keine auflistbare Sammlung."); return false; } HashSet<int> hashSet = new HashSet<int>(); HashSet<string> hashSet2 = new HashSet<string>(StringComparer.Ordinal); foreach (object item2 in enumerable) { EnchantmentRecipe val = (EnchantmentRecipe)((item2 is EnchantmentRecipe) ? item2 : null); if ((Object)(object)val == (Object)null && item2 is DictionaryEntry) { object? value = ((DictionaryEntry)item2).Value; val = (EnchantmentRecipe)((value is EnchantmentRecipe) ? value : null); } if ((Object)(object)val == (Object)null && item2 != null) { try { PropertyInfo property = item2.GetType().GetProperty("Value", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic); if (property != null) { object? value2 = property.GetValue(item2, null); val = (EnchantmentRecipe)((value2 is EnchantmentRecipe) ? value2 : null); } } catch { } } if ((Object)(object)val == (Object)null) { continue; } try { if (val.RecipeID < 0) { val.InitID(); } } catch { } int recipeID = val.RecipeID; string item = ((Object)val).name ?? ""; if ((recipeID > 0 && hashSet.Add(recipeID)) || (recipeID <= 0 && hashSet2.Add(item))) { m_allGameEnchantmentRecipes.Add(val); } } ((BaseUnityPlugin)this).Logger.LogInfo((object)("EnchantmentRecipes aus RecipeManager geladen: " + m_allGameEnchantmentRecipes.Count)); return m_allGameEnchantmentRecipes.Count > 0; } catch (Exception ex) { ((BaseUnityPlugin)this).Logger.LogError((object)"Fehler beim Laden der EnchantmentRecipes aus RecipeManager:"); ((BaseUnityPlugin)this).Logger.LogError((object)ex); return false; } } private bool TryLoadEnchantmentPrefabsFromPrivateDictionary() { try { FieldInfo fieldInfo = AccessTools.Field(typeof(ResourcesPrefabManager), "ENCHANTMENT_PREFABS"); if (fieldInfo == null) { ((BaseUnityPlugin)this).Logger.LogWarning((object)"ENCHANTMENT_PREFABS-Feld wurde nicht gefunden. AssetBundle-Fallback wird benutzt."); return false; } if (!(fieldInfo.GetValue(null) is IDictionary dictionary)) { return false; } HashSet<int> hashSet = new HashSet<int>(); foreach (DictionaryEntry item in dictionary) { object? value = item.Value; Enchantment val = (Enchantment)((value is Enchantment) ? value : null); if ((Object)(object)val == (Object)null) { object? value2 = item.Value; GameObject val2 = (GameObject)((value2 is GameObject) ? value2 : null); if ((Object)(object)val2 != (Object)null) { val = val2.GetComponent<Enchantment>(); } } if (!((Object)(object)val == (Object)null)) { int intMember = GetIntMember(val, "PresetID"); if (intMember > 0 && hashSet.Add(intMember)) { m_allGameEnchantments.Add(val); } } } ((BaseUnityPlugin)this).Logger.LogInfo((object)("ENCHANTMENT_PREFABS per Reflection gelesen: " + m_allGameEnchantments.Count)); return m_allGameEnchantments.Count > 0; } catch (Exception ex) { ((BaseUnityPlugin)this).Logger.LogWarning((object)("ENCHANTMENT_PREFABS konnten nicht gelesen werden: " + ex.Message)); return false; } } private void TryLoadEnchantmentDataFromAssetBundles(bool loadEnchantments, bool loadRecipes) { try { HashSet<int> hashSet = new HashSet<int>(); HashSet<string> hashSet2 = new HashSet<string>(StringComparer.Ordinal); HashSet<int> hashSet3 = new HashSet<int>(from x in m_allGameEnchantments select GetIntMember(x, "PresetID") into x where x > 0 select x); DictionaryExt<string, List<Object>> objectAssetsPerBundle = ResourcesPrefabManager.ObjectAssetsPerBundle; if (objectAssetsPerBundle == null) { return; } foreach (string key in objectAssetsPerBundle.Keys) { List<Object> list = objectAssetsPerBundle[key]; if (list == null) { continue; } foreach (Object item2 in list) { if (item2 == (Object)null) { continue; } if (loadRecipes) { EnchantmentRecipe val = (EnchantmentRecipe)(object)((item2 is EnchantmentRecipe) ? item2 : null); if ((Object)(object)val != (Object)null) { try { if (val.RecipeID < 0) { val.InitID(); } } catch { } int recipeID = val.RecipeID; string item = ((Object)val).name ?? ""; if ((recipeID > 0 && hashSet.Add(recipeID)) || (recipeID <= 0 && hashSet2.Add(item))) { m_allGameEnchantmentRecipes.Add(val); } } } if (!loadEnchantments) { continue; } GameObject val2 = (GameObject)(object)((item2 is GameObject) ? item2 : null); if ((Object)(object)val2 == (Object)null) { continue; } Enchantment component = val2.GetComponent<Enchantment>(); if (!((Object)(object)component == (Object)null)) { int intMember = GetIntMember(component, "PresetID"); if (intMember > 0 && hashSet3.Add(intMember)) { m_allGameEnchantments.Add(component); } } } } ((BaseUnityPlugin)this).Logger.LogInfo((object)"Enchantment-Asset-Suche abgeschlossen."); } catch (Exception ex) { ((BaseUnityPlugin)this).Logger.LogError((object)"Enchantment-Asset-Suche fehlgeschlagen:"); ((BaseUnityPlugin)this).Logger.LogError((object)ex); } } private void BuildGameRecipeLookups() { m_gameRecipesByResultItemId.Clear(); foreach (Recipe allGameRecipe in m_allGameRecipes) { if ((Object)(object)allGameRecipe == (Object)null || allGameRecipe.Results == null) { continue; } ItemReferenceQuantity[] results = allGameRecipe.Results; foreach (ItemReferenceQuantity val in results) { if (val.ItemID > 0) { AddToLookup(m_gameRecipesByResultItemId, val.ItemID, allGameRecipe); } } } } private IEnumerable<WikiRecipeData> GetAllWikiRecipes() { foreach (WikiRecipeData cookingRecipe in m_cookingRecipes) { yield return cookingRecipe; } foreach (WikiRecipeData alchemyRecipe in m_alchemyRecipes) { yield return alchemyRecipe; } foreach (WikiRecipeData craftingRecipe in m_craftingRecipes) { yield return craftingRecipe; } } private WikiCategory GetWikiCategoryForRecipe(WikiRecipeData recipe) { if (recipe == null) { return WikiCategory.Crafting; } if (m_cookingRecipes.Contains(recipe)) { return WikiCategory.Cooking; } if (m_alchemyRecipes.Contains(recipe)) { return WikiCategory.Alchemy; } if (m_craftingRecipes.Contains(recipe)) { return WikiCategory.Crafting; } string text = (recipe.category ?? "").ToLowerInvariant(); if (text.Contains("koch") || text.Contains("cook")) { return WikiCategory.Cooking; } if (text.Contains("alchem")) { return WikiCategory.Alchemy; } return WikiCategory.Crafting; } private bool RecipeMatchesWikiCategory(Recipe gameRecipe, WikiCategory category) { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)gameRecipe == (Object)null) { return false; } string text = ((object)gameRecipe.CraftingStationType/*cast due to .constrained prefix*/).ToString().ToLowerInvariant(); return category switch { WikiCategory.Cooking => text.Contains("cook"), WikiCategory.Alchemy => text.Contains("alchem"), WikiCategory.Crafting => !text.Contains("cook") && !text.Contains("alchem"), _ => true, }; } private void BuildRecipeRelationshipLookups() { m_recipesByResultItemId.Clear(); m_recipesUsingItemId.Clear(); m_decraftRecipesUsingItemId.Clear(); foreach (WikiRecipeData allWikiRecipe in GetAllWikiRecipes()) { if (allWikiRecipe == null) { continue; } Recipe val = FindGameRecipe(allWikiRecipe); bool flag = IsDecraftRecipe(allWikiRecipe, val); if (!flag) { bool flag2 = false; if (allWikiRecipe.gameResultItemId > 0) { AddToLookup(m_recipesByResultItemId, allWikiRecipe.gameResultItemId, allWikiRecipe); flag2 = true; } if (allWikiRecipe.results != null) { foreach (WikiItemReference result in allWikiRecipe.results) { if (result != null && result.gameItemId > 0) { AddToLookup(m_recipesByResultItemId, result.gameItemId, allWikiRecipe); flag2 = true; } } } if (!flag2 && (Object)(object)val != (Object)null && val.Results != null && val.Results.Length != 0 && val.Results[0].ItemID > 0) { AddToLookup(m_recipesByResultItemId, val.Results[0].ItemID, allWikiRecipe); } } List<WikiItemReference> effectiveRecipeIngredients = GetEffectiveRecipeIngredients(allWikiRecipe, val); List<RecipeIngredient> list = ResolveRuntimeIngredients(allWikiRecipe, val, effectiveRecipeIngredients); for (int i = 0; i < effectiveRecipeIngredients.Count; i++) { WikiItemReference wikiItemReference = effectiveRecipeIngredients[i]; if (wikiItemReference == null) { continue; } if (wikiItemReference.gameItemId > 0) { if (flag) { AddToLookup(m_decraftRecipesUsingItemId, wikiItemReference.gameItemId, allWikiRecipe); } else { AddToLookup(m_recipesUsingItemId, wikiItemReference.gameItemId, allWikiRecipe); } continue; } RecipeIngredient val2 = ((i < list.Count) ? list[i] : null); if (val2 == null) { continue; } List<Item> matchingItemsForRecipeIngredient = GetMatchingItemsForRecipeIngredient(val2, allWikiRecipe, val); foreach (Item item in matchingItemsForRecipeIngredient) { if (!((Object)(object)item == (Object)null) && item.ItemID > 0) { if (flag) { AddToLookup(m_decraftRecipesUsingItemId, item.ItemID, allWikiRecipe); } else { AddToLookup(m_recipesUsingItemId, item.ItemID, allWikiRecipe); } } } } } SortRecipeLookup(m_recipesByResultItemId); SortRecipeLookup(m_recipesUsingItemId); SortRecipeLookup(m_decraftRecipesUsingItemId); } private bool IsDecraftRecipe(WikiRecipeData wikiRecipe, Recipe gameRecipe) { string text = string.Join(" ", (wikiRecipe == null) ? "" : wikiRecipe.wikiId, (wikiRecipe == null) ? "" : wikiRecipe.fallbackName, (wikiRecipe == null) ? "" : wikiRecipe.category, (wikiRecipe == null) ? "" : wikiRecipe.station, ((Object)(object)gameRecipe == (Object)null) ? "" : gameRecipe.EDITOR_Name, ((Object)(object)gameRecipe == (Object)null) ? "" : gameRecipe.Name).ToLowerInvariant(); return text.Contains("decraft") || text.Contains("deconstruct") || text.Contains("dismantle") || text.Contains("salvage") || text.Contains("zerleg"); } private void BuildEnchantmentLookups() { m_enchantmentRecipesByRecipeId.Clear(); m_enchantmentRecipesByResultId.Clear(); m_enchantmentsByPresetId.Clear(); foreach (EnchantmentRecipe allGameEnchantmentRecipe in m_allGameEnchantmentRecipes) { if (!((Object)(object)allGameEnchantmentRecipe == (Object)null)) { if (allGameEnchantmentRecipe.RecipeID > 0 && !m_enchantmentRecipesByRecipeId.ContainsKey(allGameEnchantmentRecipe.RecipeID)) { m_enchantmentRecipesByRecipeId.Add(allGameEnchantmentRecipe.RecipeID, allGameEnchantmentRecipe); } if (allGameEnchantmentRecipe.ResultID > 0) { AddToLookup(m_enchantmentRecipesByResultId, allGameEnchantmentRecipe.ResultID, allGameEnchantmentRecipe); } } } foreach (Enchantment allGameEnchantment in m_allGameEnchantments) { if (!((Object)(object)allGameEnchantment == (Object)null)) { int intMember = GetIntMember(allGameEnchantment, "PresetID"); if (intMember > 0 && !m_enchantmentsByPresetId.ContainsKey(intMember)) { m_enchantmentsByPresetId.Add(intMember, allGameEnchantment); } } } } private void BindWikiEnchantmentsToRuntime() { int num = 0; foreach (WikiEnchantmentData enchantment in m_enchantments) { if (enchantment != null && enchantment.gameEnchantmentId <= 0) { EnchantmentRecipe val = FindRuntimeEnchantmentRecipeByName(enchantment); if (!((Object)(object)val == (Object)null)) { enchantment.gameRecipeId = val.RecipeID; enchantment.gameEnchantmentId = val.ResultID; num++; } } } ((BaseUnityPlugin)this).Logger.LogInfo((object)("Wiki-Verzauberungen an Runtime gebunden: " + num + "/" + m_enchantments.Count)); } private EnchantmentRecipe FindRuntimeEnchantmentRecipeByName(WikiEnchantmentData data) { if (data == null) { return null; } List<string> list = new List<string>(); AddNormalizedLookupTarget(list, data.fallbackName); AddNormalizedLookupTarget(list, data.wikiId); if (list.Count == 0) { return null; } EnchantmentRecipe val = null; int num = 0; foreach (EnchantmentRecipe allGameEnchantmentRecipe in m_allGameEnchantmentRecipes) { if ((Object)(object)allGameEnchantmentRecipe == (Object)null) { continue; } Enchantment gameEnchantmentByPresetId = GetGameEnchantmentByPresetId(allGameEnchantmentRecipe.ResultID); List<string> list2 = new List<string>(); if ((Object)(object)gameEnchantmentByPresetId != (Object)null) { AddNormalizedLookupTarget(list2, gameEnchantmentByPresetId.Name); AddNormalizedLookupTarget(list2, ((Object)gameEnchantmentByPresetId).name); } AddNormalizedLookupTarget(list2, ((Object)allGameEnchantmentRecipe).name); int num2 = 0; foreach (string item in list) { foreach (string item2 in list2) { if (item2 == item) { num2 = Math.Max(num2, 100); } else if (item2.EndsWith(item, StringComparison.Ordinal) || item.EndsWith(item2, StringComparison.Ordinal)) { num2 = Math.Max(num2, 90); } else if (item2.Contains(item) || item.Contains(item2)) { num2 = Math.Max(num2, 70); } } } if (num2 > num) { num = num2; val = allGameEnchantmentRecipe; } } return (num >= 70) ? val : null; } private void AddNormalizedLookupTarget(List<string> targetList, string value) { string text = NormalizeLookupText(value); if (string.IsNullOrWhiteSpace(text)) { return; } if (!targetList.Contains(text)) { targetList.Add(text); } int i; for (i = 0; i < text.Length && char.IsDigit(text[i]); i++) { } if (i > 0 && i < text.Length) { string item = text.Substring(i); if (!targetList.Contains(item)) { targetList.Add(item); } } } private string NormalizeLookupText(string value) { if (string.IsNullOrWhiteSpace(value)) { return ""; } char[] value2 = value.ToLowerInvariant().Where(char.IsLetterOrDigit).ToArray(); return new string(value2); } private string GetLogicalEnchantmentKey(EnchantmentRecipe recipe) { if ((Object)(object)recipe == (Object)null) { return ""; } Enchantment gameEnchantmentByPresetId = GetGameEnchantmentByPresetId(recipe.ResultID); string value = ""; if ((Object)(object)gameEnchantmentByPresetId != (Object)null) { try { value = gameEnchantmentByPresetId.Name; } catch { } if (string.IsNullOrWhiteSpace(value)) { value = ((Object)gameEnchantmentByPresetId).name; } } if (string.IsNullOrWhiteSpace(value)) { value = ((Object)recipe).name; } return NormalizeLogicalEnchantmentName(value); } private string GetLogicalEnchantmentKey(WikiEnchantmentData data) { if (data == null) { return ""; } EnchantmentRecipe val = FindGameEnchantmentRecipe(data); if ((Object)(object)val != (Object)null) { return GetLogicalEnchantmentKey(val); } string value = ((!string.IsNullOrWhiteSpace(data.fallbackName)) ? data.fallbackName : data.wikiId); return NormalizeLogicalEnchantmentName(value); } private string NormalizeLogicalEnchantmentName(string value) { string text = NormalizeLookupText(value); if (string.IsNullOrWhiteSpace(text)) { return ""; } int i; for (i = 0; i < text.Length && char.IsDigit(text[i]); i++) { } if (i > 0 && i < text.Length) { text = text.Substring(i); } string[] array = new string[16] { "bodyarmor", "bodyarmour", "brustpanzer", "brustrüstung", "brustruestung", "chestarmor", "chest", "torso", "helmet", "helm", "head", "boots", "boot", "stiefel", "feet", "foot" }; bool flag; do { flag = false; string[] array2 = array; foreach (string text2 in array2) { if (text.Length > text2.Length && text.EndsWith(text2, StringComparison.Ordinal)) { text = text.Substring(0, text.Length - text2.Length); flag = true; break; } } } while (flag && text.Length > 0); return text; } private void BuildEnchantmentCompatibilityLookups() { m_compatibleEnchantmentsByItemId.Clear(); m_compatibleItemsByEnchantmentResultId.Clear(); foreach (EnchantmentRecipe allGameEnchantmentRecipe in m_allGameEnchantmentRecipes) { if ((Object)(object)allGameEnchantmentRecipe == (Object)null || allGameEnchantmentRecipe.ResultID <= 0) { continue; } foreach (Item allGameItemPrefab in m_allGameItemPrefabs) { if (IsPlayerFacingWikiItem(allGameItemPrefab)) { bool flag = false; try { flag = ((EquipmentData)(ref allGameEnchantmentRecipe.CompatibleEquipments)).Match(allGameItemPrefab); } catch { } if (flag) { AddToLookup(m_compatibleEnchantmentsByItemId, allGameItemPrefab.ItemID, allGameEnchantmentRecipe); AddToLookup(m_compatibleItemsByEnchantmentResultId, allGameEnchantmentRecipe.ResultID, allGameItemPrefab); } } } } foreach (KeyValuePair<int, List<EnchantmentRecipe>> item in m_compatibleEnchantmentsByItemId) { item.Value.Sort((EnchantmentRecipe a, EnchantmentRecipe b) => string.Compare(GetEnchantmentDisplayName(GetOrCreateWikiEnchantmentData(a)), GetEnchantmentDisplayName(GetOrCreateWikiEnchantmentData(b)), StringComparison.CurrentCultureIgnoreCase)); } foreach (KeyValuePair<int, List<Item>> item2 in m_compatibleItemsByEnchantmentResultId) { item2.Value.Sort((Item a, Item b) => string.Compare(GetGameItemDisplayName(a), GetGameItemDisplayName(b), StringComparison.CurrentCultureIgnoreCase)); } } private static void AddToLookup<TKey, TValue>(Dictionary<TKey, List<TValue>> lookup, TKey key, TValue value) { if (!lookup.TryGetValue(key, out var value2)) { value2 = new List<TValue>(); lookup.Add(key, value2); } if (!value2.Contains(value)) { value2.Add(value); } } private void SortRecipeLookup(Dictionary<int, List<WikiRecipeData>> lookup) { foreach (KeyValuePair<int, List<WikiRecipeData>> item in lookup) { item.Value.Sort((WikiRecipeData a, WikiRecipeData b) => string.Compare(GetRecipeDisplayName(a), GetRecipeDisplayName(b), StringComparison.CurrentCultureIgnoreCase)); } } private void LoadWikiData() { try { m_items.Clear(); m_cookingRecipes.Clear(); m_alchemyRecipes.Clear(); m_craftingRecipes.Clear(); m_enchantments.Clear(); m_itemsByGameId.Clear(); m_legacyUpgradesBySourceItemId.Clear(); m_legacyUpgradesByResultItemId.Clear(); m_gameDataCacheBuilt = false; string directoryName = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); if (string.IsNullOrEmpty(directoryName)) { return; } string text = Path.Combine(directoryName, "WikiData"); if (!Directory.Exists(text)) { ((BaseUnityPlugin)this).Logger.LogError((object)("WikiData-Ordner existiert nicht: " + text)); return; } m_localizationData = LoadLocalizationFile(Path.Combine(text, "localization.json")); m_items.AddRange(LoadItemFile(Path.Combine(text, "items.json"))); m_cookingRecipes.AddRange(LoadRecipeFile(Path.Combine(text, "cooking.json"))); m_alchemyRecipes.AddRange(LoadRecipeFile(Path.Combine(text, "alchemy.json"))); m_craftingRecipes.AddRange(LoadRecipeFile(Path.Combine(text, "crafting.json"))); m_enchantments.AddRange(LoadEnchantmentFile(Path.Combine(text, "enchantments.json"))); m_craftingOverrideFile = LoadCraftingOverrideFile(Path.Combine(text, "crafting_overrides.json")); ApplyCraftingOverrides(m_craftingOverrideFile); foreach (WikiItemData item in m_items) { if (item != null && item.gameItemId > 0 && !m_itemsByGameId.ContainsKey(item.gameItemId)) { m_itemsByGameId.Add(item.gameItemId, item); } } List<WikiItemSourceData> list = LoadItemSourceFile(Path.Combine(text, "item_sources.json")); MergeItemSources(list); m_legacyUpgradeFile = LoadLegacyUpgradeFile(Path.Combine(text, "legacy_upgrades.json")); ((BaseUnityPlugin)this).Logger.LogInfo((object)"WikiData erfolgreich geladen."); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Items: " + m_items.Count)); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Kochrezepte: " + m_cookingRecipes.Count)); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Alchemie: " + m_alchemyRecipes.Count)); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Handwerk: " + m_craftingRecipes.Count)); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Verzauberungen: " + m_enchantments.Count)); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Item-Quellen: " + list.Count)); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Crafting-Overrides: " + ((m_craftingOverrideFile != null && m_craftingOverrideFile.overrides != null) ? m_craftingOverrideFile.overrides.Count : 0))); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Legacy-Upgrades geladen: " + ((m_legacyUpgradeFile != null && m_legacyUpgradeFile.upgrades != null) ? m_legacyUpgradeFile.upgrades.Count : 0))); } catch (Exception ex) { ((BaseUnityPlugin)this).Logger.LogError((object)"Fehler beim Laden der WikiData:"); ((BaseUnityPlugin)this).Logger.LogError((object)ex); } } private WikiLocalizationData LoadLocalizationFile(string filePath) { if (!File.Exists(filePath)) { ((BaseUnityPlugin)this).Logger.LogWarning((object)("localization.json wurde nicht gefunden: " + filePath)); return null; } try { WikiLocalizationData wikiLocalizationData = JsonConvert.DeserializeObject<WikiLocalizationData>(File.ReadAllText(filePath)); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Lokalisierung geladen: " + ((wikiLocalizationData != null && wikiLocalizationData.exact != null) ? wikiLocalizationData.exact.Count : 0) + " exakte Texte")); return wikiLocalizationData; } catch (Exception ex) { ((BaseUnityPlugin)this).Logger.LogError((object)("Fehler beim Laden von localization.json: " + filePath)); ((BaseUnityPlugin)this).Logger.LogError((object)ex); return null; } } private WikiCraftingOverrideFile LoadCraftingOverrideFile(string filePath) { if (!File.Exists(filePath)) { ((BaseUnityPlugin)this).Logger.LogWarning((object)("crafting_overrides.json wurde nicht gefunden: " + filePath)); return null; } try { return JsonConvert.DeserializeObject<WikiCraftingOverrideFile>(File.ReadAllText(filePath)); } catch (Exception ex) { ((BaseUnityPlugin)this).Logger.LogError((object)("Fehler beim Laden von crafting_overrides.json: " + filePath)); ((BaseUnityPlugin)this).Logger.LogError((object)ex); return null; } } private void ApplyCraftingOverrides(WikiCraftingOverrideFile file) { if (file == null || file.overrides == null) { return; } foreach (WikiRecipeData replacement in file.overrides) { if (replacement != null) { m_craftingRecipes.RemoveAll((WikiRecipeData existing) => CraftingRecipeMatchesOverride(existing, replacement)); if (string.IsNullOrWhiteSpace(replacement.category)) { replacement.category = "Handwerk"; } m_craftingRecipes.Add(replacement); } } } private bool CraftingRecipeMatchesOverride(WikiRecipeData existing, WikiRecipeData replacement) { if (existing == null || replacement == null) { return false; } if (!string.IsNullOrWhiteSpace(existing.wikiId) && !string.IsNullOrWhiteSpace(replacement.wikiId) && string.Equals(existing.wikiId, replacement.wikiId, StringComparison.OrdinalIgnoreCase)) { return true; } if (existing.gameResultItemId > 0 && replacement.gameResultItemId > 0 && existing.gameResultItemId == replacement.gameResultItemId) { return true; } if (!string.IsNullOrWhiteSpace(existing.fallbackName) && !string.IsNullOrWhiteSpace(replacement.fallbackName) && NormalizeLookupText(existing.fallbackName) == NormalizeLookupText(replacement.fallbackName)) { return true; } return false; } private WikiLegacyUpgradeFile LoadLegacyUpgradeFile(string filePath) { if (!File.Exists(filePath)) { ((BaseUnityPlugin)this).Logger.LogWarning((object)("legacy_upgrades.json wurde nicht gefunden: " + filePath)); return null; } try { return JsonConvert.DeserializeObject<WikiLegacyUpgradeFile>(File.ReadAllText(filePath)); } catch (Exception ex) { ((BaseUnityPlugin)this).Logger.LogError((object)("Fehler beim Laden von legacy_upgrades.json: " + filePath)); ((BaseUnityPlugin)this).Logger.LogError((object)ex); return null; } } private List<WikiItemData> LoadItemFile(string filePath) { if (!File.Exists(filePath)) { return new List<WikiItemData>(); } try { List<WikiItemData> list = JsonConvert.DeserializeObject<List<WikiItemData>>(File.ReadAllText(filePath)); return list ?? new List<WikiItemData>(); } catch (Exception ex) { ((BaseUnityPlugin)this).Logger.LogError((object)("Fehler beim Laden der Item-Datei: " + filePath)); ((BaseUnityPlugin)this).Logger.LogError((object)ex); return new List<WikiItemData>(); } } private List<WikiItemSourceData> LoadItemSourceFile(string filePath) { if (!File.Exists(filePath)) { ((BaseUnityPlugin)this).Logger.LogWarning((object)("item_sources.json wurde nicht gefunden: " + filePath)); return new List<WikiItemSourceData>(); } try { List<WikiItemSourceData> list = JsonConvert.DeserializeObject<List<WikiItemSourceData>>(File.ReadAllText(filePath)); return list ?? new List<WikiItemSourceData>(); } catch (Exception ex) { ((BaseUnityPlugin)this).Logger.LogError((object)("Fehler beim Laden der Item-Quellen-Datei: " + filePath)); ((BaseUnityPlugin)this).Logger.LogError((object)ex); return new List<WikiItemSourceData>(); } } private void MergeItemSources(IEnumerable<WikiItemSourceData> sources) { if (sources == null) { return; } foreach (WikiItemSourceData source in sources) { if (source == null || source.gameItemId <= 0) { continue; } WikiItemData wikiItemData = EnsureWikiItemEntry(source.gameItemId, source.fallbackName, "ADDED FROM ITEM SOURCES"); if (wikiItemData != null) { wikiItemData.sourceTypeKey = FirstNonEmpty(wikiItemData.sourceTypeKey, source.sourceTypeKey); wikiItemData.sourceType = FirstNonEmpty(wikiItemData.sourceType, source.sourceType); wikiItemData.sourceTypeDe = FirstNonEmpty(wikiItemData.sourceTypeDe, source.sourceTypeDe); wikiItemData.sourceTypeEn = FirstNonEmpty(wikiItemData.sourceTypeEn, source.sourceTypeEn); wikiItemData.locations = MergeUniqueStrings(wikiItemData.locations, source.locations); wikiItemData.dropsFrom = MergeUniqueStrings(wikiItemData.dropsFrom, source.dropsFrom); wikiItemData.questSources = MergeUniqueStrings(wikiItemData.questSources, source.questSources); wikiItemData.questRewards = MergeUniqueStrings(wikiItemData.questRewards, source.questRewards); wikiItemData.blacksmithSources = MergeUniqueStrings(wikiItemData.blacksmithSources, source.blacksmithSources); wikiItemData.sourceNotes = MergeUniqueStrings(wikiItemData.sourceNotes, source.sourceNotes); wikiItemData.locationsDe = MergeUniqueStrings(wikiItemData.locationsDe, source.locationsDe); wikiItemData.locationsEn = MergeUniqueStrings(wikiItemData.locationsEn, source.locationsEn); wikiItemData.dropsFromDe = MergeUniqueStrings(wikiItemData.dropsFromDe, source.dropsFromDe); wikiItemData.dropsFromEn = MergeUniqueStrings(wikiItemData.dropsFromEn, source.dropsFromEn); wikiItemData.questSourcesDe = MergeUniqueStrings(wikiItemData.questSourcesDe, source.questSourcesDe); wikiItemData.questSourcesEn = MergeUniqueStrings(wikiItemData.questSourcesEn, source.questSourcesEn); wikiItemData.questRewardsDe = MergeUniqueStrings(wikiItemData.questRewardsDe, source.questRewardsDe); wikiItemData.questRewardsEn = MergeUniqueStrings(wikiItemData.questRewardsEn, source.questRewardsEn); wikiItemData.blacksmithSourcesDe = MergeUniqueStrings(wikiItemData.blacksmithSourcesDe, source.blacksmithSourcesDe); wikiItemData.blacksmithSourcesEn = MergeUniqueStrings(wikiItemData.blacksmithSourcesEn, source.blacksmithSourcesEn); wikiItemData.sourceNotesDe = MergeUniqueStrings(wikiItemData.sourceNotesDe, source.sourceNotesDe); wikiItemData.sourceNotesEn = MergeUniqueStrings(wikiItemData.sourceNotesEn, source.sourceNotesEn); if (source.commission != null) { wikiItemData.commission = source.commission; } } } } private WikiItemData EnsureWikiItemEntry(int gameItemId, string fallbackName, string sourceStatus) { if (gameItemId <= 0) { return null; } if (!m_itemsByGameId.TryGetValue(gameItemId, out var value)) { value = new WikiItemData { gameItemId = gameItemId, fallbackName = fallbackName, fallbackDescription = "", sourceStatus = sourceStatus }; m_items.Add(value); m_itemsByGameId.Add(gameItemId, value); } else { if (string.IsNullOrWhiteSpace(value.fallbackName) && !string.IsNullOrWhiteSpace(fallbackName)) { value.fallbackName = fallbackName; } if (string.IsNullOrWhiteSpace(value.sourceStatus) && !string.IsNullOrWhiteSpace(sourceStatus)) { value.sourceStatus = sourceStatus; } } return value; } private static string FirstNonEmpty(string current, string incoming) { return (!string.IsNullOrWhiteSpace(incoming)) ? incoming.Trim() : current; } private static string SelectLocalizedSourceString(string legacy, string german, string english) { if (UseEnglishUi) { if (!string.IsNullOrWhiteSpace(english)) { return english; } if (!string.IsNullOrWhiteSpace(legacy)) { return legacy; } return german; } if (!string.IsNullOrWhiteSpace(german)) { return german; } if (!string.IsNullOrWhiteSpace(legacy)) { return legacy; } return english; } private static IEnumerable<string> SelectLocalizedSourceList(IEnumerable<string> legacy, IEnumerable<string> german, IEnumerable<string> english) { IEnumerable<string> enumerable = (UseEnglishUi ? english : german); if (enumerable != null && enumerable.Any((string x) => !string.IsNullOrWhiteSpace(x))) { return enumerable; } if (legacy != null && legacy.Any((string x) => !string.IsNullOrWhiteSpace(x))) { return legacy; } return UseEnglishUi ? german : english; } private static List<string> MergeUniqueStrings(List<string> current, IEnumerable<string> additional) { List<string> list = ((current == null) ? new List<string>() : (from x in current where !string.IsNullOrWhiteSpace(x) select x.Trim()).Distinct<string>(StringComparer.CurrentCultureIgnoreCase).ToList()); if (additional == null) { return list; } foreach (string item in additional) { if (!string.IsNullOrWhiteSpace(item)) { string trimmed = item.Trim(); if (!list.Any((string x) => string.Equals(x, trimmed, StringComparison.CurrentCultureIgnoreCase))) { list.Add(trimmed); } } } return list; } private List<WikiRecipeData> LoadRecipeFile(string filePath) { if (!File.Exists(filePath)) { return new List<WikiRecipeData>(); } try { List<WikiRecipeData> list = JsonConvert.DeserializeObject<List<WikiRecipeData>>(File.ReadAllText(filePath)); ((BaseUnityPlugin)this).Logger.LogInfo((object)("Rezepte aus Datei geladen: " + (list?.Count ?? 0) + " | " + Path.GetFileName(filePath))); return list ?? new List<WikiRecipeData>(); } catch (Exception ex) { ((BaseUnityPlugin)this).Logger.LogError((object)("Fehler beim Laden der Rezept-Datei: " + filePath)); ((BaseUnityPlugin)this).Logger.LogError((object)ex); return new List<WikiRecipeData>(); } } private List<WikiEnchantmentData> LoadEnchantmentFile(string filePath) { if (!File.Exists(filePath)) { return new List<WikiEnchantmentData>(); } try { List<WikiEnchantmentData> list = JsonConvert.DeserializeObject<List<WikiEnchantmentData>>(File.ReadAllText(filePath)); return list ?? new List<WikiEnchantmentData>(); } catch (Exception ex) { ((BaseUnityPlugin)this).Logger.LogError((object)("Fehler beim Laden der Verzauberungs-Datei: " + filePath)); ((BaseUnityPlugin)this).Logger.LogError((object)ex); return new List<WikiEnchantmentData>(); } } private void LoadFavorites() { try { string directoryName = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); if (string.IsNullOrEmpty(directoryName)) { return; } string text = Path.Combine(directoryName, "UserData"); Directory.CreateDirectory(text); m_favoritesFilePath = Path.Combine(text, "Favorites.json"); m_favorites.Clear(); if (!File.Exists(m_favoritesFilePath)) { return; } List<string> list = JsonConvert.DeserializeObject<List<string>>(File.ReadAllText(m_favoritesFilePath)); if (list == null) { return; } foreach (string item in list) { if (!string.IsNullOrWhiteSpace(item)) { m_favorites.Add(item); } } ((BaseUnityPlugin)this).Logger.LogInfo((object)("Favoriten geladen: " + m_favorites.Count)); } catch (Exception ex) { ((BaseUnityPlugin)this).Logger.LogError((object)"Fehler beim Laden der Favoriten:"); ((BaseUnityPlugin)this).Logger.LogError((object)ex); } } private void SaveFavorites() { try { if (string.IsNullOrWhiteSpace(m_favoritesFilePath)) { string directoryName = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); if (string.IsNullOrEmpty(directoryName)) { return; } string text = Path.Combine(directoryName, "UserData"); Directory.CreateDirectory(text); m_favoritesFilePath = Path.Combine(text, "Favorites.json"); } File.WriteAllText(m_favoritesFilePath, JsonConvert.SerializeObject((object)m_favorites.OrderBy((string x) => x).ToList(), (Formatting)1)); } catch (Exception ex) { ((BaseUnityPlugin)this).Logger.LogError((object)"Fehler beim Speichern der Favoriten:"); ((BaseUnityPlugin)this).Logger.LogError((object)ex); } } private bool IsFavorite(string key) { return !string.IsNullOrWhiteSpace(key) && m_favorites.Contains(key); } private void ToggleFavorite(string key, Button starButton) { if (!string.IsNullOrWhiteSpace(key)) { if (!m_favorites.Add(key)) { m_favorites.Remove(key); } UpdateFavoriteStarButton(starButton, key); SaveFavorites(); if (m_currentCategory == WikiCategory.Favorites && m_currentViewState == WikiViewState.CategoryList) { RefreshCurrentCategoryList(((Object)(object)m_searchField == (Object)null) ? "" : m_searchField.text); } } } private void UpdateFavoriteStarButton(Button starButton, string key) { if (!((Object)(object)starButton == (Object)null)) { Text componentInChildren = ((Component)starButton).GetComponentInChildren<Text>(); if ((Object)(object)componentInChildren != (Object)null) { componentInChildren.text = (IsFavorite(key) ? "★" : "☆"); } } } internal void HandleWikiBack() { if (!m_wikiOpen || m_lastBackHandledFrame == Time.frameCount) { return; } m_lastBackHandledFrame = Time.frameCount; if (IsSearchFieldFocused && (Object)(object)m_searchField != (Object)null && !string.IsNullOrEmpty(m_searchField.text)) { ClearSearchFieldWithoutRefresh(); if (m_currentCategory == WikiCategory.None) { BuildCategoryOverviewList(); } else { RefreshCurrentCategoryList(""); } ReassertSearchFieldFocus(); } else if (IsSearchFieldFocused) { m_searchField.DeactivateInputField(); FocusFirstListButton(m_currentCategory != WikiCategory.None); } else if (m_currentViewState == WikiViewState.Article || m_currentViewState == WikiViewState.GenericIngredient) { ShowCategory(m_currentCategory); } else if (m_currentViewState == WikiViewState.CategoryList) { ShowCategoryOverview(); } else { CloseWiki(); } } private void FocusButtonReliable(Button button) { if (!((Object)(object)button == (Object)null)) { if (m_focusCoroutine != null) { ((MonoBehaviour)this).StopCoroutine(m_focusCoroutine); } m_focusCoroutine = ((MonoBehaviour)this).StartCoroutine(FocusButtonReliableCoroutine(button)); } } private IEnumerator FocusButtonReliableCoroutine(Button button) { yield return null; yield return null; Canvas.ForceUpdateCanvases(); if ((Object)(object)button == (Object)null || !((Component)button).gameObject.activeInHierarchy || !((Selectable)button).interactable) { yield break; } EventSystem es = EventSystem.current; if (!((Object)(object)es == (Object)null)) { es.SetSelectedGameObject((GameObject)null); yield return null; ((Selectable)button).Select(); es.SetSelectedGameObject(((Component)button).gameObject); yield return null; if ((Object)(object)es.currentSelectedGameObject != (Object)(object)((Component)button).gameObject) { ((Selectable)button).Select(); es.SetSelectedGameObject(((Component)button).gameObject); } m_focusCoroutine = null; ((BaseUnityPlugin)this).Logger.LogInfo((object)("UI-Fokus gesetzt auf: " + ((Object)((Component)button).gameObject).name)); } } private Button GetCurrentLeftButtonOrFallback() { EventSystem current = EventSystem.current; if ((Object)(object)current != (Object)null && (Object)(object)current.currentSelectedGameObject != (Object)null) { Button component = current.currentSelectedGameObject.GetComponent<Button>(); if ((Object)(object)component != (Object)null && (Object)(object)m_entryListContent != (Object)null && ((Component)component).transform.IsChildOf((Transform)(object)m_entryListContent)) { if (m_leftStarToMain.TryGetValue(component, out var value)) { return value; } return component; } } foreach (Button leftListButton in GetLeftListButtons()) { if ((Object)(object)leftListButton == (Object)null || !((Selectable)leftListButton).interactable || ((Object)((Component)leftListButton).gameObject).name == "Entry_← Kategorien") { continue; } return leftListButton; } return null; } private List<Button> GetLeftListButtons() { List<Button> list = new List<Button>(); if ((Object)(object)m_entryListContent == (Object)null) { return list; } for (int i = 0; i < ((Transform)m_entryListContent).childCount; i++) { Transform child = ((Transform)m_entryListContent).GetChild(i); if (!((Component)child).gameObject.activeInHierarchy) { continue; } Button component = ((Component)child).GetComponent<Button>(); if ((Object)(object)component != (Object)null && ((Selectable)component).interactable) { list.Add(component); continue; } Button[] componentsInChildren = ((Component)child).GetComponentsInChildren<Button>(true); Button[] array = componentsInChildren; foreach (Button val in array) { if (!((Object)(object)val == (Object)null) && ((Selectable)val).interactable && !((Object)((Component)val).gameObject).name.StartsWith("FavoriteStar_", StringComparison.Ordinal)) { list.Add(val); break; } } } return list; } private void RebuildLeftListNavigation() { //IL_0056: Unknown result type (might be due to invalid IL or missing references) //IL_005b: Unknown result type (might be due to invalid IL or missing references) //IL_00a0: Unknown result type (might be due to invalid IL or missing references) //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_00be: Unknown result type (might be due to invalid IL or missing references) //IL_0119: Unknown result type (might be due to invalid IL or missing references) List<Button> leftListButtons = GetLeftListButtons(); for (int i = 0; i < leftListButtons.Count; i++) { Button val = leftListButtons[i]; Button val2 = ((i > 0) ? leftListButtons[i - 1] : leftListButtons[leftListButtons.Count - 1]); Button val3 = ((i < leftListButtons.Count - 1) ? leftListButtons[i + 1] : leftListButtons[0]); Navigation navigation = ((Selectable)val).navigation; ((Navigation)(ref navigation)).mode = (Mode)4; ((Navigation)(ref navigation)).selectOnUp = (Selectable)(object)val2; ((Navigation)(ref navigation)).selectOnDown = (Selectable)(object)val3; ((Navigation)(ref navigation)).selectOnLeft = null; ((Navigation)(ref navigation)).selectOnRight = (Selectable)(object)(m_leftMainToStar.TryGetValue(val, out var value) ? value : null); ((Selectable)val).navigation = navigation; if ((Object)(object)value != (Object)null) { Navigation navigation2 = ((Selectable)value).navigation; ((Navigation)(ref navigation2)).mode = (Mode)4; ((Navigation)(ref navigation2)).selectOnLeft = (Selectable)(object)val; ((Navigation)(ref navigation2)).selectOnRight = null; ((Navigation)(ref navigation2)).selectOnUp = (Selectable)(object)(m_leftMainToStar.TryGetValue(val2, out var value2) ? value2 : val2); ((Navigation)(ref navigation2)).selectOnDown = (Selectable)(object)(m_leftMainToStar.TryGetValue(val3, out var value3) ? value3 : val3); ((Selectable)value).navigation = navigation2; } } } private void FocusFirstListButton(bool skipBackButton) { List<Button> leftListButtons = GetLeftListButtons(); if (leftListButtons.Count != 0) { Button button = leftListButtons[0]; if (skipBackButton && leftListButtons.Count > 1) { button = leftListButtons[1]; } FocusButtonReliable(button); } } private void RebuildArticleNavigation() { //IL_00b9: Unknown result type (might be due to invalid IL or missing references) //IL_00be: Unknown result type (might be due to invalid IL or missing references) //IL_00d6: Unknown result type (might be due to invalid IL or missing references) //IL_008b: Unknown result type (might be due to invalid IL or missing references) //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) //IL_0108: Unknown result type (might be due to invalid IL or missing references) //IL_010d: Unknown result type (might be due to invalid IL or missing references) //IL_01e9: Unknown result type (might be due to invalid IL or missing references) if ((Object)(object)m_activeLeftSourceButton == (Object)null || !((Component)m_activeLeftSourceButton).gameObject.activeInHierarchy) { m_activeLeftSourceButton = GetCurrentLeftButtonOrFallback(); } Button activeLeftSourceButton = m_activeLeftSourceButton; List<List<Button>> list = m_articleButtonRows.Where((List<Button> row) => row != null && row.Count > 0).ToList(); if (list.Count == 0) { if ((Object)(object)activeLeftSourceButton != (Object)null) { Navigation navigation = ((Selectable)activeLeftSourceButton).navigation; ((Navigation)(ref navigation)).selectOnRight = null; ((Selectable)activeLeftSourceButton).navigation = navigation; } return; } if ((Object)(object)activeLeftSourceButton != (Object)null) { Navigation navigation2 = ((Selectable)activeLeftSourceButton).navigation; ((Navigation)(ref navigation2)).selectOnRight = (Selectable)(object)list[0][0]; ((Selectable)activeLeftSourceButton).navigation = navigation2; } for (int num = 0; num < list.Count; num++) { List<Button> list2 = list[num]; for (int num2 = 0; num2 < list2.Count; num2++) { Button val = list2[num2]; Navigation navigation3 = ((Selectable)val).navigation; ((Navigation)(ref navigation3)).mode = (Mode)4; ((Navigation)(ref navigation3)).selectOnLeft = (Selectable)(object)((num2 > 0) ? list2[num2 - 1] : activeLeftSourceButton); ((Navigation)(ref navigation3)).selectOnRight = (Selectable)(object)((num2 < list2.Count - 1) ? list2[num2 + 1] : null); if (num > 0) { List<Button> list3 = list[num - 1]; ((Navigation)(ref navigation3)).selectOnUp = (Selectable)(object)list3[Mathf.Min(num2, list3.Count - 1)]; } else { ((Navigation)(ref navigation3)).selectOnUp = null; } if (num < list.Count - 1) { List<Button> list4 = list[num + 1]; ((Navigation)(ref navigation3)).selectOnDown = (Selectable)(object)list4[Mathf.Min(num2, list4.Count - 1)]; } else { ((Navigation)(ref navigation3)).selectOnDown = null; } ((Selectable)val).navigation = navigation3; } } } private void EnsureListElementVisible(RectTransform target) { EnsureElementVisible(m_entryListScrollRect, m_entryListContent, target); } private void EnsureArticleElementVisible(RectTransform target) { EnsureElementVisible(m_articleScrollRect, m_articleContent, target); } private void EnsureElementVisible(ScrollRect scrollRect, RectTransform content, RectTransform target) { //IL_0096: Unknown result type (might be due to invalid IL or missing references) //IL_009b: Unknown result type (might be due to invalid IL or missing references) //IL_00ea: Unknown result type (might be due to invalid IL or missing references) if (!((Object)(object)scrollRect == (Object)null) && !((Object)(object)content == (Object)null) && !((Object)(object)target == (Object)null) && !((Object)(object)scrollRect.viewport == (Object)null)) { Canvas.ForceUpdateCanvases(); Vector3[] array = (Vector3[])(object)new Vector3[4]; Vector3[] array2 = (Vector3[])(object)new Vector3[4]; target.GetWorldCorners(array); scrollRect.viewport.GetWorldCorners(array2); float y = array[0].y; float y2 = array[1].y; float y3 = array2[0].y; float y4 = array2[1].y; Vector2 anchoredPosition = content.anchoredPosition; bool flag = false; if (y < y3) { anchoredPosition.y += y3 - y; flag = true; } else if (y2 > y4) { anchoredPosition.y -= y2 - y4; flag = true; } if (flag) { content.anchoredPosition = anchoredPosition; Canvas.ForceUpdateCanvases(); scrollRect.StopMovement(); } } } private void ClearSearchFieldWithoutRefresh() { if (!((Object)(object)m_searchField == (Object)null)) { ((UnityEvent<string>)(object)m_searchField.onValueChanged).RemoveListener((UnityAction<string>)OnSearchChanged); m_searchField.text = ""; ((UnityEvent<string>)(object)m_searchField.onValueChanged).AddListener((UnityAction<string>)OnSearchChanged); } } private Recipe FindGameRecipe(WikiRecipeData wikiRecipe) { if (wikiRecipe == null) { return null; } if (wikiRecipe.gameRecipeId > 0) { Recipe val = ((IEnumerable<Recipe>)m_allGameRecipes).FirstOrDefault((Func<Recipe, bool>)((Recipe x) => (Object)(object)x != (Object)null && x.RecipeID == wikiRecipe.gameRecipeId)); if ((Object)(object)val != (Object)null && !ShouldIgnoreRuntimeRecipeCandidate(wikiRecipe, val)) { return val; } } WikiCategory category = GetWikiCategoryForRecipe(wikiRecipe); List<Recipe> list = new List<Recipe>(); if (wikiRecipe.gameResultItemId > 0 && m_gameRecipesByResultItemId.TryGetValue(wikiRecipe.gameResultItemId, out var value)) { list.AddRange(value); } if (wikiRecipe.results != null) { foreach (WikiItemReference result in wikiRecipe.results) { if (result != null && result.gameItemId > 0 && m_gameRecipesByResultItemId.TryGetValue(result.gameItemId, out var value2)) { list.AddRange(value2); } } } Recipe val2 = (from x in list.Where((Recipe x) => (Object)(object)x != (Object)null && RecipeMatchesWikiCategory(x, category) && !ShouldIgnoreRuntimeRecipeCandidate(wikiRecipe, x)).Distinct() orderby ScoreGameRecipeCandidate(wikiRecipe, x) descending select x).FirstOrDefault(); if ((Object)(object)val2 != (Object)null) { return val2; } string targetName = wikiRecipe.fallbackName; if (string.IsNullOrWhiteSpace(targetName)) { return null; } return ((IEnumerable<Recipe>)(from x in m_allGameRecipes where (Object)(object)x != (Object)null && RecipeMatchesWikiCategory(x, category) && !ShouldIgnoreRuntimeRecipeCandidate(wikiRecipe, x) orderby (string.Equals(x.EDITOR_Name, targetName, StringComparison.OrdinalIgnoreCase) || string.Equals(x.Name, targetName, StringComparison.OrdinalIgnoreCase)) ? 1 : 0 descending select x)).FirstOrDefault((Func<Recipe, bool>)((Recipe x) => string.Equals(x.EDITOR_Name, targetName, StringComparison.OrdinalIgnoreCase) || string.Equals(x.Name, targetName, StringComparison.OrdinalIgnoreCase))); } private bool ShouldIgnoreRuntimeRecipeCandidate(WikiRecipeData wikiRecipe, Recipe gameRecipe) { if (wikiRecipe == null || (Object)(object)gameRecipe == (Object)null || m_craftingOverrideFile == null || m_craftingOverrideFile.runtimeRecipeFilters == null) { return false; } HashSet<int> hashSet = new HashSet<int>(); if (wikiRecipe.gameResultItemId > 0) { hashSet.Add(wikiRecipe.gameResultItemId); } if (wikiRecipe.results != null) { foreach (WikiItemReference result in wikiRecipe.results) { if (result != null && result.gameItemId > 0) { hashSet.Add(result.gameItemId); } } } if (hashSet.Count == 0) { return false; } foreach (WikiRuntimeRecipeFilter runtimeRecipeFilter in m_craftingOverrideFile.runtimeRecipeFilters) { if (runtimeRecipeFilter == null || runtimeRecipeFilter.resultItemIds == null || !runtimeRecipeFilter.hideWhenIngredientContainsResultItem || !runtimeRecipeFilter.resultItemIds.Any(hashSet.Contains) || gameRecipe.Ingredients == null) { continue; } foreach (int item in hashSet) { if (!runtimeRecipeFilter.resultItemIds.Contains(item)) { continue; } Item gameItemPrefab = GetGameItemPrefab(item); if ((Object)(object)gameItemPrefab == (Object)null) { continue; } RecipeIngredient[] ingredients = gameRecipe.Ingredients; foreach (RecipeIngredient val in ingredients) { if (val != null && RecipeIngredientMatchesItem(val, gameItemPrefab)) { return true; } } } } return false; } private int ScoreGameRecipeCandidate(WikiRecipeData wikiRecipe, Recipe gameRecipe) { if (wikiRecipe == null || (Object)(object)gameRecipe == (Object)null) { return int.MinValue; } int num = 0; WikiCategory wikiCategoryForRecipe = GetWikiCategoryForRecipe(wikiRecipe); if (RecipeMatchesWikiCategory(gameRecipe, wikiCategoryForRecipe)) { num += 1000; } HashSet<int> hashSet = new HashSet<int>(); if (wikiRecipe.gameResultItemId > 0) { hashSet.Add(wikiRecipe.gameResultItemId); } if (wikiRecipe.results != null) { foreach (WikiItemReference result in wikiRecipe.results) { if (result != null && result.gameItemId > 0) { hashSet.Add(result.gameItemId); } } } if (gameRecipe.Results != null) { ItemReferenceQuantity[] results = gameRecipe.Results; foreach (ItemReferenceQuantity val in results) { if (hashSet.Contains(val.ItemID)) { num += 250; } } } if (wikiRecipe.ingredients != null && wikiRecipe.ingredients.Count > 0) { List<WikiItemReference> normalizedWikiIngredientsForMatching = GetNormalizedWikiIngredientsForMatching(wikiRecipe); List<RecipeIngredient> source = ResolveRuntimeIngredients(wikiRecipe, gameRecipe, normalizedWikiIngredientsForMatching); num += source.Count((RecipeIngredient x) => x != null) * 120; int num2 = ((gameRecipe.Ingredients != null) ? gameRecipe.Ingredients.Length : 0); num -= Math.Abs(num2 - normalizedWikiIngredientsForMatching.Count) * 25; } return num; } private List<WikiItemReference> GetNormalizedWikiIngredientsForMatching(WikiRecipeData recipe) { List<WikiItemReference> list = new List<WikiItemReference>(); if (recipe == null || recipe.ingredients == null) { return list; } bool flag = IsCleanWaterRecipe(recipe, null); foreach (WikiItemReference ingredient in recipe.ingredients) { if (ingredient != null) { if (flag && ingredient.gameItemId == 5600000) { list.Add(new WikiItemReference { gameItemId = 0, amount = Math.Max(1, ingredient.amount), ingredientCategory = "Water", fallbackName = "Water" }); } else { list.Add(ingredient); } } } return list; } private List<RecipeIngredient> ResolveRuntimeIngredients(WikiRecipeData wikiRecipe, Recipe gameRecipe, IList<WikiItemReference> wikiIngredients) { List<RecipeIngredient> list = new List<RecipeIngredient>(); if (wikiIngredients == null) { return list; } for (int i = 0; i < wikiIngredients.Count; i++) { list.Add(null); } if ((Object)(object)gameRecipe == (Object)null || gameRecipe.Ingredients == null || gameRecipe.Ingredients.Length == 0) { return list; } List<RecipeIngredient> source = gameRecipe.Ingredients.Where((RecipeIngredient x) => x != null).ToList(); HashSet<RecipeIngredient> used = new HashSet<RecipeIngredient>(); for (int num = 0; num < wikiIngredients.Count; num++) { WikiItemReference wikiItemReference = wikiIngredients[num]; if (wikiItemReference == null || wikiItemReference.gameItemId <= 0) { continue; } Item item = GetGameItemPrefab(wikiItemReference.gameItemId); if (!((Object)(object)item == (Object)null)) { RecipeIngredient val = (from x in source where !used.Contains(x) && RecipeIngredientMatchesItem(x, item) orderby IsGenericRecipeIngredient(x) ? 1 : 0, GetMatchingItems(x).Count select x).FirstOrDefault(); if (val != null) { list[num] = val; used.Add(val); } } } for (int num2 = 0; num2 < wikiIngredients.Count; num2++) { if (list[num2] != null) { continue; } WikiItemReference wikiItemReference2 = wikiIngredients[num2]; if (wikiItemReference2 != null) { string wanted = NormalizeLookupText((!string.IsNullOrWhiteSpace(wikiItemReference2.ingredientCategory)) ? wikiItemReference2.ingredientCategory : wikiItemReference2.fallbackName); RecipeIngredient val2 = (from x in source where !used.Contains(x) orderby ScoreGenericIngredientNameMatch(wanted, x) descending, IsGenericRecipeIngredient(x) ? 1 : 0 descending, GetMatchingItems(x).Count descending select x).FirstOrDefault(); if (val2 != null) { list[num2] = val2; used.Add(val2); } } } return list; } private bool RecipeIngredientMatchesItem(RecipeIngredient ingredient, Item item) { if (ingredient == null || (Object)(object)item == (Object)null) { return false; } try { return ingredient.Match(item); } catch { return false; } } private bool IsGenericRecipeIngredient(RecipeIngredient ingredient) { //IL_0010: Unknown result type (might be due to invalid IL or missing references) //IL_0016: Invalid comparison between Unknown and I4 if (ingredient == null) { return false; } try { return (int)ingredient.ActionType == 0; } catch { return false; } } private int ScoreGenericIngredientNameMatch(string wanted, RecipeIngredient ingredient) { if (ingredient == null) { return 0; } int num = (IsGenericRecipeIngredient(ingredient) ? 20 : 0); if (string.IsNullOrWhiteSpace(wanted)) { return num; } string text = NormalizeLookupText(GetGenericIngredientDisplayName(null, ingredient)); if (text == wanted) { return num + 100; } if (text.Contains(wanted) || wanted.Contains(text)) { return num + 70; } return num; } private List<Item> GetMatchingItems(RecipeIngredient ingredient) { List<Item> list = new List<Item>(); if (ingredient == null) { return list; } foreach (Item allGameItemPrefab in m_allGameItemPrefabs) { if ((Object)(object)allGameItemPrefab == (Object)null) { continue; } try { if (ingredient.Match(allGameItemPrefab)) { list.Add(allGameItemPrefab); } } catch { } } return (from item in list group item by item.ItemID into @group select @group.First()).OrderBy(GetGameItemDisplayName).ToList(); } private Item GetGameItemPrefab(int gameItemId) { if (gameItemId <= 0) { return null; } try { return ResourcesPrefabManager.Instance.GetItemPrefab(gameItemId); } catch { return null; } } private Sprite GetGameItemIcon(int gameItemId) { if (gameItemId <= 0) { return null; } try { return ResourcesPrefabManager.Instance.GetItemIcon(gameItemId); } catch { return null; } } private string GetGameItemDisplayName(Item item) { if ((Object)(object)item == (Object)null) { return "Unbekanntes Item"; } try { if (!string.IsNullOrWhiteSpace(item.DisplayName)) { return item.DisplayName; } } catch { } return "Item " + item.ItemID; } private WikiItemData GetOrCreateWikiItemData(Item item) { if ((Object)(object)item == (Object)null) { return null; } WikiItemData itemByGameId = GetItemByGameId(item.ItemID); if (itemByGameId != null) { return itemByGameId; } return new WikiItemData { gameItemId = item.ItemID, fallbackName = GetGameItemDisplayName(item), fallbackDescription = "", sourceStatus = "Outward-Prefab" }; } private void ExtractOutwardStyles() { //IL_00d0: Unknown result type (might be due to invalid IL or missing references) //IL_00d5: Unknown result type (might be due to invalid IL or missing references) //IL_00dd: Unknown result type (might be due to invalid IL or missing references) //IL_00e2: Unknown result type (might be due to invalid IL or missing references) //IL_01f7: Unknown result type (might be due to invalid IL or missing references) //IL_01fc: Unknown result type (might be due to invalid IL or missing references) //IL_010f: Unknown result type (might be due to invalid IL or missing references) //IL_0114: Unknown result type (might be due to invalid IL or missing references) //IL_011c: Unknown result type (might be due to invalid IL or missing references) //IL_0121: Unknown result type (might be due to invalid IL or missing references) //IL_0129: Unknown result type (might be due to invalid IL or missing references) //IL_012e: Unknown result type (might be due to invalid IL or missing references) //IL_0178: Unknown result type (might be due to invalid IL or missing references) //IL_017d: Unknown result type (might be due to invalid IL or missing references) //IL_0185: Unknown result type (might be due to invalid IL or missing references) //IL_018a: Unknown result type (might be due to invalid IL or missing references) //IL_019f: Unknown result type (might be due to invalid IL or missing references) //IL_01a4: Unknown result type (might be due to invalid IL or missing references) Transform val = ((Component)m_inventoryMenu).transform.Find("DetailPanel"); if ((Object)(object)val != (Object)null) { Image component = ((Component)val).GetComponent<Image>(); if ((Object)(object)component != (Object)null) { m_backgroundSprite = component.sprite; } } Transform val2 = ((Component)m_inventoryMenu).transform.Find("DetailPanel/ItemDetailsPanel/ItemDetails/Stats/Header/lblItemName"); if ((Object)(object)val2 != (Object)null) { Text component2 = ((Component)val2).GetComponent<Text>(); if ((Object)(object)component2 != (Object)null) { m_outwardFont = component2.font; } } Transform val3 = FindPauseMenuButton(); if ((Object)(object)val3 != (Object)null) { Image component3 = ((Component)val3).GetComponent<Image>(); if ((Object)(object)component3 != (Object)null) { m_buttonSprite = component3.sprite; m_buttonColor = ((Graphic)component3).color; m_buttonImageType = component3.type; m_buttonMaterial = ((Graphic)component3).material; } Button component4 = ((Component)val3).GetComponent<Button>(); if ((Object)(object)component4 != (Object)null) { m_buttonTransition = ((Selectable)component4).transition; m_buttonColors = ((Selectable)component4).colors; m_buttonSpriteState = ((Selectable)component4).spriteState; } Transform val4 = val3.Find("Text");