using System;
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.Configuration;
using BepInEx.Logging;
using HarmonyLib;
using Microsoft.CodeAnalysis;
using UnityEngine;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: IgnoresAccessChecksTo("Assembly-CSharp")]
[assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")]
[assembly: AssemblyCompany("waffl.LimitedStamina")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyFileVersion("0.3.1.0")]
[assembly: AssemblyInformationalVersion("0.3.1")]
[assembly: AssemblyProduct("waffl.LimitedStamina")]
[assembly: AssemblyTitle("LimitedStamina")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("0.3.1.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 LimitedStamina
{
public class ModConfig
{
public ConfigEntry<float> staminaDepletionRate;
public ConfigEntry<float> additionalFoodScaling;
public ConfigEntry<float> staminaFromCampfire;
public ConfigEntry<float> extraStaminaFromCampfire;
public ConfigEntry<bool> enable;
public ConfigEntry<bool> enableWafflesDefaultDifficulty;
public ConfigEntry<bool> sprintIsFree;
public ConfigEntry<bool> foodGivesMainStaminaFirst;
private ConfigFile configFile;
public ModConfig(ConfigFile configFile)
{
//IL_0025: Unknown result type (might be due to invalid IL or missing references)
//IL_002f: Expected O, but got Unknown
//IL_004c: Unknown result type (might be due to invalid IL or missing references)
//IL_0056: Expected O, but got Unknown
//IL_0085: Unknown result type (might be due to invalid IL or missing references)
//IL_008f: Expected O, but got Unknown
//IL_00be: Unknown result type (might be due to invalid IL or missing references)
//IL_00c8: Expected O, but got Unknown
//IL_00f7: Unknown result type (might be due to invalid IL or missing references)
//IL_0101: Expected O, but got Unknown
//IL_0130: Unknown result type (might be due to invalid IL or missing references)
//IL_013a: Expected O, but got Unknown
//IL_0157: Unknown result type (might be due to invalid IL or missing references)
//IL_0161: Expected O, but got Unknown
//IL_017e: Unknown result type (might be due to invalid IL or missing references)
//IL_0188: Expected O, but got Unknown
this.configFile = configFile;
enable = configFile.Bind<bool>("Config", "Enable", true, new ConfigDescription("Enable the mod.", (AcceptableValueBase)null, Array.Empty<object>()));
enableWafflesDefaultDifficulty = configFile.Bind<bool>("Config", "Waffles Default Difficulty", false, new ConfigDescription("Can you make it to the PEAK with my default settings?", (AcceptableValueBase)null, Array.Empty<object>()));
staminaDepletionRate = configFile.Bind<float>("Config", "Stamina Depletion Rate", 0.1f, new ConfigDescription("Set depletion rate of stamina. Default is 0.0225, so about 45 times slower than normal.", (AcceptableValueBase)(object)new AcceptableValueRange<float>(0f, 1f), Array.Empty<object>()));
additionalFoodScaling = configFile.Bind<float>("Config", "Food Stamina Effectiveness", 0.75f, new ConfigDescription("Set the effectiveness of food on increasing stamina, on top of being scaled by the depletion rate.", (AcceptableValueBase)(object)new AcceptableValueRange<float>(0f, 1f), Array.Empty<object>()));
staminaFromCampfire = configFile.Bind<float>("Config", "Stamina Regen From Campfire", 0.1f, new ConfigDescription("Set amount of stamina to recover on campfire light.", (AcceptableValueBase)(object)new AcceptableValueRange<float>(0f, 1f), Array.Empty<object>()));
extraStaminaFromCampfire = configFile.Bind<float>("Config", "Bonus Stamina Regen From Campfire", 0.015f, new ConfigDescription("Set amount of bonus stamina to gain on campfire light.", (AcceptableValueBase)(object)new AcceptableValueRange<float>(0f, 1f), Array.Empty<object>()));
sprintIsFree = configFile.Bind<bool>("Config", "Sprinting Is Free", true, new ConfigDescription("Set whether or not sprinting costs stamina.", (AcceptableValueBase)null, Array.Empty<object>()));
foodGivesMainStaminaFirst = configFile.Bind<bool>("Config", "Foods Increase Main Stamina First", true, new ConfigDescription("Set whether or not food adds to main stamina before adding to extra stamina.", (AcceptableValueBase)null, Array.Empty<object>()));
}
}
[HarmonyPatch(typeof(Campfire))]
public static class CampfirePatches
{
[HarmonyPrefix]
[HarmonyPatch("Light_Rpc")]
public static void Light_RpcPatch()
{
if (Plugin.runSettings.EnabledForRun)
{
Character.localCharacter.AddStamina(Plugin.runSettings.StaminaFromCampfire);
Character.localCharacter.SetExtraStamina(Character.localCharacter.data.extraStamina + Plugin.runSettings.ExtraStaminaFromCampfire);
}
}
}
[HarmonyPatch(typeof(Character))]
public static class CharacterPatches
{
[HarmonyPrefix]
[HarmonyPatch("CanRegenStamina")]
public static bool CanRegenStaminaPatch(ref bool __result)
{
if (!Plugin.runSettings.EnabledForRun)
{
return true;
}
__result = false;
return false;
}
[HarmonyPrefix]
[HarmonyPatch("UseStamina")]
public static void UseStaminaPatch(ref float usage)
{
if (Plugin.runSettings.EnabledForRun)
{
usage = Plugin.ScaleModifyStamina(usage);
}
}
[HarmonyPrefix]
[HarmonyPatch("AddExtraStamina")]
public static bool AddExtraStaminaPatch(ref float add, Character __instance)
{
if (!Plugin.runSettings.EnabledForRun)
{
return true;
}
add = Plugin.ScaleModifyStamina(add) * Plugin.runSettings.AdditionalFoodScaling;
if (!Plugin.runSettings.FoodGivesMainStaminaFirst)
{
return true;
}
if (__instance.GetMaxStamina() - __instance.GetTotalStamina() > add)
{
__instance.AddStamina(add);
return false;
}
return true;
}
[HarmonyPrefix]
[HarmonyPatch("SetExtraStamina")]
public static bool SetExtraStaminaPatch(ref float amt, Character __instance)
{
if (!Plugin.runSettings.EnabledForRun)
{
return true;
}
amt = Mathf.Clamp(amt, float.NegativeInfinity, __instance.data.extraStamina + Plugin.runSettings.ExtraStaminaFromCampfire * 2f);
return true;
}
[HarmonyPrefix]
[HarmonyPatch("RPCA_InitializeScoutReport")]
public static void RPCA_InitializeScoutReportPatch(Character __instance)
{
Plugin.runSettings = new Plugin.RunSettings();
if (!Plugin.runSettings.EnabledForRun)
{
__instance.refs.movement.sprintStaminaUsage = 0.025f;
return;
}
if (Plugin.runSettings.SprintIsFree)
{
__instance.refs.movement.sprintStaminaUsage = 0f;
}
else
{
__instance.refs.movement.sprintStaminaUsage = 0.025f;
}
__instance.AddStamina(__instance.GetMaxStamina());
}
}
[HarmonyPatch(typeof(StaminaBar))]
public static class StaminaBarPatch
{
[HarmonyPostfix]
[HarmonyPatch("Start")]
public static void StartPatch(StaminaBar __instance)
{
if (Plugin.runSettings.EnabledForRun)
{
float minAfflictionWidth = __instance.minAfflictionWidth;
float minStaminaBarWidth = __instance.minStaminaBarWidth;
__instance.minAfflictionWidth *= Plugin.runSettings.StaminaDepletionRate;
__instance.minAfflictionWidth = Mathf.Clamp(__instance.minAfflictionWidth, 5f, minAfflictionWidth);
__instance.minStaminaBarWidth *= Plugin.runSettings.StaminaDepletionRate;
__instance.minStaminaBarWidth = Mathf.Clamp(__instance.minStaminaBarWidth, 5f, minStaminaBarWidth);
}
}
}
[BepInPlugin("waffl.LimitedStamina", "LimitedStamina", "0.3.1")]
public class Plugin : BaseUnityPlugin
{
internal struct RunSettings
{
internal bool EnabledForRun;
internal bool SprintIsFree;
internal bool FoodGivesMainStaminaFirst;
internal float AdditionalFoodScaling;
internal float StaminaDepletionRate;
internal float StaminaFromCampfire;
internal float ExtraStaminaFromCampfire;
public RunSettings()
{
EnabledForRun = config.enable.Value;
if (config.enableWafflesDefaultDifficulty.Value)
{
SprintIsFree = true;
FoodGivesMainStaminaFirst = true;
AdditionalFoodScaling = 0.75f;
StaminaDepletionRate = 0.1f;
StaminaFromCampfire = 0.1f;
ExtraStaminaFromCampfire = 0.015f;
}
else
{
SprintIsFree = config.sprintIsFree.Value;
FoodGivesMainStaminaFirst = config.foodGivesMainStaminaFirst.Value;
AdditionalFoodScaling = config.additionalFoodScaling.Value;
StaminaDepletionRate = config.staminaDepletionRate.Value;
StaminaFromCampfire = config.staminaFromCampfire.Value;
ExtraStaminaFromCampfire = config.extraStaminaFromCampfire.Value;
}
}
}
internal static ModConfig config;
internal const float ORIGINAL_SPRINT_STAMINA_USAGE = 0.025f;
internal static RunSettings runSettings;
private Harmony _harmony;
public const string Id = "waffl.LimitedStamina";
internal static ManualLogSource Log { get; private set; }
public static string Name => "LimitedStamina";
public static string Version => "0.3.1";
private void Awake()
{
//IL_002b: Unknown result type (might be due to invalid IL or missing references)
//IL_0035: Expected O, but got Unknown
Log = ((BaseUnityPlugin)this).Logger;
config = new ModConfig(((BaseUnityPlugin)this).Config);
runSettings = new RunSettings();
_harmony = new Harmony("waffl.LimitedStamina");
_harmony.PatchAll();
Log.LogInfo((object)("Plugin " + Name + " is loaded!"));
}
private void OnDestroy()
{
Harmony harmony = _harmony;
if (harmony != null)
{
harmony.UnpatchSelf();
}
_harmony = null;
config = null;
Log.LogInfo((object)("Plugin " + Name + " unloaded!"));
}
public static float ScaleModifyStamina(float amt)
{
return amt * runSettings.StaminaDepletionRate;
}
}
}
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
{
}
}