Decompiled source of DungeonDieDisplay v0.0.9

DungeonDieDisplay.dll

Decompiled 4 days ago
using System;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using Battle.Attacks;
using BepInEx;
using Microsoft.CodeAnalysis;
using On;
using Relics;
using TMPro;
using UnityEngine;
using UnityEngine.AddressableAssets;
using UnityEngine.EventSystems;
using UnityEngine.ResourceManagement.AsyncOperations;
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("DungeonDieDisplay")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyDescription("Show ")]
[assembly: AssemblyFileVersion("0.0.9.0")]
[assembly: AssemblyInformationalVersion("0.0.9")]
[assembly: AssemblyProduct("DungeonDieDisplay")]
[assembly: AssemblyTitle("DungeonDieDisplay")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("0.0.9.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 DungeonDieDisplay
{
	[BepInPlugin("DungeonDieDisplay", "DungeonDieDisplay", "0.0.9")]
	public class Plugin : BaseUnityPlugin
	{
		private class CanvasHover : MonoBehaviour, IPointerEnterHandler, IEventSystemHandler, IPointerExitHandler
		{
			public CanvasGroup CanvasGroup { get; set; }

			public void OnPointerEnter(PointerEventData eventData)
			{
				CanvasGroup.alpha = 0.3f;
			}

			public void OnPointerExit(PointerEventData eventData)
			{
				CanvasGroup.alpha = 1f;
			}
		}

		private TMP_FontAsset _damageTextFont;

		private Sprite _damageTextSprite;

		private void Awake()
		{
			//IL_0017: Unknown result type (might be due to invalid IL or missing references)
			//IL_0021: Expected O, but got Unknown
			//IL_0026: Unknown result type (might be due to invalid IL or missing references)
			//IL_002b: Unknown result type (might be due to invalid IL or missing references)
			((BaseUnityPlugin)this).Logger.LogInfo((object)"Plugin DungeonDieDisplay is loaded!");
			DeckInfoManager.CreatePreviewSprite += new hook_CreatePreviewSprite(DeckInfoManagerOnCreatePreviewSprite);
			AsyncOperationHandle<Font> val = Addressables.LoadAssetAsync<Font>((object)"Assets/Fonts/ChevyPixelFonts/Fonts/ChevyRay - Love Bug.ttf");
			val.Completed += delegate(AsyncOperationHandle<Font> handle)
			{
				if (Object.op_Implicit((Object)(object)handle.Result))
				{
					_damageTextFont = TMP_FontAsset.CreateFontAsset(handle.Result);
				}
			};
			_damageTextSprite = LoadDamageTextSprite();
		}

		private void OnDestroy()
		{
			//IL_0007: Unknown result type (might be due to invalid IL or missing references)
			//IL_0011: Expected O, but got Unknown
			DeckInfoManager.CreatePreviewSprite -= new hook_CreatePreviewSprite(DeckInfoManagerOnCreatePreviewSprite);
		}

		private GameObject DeckInfoManagerOnCreatePreviewSprite(orig_CreatePreviewSprite orig, DeckInfoManager self, GameObject ballprefab, float zoffset)
		{
			//IL_0027: Unknown result type (might be due to invalid IL or missing references)
			//IL_002d: Expected O, but got Unknown
			//IL_0074: Unknown result type (might be due to invalid IL or missing references)
			//IL_00a9: Unknown result type (might be due to invalid IL or missing references)
			//IL_00e1: Unknown result type (might be due to invalid IL or missing references)
			//IL_00eb: Unknown result type (might be due to invalid IL or missing references)
			GameObject val = orig.Invoke(self, ballprefab, zoffset);
			if (!self._deckManager._relicManager.RelicEffectActive((RelicEffect)112))
			{
				return val;
			}
			try
			{
				GameObject val2 = new GameObject("DungeonDieDisplay");
				val2.AddComponent<Canvas>().sortingLayerName = "UI";
				val2.AddComponent<GraphicRaycaster>();
				val2.transform.SetParent(val.transform);
				Attack val3 = default(Attack);
				if (ballprefab.TryGetComponent<Attack>(ref val3))
				{
					CreateDungeonDieDamageText("BaseDamageModifier", new Vector3(-18f, 0f, 0f), val3.randomDmgMod).transform.SetParent(val2.transform);
					CreateDungeonDieDamageText("CritDamageModifier", new Vector3(18f, 0f, 0f), val3.randomCritMod).transform.SetParent(val2.transform);
				}
				else
				{
					((BaseUnityPlugin)this).Logger.LogInfo((object)"Can't find attack on ball?");
				}
				val2.transform.localScale = Vector3.one / 12f;
			}
			catch (Exception ex)
			{
				((BaseUnityPlugin)this).Logger.LogWarning((object)("Something went wrong creating dungeon die display: " + ex));
			}
			return val;
		}

		private GameObject CreateDungeonDieDamageText(string gameObjectName, Vector3 positionOffset, int damageModifier)
		{
			//IL_0001: Unknown result type (might be due to invalid IL or missing references)
			//IL_0007: Expected O, but got Unknown
			//IL_000e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0013: Unknown result type (might be due to invalid IL or missing references)
			//IL_0014: 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)
			//IL_005d: Unknown result type (might be due to invalid IL or missing references)
			//IL_0042: Unknown result type (might be due to invalid IL or missing references)
			//IL_008e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0098: Expected O, but got Unknown
			//IL_00aa: Unknown result type (might be due to invalid IL or missing references)
			//IL_00af: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d5: 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_014f: Unknown result type (might be due to invalid IL or missing references)
			//IL_015e: Unknown result type (might be due to invalid IL or missing references)
			//IL_0163: Unknown result type (might be due to invalid IL or missing references)
			//IL_016a: Unknown result type (might be due to invalid IL or missing references)
			//IL_0167: Unknown result type (might be due to invalid IL or missing references)
			GameObject val = new GameObject(gameObjectName);
			Transform transform = val.transform;
			transform.position += positionOffset;
			Image obj = val.AddComponent<Image>();
			((Graphic)obj).rectTransform.sizeDelta = new Vector2(14f, 14f);
			((Graphic)obj).color = (Color)((damageModifier == 0) ? new Color(0f, 0f, 0f, 0.55f) : Color.white);
			obj.sprite = _damageTextSprite;
			val.AddComponent<CanvasHover>().CanvasGroup = val.AddComponent<CanvasGroup>();
			VerticalLayoutGroup obj2 = val.AddComponent<VerticalLayoutGroup>();
			((LayoutGroup)obj2).padding = new RectOffset(2, 2, 1, 1);
			((HorizontalOrVerticalLayoutGroup)obj2).childControlWidth = true;
			((HorizontalOrVerticalLayoutGroup)obj2).childControlHeight = true;
			GameObject val2 = new GameObject("DungeonDieModifierText");
			val2.transform.SetParent(val.transform);
			TextMeshProUGUI obj3 = val2.AddComponent<TextMeshProUGUI>();
			((TMP_Text)obj3).rectTransform.anchoredPosition = new Vector2(0f, 0f);
			((TMP_Text)obj3).fontSize = 6f;
			((TMP_Text)obj3).alignment = (TextAlignmentOptions)4098;
			((TMP_Text)obj3).font = _damageTextFont;
			((TMP_Text)obj3).fontStyle = (FontStyles)1;
			((TMP_Text)obj3).text = ((damageModifier > 0) ? ("+" + damageModifier) : damageModifier.ToString());
			Color val3 = Color.Lerp(new Color(0.77f, 0.13f, 0f), new Color(0.22f, 0.68f, 0.14f), (float)(damageModifier + 2) / 6f);
			((Graphic)obj3).color = ((damageModifier == 0) ? Color.white : val3);
			return val;
		}

		private Sprite LoadDamageTextSprite()
		{
			//IL_0074: Unknown result type (might be due to invalid IL or missing references)
			//IL_007a: Expected O, but got Unknown
			//IL_00b5: Unknown result type (might be due to invalid IL or missing references)
			//IL_00c4: Unknown result type (might be due to invalid IL or missing references)
			string directoryName = Path.GetDirectoryName(((BaseUnityPlugin)this).Info.Location);
			if (string.IsNullOrEmpty(directoryName))
			{
				((BaseUnityPlugin)this).Logger.LogWarning((object)("Couldn't find directory for dungeon die background image from location: " + ((BaseUnityPlugin)this).Info.Location));
				return null;
			}
			string text = Path.Combine(directoryName, "damage-light-bg.png");
			if (!File.Exists(text))
			{
				((BaseUnityPlugin)this).Logger.LogError((object)("Image not found: " + text));
				return null;
			}
			byte[] array = File.ReadAllBytes(text);
			Texture2D val = new Texture2D(16, 16, (TextureFormat)5, false);
			if (!ImageConversion.LoadImage(val, array))
			{
				((BaseUnityPlugin)this).Logger.LogError((object)"Failed to load image.");
				return null;
			}
			((Texture)val).filterMode = (FilterMode)0;
			return Sprite.Create(val, new Rect(0f, 0f, (float)((Texture)val).width, (float)((Texture)val).height), new Vector2(0.5f, 0.5f));
		}
	}
	public static class PluginInfo
	{
		public const string PLUGIN_GUID = "DungeonDieDisplay";

		public const string PLUGIN_NAME = "DungeonDieDisplay";

		public const string PLUGIN_VERSION = "0.0.9";
	}
}