using System;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
using System.Security.Cryptography;
using System.Text;
using BepInEx;
using BepInEx.Configuration;
using Bounce.Singletons;
using TMPro;
using UnityEngine;
using UnityEngine.SceneManagement;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: AssemblyTitle("TaleweaverThunderstorePlugin")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("TaleweaverThunderstorePlugin")]
[assembly: AssemblyCopyright("Copyright © 20234")]
[assembly: AssemblyTrademark("TaleweaverThunderstorePlugin")]
[assembly: ComVisible(false)]
[assembly: Guid("c303405d-e66c-4316-9cdb-4e3ca15c6360")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: TargetFramework(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace LordAshes;
[BepInPlugin("org.lordashes.plugins.taleweaverthunderstore", "Taleweaver Thunderstore Plugin", "1.0.0.0")]
[BepInDependency(/*Could not decode attribute arguments.*/)]
public class TaleSpireTaleweaverThunderstorePlugin : BaseUnityPlugin
{
public static class Utility
{
public static bool isBoardLoaded()
{
return SimpleSingletonBehaviour<CameraController>.HasInstance && SingletonStateMBehaviour<BoardSessionManager, State<BoardSessionManager>>.HasInstance && !BoardSessionManager.IsLoading;
}
public static Guid GuidFromString(string input)
{
using MD5 mD = MD5.Create();
byte[] b = mD.ComputeHash(Encoding.Default.GetBytes(input));
return new Guid(b);
}
public static GameObject GetBaseLoader(CreatureGuid cid)
{
//IL_0004: Unknown result type (might be due to invalid IL or missing references)
try
{
CreatureBoardAsset val = null;
CreaturePresenter.TryGetAsset(cid, ref val);
if ((Object)(object)val != (Object)null)
{
Transform match = null;
Traverse(((Component)val).transform, "BaseLoader", 0, 10, ref match);
if ((Object)(object)match != (Object)null)
{
Debug.Log((object)("Taleweaver Thunderstore Plugin: Base Loader '" + ((Object)match.GetChild(0)).name + "' Found"));
return ((Component)match.GetChild(0)).gameObject;
}
Debug.LogWarning((object)"Taleweaver Thunderstore Plugin: Could Not Find Base Loader");
return null;
}
return null;
}
catch
{
return null;
}
}
public static GameObject GetAssetLoader(CreatureGuid cid)
{
//IL_0004: Unknown result type (might be due to invalid IL or missing references)
try
{
CreatureBoardAsset val = null;
CreaturePresenter.TryGetAsset(cid, ref val);
if ((Object)(object)val != (Object)null)
{
Transform match = null;
Traverse(((Component)val).transform, "AssetLoader", 0, 10, ref match);
if ((Object)(object)match != (Object)null)
{
Debug.Log((object)("Taleweaver Thunderstore Plugin: Asset Loader '" + ((Object)match.GetChild(0)).name + "' Found"));
return ((Component)match.GetChild(0)).gameObject;
}
Debug.LogWarning((object)"Taleweaver Thunderstore Plugin: Could Not Find Asset Loader");
return null;
}
return null;
}
catch
{
return null;
}
}
public static void Traverse(Transform root, string seek, int depth, int depthMax, ref Transform match)
{
try
{
if ((Object)(object)match != (Object)null)
{
return;
}
if (((Object)root).name == seek)
{
match = root;
return;
}
foreach (Transform item in ExtensionMethods.Children(root))
{
if (depth < depthMax)
{
Traverse(item, seek, depth + 1, depthMax, ref match);
}
}
}
catch
{
}
}
public static float ParseFloat(string value)
{
return float.Parse(value, CultureInfo.InvariantCulture);
}
public static string GetCreatureName(string nameBlock)
{
if (nameBlock == null)
{
return "(Unknown)";
}
if (!nameBlock.Contains("<size=0>"))
{
return nameBlock;
}
return nameBlock.Substring(0, nameBlock.IndexOf("<size=0>")).Trim();
}
public static void PostOnMainPage(MemberInfo plugin)
{
SceneManager.sceneLoaded += delegate(Scene scene, LoadSceneMode mode)
{
//IL_0072: Unknown result type (might be due to invalid IL or missing references)
//IL_0079: Expected O, but got Unknown
try
{
if (((Scene)(ref scene)).name == "UI")
{
TextMeshProUGUI uITextByName = GetUITextByName("BETA");
if (Object.op_Implicit((Object)(object)uITextByName))
{
((TMP_Text)uITextByName).text = "INJECTED BUILD - unstable mods";
}
}
else
{
TextMeshProUGUI uITextByName2 = GetUITextByName("TextMeshPro Text");
if (Object.op_Implicit((Object)(object)uITextByName2))
{
BepInPlugin val = (BepInPlugin)Attribute.GetCustomAttribute(plugin, typeof(BepInPlugin));
if (((TMP_Text)uITextByName2).text.EndsWith("</size>"))
{
((TMP_Text)uITextByName2).text = ((TMP_Text)uITextByName2).text + "\n\nMods Currently Installed:\n";
}
TextMeshProUGUI val2 = uITextByName2;
((TMP_Text)val2).text = ((TMP_Text)val2).text + "\nLord Ashes' " + val.Name + " - " + val.Version;
}
}
}
catch (Exception ex)
{
Debug.Log((object)ex);
}
};
}
private static TextMeshProUGUI GetUITextByName(string name)
{
TextMeshProUGUI[] array = Object.FindObjectsOfType<TextMeshProUGUI>();
for (int i = 0; i < array.Length; i++)
{
if (((Object)array[i]).name == name)
{
return array[i];
}
}
return null;
}
}
public enum DiagnosticLevel
{
none,
error,
warning,
info,
debug,
ultra
}
public const string Name = "Taleweaver Thunderstore Plugin";
public const string Guid = "org.lordashes.plugins.taleweaverthunderstore";
public const string Version = "1.0.0.0";
public const string Author = "Lord Ashes";
private bool autoSyncComple = false;
private ConfigEntry<KeyboardShortcut>[] triggerKey { get; set; } = new ConfigEntry<KeyboardShortcut>[1];
private ConfigEntry<DiagnosticLevel> diagnostics { get; set; }
private ConfigEntry<string> localContentModFolder { get; set; }
private ConfigEntry<bool> autoSyncOnBoardLoad { get; set; }
private void Awake()
{
//IL_006e: Unknown result type (might be due to invalid IL or missing references)
diagnostics = ((BaseUnityPlugin)this).Config.Bind<DiagnosticLevel>("Settings", "Diagnostic Level", DiagnosticLevel.info, (ConfigDescription)null);
Debug.Log((object)("Taleweaver Thunderstore Plugin: Active. (Diagnostic Mode = " + diagnostics.Value.ToString() + ")"));
triggerKey[0] = ((BaseUnityPlugin)this).Config.Bind<KeyboardShortcut>("Hotkeys", "Reload Taleweaver Mods", new KeyboardShortcut((KeyCode)279, Array.Empty<KeyCode>()), (ConfigDescription)null);
autoSyncOnBoardLoad = ((BaseUnityPlugin)this).Config.Bind<bool>("Setting", "Auto Sync Mods When Board Loads", true, (ConfigDescription)null);
localContentModFolder = ((BaseUnityPlugin)this).Config.Bind<string>("Setting", "Local Content Mods Folder", "{Please Set Me}", (ConfigDescription)null);
if (!localContentModFolder.Value.EndsWith("\\") && !localContentModFolder.Value.EndsWith("/"))
{
localContentModFolder.Value += "/";
}
autoSyncComple = !autoSyncOnBoardLoad.Value;
Utility.PostOnMainPage(((object)this).GetType());
}
private void Update()
{
//IL_0013: Unknown result type (might be due to invalid IL or missing references)
//IL_0018: Unknown result type (might be due to invalid IL or missing references)
if (Utility.isBoardLoaded())
{
KeyboardShortcut value = triggerKey[0].Value;
if (((KeyboardShortcut)(ref value)).IsUp())
{
SystemMessage.DisplayInfoText("Syncing Downloaded Taleweaver Mods", 2.5f);
SyncMods();
}
if (!autoSyncComple)
{
autoSyncComple = true;
SyncMods();
}
}
}
private void SyncMods()
{
if (localContentModFolder.Value == "{Please Set Me}")
{
SystemMessage.DisplayInfoText("Please use R2ModMan Edit Config to\r\nset the Local Mod folder.", 2.5f);
return;
}
if (diagnostics.Value >= DiagnosticLevel.info)
{
Debug.Log((object)("Taleweaver Thunderstore Plugin: Erasing Mods At " + localContentModFolder.Value));
}
foreach (string item in Directory.EnumerateFiles(localContentModFolder.Value, "*.tsmod"))
{
if (diagnostics.Value >= DiagnosticLevel.ultra)
{
Debug.Log((object)("Taleweaver Thunderstore Plugin: Erasing Mod " + item));
}
File.Delete(item);
}
if (diagnostics.Value >= DiagnosticLevel.info)
{
Debug.Log((object)"Taleweaver Thunderstore Plugin: Syncing Downloaded Talespire Mods");
}
string[] array = File.Find(".tsmod", (CacheType)1);
string[] array2 = array;
foreach (string text in array2)
{
if (text.ToUpper().EndsWith(".TSMOD"))
{
if (diagnostics.Value >= DiagnosticLevel.ultra)
{
Debug.Log((object)("Taleweaver Thunderstore Plugin: Syncing " + text));
}
File.Copy(text, localContentModFolder.Value + Path.GetFileName(text));
}
}
}
}