Decompiled source of BetterJetpack v0.2.0

coolmanboy456.BetterJetpack.dll

Decompiled a month ago
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using BepInEx;
using BepInEx.Logging;
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: IgnoresAccessChecksTo("Assembly-CSharp")]
[assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")]
[assembly: AssemblyCompany("coolmanboy456.BetterJetpack")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyFileVersion("0.1.0.0")]
[assembly: AssemblyInformationalVersion("0.1.0")]
[assembly: AssemblyProduct("coolmanboy456.BetterJetpack")]
[assembly: AssemblyTitle("BetterJetpack")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("0.1.0.0")]
[module: UnverifiableCode]
[module: RefSafetyRules(11)]
namespace System.Runtime.CompilerServices
{
	[CompilerGenerated]
	[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]
	[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]
	[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 BepInEx
{
	[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
	[Conditional("CodeGeneration")]
	[Embedded]
	internal sealed class BepInAutoPluginAttribute : Attribute
	{
		public BepInAutoPluginAttribute(string? id = null, string? name = null, string? version = null)
		{
		}
	}
}
namespace BepInEx.Preloader.Core.Patching
{
	[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
	[Conditional("CodeGeneration")]
	[Embedded]
	internal sealed class PatcherAutoPluginAttribute : Attribute
	{
		public PatcherAutoPluginAttribute(string? id = null, string? name = null, string? version = null)
		{
		}
	}
}
namespace Microsoft.CodeAnalysis
{
	[Embedded]
	internal sealed class EmbeddedAttribute : Attribute
	{
	}
}
namespace BetterJetpack
{
	[BepInPlugin("coolmanboy456.BetterJetpack", "BetterJetpack", "0.1.0")]
	public class Plugin : BaseUnityPlugin
	{
		public const string Id = "coolmanboy456.BetterJetpack";

		internal static ManualLogSource Log { get; private set; }

		public static string Name => "BetterJetpack";

		public static string Version => "0.1.0";

		private void Awake()
		{
			Log = ((BaseUnityPlugin)this).Logger;
			Log.LogInfo((object)"BetterJetpack starting...");
			ApplyPatch(typeof(JetpackFuelPatch), "Jetpack Fuel");
			ApplyPatch(typeof(WornJetpackFuelPatch), "Worn Jetpack Fuel");
			ApplyPatch(typeof(JetpackItemSlotsPatch), "Jetpack Item Storage");
			ApplyPatch(typeof(JetpackBackpackSlotsPatch), "Worn Jetpack Storage");
			ApplyPatch(typeof(JetpackBackpackUIPatch), "Jetpack Backpack UI");
			ApplyPatch(typeof(JetpackFuelUIPatch), "Jetpack Fuel UI");
			Log.LogInfo((object)("Plugin " + Name + " is loaded!"));
			Log.LogInfo((object)"BetterJetpack enabled!");
		}

		private static void ApplyPatch(Type patchType, string name)
		{
			try
			{
				Harmony.CreateAndPatchAll(patchType, (string)null);
				Log.LogInfo((object)("[PATCH OK] " + name));
			}
			catch (Exception ex)
			{
				Log.LogError((object)("[PATCH FAILED] " + name));
				Log.LogError((object)ex);
			}
		}

		internal static Backpack FindBackpack(Component component)
		{
			if ((Object)(object)component == (Object)null)
			{
				return null;
			}
			Backpack val = component.GetComponent<Backpack>();
			if ((Object)(object)val == (Object)null)
			{
				val = component.GetComponentInParent<Backpack>();
			}
			if ((Object)(object)val == (Object)null)
			{
				val = component.GetComponentInChildren<Backpack>(true);
			}
			return val;
		}

		internal static bool IsJetpack(Component component)
		{
			//IL_0012: Unknown result type (might be due to invalid IL or missing references)
			//IL_0018: Invalid comparison between Unknown and I4
			Backpack val = FindBackpack(component);
			return (Object)(object)val != (Object)null && (int)val.backpackType == 3;
		}
	}
	[HarmonyPatch(typeof(JetpackItem))]
	internal static class JetpackFuelPatch
	{
		private const float JetpackFuelCap = 200f;

		[HarmonyPatch("Start")]
		[HarmonyPrefix]
		private static void StartPrefix(JetpackItem __instance)
		{
			if (!((Object)(object)__instance == (Object)null) && Plugin.IsJetpack((Component)(object)__instance))
			{
				__instance.startingFuel = 200f;
				Plugin.Log.LogInfo((object)("[JETPACK FUEL] Ground jetpack cap = " + $"{200f:F0}"));
			}
		}

		[HarmonyPatch("OnInstanceDataSet")]
		[HarmonyPrefix]
		private static void InstanceDataPrefix(JetpackItem __instance)
		{
			if (!((Object)(object)__instance == (Object)null) && Plugin.IsJetpack((Component)(object)__instance))
			{
				__instance.startingFuel = 200f;
			}
		}
	}
	[HarmonyPatch(typeof(CharacterBackpackHandler))]
	internal static class WornJetpackFuelPatch
	{
		private const float JetpackFuelCap = 200f;

		[HarmonyPatch("AddFuelToJetpack")]
		[HarmonyPrefix]
		private static bool AddFuelPrefix(CharacterBackpackHandler __instance, Character interactor, float addedFuel, Character ___character)
		{
			//IL_001e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0024: Invalid comparison between Unknown and I4
			if ((Object)(object)___character == (Object)null)
			{
				return true;
			}
			if ((int)___character.player.backpackSlot.backpackType != 3)
			{
				return true;
			}
			FloatItemData val = default(FloatItemData);
			if (((ItemSlot)___character.player.backpackSlot).data.TryGetDataEntry<FloatItemData>((DataEntryKey)10, ref val) && val.Value >= 200f)
			{
				val.Value = 200f;
				FloatItemData val2 = default(FloatItemData);
				if (((ItemSlot)___character.player.backpackSlot).data.TryGetDataEntry<FloatItemData>((DataEntryKey)11, ref val2))
				{
					val2.Value = 1f;
				}
				Plugin.Log.LogInfo((object)"[JETPACK FUEL] Already full - fuel item not consumed");
				return false;
			}
			return true;
		}

		[HarmonyPatch("RPCAddFuelToJetpack")]
		[HarmonyPrefix]
		private static bool RPCAddFuelPrefix(CharacterBackpackHandler __instance, float addedFuel, Character ___character)
		{
			//IL_001f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0025: Invalid comparison between Unknown and I4
			//IL_00fa: Unknown result type (might be due to invalid IL or missing references)
			if ((Object)(object)___character == (Object)null)
			{
				return true;
			}
			if ((int)___character.player.backpackSlot.backpackType != 3)
			{
				return true;
			}
			FloatItemData val = default(FloatItemData);
			if (!((ItemSlot)___character.player.backpackSlot).data.TryGetDataEntry<FloatItemData>((DataEntryKey)10, ref val))
			{
				return false;
			}
			float value = val.Value;
			val.Value = Mathf.Clamp(val.Value + addedFuel, 0f, 200f);
			FloatItemData val2 = default(FloatItemData);
			if (((ItemSlot)___character.player.backpackSlot).data.TryGetDataEntry<FloatItemData>((DataEntryKey)11, ref val2))
			{
				val2.Value = val.Value / 200f;
			}
			if ((Object)(object)__instance.fuelFlame != (Object)null)
			{
				__instance.fuelFlame.Play();
			}
			if ((Object)(object)__instance.fuelFlameSFX != (Object)null)
			{
				__instance.fuelFlameSFX.Play(((Component)__instance).transform.position);
			}
			Plugin.Log.LogInfo((object)("[JETPACK FUEL] Worn jetpack " + $"{value:F0} -> " + $"{val.Value:F0}/{200f:F0}"));
			return false;
		}
	}
	[HarmonyPatch(typeof(Backpack))]
	internal static class JetpackItemSlotsPatch
	{
		private const int JetpackSlotCount = 2;

		[HarmonyPatch("Start")]
		[HarmonyPrefix]
		private static void StartPrefix(Backpack __instance)
		{
			//IL_000f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0015: Invalid comparison between Unknown and I4
			if (!((Object)(object)__instance == (Object)null) && (int)__instance.backpackType == 3)
			{
				__instance.slotCount = 2;
				Plugin.Log.LogInfo((object)("[JETPACK STORAGE] Jetpack item has " + $"{2} storage slots"));
			}
		}
	}
	[HarmonyPatch(typeof(BackpackOnBackVisuals))]
	internal static class JetpackBackpackSlotsPatch
	{
		private const int JetpackSlotCount = 2;

		[HarmonyPatch("Awake")]
		[HarmonyPostfix]
		private static void AwakePostfix(BackpackOnBackVisuals __instance)
		{
			//IL_000f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0015: Invalid comparison between Unknown and I4
			if (!((Object)(object)__instance == (Object)null) && (int)__instance.backpackType == 3)
			{
				__instance.slotCount = 2;
				Plugin.Log.LogInfo((object)("[JETPACK STORAGE] Worn jetpack has " + $"{2} storage slots"));
			}
		}

		[HarmonyPatch("Interact_CastFinished")]
		[HarmonyPrefix]
		private static void InteractPrefix(BackpackOnBackVisuals __instance)
		{
			//IL_000f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0015: Invalid comparison between Unknown and I4
			if (!((Object)(object)__instance == (Object)null) && (int)__instance.backpackType == 3)
			{
				__instance.slotCount = 2;
			}
		}
	}
	[HarmonyPatch(typeof(InventoryItemUI))]
	internal static class JetpackBackpackUIPatch
	{
		private const float SlotUIYOffset = 55f;

		private static readonly Dictionary<int, Vector2> OriginalPositions = new Dictionary<int, Vector2>();

		[HarmonyPatch("SetItem")]
		[HarmonyPostfix]
		private static void SetItemPostfix(InventoryItemUI __instance, ItemSlot slot)
		{
			//IL_0077: Unknown result type (might be due to invalid IL or missing references)
			//IL_0062: Unknown result type (might be due to invalid IL or missing references)
			//IL_0067: Unknown result type (might be due to invalid IL or missing references)
			//IL_006e: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b2: Unknown result type (might be due to invalid IL or missing references)
			//IL_00b8: Invalid comparison between Unknown and I4
			//IL_00d4: 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_00df: Unknown result type (might be due to invalid IL or missing references)
			//IL_00e4: Unknown result type (might be due to invalid IL or missing references)
			if ((Object)(object)__instance == (Object)null || (Object)(object)__instance.backpackFilledSlotsObject == (Object)null)
			{
				return;
			}
			RectTransform component = __instance.backpackFilledSlotsObject.GetComponent<RectTransform>();
			if ((Object)(object)component == (Object)null)
			{
				return;
			}
			int instanceID = ((Object)__instance).GetInstanceID();
			if (!OriginalPositions.TryGetValue(instanceID, out var value))
			{
				value = component.anchoredPosition;
				OriginalPositions[instanceID] = value;
			}
			component.anchoredPosition = value;
			if (__instance.isBackpack && slot != null && !slot.IsEmpty())
			{
				BackpackSlot val = (BackpackSlot)(object)((slot is BackpackSlot) ? slot : null);
				if (val != null && (int)val.backpackType == 3)
				{
					__instance.backpackFilledSlotsObject.SetActive(true);
					component.anchoredPosition = value + Vector2.up * 55f;
					Plugin.Log.LogInfo((object)("[JETPACK UI] Storage UI moved up " + $"{55f:F0}px"));
				}
			}
		}
	}
	[HarmonyPatch(typeof(InventoryItemUI))]
	internal static class JetpackFuelUIPatch
	{
		private const float JetpackFuelCap = 200f;

		[HarmonyPatch("TrySetFuel")]
		[HarmonyPostfix]
		private static void TrySetFuelPostfix(InventoryItemUI __instance, ItemInstanceData data)
		{
			//IL_0065: Unknown result type (might be due to invalid IL or missing references)
			//IL_006b: Invalid comparison between Unknown and I4
			if ((Object)(object)__instance == (Object)null || !__instance.isBackpack || data == null)
			{
				return;
			}
			Character observedCharacter = Character.observedCharacter;
			if ((Object)(object)observedCharacter == (Object)null || (Object)(object)observedCharacter.player == (Object)null)
			{
				return;
			}
			BackpackSlot backpackSlot = observedCharacter.player.backpackSlot;
			FloatItemData val = default(FloatItemData);
			if (backpackSlot != null && !((ItemSlot)backpackSlot).IsEmpty() && (int)backpackSlot.backpackType == 3 && data.TryGetDataEntry<FloatItemData>((DataEntryKey)10, ref val))
			{
				if ((Object)(object)__instance.fuelBar != (Object)null)
				{
					__instance.fuelBar.SetActive(true);
				}
				if ((Object)(object)__instance.fuelBarFill != (Object)null)
				{
					__instance.fuelBarFill.fillAmount = Mathf.Clamp01(val.Value / 200f);
				}
			}
		}
	}
}
namespace System.Diagnostics.CodeAnalysis
{
	[AttributeUsage(AttributeTargets.Parameter, Inherited = false)]
	[ExcludeFromCodeCoverage]
	internal sealed class ConstantExpectedAttribute : Attribute
	{
		public object? Min { get; set; }

		public object? Max { get; set; }
	}
	[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Module | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Interface | AttributeTargets.Delegate, Inherited = false)]
	[ExcludeFromCodeCoverage]
	internal sealed class ExperimentalAttribute : Attribute
	{
		public string DiagnosticId { get; }

		public string? UrlFormat { get; set; }

		public ExperimentalAttribute(string diagnosticId)
		{
			DiagnosticId = diagnosticId;
		}
	}
	[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property, Inherited = false, AllowMultiple = true)]
	[ExcludeFromCodeCoverage]
	internal sealed class MemberNotNullAttribute : Attribute
	{
		public string[] Members { get; }

		public MemberNotNullAttribute(string member)
		{
			Members = new string[1] { member };
		}

		public MemberNotNullAttribute(params string[] members)
		{
			Members = members;
		}
	}
	[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property, Inherited = false, AllowMultiple = true)]
	[ExcludeFromCodeCoverage]
	internal sealed class MemberNotNullWhenAttribute : Attribute
	{
		public bool ReturnValue { get; }

		public string[] Members { get; }

		public MemberNotNullWhenAttribute(bool returnValue, string member)
		{
			ReturnValue = returnValue;
			Members = new string[1] { member };
		}

		public MemberNotNullWhenAttribute(bool returnValue, params string[] members)
		{
			ReturnValue = returnValue;
			Members = members;
		}
	}
	[AttributeUsage(AttributeTargets.Constructor, AllowMultiple = false, Inherited = false)]
	[ExcludeFromCodeCoverage]
	internal sealed class SetsRequiredMembersAttribute : Attribute
	{
	}
	[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
	[ExcludeFromCodeCoverage]
	internal sealed class StringSyntaxAttribute : Attribute
	{
		public const string CompositeFormat = "CompositeFormat";

		public const string DateOnlyFormat = "DateOnlyFormat";

		public const string DateTimeFormat = "DateTimeFormat";

		public const string EnumFormat = "EnumFormat";

		public const string GuidFormat = "GuidFormat";

		public const string Json = "Json";

		public const string NumericFormat = "NumericFormat";

		public const string Regex = "Regex";

		public const string TimeOnlyFormat = "TimeOnlyFormat";

		public const string TimeSpanFormat = "TimeSpanFormat";

		public const string Uri = "Uri";

		public const string Xml = "Xml";

		public string Syntax { get; }

		public object?[] Arguments { get; }

		public StringSyntaxAttribute(string syntax)
		{
			Syntax = syntax;
			Arguments = new object[0];
		}

		public StringSyntaxAttribute(string syntax, params object?[] arguments)
		{
			Syntax = syntax;
			Arguments = arguments;
		}
	}
	[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
	[ExcludeFromCodeCoverage]
	internal sealed class UnscopedRefAttribute : Attribute
	{
	}
}
namespace System.Runtime.Versioning
{
	[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Module | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Interface | AttributeTargets.Delegate, Inherited = false)]
	[ExcludeFromCodeCoverage]
	internal sealed class RequiresPreviewFeaturesAttribute : Attribute
	{
		public string? Message { get; }

		public string? Url { get; set; }

		public RequiresPreviewFeaturesAttribute()
		{
		}

		public RequiresPreviewFeaturesAttribute(string? message)
		{
			Message = message;
		}
	}
}
namespace System.Runtime.CompilerServices
{
	[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
	internal sealed class IgnoresAccessChecksToAttribute : Attribute
	{
		public IgnoresAccessChecksToAttribute(string assemblyName)
		{
		}
	}
	[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
	[ExcludeFromCodeCoverage]
	internal sealed class CallerArgumentExpressionAttribute : Attribute
	{
		public string ParameterName { get; }

		public CallerArgumentExpressionAttribute(string parameterName)
		{
			ParameterName = parameterName;
		}
	}
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface, Inherited = false)]
	[ExcludeFromCodeCoverage]
	internal sealed class CollectionBuilderAttribute : Attribute
	{
		public Type BuilderType { get; }

		public string MethodName { get; }

		public CollectionBuilderAttribute(Type builderType, string methodName)
		{
			BuilderType = builderType;
			MethodName = methodName;
		}
	}
	[AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = false)]
	[ExcludeFromCodeCoverage]
	internal sealed class CompilerFeatureRequiredAttribute : Attribute
	{
		public const string RefStructs = "RefStructs";

		public const string RequiredMembers = "RequiredMembers";

		public string FeatureName { get; }

		public bool IsOptional { get; set; }

		public CompilerFeatureRequiredAttribute(string featureName)
		{
			FeatureName = featureName;
		}
	}
	[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = false)]
	[ExcludeFromCodeCoverage]
	internal sealed class InterpolatedStringHandlerArgumentAttribute : Attribute
	{
		public string[] Arguments { get; }

		public InterpolatedStringHandlerArgumentAttribute(string argument)
		{
			Arguments = new string[1] { argument };
		}

		public InterpolatedStringHandlerArgumentAttribute(params string[] arguments)
		{
			Arguments = arguments;
		}
	}
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, AllowMultiple = false, Inherited = false)]
	[ExcludeFromCodeCoverage]
	internal sealed class InterpolatedStringHandlerAttribute : Attribute
	{
	}
	[EditorBrowsable(EditorBrowsableState.Never)]
	[ExcludeFromCodeCoverage]
	internal static class IsExternalInit
	{
	}
	[AttributeUsage(AttributeTargets.Method, Inherited = false)]
	[ExcludeFromCodeCoverage]
	internal sealed class ModuleInitializerAttribute : Attribute
	{
	}
	[AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property, AllowMultiple = false, Inherited = false)]
	[ExcludeFromCodeCoverage]
	internal sealed class OverloadResolutionPriorityAttribute : Attribute
	{
		public int Priority { get; }

		public OverloadResolutionPriorityAttribute(int priority)
		{
			Priority = priority;
		}
	}
	[AttributeUsage(AttributeTargets.Parameter, Inherited = true, AllowMultiple = false)]
	[ExcludeFromCodeCoverage]
	internal sealed class ParamCollectionAttribute : Attribute
	{
	}
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false, Inherited = false)]
	[ExcludeFromCodeCoverage]
	internal sealed class RequiredMemberAttribute : Attribute
	{
	}
	[AttributeUsage(AttributeTargets.Parameter, Inherited = false)]
	[EditorBrowsable(EditorBrowsableState.Never)]
	[ExcludeFromCodeCoverage]
	internal sealed class RequiresLocationAttribute : Attribute
	{
	}
	[AttributeUsage(AttributeTargets.Module | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Event | AttributeTargets.Interface, Inherited = false)]
	[ExcludeFromCodeCoverage]
	internal sealed class SkipLocalsInitAttribute : Attribute
	{
	}
}