Decompiled source of AlwaysBackpack v0.0.3

AlwaysBackpack.dll

Decompiled 3 months ago
using System;
using System.Collections;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using BepInEx;
using BepInEx.Configuration;
using BepInEx.Logging;
using HarmonyLib;
using Microsoft.CodeAnalysis;
using Photon.Pun;
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("AlwaysBackpack")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyFileVersion("0.0.1.0")]
[assembly: AssemblyInformationalVersion("0.0.1")]
[assembly: AssemblyProduct("AlwaysBackpack")]
[assembly: AssemblyTitle("AlwaysBackpack")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("0.0.1.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 AlwaysBackpack
{
	[HarmonyPatch(typeof(GameController))]
	public static class PatchGameController
	{
		private static IEnumerator setInventorySize()
		{
			while (!PhotonNetwork.IsConnectedAndReady || !PhotonNetwork.InRoom)
			{
				yield return (object)new WaitForSeconds(5f);
			}
			ManualLogSource logger = Plugin.Logger;
			if (logger != null)
			{
				logger.LogInfo((object)("[AlwaysBackpack] GameController:Postfix_Start() -> changing inventory size to " + Plugin.getInstance().getInventorySize()));
			}
			PlayerItemManager.instance.ChangeInventorySize(Plugin.getInstance().getInventorySize());
			yield return (object)new WaitForSeconds(10f);
			PlayerItemManager.instance.ChangeInventorySize(Plugin.getInstance().getInventorySize());
		}

		[HarmonyPatch("Start")]
		[HarmonyPostfix]
		public static void Postfix_Start(GameController __instance)
		{
			((MonoBehaviour)__instance).StartCoroutine(setInventorySize());
		}
	}
	[BepInPlugin("AlwaysBackpack", "AlwaysBackpack", "0.0.1")]
	public class Plugin : BaseUnityPlugin
	{
		internal static ManualLogSource Logger;

		private static Plugin _instance;

		private ConfigEntry<int> _configInventorySize;

		private void Awake()
		{
			//IL_0061: Unknown result type (might be due to invalid IL or missing references)
			//IL_0067: Expected O, but got Unknown
			if ((Object)(object)_instance != (Object)null)
			{
				Object.Destroy((Object)(object)this);
				return;
			}
			_instance = this;
			Logger = ((BaseUnityPlugin)this).Logger;
			Logger.LogInfo((object)"You suddenly feel like you have a permanent backpack.");
			_configInventorySize = ((BaseUnityPlugin)this).Config.Bind<int>("Settings", "InventorySize", 7, "The size of the inventory");
			Harmony val = new Harmony("AlwaysBackpack");
			val.PatchAll();
		}

		public static Plugin getInstance()
		{
			return _instance;
		}

		public ManualLogSource getLogger()
		{
			return Logger;
		}

		public int getInventorySize()
		{
			return _configInventorySize.Value;
		}
	}
	public static class MyPluginInfo
	{
		public const string PLUGIN_GUID = "AlwaysBackpack";

		public const string PLUGIN_NAME = "AlwaysBackpack";

		public const string PLUGIN_VERSION = "0.0.1";
	}
}