using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
using BepInEx;
using BepInEx.Logging;
using HarmonyLib;
using QuotaRollover.Patches;
using UnityEngine;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: AssemblyTitle("QuotaRollover")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("QuotaRollover")]
[assembly: AssemblyCopyright("Copyright © 2023")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("bc931127-211b-4882-bb8e-44687a45d42b")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: TargetFramework(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace QuotaRollover
{
[BepInPlugin("Boxofbiscuits97.QuotraRollover", "Quota Rollover", "2.5.0")]
public class QuotaRolloverBase : BaseUnityPlugin
{
private readonly Harmony harmony = new Harmony("Boxofbiscuits97.QuotraRollover");
private static QuotaRolloverBase Instance;
public static ManualLogSource logger;
private void Awake()
{
if ((Object)(object)Instance == (Object)null)
{
Instance = this;
}
logger = ((BaseUnityPlugin)this).Logger;
logger.LogInfo((object)"Mod Boxofbiscuits97.QuotraRollover is loaded!");
harmony.PatchAll(typeof(QuotaRolloverBase));
harmony.PatchAll(typeof(TimeOfDayPatch));
}
}
}
namespace QuotaRollover.Patches
{
[HarmonyPatch(typeof(TimeOfDay))]
internal class TimeOfDayPatch
{
[HarmonyPatch("SetNewProfitQuota")]
[HarmonyPrefix]
[HarmonyAfter(new string[] { })]
private static bool GetQuotaFulfilledHost(ref int ___quotaFulfilled, ref int ___profitQuota, out int __state)
{
QuotaRolloverBase.logger.LogInfo((object)$"days: {TimeOfDay.Instance.daysUntilDeadline} time: {TimeOfDay.Instance.timeUntilDeadline} ID: {StartOfRound.Instance.currentLevelID}");
if (TimeOfDay.Instance.timeUntilDeadline <= 0f)
{
__state = ___quotaFulfilled - ___profitQuota;
QuotaRolloverBase.logger.LogInfo((object)$"Host Got New Quota at: {__state} ful: {___quotaFulfilled}");
return true;
}
QuotaRolloverBase.logger.LogInfo((object)"returned FALSE");
__state = ___quotaFulfilled;
return false;
}
[HarmonyPatch("SetNewProfitQuota")]
[HarmonyPostfix]
[HarmonyBefore(new string[] { })]
private static void SetQuotaFulfilledHost(ref int ___quotaFulfilled, int __state)
{
___quotaFulfilled = __state;
QuotaRolloverBase.logger.LogInfo((object)$"Host Set New Quota at: {__state}");
}
[HarmonyPatch("SyncNewProfitQuotaClientRpc")]
[HarmonyPrefix]
private static void GetNewQuotaFulfilledClient(ref int ___quotaFulfilled, ref int ___profitQuota, out int __state)
{
__state = ___quotaFulfilled - ___profitQuota;
QuotaRolloverBase.logger.LogInfo((object)$"Client Got New Quota at: {__state}");
}
[HarmonyPatch("SyncNewProfitQuotaClientRpc")]
[HarmonyPostfix]
private static void SetNewQuotaFulfiledClient(ref int ___quotaFulfilled, int __state)
{
if (___quotaFulfilled == 0)
{
___quotaFulfilled = __state;
QuotaRolloverBase.logger.LogInfo((object)$"Client Set New Quota at: {__state}");
}
}
}
}