Decompiled source of FlashlightBatteryTweak v1.1.1

coookies369.FlashlightBatteryTweak.dll

Decompiled 3 weeks ago
using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Serialization;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using BepInEx;
using BepInEx.Configuration;
using BepInEx.Logging;
using CSync.Lib;
using CSync.Util;
using HarmonyLib;
using LobbyCompatibility.Attributes;
using Microsoft.CodeAnalysis;
using UnityEngine;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")]
[assembly: AssemblyCompany("coookies369.FlashlightBatteryTweak")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyFileVersion("1.1.1.0")]
[assembly: AssemblyInformationalVersion("1.1.1")]
[assembly: AssemblyProduct("FlashlightBatteryTweak")]
[assembly: AssemblyTitle("coookies369.FlashlightBatteryTweak")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("1.1.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.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;
		}
	}
}
[DataContract]
public class Config : SyncedConfig2<Config>
{
	[SyncedEntryField]
	public SyncedEntry<float> ProFlashlightBatteryUsage;

	[SyncedEntryField]
	public SyncedEntry<float> ProFlashlightBatteryBurst;

	[SyncedEntryField]
	public SyncedEntry<float> FlashlightBatteryUsage;

	[SyncedEntryField]
	public SyncedEntry<float> FlashlightBatteryBurst;

	public Config(ConfigFile cfg)
		: base("coookies369.FlashlightBatteryTweak")
	{
		//IL_0017: Unknown result type (might be due to invalid IL or missing references)
		//IL_002c: Unknown result type (might be due to invalid IL or missing references)
		//IL_0036: Expected O, but got Unknown
		//IL_0036: Expected O, but got Unknown
		//IL_0047: Unknown result type (might be due to invalid IL or missing references)
		//IL_005c: Unknown result type (might be due to invalid IL or missing references)
		//IL_0066: Expected O, but got Unknown
		//IL_0066: Expected O, but got Unknown
		//IL_0077: Unknown result type (might be due to invalid IL or missing references)
		//IL_008c: Unknown result type (might be due to invalid IL or missing references)
		//IL_0096: Expected O, but got Unknown
		//IL_0096: Expected O, but got Unknown
		//IL_00a7: Unknown result type (might be due to invalid IL or missing references)
		//IL_00bc: Unknown result type (might be due to invalid IL or missing references)
		//IL_00c6: Expected O, but got Unknown
		//IL_00c6: Expected O, but got Unknown
		ProFlashlightBatteryUsage = Extensions.BindSyncedEntry<float>(cfg, new ConfigDefinition("ProFlashlight", "ProFlashlightBatteryUsage"), 360f, new ConfigDescription("How long it takes for the battery to be drained in seconds. Vanilla is 300", (AcceptableValueBase)null, Array.Empty<object>()));
		ProFlashlightBatteryBurst = Extensions.BindSyncedEntry<float>(cfg, new ConfigDefinition("ProFlashlight", "ProFlashlightBatteryBurst"), 0.05f, new ConfigDescription("What percentage of the battery is drained when turning the flashlight on", (AcceptableValueBase)null, Array.Empty<object>()));
		FlashlightBatteryUsage = Extensions.BindSyncedEntry<float>(cfg, new ConfigDefinition("Flashlight", "FlashlightBatteryUsage"), 180f, new ConfigDescription("How long it takes for the battery to be drained in seconds. Vanilla is 140", (AcceptableValueBase)null, Array.Empty<object>()));
		FlashlightBatteryBurst = Extensions.BindSyncedEntry<float>(cfg, new ConfigDefinition("Flashlight", "FlashlightBatteryBurst"), 0.03f, new ConfigDescription("What percentage of the battery is drained when turning the flashlight on", (AcceptableValueBase)null, Array.Empty<object>()));
		ConfigManager.Register<Config>((SyncedConfig2<Config>)(object)this);
	}
}
namespace FlashlightBatteryTweak
{
	[BepInPlugin("coookies369.FlashlightBatteryTweak", "FlashlightBatteryTweak", "1.1.1")]
	[BepInDependency(/*Could not decode attribute arguments.*/)]
	[LobbyCompatibility(/*Could not decode attribute arguments.*/)]
	[BepInDependency(/*Could not decode attribute arguments.*/)]
	public class FlashlightBatteryTweak : BaseUnityPlugin
	{
		internal static Config MyConfig;

		public static FlashlightBatteryTweak Instance { get; private set; }

		internal static ManualLogSource Logger { get; private set; }

		internal static Harmony? Harmony { get; set; }

		private void Awake()
		{
			Logger = ((BaseUnityPlugin)this).Logger;
			Instance = this;
			MyConfig = new Config(((BaseUnityPlugin)this).Config);
			Patch();
			Logger.LogInfo((object)"coookies369.FlashlightBatteryTweak v1.1.1 has loaded!");
		}

		internal static void Patch()
		{
			//IL_000c: Unknown result type (might be due to invalid IL or missing references)
			//IL_0011: Unknown result type (might be due to invalid IL or missing references)
			//IL_0017: Expected O, but got Unknown
			if (Harmony == null)
			{
				Harmony = new Harmony("coookies369.FlashlightBatteryTweak");
			}
			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 = "coookies369.FlashlightBatteryTweak";

		public const string PLUGIN_NAME = "FlashlightBatteryTweak";

		public const string PLUGIN_VERSION = "1.1.1";
	}
}
namespace FlashlightBatteryTweak.Patches
{
	[HarmonyPatch(typeof(FlashlightItem))]
	public class FlashlightPatch
	{
		[HarmonyPatch("ItemActivate")]
		[HarmonyPrefix]
		private static void ItemActivate(bool used, FlashlightItem __instance)
		{
			switch (__instance.flashlightTypeID)
			{
			case 0:
				if (used)
				{
					((GrabbableObject)__instance).insertedBattery.charge = Mathf.Clamp(((GrabbableObject)__instance).insertedBattery.charge - FlashlightBatteryTweak.MyConfig.ProFlashlightBatteryBurst.Value, 0f, 1f);
				}
				((GrabbableObject)__instance).itemProperties.batteryUsage = FlashlightBatteryTweak.MyConfig.ProFlashlightBatteryUsage.Value;
				break;
			case 1:
				if (used)
				{
					((GrabbableObject)__instance).insertedBattery.charge = Mathf.Clamp(((GrabbableObject)__instance).insertedBattery.charge - FlashlightBatteryTweak.MyConfig.FlashlightBatteryBurst.Value, 0f, 1f);
				}
				((GrabbableObject)__instance).itemProperties.batteryUsage = FlashlightBatteryTweak.MyConfig.FlashlightBatteryUsage.Value;
				break;
			}
		}
	}
}