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 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+1905a9435d45352796c03d7faa57fb95608e05e0")]
[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 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<int> yiHPSize;
private ConfigEntry<Vector2> bossHPPos;
private ConfigEntry<int> bossHPSize;
private ConfigEntry<Vector2> bossInternalPos;
private ConfigEntry<int> bossInternalHPSize;
private void Awake()
{
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0040: Unknown result type (might be due to invalid IL or missing references)
//IL_0060: Unknown result type (might be due to invalid IL or missing references)
//IL_00a7: Unknown result type (might be due to invalid IL or missing references)
//IL_00c7: Unknown result type (might be due to invalid IL or missing references)
//IL_00cc: Unknown result type (might be due to invalid IL or missing references)
//IL_0114: Unknown result type (might be due to invalid IL or missing references)
//IL_0165: Unknown result type (might be due to invalid IL or missing references)
//IL_01ac: Unknown result type (might be due to invalid IL or missing references)
//IL_01cc: Unknown result type (might be due to invalid IL or missing references)
//IL_01d1: Unknown result type (might be due to invalid IL or missing references)
//IL_0204: Unknown result type (might be due to invalid IL or missing references)
//IL_0224: Unknown result type (might be due to invalid IL or missing references)
//IL_0229: Unknown result type (might be due to invalid IL or missing references)
Log.Init(((BaseUnityPlugin)this).Logger);
RCGLifeCycle.DontDestroyForever(((Component)this).gameObject);
((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");
yiHPSize = ((BaseUnityPlugin)this).Config.Bind<int>("General", "YiHPSize", 19, "Font Size for Yi's HP");
hpNumber = ShowHealth(YiHealth.ToString("F0"), Color.black);
((Transform)hpNumber.rectTransform).position = Vector2.op_Implicit(yiHPPos.Value);
hpNumber.fontSize = yiHPSize.Value;
MonoLifeTimeExtension.SetActive((MonoBehaviour)(object)hpNumber, false);
bossHPPos = ((BaseUnityPlugin)this).Config.Bind<Vector2>("General", "BossHPPosition", new Vector2(850f, 70f), "Position for Boss HP number");
bossHPSize = ((BaseUnityPlugin)this).Config.Bind<int>("General", "BossHPSize", 19, "Font Size for Boss' HP");
bossInternalPos = ((BaseUnityPlugin)this).Config.Bind<Vector2>("General", "BossInternalHPPosition", new Vector2(930f, 70f), "Position for Boss Internal HP number");
bossInternalHPSize = ((BaseUnityPlugin)this).Config.Bind<int>("General", "BossInternalHPSize", 19, "Font Size for Boss' Internal HP");
bossHPNumber = ShowHealth(bossHealth.ToString("F0"), Color.white);
((Transform)bossHPNumber.rectTransform).position = Vector2.op_Implicit(bossHPPos.Value);
bossHPNumber.fontSize = bossHPSize.Value;
bossInternalHPNumber = ShowHealth(bossInternalHealth.ToString("F0"), internalDamageColor);
((Transform)bossInternalHPNumber.rectTransform).position = Vector2.op_Implicit(bossInternalPos.Value);
bossInternalHPNumber.fontSize = bossInternalHPSize.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_0147: Unknown result type (might be due to invalid IL or missing references)
//IL_014c: Unknown result type (might be due to invalid IL or missing references)
//IL_017e: Unknown result type (might be due to invalid IL or missing references)
//IL_0183: Unknown result type (might be due to invalid IL or missing references)
//IL_01b5: Unknown result type (might be due to invalid IL or missing references)
//IL_01ba: 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 = GetBossInstance();
if ((Object)(object)monster != (Object)null && monster.IsActive)
{
bossHealth = monster.postureSystem.CurrentHealthValue;
MonoLifeTimeExtension.SetActive((MonoBehaviour)(object)bossHPNumber, true);
bossInternalHealth = monster.postureSystem.CurrentInternalInjury;
MonoLifeTimeExtension.SetActive((MonoBehaviour)(object)bossInternalHPNumber, true);
bossHPNumber.text = bossHealth.ToString("F0");
bossInternalHPNumber.text = bossInternalHealth.ToString("F0");
}
else
{
MonoLifeTimeExtension.SetActive((MonoBehaviour)(object)bossHPNumber, false);
MonoLifeTimeExtension.SetActive((MonoBehaviour)(object)bossInternalHPNumber, false);
}
((Transform)hpNumber.rectTransform).position = Vector2.op_Implicit(yiHPPos.Value);
hpNumber.fontSize = yiHPSize.Value;
((Transform)bossHPNumber.rectTransform).position = Vector2.op_Implicit(bossHPPos.Value);
bossHPNumber.fontSize = bossHPSize.Value;
((Transform)bossInternalHPNumber.rectTransform).position = Vector2.op_Implicit(bossInternalPos.Value);
bossInternalHPNumber.fontSize = bossInternalHPSize.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 MonsterBase GetBossInstance()
{
foreach (MonsterBase value in SingletonBehaviour<MonsterManager>.Instance.monsterDict.Values)
{
if (((Component)value).tag == "Boss" && ((Object)value).name != "_depre_StealthGameMonster_伏羲 Variant(Clone)" && ((Object)value).name != "StealthGameMonster_新女媧 Variant")
{
return value;
}
}
return null;
}
private void OnDestroy()
{
Object.Destroy((Object)(object)hpNumber);
Object.Destroy((Object)(object)bossHPNumber);
Object.Destroy((Object)(object)bossInternalHPNumber);
}
}
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);
}
}
}
public static class PluginInfo
{
public const string PLUGIN_GUID = "HPNumbers";
public const string PLUGIN_NAME = "HPNumbers";
public const string PLUGIN_VERSION = "1.0.2";
}
}