#if UNITY_EDITOR using System; using System.IO; using UnityEngine; using UnityEditor; namespace XCharts { [System.Serializable] public class XChartsPackageResourceImporter { bool m_EssentialResourcesImported; bool m_ExamplesAndExtrasResourcesImported; public XChartsPackageResourceImporter() { } public void OnDestroy() { } public void OnGUI() { m_EssentialResourcesImported = File.Exists("Assets/XCharts/Resources/XChartsSettings.asset"); m_ExamplesAndExtrasResourcesImported = Directory.Exists("Assets/XCharts/Examples & Extras"); GUILayout.BeginVertical(); { GUILayout.BeginVertical(EditorStyles.helpBox); { GUILayout.Label("XCharts Essentials", EditorStyles.boldLabel); GUILayout.Label("This appears to be the first time you access XCharts, as such we need to add resources to your project that are essential for using XCharts. These new resources will be placed at the root of your project in the \"XCharts\" folder.", new GUIStyle(EditorStyles.label) { wordWrap = true }); GUILayout.Space(5f); GUI.enabled = !m_EssentialResourcesImported; if (GUILayout.Button("Import XCharts Essentials")) { AssetDatabase.importPackageCompleted += ImportCallback; string packageFullPath = GetPackageFullPath(); AssetDatabase.ImportPackage(packageFullPath + "/Package Resources/XCharts Essential Resources.unitypackage", false); } GUILayout.Space(5f); GUI.enabled = true; } GUILayout.EndVertical(); } GUILayout.EndVertical(); GUILayout.BeginVertical(); { GUILayout.BeginVertical(EditorStyles.helpBox); { GUILayout.Label("TextMeshPro", EditorStyles.boldLabel); #if dUI_TextMeshPro GUILayout.Label("TextMeshPro is now enabled. You can turn it off by clicking the button below.", new GUIStyle(EditorStyles.label) { wordWrap = true }); GUILayout.Space(5f); if (GUILayout.Button("Disable TextMeshPro")) { XChartsMgr.DisableTextMeshPro(); } #else GUILayout.Label("TextMeshPro is not active. You can activate it by clicking the button below. Make sure TextMeshPro is already in your project before activating it.", new GUIStyle(EditorStyles.label) { wordWrap = true }); GUILayout.Space(5f); if (GUILayout.Button("Enable TextMeshPro")) { XChartsMgr.EnableTextMeshPro(); } #endif GUILayout.Space(5f); } GUILayout.EndVertical(); } GUILayout.EndVertical(); GUILayout.Space(5f); } internal void RegisterResourceImportCallback() { AssetDatabase.importPackageCompleted += ImportCallback; } /// /// /// /// void ImportCallback(string packageName) { if (packageName == "XCharts Essential Resources") { m_EssentialResourcesImported = true; #if UNITY_2018_3_OR_NEWER SettingsService.NotifySettingsProviderChanged(); #endif } Debug.Log("[" + packageName + "] have been imported."); AssetDatabase.importPackageCompleted -= ImportCallback; } static string GetPackageFullPath() { // Check for potential UPM package string packagePath = Path.GetFullPath("Packages/com.monitor1394.xcharts"); if (Directory.Exists(packagePath)) { return packagePath; } packagePath = Path.GetFullPath("Assets/.."); if (Directory.Exists(packagePath)) { // Search default location for development package if (Directory.Exists(packagePath + "/Assets/Packages/com.monitor1394.xcharts/Package Resources")) { return packagePath + "/Assets/Packages/com.monitor1394.xcharts"; } // Search for default location of normal XCharts AssetStore package if (Directory.Exists(packagePath + "/Assets/XCharts/Package Resources")) { return packagePath + "/Assets/XCharts"; } // Search for potential alternative locations in the user project string[] matchingPaths = Directory.GetDirectories(packagePath, "XCharts", SearchOption.AllDirectories); string path = ValidateLocation(matchingPaths, packagePath); if (path != null) return packagePath + path; } return null; } static string ValidateLocation(string[] paths, string projectPath) { for (int i = 0; i < paths.Length; i++) { // Check if the Editor Resources folder exists. if (Directory.Exists(paths[i] + "/Package Resources")) { string folderPath = paths[i].Replace(projectPath, ""); folderPath = folderPath.TrimStart('\\', '/'); return folderPath; } } return null; } } public class XChartsPackageResourceImporterWindow : EditorWindow { [SerializeField] XChartsPackageResourceImporter m_ResourceImporter; static XChartsPackageResourceImporterWindow m_ImporterWindow; public static void ShowPackageImporterWindow() { if (m_ImporterWindow == null) { m_ImporterWindow = GetWindow(); m_ImporterWindow.titleContent = new GUIContent("XCharts Importer"); } m_ImporterWindow.Focus(); } void OnEnable() { SetEditorWindowSize(); if (m_ResourceImporter == null) m_ResourceImporter = new XChartsPackageResourceImporter(); } void OnDestroy() { m_ResourceImporter.OnDestroy(); } void OnGUI() { m_ResourceImporter.OnGUI(); } void OnInspectorUpdate() { Repaint(); } /// /// Limits the minimum size of the editor window. /// void SetEditorWindowSize() { EditorWindow editorWindow = this; Vector2 windowSize = new Vector2(640, 210); editorWindow.minSize = windowSize; editorWindow.maxSize = windowSize; } } } #endif