Decompiled source of TeleportToOwner v1.0.3

TeleportToOwner.dll

Decompiled 2 months ago
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("TeleportToOwner")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyCopyright("Nines (Natives)")]
[assembly: AssemblyFileVersion("1.0.3.0")]
[assembly: AssemblyInformationalVersion("1.0.3")]
[assembly: AssemblyProduct("TeleportToOwner")]
[assembly: AssemblyTitle("TeleportToOwner")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("1.0.3.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 TeleportToOwner
{
	[BepInPlugin("TeleportToOwner", "TeleportToOwner", "1.0.3")]
	public class Plugin : BasePlugin
	{
		private class TeleportToOwnerSimpleChatCommands
		{
			public static string TeleportToPlayer(string characterName)
			{
				//IL_008c: Unknown result type (might be due to invalid IL or missing references)
				//IL_00a6: Unknown result type (might be due to invalid IL or missing references)
				ILocalPlayerService _localPlayerService = SceneContextInstaller.ResolveObject<ILocalPlayerService>();
				if (_localPlayerService == null)
				{
					return "Unable to get ILocalPlayerService";
				}
				IRemotePlayerService val = SceneContextInstaller.ResolveObject<IRemotePlayerService>();
				if (val == null)
				{
					return "Unable to get IRemotePlayerService";
				}
				PlayerNetwork val2 = val.RemotePlayers.Find(Predicate<PlayerNetwork>.op_Implicit((Func<PlayerNetwork, bool>)((PlayerNetwork x) => String.Equals(x.CharacterName, characterName, (StringComparison)5) && x.NetworkPlayerId != _localPlayerService.LocalPlayer.PlayerNetwork.NetworkPlayerId)));
				if ((Object)(object)val2 == (Object)null)
				{
					return "Unable to find a player with the name " + characterName;
				}
				_localPlayerService.LocalPlayer.DynamikaCharacter.Teleport(((Component)val2.PlayerSync.DynamikaCharacter).transform.position, ((Component)_localPlayerService.LocalPlayer.DynamikaCharacter).transform.rotation, false);
				return "Teleported to " + val2.CharacterName;
			}
		}

		internal static ManualLogSource Log;

		internal static Harmony harmonyInstance;

		private static bool _enableTeleport = 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>("TeleportToOwner");
				((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)
		{
			//IL_00ef: Unknown result type (might be due to invalid IL or missing references)
			//IL_0109: 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 (_enableTeleport && Keyboard.current.altKey.isPressed && ((ButtonControl)Keyboard.current.tKey).wasPressedThisFrame)
			{
				_enableTeleport = false;
				SessionService sessionService = __instance._sessionService;
				if (sessionService == null || sessionService.PlayerIsOwner)
				{
					return;
				}
				IRemotePlayerService val = SceneContextInstaller.ResolveObject<IRemotePlayerService>();
				if (val == null)
				{
					return;
				}
				NetworkCommandService _networkCommandService = SceneContextInstaller.ResolveObject<NetworkCommandService>();
				if ((Object)(object)_networkCommandService == (Object)null)
				{
					return;
				}
				PlayerNetwork val2 = val.RemotePlayers.Find(Predicate<PlayerNetwork>.op_Implicit((Func<PlayerNetwork, bool>)((PlayerNetwork x) => x.NetworkPlayerId == _networkCommandService.OwnerId)));
				if ((Object)(object)val2 == (Object)null)
				{
					return;
				}
				__instance._localPlayerService.LocalPlayer.DynamikaCharacter.Teleport(((Component)val2.PlayerSync.DynamikaCharacter).transform.position, ((Component)__instance._localPlayerService.LocalPlayer.DynamikaCharacter).transform.rotation, false);
				ShowNotification("Teleported to " + val2.CharacterName);
			}
			if (!Keyboard.current.altKey.isPressed || !((ButtonControl)Keyboard.current.tKey).wasPressedThisFrame)
			{
				_enableTeleport = true;
			}
		}
	}
	public static class MyPluginInfo
	{
		public const string PLUGIN_GUID = "TeleportToOwner";

		public const string PLUGIN_NAME = "TeleportToOwner";

		public const string PLUGIN_VERSION = "1.0.3";
	}
}