using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using BepInEx;
using BepInEx.Core.Logging.Interpolation;
using BepInEx.Logging;
using BepInEx.Unity.IL2CPP;
using HarmonyLib;
using Il2CppInterop.Runtime.InteropTypes;
using Il2CppSystem;
using Microsoft.CodeAnalysis;
using Quantum.Commands;
using UISystem;
using UnityEngine;
using UnityEngine.InputSystem;
using UnityEngine.InputSystem.Controls;
using WildSkies.Mediators;
using WildSkies.Service;
using Wildskies.UI.Hud;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: TargetFramework(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
[assembly: AssemblyCompany("HUDToggle")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyCopyright("Nines (Natives)")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("HUDToggle")]
[assembly: AssemblyTitle("HUDToggle")]
[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 HUDToggle
{
[BepInPlugin("HUDToggle", "HUDToggle", "1.0.0")]
public class Plugin : BasePlugin
{
internal static ManualLogSource Log;
internal static Harmony harmonyInstance;
private static bool _enableHudToggle = true;
public override void Load()
{
//IL_0015: Unknown result type (might be due to invalid IL or missing references)
//IL_001b: Expected O, but got Unknown
Log = ((BasePlugin)this).Log;
ManualLogSource log = Log;
bool flag = default(bool);
BepInExInfoLogInterpolatedStringHandler val = new BepInExInfoLogInterpolatedStringHandler(18, 1, ref flag);
if (flag)
{
((BepInExLogInterpolatedStringHandler)val).AppendLiteral("Plugin ");
((BepInExLogInterpolatedStringHandler)val).AppendFormatted<string>("HUDToggle");
((BepInExLogInterpolatedStringHandler)val).AppendLiteral(" is loaded!");
}
log.LogInfo(val);
harmonyInstance = Harmony.CreateAndPatchAll(typeof(Plugin), (string)null);
}
public override bool Unload()
{
Harmony obj = harmonyInstance;
if (obj != null)
{
obj.UnpatchSelf();
}
return true;
}
private static void ShowNotification(string text)
{
if (string.IsNullOrEmpty(text))
{
return;
}
IUIService _uiService = default(IUIService);
ServiceBaseCommands.GetService<IUIService>(ref _uiService);
if (_uiService == null)
{
return;
}
Action<HudElement> action = delegate(HudElement hudElement)
{
if (!((Object)(object)hudElement == (Object)null))
{
_uiService.HUDManager.HudElementLoaded(hudElement, (IPayload)null, (Action)null);
NotificationHud val = ((Il2CppObjectBase)hudElement).Cast<NotificationHud>();
NotificationPopupObject notificationPopup = val.GetNotificationPopup();
notificationPopup._icon.sprite = notificationPopup._fallbackIcon;
float durationRemaining = (notificationPopup._displayDuration = val._viewModel.PopupDisplayDuration);
notificationPopup._durationRemaining = durationRemaining;
notificationPopup._fadeOutSpeedModifier = val._viewModel.PopupDisplayFadeSpeedMultiplier;
notificationPopup._callback = val.OnPopupExpired;
((Component)notificationPopup._shineAnimator).gameObject.SetActive(false);
notificationPopup._message.text = text;
val._currentNotification = notificationPopup;
val._activeNotifications.Enqueue(val._currentNotification);
}
};
if (_uiService.HUDManager._hudElementsInMemory.ContainsKey((UIHudType)14))
{
action(_uiService.HUDManager._hudElementsInMemory[(UIHudType)14]);
}
else
{
_uiService.HUDManager.LoadHudElement((UIHudType)14, Action<HudElement>.op_Implicit(action));
}
}
[HarmonyPatch(typeof(UIInputMediator), "Update")]
[HarmonyPrefix]
public static void UIInputMediator_Update(UIInputMediator __instance)
{
if (!__instance._ui.IsServiceReady || __instance._sceneService.AreWeLoadingOrInLobby() || __instance._ui.PanelManager.IsPanelShowing((UIPanelType)16))
{
return;
}
if (_enableHudToggle && ((ButtonControl)Keyboard.current.backslashKey).wasPressedThisFrame)
{
_enableHudToggle = false;
IUIService val = ProjectContextInstaller.ResolveObject<IUIService>();
if (val != null && val.IsServiceReady)
{
if (val.HUDManager._enabled)
{
ShowNotification(((!val.HUDManager._enabled) ? "Showing" : "Hiding") + " HUD");
}
val.HUDManager.SetEnabled(!val.HUDManager._enabled);
if (val.HUDManager._enabled)
{
ShowNotification((val.HUDManager._enabled ? "Showing" : "Hiding") + " HUD");
}
}
}
if (!_enableHudToggle && !((ButtonControl)Keyboard.current.backslashKey).isPressed)
{
_enableHudToggle = true;
}
}
}
public static class MyPluginInfo
{
public const string PLUGIN_GUID = "HUDToggle";
public const string PLUGIN_NAME = "HUDToggle";
public const string PLUGIN_VERSION = "1.0.0";
}
}