Decompiled source of AdvancedREPO Utils v1.0.0

BepInEx/plugins/AdvancedREPO.Utils.dll

Decompiled 2 months ago
using System;
using System.Diagnostics;
using System.Linq.Expressions;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using Microsoft.CodeAnalysis;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")]
[assembly: AssemblyCompany("AdvancedREPO.Utils")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyDescription("Shared library for AdvancedREPO mods")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0+e0ce9281b74a83533d1745f48a75808927f50012")]
[assembly: AssemblyProduct("AdvancedREPO.Utils")]
[assembly: AssemblyTitle("AdvancedREPO.Utils")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("1.0.0.0")]
[module: UnverifiableCode]
[module: RefSafetyRules(11)]
namespace Microsoft.CodeAnalysis
{
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	internal sealed class EmbeddedAttribute : Attribute
	{
	}
}
namespace System.Runtime.CompilerServices
{
	[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;
		}
	}
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	[AttributeUsage(AttributeTargets.Module, AllowMultiple = false, Inherited = false)]
	internal sealed class RefSafetyRulesAttribute : Attribute
	{
		public readonly int Version;

		public RefSafetyRulesAttribute(int P_0)
		{
			Version = P_0;
		}
	}
}
namespace AdvancedREPO.Utils
{
	public class Field<C, T>
	{
		private FieldInfo FieldInfo;

		private Func<C, T> Getter;

		private Action<C, T> Setter;

		public Field(FieldInfo f)
		{
			if (f.FieldType != typeof(T))
			{
				throw new ArgumentException("Type of field " + f.DeclaringType.FullName + "::" + f.Name + " is not matching with type of Field<" + typeof(T).FullName + ">");
			}
			FieldInfo = f;
		}

		public T GetValue(C instance)
		{
			if (Getter == null)
			{
				ParameterExpression parameterExpression = Expression.Parameter(typeof(C));
				MemberExpression body = Expression.Field(parameterExpression, FieldInfo);
				Getter = Expression.Lambda<Func<C, T>>(body, new ParameterExpression[1] { parameterExpression }).Compile();
			}
			return Getter(instance);
		}

		public void SetValue(C instance, T value)
		{
			if (Setter == null)
			{
				ParameterExpression parameterExpression = Expression.Parameter(typeof(C));
				ParameterExpression parameterExpression2 = Expression.Parameter(typeof(T));
				MemberExpression left = Expression.Field(parameterExpression, FieldInfo);
				BinaryExpression body = Expression.Assign(left, parameterExpression2);
				Setter = Expression.Lambda<Action<C, T>>(body, new ParameterExpression[2] { parameterExpression, parameterExpression2 }).Compile();
			}
			Setter(instance, value);
		}
	}
}