using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using BepInEx;
using HarmonyLib;
using Microsoft.CodeAnalysis;
using UnityEngine;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: TargetFramework(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
[assembly: AssemblyCompany("SteeringWheel")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyDescription("Remove steering interpolation for direct input from a physical steering wheel.")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0+1133536f6eb4cc2cff2b2b1f26487c1fed76bb01")]
[assembly: AssemblyProduct("SteeringWheel")]
[assembly: AssemblyTitle("SteeringWheel")]
[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.Module, AllowMultiple = false, Inherited = false)]
internal sealed class RefSafetyRulesAttribute : Attribute
{
public readonly int Version;
public RefSafetyRulesAttribute(int P_0)
{
Version = P_0;
}
}
}
namespace SteeringWheel
{
[HarmonyPatch]
internal class LerpPatch
{
private static readonly FieldInfo TargetInputField = typeof(sCarController).GetField("targetInput", BindingFlags.Instance | BindingFlags.NonPublic);
private static MethodInfo TargetMethod()
{
return typeof(sCarController).GetMethod("Move", BindingFlags.Instance | BindingFlags.NonPublic);
}
private static void Prefix(sCarController __instance)
{
__instance.input.x = ((Vector2)TargetInputField.GetValue(__instance)).x * (__instance.steeringSensetivity * 3f);
}
}
[HarmonyPatch]
internal class SteeringPatch
{
private static readonly FieldInfo TargetInputField = typeof(sCarController).GetField("targetInput", BindingFlags.Instance | BindingFlags.NonPublic);
private static MethodInfo TargetMethod()
{
return typeof(sCarController).GetMethod("SetInput", BindingFlags.Instance | BindingFlags.Public, null, new Type[1] { typeof(Vector2) }, null);
}
private static void Postfix(Vector2 input, sCarController __instance)
{
//IL_0007: Unknown result type (might be due to invalid IL or missing references)
TargetInputField.SetValue(__instance, input);
}
}
[BepInPlugin("SteeringWheel", "SteeringWheel", "1.0.0")]
public class SteeringWheel : BaseUnityPlugin
{
private void Awake()
{
//IL_0006: Unknown result type (might be due to invalid IL or missing references)
//IL_000c: Expected O, but got Unknown
Harmony val = new Harmony("SteeringWheel");
val.PatchAll();
((BaseUnityPlugin)this).Logger.LogInfo((object)"Plugin SteeringWheel is loaded!");
}
}
public static class PluginInfo
{
public const string PLUGIN_GUID = "SteeringWheel";
public const string PLUGIN_NAME = "SteeringWheel";
public const string PLUGIN_VERSION = "1.0.0";
}
}