using System.Linq; using System.Collections.Generic; using UnityEngine; using System; using System.Reflection; namespace GameplayIngredients { public abstract class Manager : MonoBehaviour { private static Dictionary s_Managers = new Dictionary(); public static T Get() where T: Manager { if(s_Managers.ContainsKey(typeof(T))) return (T)s_Managers[typeof(T)]; else { Debug.LogError($"Manager of type '{typeof(T)}' could not be accessed. Check the excludedManagers list in your GameplayIngredientsSettings configuration file."); return null; } } static readonly Type[] kAllManagerTypes = GetAllManagerTypes(); [RuntimeInitializeOnLoadMethod] static void AutoCreateAll() { var exclusionList = GameplayIngredientsSettings.currentSettings.excludedeManagers; Debug.Log("Initializing all Managers..."); foreach(var type in kAllManagerTypes) { if(exclusionList != null && exclusionList.ToList().Contains(type.Name)) { Debug.Log($"Manager : {type.Name} is in GameplayIngredientSettings.excludedeManagers List: ignoring Creation"); continue; } var attrib = type.GetCustomAttribute(); GameObject gameObject; if(attrib != null) { var prefab = Resources.Load(attrib.prefab); if(prefab == null) // Try loading the "Default_" prefixed version of the prefab { prefab = Resources.Load("Default_"+attrib.prefab); } if(prefab != null) { gameObject = GameObject.Instantiate(prefab); } else { Debug.LogError($"Could not instantiate default prefab for {type.ToString()} : No prefab '{attrib.prefab}' found in resources folders. Ignoring..."); continue; } } else { gameObject = new GameObject(); gameObject.AddComponent(type); } gameObject.name = type.Name; GameObject.DontDestroyOnLoad(gameObject); var comp = (Manager)gameObject.GetComponent(type); s_Managers.Add(type,comp); Debug.Log(string.Format(" -> <{0}> OK", type.Name)); } } static Type[] GetAllManagerTypes() { List types = new List(); foreach(var assembly in AppDomain.CurrentDomain.GetAssemblies()) { foreach(Type t in assembly.GetTypes()) { if(typeof(Manager).IsAssignableFrom(t) && !t.IsAbstract) { types.Add(t); } } } return types.ToArray(); } } }