using System; using System.Collections.Generic; using NewHorizons.External.Configs; using NewHorizons.Handlers; using OWML.Common; using OWML.Common.Menus; using UnityEngine; namespace NewHorizons.Utility { public static class DebugReload { private static IModButton _reloadButton; public static void InitializePauseMenu() { _reloadButton = Main.Instance.ModHelper.Menus.PauseMenu.OptionsButton.Duplicate(TranslationHandler.GetTranslation("Reload Configs", TranslationHandler.TextType.UI).ToUpper()); _reloadButton.OnClick += ReloadConfigs; UpdateReloadButton(); } public static void UpdateReloadButton() { if (_reloadButton != null) { if (Main.Debug) _reloadButton.Show(); else _reloadButton.Hide(); } } private static void ReloadConfigs() { Logger.Log("Begin reload of config files...", Logger.LogType.Log); Main.ResetConfigs(); try { foreach (IModBehaviour mountedAddon in Main.MountedAddons) { Main.Instance.LoadConfigs(mountedAddon); } } catch (Exception) { Logger.LogWarning("Error While Reloading"); } GameObject.Find("/PauseMenu/PauseMenuManagers").GetComponent().OnSkipToNextTimeLoop(); Main.Instance.ChangeCurrentStarSystem(Main.Instance.CurrentStarSystem); Main.SecondsLeftInLoop = -1f; } } }