using System;
using System.Diagnostics;
using System.IO;
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 HarmonyLib;
using Microsoft.CodeAnalysis;
using PluginConfig.API;
using PluginConfig.API.Fields;
using UnityEngine;
using greycsont.GreyAnnouncer;
[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("DeltalyDrainStaminaMeter")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyDescription("My first plugin")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("DeltalyDrainStaminaMeter")]
[assembly: AssemblyTitle("DeltalyDrainStaminaMeter")]
[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 greycsont.GreyAnnouncer
{
public class PathManager
{
public static string GetCurrentPluginPath(string filePath)
{
string directoryName = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
return Path.Combine(directoryName, filePath);
}
public static string GetGamePath(string filePath)
{
string gameRootPath = Paths.GameRootPath;
return Path.Combine(gameRootPath, filePath);
}
}
}
namespace DeltalyDrainStaminaMeter
{
public class InstanceConfig
{
public static ConfigEntry<float> TimeInterval;
public static ConfigEntry<bool> DrainStaminaMeter_Enabled;
public static void Initialize(Plugin plugin)
{
BindConfigEntryValues(plugin);
}
private static void BindConfigEntryValues(Plugin plugin)
{
TimeInterval = ((BaseUnityPlugin)plugin).Config.Bind<float>("General", "Time_interval", 0.5f, "The time interval between two drains(in secs)");
DrainStaminaMeter_Enabled = ((BaseUnityPlugin)plugin).Config.Bind<bool>("General", "Drain_Stamina_Meter_Enabled", true, "Set it as true to enable the draining");
}
}
public class IPluginConfigurator
{
[Serializable]
[CompilerGenerated]
private sealed class <>c
{
public static readonly <>c <>9 = new <>c();
public static FloatValueChangeEventDelegate <>9__2_0;
internal void <MainPanel>b__2_0(FloatValueChangeEvent e)
{
InstanceConfig.TimeInterval.Value = e.value;
}
}
private static PluginConfigurator config;
public static void Initialize()
{
config = PluginConfigurator.Create("DeltalyDrainStaminaMeter", "greycsont.ultrakill.DeltalyDrainStaminaMeter");
config.SetIconWithURL(PathManager.GetCurrentPluginPath("icon.png"));
MainPanel();
}
private static void MainPanel()
{
//IL_003f: Unknown result type (might be due to invalid IL or missing references)
//IL_0045: Expected O, but got Unknown
//IL_007b: Unknown result type (might be due to invalid IL or missing references)
//IL_0080: Unknown result type (might be due to invalid IL or missing references)
//IL_0086: Expected O, but got Unknown
BoolField val = BoolFieldFactory(config.rootPanel, "Drain stamina meter", "drainStaminaMeter", InstanceConfig.DrainStaminaMeter_Enabled, defaultValue: true);
FloatField val2 = new FloatField(config.rootPanel, "Time interval", "timeInterval", InstanceConfig.TimeInterval.Value);
val2.defaultValue = 0.5f;
val2.minimumValue = 0f;
val2.maximumValue = 1113f;
object obj = <>c.<>9__2_0;
if (obj == null)
{
FloatValueChangeEventDelegate val3 = delegate(FloatValueChangeEvent e)
{
InstanceConfig.TimeInterval.Value = e.value;
};
<>c.<>9__2_0 = val3;
obj = (object)val3;
}
val2.onValueChange += (FloatValueChangeEventDelegate)obj;
}
private static BoolField BoolFieldFactory(ConfigPanel parentPanel, string name, string GUID, ConfigEntry<bool> configEntry, bool defaultValue)
{
//IL_001c: Unknown result type (might be due to invalid IL or missing references)
//IL_0022: Expected O, but got Unknown
//IL_002a: Unknown result type (might be due to invalid IL or missing references)
//IL_0034: Expected O, but got Unknown
BoolField val = new BoolField(parentPanel, name, GUID, configEntry.Value);
val.onValueChange += (BoolValueChangeEventDelegate)delegate(BoolValueChangeEvent e)
{
configEntry.Value = e.value;
};
val.defaultValue = defaultValue;
return val;
}
}
[HarmonyPatch(typeof(TimeController), "Update")]
public static class TimeControllerUpdatePatch
{
private static float timer;
private static void Prefix()
{
if (InstanceConfig.DrainStaminaMeter_Enabled.Value)
{
timer += Time.deltaTime;
if (timer >= InstanceConfig.TimeInterval.Value)
{
timer = 0f;
DrainStamina();
}
}
}
private static void DrainStamina()
{
NewMovement val = Object.FindObjectOfType<NewMovement>();
if ((Object)(object)val != (Object)null)
{
val.EmptyStamina();
}
else
{
Debug.LogError((object)"NewMovement instance not found!");
}
}
}
[BepInPlugin("greycsont.ultrakill.DeltalyDrainStaminaMeter", "DeltalyDrainStaminaMeter", "1.0.0")]
[BepInProcess("ULTRAKILL.exe")]
[BepInDependency(/*Could not decode attribute arguments.*/)]
public class Plugin : BaseUnityPlugin
{
private Harmony harmony;
internal static ManualLogSource Log;
private void Awake()
{
Log = ((BaseUnityPlugin)this).Logger;
LoadMainModule();
LoadOptionalModule();
PatchHarmony();
Log.LogInfo((object)"Plugin greycsont.ultrakill.DeltalyDrainStaminaMeter is loaded!");
}
private void LoadMainModule()
{
InstanceConfig.Initialize(this);
}
private void LoadOptionalModule()
{
CheckPluginLoaded("com.eternalUnion.pluginConfigurator", "DeltalyDrainStaminaMeter.IPluginConfigurator");
}
private void PatchHarmony()
{
//IL_0007: Unknown result type (might be due to invalid IL or missing references)
//IL_0011: Expected O, but got Unknown
harmony = new Harmony("greycsont.ultrakill.DeltalyDrainStaminaMeter.harmony");
harmony.PatchAll();
}
private void CheckPluginLoaded(string GUID, string assemblyName)
{
if (!Chainloader.PluginInfos.ContainsKey(GUID))
{
Log.LogWarning((object)("Plugin " + GUID + " not loaded, stopping loading " + assemblyName));
return;
}
try
{
Assembly executingAssembly = Assembly.GetExecutingAssembly();
Type type = executingAssembly.GetType(assemblyName);
type.GetMethod("Initialize", BindingFlags.Static | BindingFlags.Public)?.Invoke(null, null);
}
catch (Exception arg)
{
((BaseUnityPlugin)this).Logger.LogError((object)$"Failed to load module: {arg}");
}
}
}
internal static class PluginDependencies
{
public const string PLUGINCONFIGURATOR_GUID = "com.eternalUnion.pluginConfigurator";
}
internal static class PluginInfo
{
public const string PLUGIN_GUID = "greycsont.ultrakill.DeltalyDrainStaminaMeter";
public const string PLUGIN_NAME = "DeltalyDrainStaminaMeter";
public const string PLUGIN_VERSION = "1.0.0";
}
}