Decompiled source of HPNumbers v1.0.2

HPNumbers.dll

Decompiled a day ago
using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using BepInEx;
using BepInEx.Configuration;
using BepInEx.Logging;
using HarmonyLib;
using Microsoft.CodeAnalysis;
using NineSolsAPI;
using RCGMaker.Core;
using TMPro;
using UnityEngine;
using UnityEngine.UI;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")]
[assembly: AssemblyCompany("HPNumbers")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyDescription("Shows Yi's HP number")]
[assembly: AssemblyFileVersion("1.0.2.0")]
[assembly: AssemblyInformationalVersion("1.0.2+5f0d42122c5dee0b580f8b0046b6d18ffae1e6ed")]
[assembly: AssemblyProduct("HPNumbers")]
[assembly: AssemblyTitle("HPNumbers")]
[assembly: AssemblyVersion("1.0.2.0")]
[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.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]
	[Microsoft.CodeAnalysis.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]
	[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 HPNumbers
{
	[BepInDependency(/*Could not decode attribute arguments.*/)]
	[BepInPlugin("HPNumbers", "HPNumbers", "1.0.2")]
	public class HPNumbers : BaseUnityPlugin
	{
		private Harmony harmony;

		private float YiHealth;

		private TMP_Text hpNumber;

		private MonsterBase monster;

		private TMP_Text bossHPNumber;

		private float bossHealth;

		private TMP_Text bossInternalHPNumber;

		private float bossInternalHealth;

		private Color internalDamageColor;

		private ConfigEntry<Vector2> yiHPPos;

		private ConfigEntry<Vector2> bossHPPos;

		private ConfigEntry<Vector2> bossInternalPos;

		private void Awake()
		{
			//IL_0056: Unknown result type (might be due to invalid IL or missing references)
			//IL_005b: Unknown result type (might be due to invalid IL or missing references)
			//IL_007b: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c0: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c5: Unknown result type (might be due to invalid IL or missing references)
			//IL_0106: Unknown result type (might be due to invalid IL or missing references)
			//IL_0135: Unknown result type (might be due to invalid IL or missing references)
			//IL_015a: Unknown result type (might be due to invalid IL or missing references)
			//IL_017a: Unknown result type (might be due to invalid IL or missing references)
			//IL_017f: Unknown result type (might be due to invalid IL or missing references)
			//IL_019b: Unknown result type (might be due to invalid IL or missing references)
			//IL_01bb: Unknown result type (might be due to invalid IL or missing references)
			//IL_01c0: Unknown result type (might be due to invalid IL or missing references)
			Log.Init(((BaseUnityPlugin)this).Logger);
			RCGLifeCycle.DontDestroyForever(((Component)this).gameObject);
			harmony = Harmony.CreateAndPatchAll(typeof(HPNumbers).Assembly, (string)null);
			((BaseUnityPlugin)this).Logger.LogInfo((object)"Plugin HPNumbers is loaded!");
			internalDamageColor = new Color(0.5f, 1f, 1f, 1f);
			yiHPPos = ((BaseUnityPlugin)this).Config.Bind<Vector2>("General", "YiHPPosition", new Vector2(340f, 750f), "Position for Yi's HP number");
			hpNumber = ShowHealth(YiHealth.ToString("F0"), Color.black);
			((Transform)hpNumber.rectTransform).position = Vector2.op_Implicit(yiHPPos.Value);
			MonoLifeTimeExtension.SetActive((MonoBehaviour)(object)hpNumber, false);
			monster = SingletonBehaviour<MonsterManager>.Instance.FindClosestMonster();
			bossHPPos = ((BaseUnityPlugin)this).Config.Bind<Vector2>("General", "BossHPPosition", new Vector2(850f, 70f), "Position for Boss HP number");
			bossInternalPos = ((BaseUnityPlugin)this).Config.Bind<Vector2>("General", "BossInternalHPPosition", new Vector2(930f, 70f), "Position for Boss Internal HP number");
			bossHPNumber = ShowHealth(bossHealth.ToString("F0"), Color.white);
			((Transform)bossHPNumber.rectTransform).position = Vector2.op_Implicit(bossHPPos.Value);
			bossInternalHPNumber = ShowHealth(bossInternalHealth.ToString("F0"), internalDamageColor);
			((Transform)bossInternalHPNumber.rectTransform).position = Vector2.op_Implicit(bossInternalPos.Value);
			MonoLifeTimeExtension.SetActive((MonoBehaviour)(object)bossHPNumber, false);
			MonoLifeTimeExtension.SetActive((MonoBehaviour)(object)bossInternalHPNumber, false);
		}

		private void Update()
		{
			//IL_006e: Unknown result type (might be due to invalid IL or missing references)
			//IL_005c: Unknown result type (might be due to invalid IL or missing references)
			//IL_013b: Unknown result type (might be due to invalid IL or missing references)
			//IL_0140: Unknown result type (might be due to invalid IL or missing references)
			//IL_015b: Unknown result type (might be due to invalid IL or missing references)
			//IL_0160: Unknown result type (might be due to invalid IL or missing references)
			//IL_017b: Unknown result type (might be due to invalid IL or missing references)
			//IL_0180: Unknown result type (might be due to invalid IL or missing references)
			if ((Object)(object)Player.i != (Object)null)
			{
				YiHealth = ((Health)Player.i.health).currentValue;
				MonoLifeTimeExtension.SetActive((MonoBehaviour)(object)hpNumber, true);
				hpNumber.text = YiHealth.ToString("F0");
			}
			if (YiHealth < 8f)
			{
				((Graphic)hpNumber).color = Color.white;
			}
			else
			{
				((Graphic)hpNumber).color = Color.black;
			}
			monster = SingletonBehaviour<MonsterManager>.Instance.FindClosestMonster();
			if ((Object)(object)monster != (Object)null && ((Component)monster).tag == "Boss")
			{
				MonoLifeTimeExtension.SetActive((MonoBehaviour)(object)bossHPNumber, true);
				MonoLifeTimeExtension.SetActive((MonoBehaviour)(object)bossInternalHPNumber, true);
				bossHealth = monster.postureSystem.CurrentHealthValue;
				bossHPNumber.text = bossHealth.ToString("F0");
				bossInternalHealth = monster.postureSystem.CurrentInternalInjury;
				bossInternalHPNumber.text = bossInternalHealth.ToString("F0");
			}
			((Transform)hpNumber.rectTransform).position = Vector2.op_Implicit(yiHPPos.Value);
			((Transform)bossHPNumber.rectTransform).position = Vector2.op_Implicit(bossHPPos.Value);
			((Transform)bossInternalHPNumber.rectTransform).position = Vector2.op_Implicit(bossInternalPos.Value);
			if (YiHealth <= 0f)
			{
				MonoLifeTimeExtension.SetActive((MonoBehaviour)(object)hpNumber, false);
				MonoLifeTimeExtension.SetActive((MonoBehaviour)(object)bossHPNumber, false);
				MonoLifeTimeExtension.SetActive((MonoBehaviour)(object)bossInternalHPNumber, false);
			}
			else if (bossHealth == 0f && bossInternalHealth == 0f)
			{
				MonoLifeTimeExtension.SetActive((MonoBehaviour)(object)bossHPNumber, false);
				MonoLifeTimeExtension.SetActive((MonoBehaviour)(object)bossInternalHPNumber, false);
			}
		}

		private static TMP_Text ShowHealth(string str, Color color)
		{
			//IL_000b: Unknown result type (might be due to invalid IL or missing references)
			//IL_0010: Unknown result type (might be due to invalid IL or missing references)
			//IL_0034: Unknown result type (might be due to invalid IL or missing references)
			Transform transform = ((Component)NineSolsAPICore.FullscreenCanvas).transform;
			GameObject val = new GameObject();
			val.transform.SetParent(transform);
			TextMeshProUGUI obj = val.AddComponent<TextMeshProUGUI>();
			((TMP_Text)obj).fontSize = 19f;
			((TMP_Text)obj).text = str;
			((Graphic)obj).color = color;
			return (TMP_Text)(object)obj;
		}

		private void OnDestroy()
		{
			Object.Destroy((Object)(object)hpNumber);
			Object.Destroy((Object)(object)bossHPNumber);
			Object.Destroy((Object)(object)bossInternalHPNumber);
			harmony.UnpatchSelf();
		}
	}
	internal static class Log
	{
		private static ManualLogSource? logSource;

		internal static void Init(ManualLogSource logSource)
		{
			Log.logSource = logSource;
		}

		internal static void Debug(object data)
		{
			ManualLogSource? obj = logSource;
			if (obj != null)
			{
				obj.LogDebug(data);
			}
		}

		internal static void Error(object data)
		{
			ManualLogSource? obj = logSource;
			if (obj != null)
			{
				obj.LogError(data);
			}
		}

		internal static void Fatal(object data)
		{
			ManualLogSource? obj = logSource;
			if (obj != null)
			{
				obj.LogFatal(data);
			}
		}

		internal static void Info(object data)
		{
			ManualLogSource? obj = logSource;
			if (obj != null)
			{
				obj.LogInfo(data);
			}
		}

		internal static void Message(object data)
		{
			ManualLogSource? obj = logSource;
			if (obj != null)
			{
				obj.LogMessage(data);
			}
		}

		internal static void Warning(object data)
		{
			ManualLogSource? obj = logSource;
			if (obj != null)
			{
				obj.LogWarning(data);
			}
		}
	}
	[HarmonyPatch]
	public class Patches
	{
		[HarmonyPatch(typeof(Player), "SetStoryWalk")]
		[HarmonyPrefix]
		private static bool PatchStoryWalk(ref float walkModifier)
		{
			walkModifier = 1f;
			return true;
		}
	}
	public static class PluginInfo
	{
		public const string PLUGIN_GUID = "HPNumbers";

		public const string PLUGIN_NAME = "HPNumbers";

		public const string PLUGIN_VERSION = "1.0.2";
	}
}