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 UISystem;
using UnityEngine;
using UnityEngine.InputSystem;
using UnityEngine.InputSystem.Controls;
using WildSkies.Mediators;
using WildSkies.Service;
using WildSkies.Service.Instantiation;
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("NoClip")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyCopyright("Nines (Natives)")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyProduct("NoClip")]
[assembly: AssemblyTitle("NoClip")]
[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 NoClip
{
[BepInPlugin("NoClip", "NoClip", "1.0.0")]
public class Plugin : BasePlugin
{
internal static ManualLogSource Log;
internal static Harmony harmonyInstance;
private static bool _enableNoClip = 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>("NoClip");
((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 = SceneContextInstaller.ResolveObject<IUIService>();
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)
{
//IL_00cf: Unknown result type (might be due to invalid IL or missing references)
//IL_00d9: Expected O, but got Unknown
//IL_0104: Unknown result type (might be due to invalid IL or missing references)
if (!__instance._ui.IsServiceReady || __instance._sceneService.AreWeLoadingOrInLobby() || __instance._ui.PanelManager.IsPanelShowing((UIPanelType)16))
{
return;
}
if (_enableNoClip && Keyboard.current.altKey.isPressed && ((ButtonControl)Keyboard.current.nKey).wasPressedThisFrame)
{
_enableNoClip = false;
PlayersService val = SceneContextInstaller.ResolveObject<PlayersService>();
if (val == null)
{
ShowNotification("Error resolving PlayersService");
return;
}
DebugNoClipController val2 = Object.FindObjectOfType<DebugNoClipController>();
if ((Object)(object)val2 != (Object)null)
{
val.LocalPlayer.DynamikaCharacter.HardAttachTarget = null;
Object.Destroy((Object)(object)val2);
ShowNotification("NoClip disabled.");
return;
}
WildSkiesInstantiationService val3 = SceneContextInstaller.ResolveObject<WildSkiesInstantiationService>();
if (val == null)
{
ShowNotification("Error resolving WildSkiesInstantiationService");
return;
}
GameObject val4 = ((InstantiationService)val3).Instantiate(((InstantiationService)val3).AssetReferences.DebugNoClip, new AssetLoadRequest((Action<GameObject>)null));
if ((Object)(object)val4 == (Object)null)
{
ShowNotification("Error instantiating DebugNoClip");
return;
}
val4.transform.position = ((Component)val.LocalPlayer.DynamikaCharacter).transform.position;
val.LocalPlayer.DynamikaCharacter.HardAttachTarget = val4.transform;
ShowNotification("NoClip enabled.");
}
if (!Keyboard.current.altKey.isPressed || !((ButtonControl)Keyboard.current.nKey).wasPressedThisFrame)
{
_enableNoClip = true;
}
}
}
public static class MyPluginInfo
{
public const string PLUGIN_GUID = "NoClip";
public const string PLUGIN_NAME = "NoClip";
public const string PLUGIN_VERSION = "1.0.0";
}
}