Decompiled source of FastDropShip v1.3.0

FastDropShip.dll

Decompiled 4 months ago
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using BepInEx;
using BepInEx.Bootstrap;
using BepInEx.Configuration;
using BepInEx.Logging;
using FastDropShip.Dependencies;
using HarmonyLib;
using LobbyCompatibility.Enums;
using LobbyCompatibility.Features;
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(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")]
[assembly: AssemblyCompany("TestAccount666.FastDropShip")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyDescription("The company invested into a better drop ship")]
[assembly: AssemblyFileVersion("1.3.0.0")]
[assembly: AssemblyInformationalVersion("1.3.0+0a601a61bf2ebf1f28abba58b1834c76c1101238")]
[assembly: AssemblyProduct("FastDropShip")]
[assembly: AssemblyTitle("TestAccount666.FastDropShip")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("1.3.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 FastDropShip
{
	[BepInPlugin("TestAccount666.FastDropShip", "FastDropShip", "1.3.0")]
	public class FastDropShip : BaseUnityPlugin
	{
		internal static ConfigEntry<float> shipLeaveWait;

		internal static ConfigEntry<float> shipLandTimer;

		public static FastDropShip Instance { get; private set; }

		internal static ManualLogSource Logger { get; private set; }

		internal static Harmony? Harmony { get; set; }

		private void Awake()
		{
			//IL_0063: Unknown result type (might be due to invalid IL or missing references)
			//IL_006d: Expected O, but got Unknown
			//IL_00a0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00aa: Expected O, but got Unknown
			Logger = ((BaseUnityPlugin)this).Logger;
			Instance = this;
			if (DependencyChecker.IsLobbyCompatibilityInstalled())
			{
				Logger.LogInfo((object)"Found LobbyCompatibility, enabling support for it :)");
				LobbyCompatibilitySupport.Initialize();
			}
			shipLeaveWait = ((BaseUnityPlugin)this).Config.Bind<float>("General", "Ship leave wait seconds", 0f, new ConfigDescription("Defines how long the dropship waits before leaving after items were fetched", (AcceptableValueBase)(object)new AcceptableValueRange<float>(0f, 4f), Array.Empty<object>()));
			shipLandTimer = ((BaseUnityPlugin)this).Config.Bind<float>("General", "Ship land timer", 37f, new ConfigDescription("Defines how fast the ship lands. The higher, the faster", (AcceptableValueBase)(object)new AcceptableValueRange<float>(0f, 40f), Array.Empty<object>()));
			Patch();
			Logger.LogInfo((object)"TestAccount666.FastDropShip v1.3.0 has loaded!");
		}

		internal static void Patch()
		{
			//IL_000d: Unknown result type (might be due to invalid IL or missing references)
			//IL_0012: Unknown result type (might be due to invalid IL or missing references)
			//IL_0018: Expected O, but got Unknown
			if (Harmony == null)
			{
				Harmony = new Harmony("TestAccount666.FastDropShip");
			}
			Logger.LogDebug((object)"Patching...");
			Harmony.PatchAll();
			Logger.LogDebug((object)"Finished patching!");
		}

		internal static void Unpatch()
		{
			Logger.LogDebug((object)"Unpatching...");
			Harmony? harmony = Harmony;
			if (harmony != null)
			{
				harmony.UnpatchSelf();
			}
			Logger.LogDebug((object)"Finished unpatching!");
		}
	}
	public static class MyPluginInfo
	{
		public const string PLUGIN_GUID = "TestAccount666.FastDropShip";

		public const string PLUGIN_NAME = "FastDropShip";

		public const string PLUGIN_VERSION = "1.3.0";
	}
}
namespace FastDropShip.Patches
{
	[HarmonyPatch(typeof(ItemDropship))]
	public static class ItemDropshipPatch
	{
		internal static bool reset;

		[HarmonyPatch("Update")]
		[HarmonyPostfix]
		private static void UpdatePostfix(ItemDropship __instance)
		{
			if (__instance != null)
			{
				if (__instance.deliveringOrder)
				{
					goto IL_0025;
				}
				List<int> itemsToDeliver = __instance.itemsToDeliver;
				if (itemsToDeliver != null)
				{
					int count = itemsToDeliver.Count;
					if (count > 0)
					{
						goto IL_0025;
					}
				}
			}
			bool flag = false;
			goto IL_002b;
			IL_002b:
			if (flag)
			{
				return;
			}
			Terminal terminalScript = __instance.terminalScript;
			if (terminalScript != null)
			{
				List<int> itemsToDeliver = terminalScript.orderedItemsFromTerminal;
				if (itemsToDeliver != null)
				{
					int count = itemsToDeliver.Count;
					if (count > 0)
					{
						goto IL_0067;
					}
				}
				if (terminalScript.vehicleInDropship)
				{
					goto IL_0067;
				}
			}
			bool flag2 = true;
			goto IL_0069;
			IL_0069:
			if (!flag2 && (!(__instance.shipTimer >= FastDropShip.shipLandTimer.Value) || reset))
			{
				__instance.shipTimer = FastDropShip.shipLandTimer.Value;
				reset = false;
			}
			return;
			IL_0067:
			flag2 = false;
			goto IL_0069;
			IL_0025:
			flag = true;
			goto IL_002b;
		}

		[HarmonyPatch("OpenShipClientRpc")]
		[HarmonyPostfix]
		private static void OpenShipClientRpcPostfix(ItemDropship __instance)
		{
			((MonoBehaviour)__instance).StartCoroutine(ShipLeaveLater(__instance, FastDropShip.shipLeaveWait.Value));
		}

		private static IEnumerator ShipLeaveLater(ItemDropship itemDropship, float secondsToWait)
		{
			yield return (object)new WaitForSeconds(secondsToWait);
			yield return (object)new WaitForEndOfFrame();
			itemDropship.ShipLeaveClientRpc();
		}
	}
	[HarmonyPatch(typeof(Terminal))]
	public static class TerminalPatch
	{
		[HarmonyPatch("SyncGroupCreditsClientRpc")]
		[HarmonyPrefix]
		private static void SyncGroupCreditsClientRpcPrefix()
		{
			FastDropShip.Logger.LogInfo((object)"Buying something!");
			ItemDropshipPatch.reset = true;
		}
	}
}
namespace FastDropShip.Dependencies
{
	internal static class DependencyChecker
	{
		internal static bool IsLobbyCompatibilityInstalled()
		{
			return Chainloader.PluginInfos.Values.Any((PluginInfo metadata) => metadata.Metadata.GUID.Contains("LobbyCompatibility"));
		}
	}
	internal static class LobbyCompatibilitySupport
	{
		internal static void Initialize()
		{
			PluginHelper.RegisterPlugin("TestAccount666.FastDropShip", new Version("1.3.0"), (CompatibilityLevel)1, (VersionStrictness)2);
		}
	}
}