コード例 #1
0
ファイル: XCore.cs プロジェクト: yomunsam/TinaX.Core
 public static IXCore New()
 {
     if (_MainInstance == null)
     {
         _MainInstance = new XCore();
         return(MainInstance);
     }
     else
     {
         return(new XCore());
     }
 }
コード例 #2
0
ファイル: XCore.cs プロジェクト: hyloong/TinaX.Core
        public XCore()
        {
            if (_MainInstance == null)
            {
                lock (_lock_obj)
                {
                    if (_MainInstance == null)
                    {
                        _MainInstance = this;
                    }
                }
            }

            //mCatApp = CatLib.Application.New();
            m_ServiceContainer = new ServiceContainer(this);
            UnityEngine.Application.quitting += OnUnityQuit;
        }
コード例 #3
0
        /// <summary>
        /// 软重启App
        /// </summary>
        /// <returns></returns>
        public XCore RestartApp()
        {
            Debug.Log("[TinaX] Framework开始软重启");

            _instance = null;
            m_inited  = false;

            #region 处理其他的资源释放之类的


            #endregion

            App.Terminate(); //停用CatLib


            XStart.RestartFramework();

            if (OnFrameworkRestart != null)
            {
                OnFrameworkRestart();
            }
            return(this);
        }
コード例 #4
0
ファイル: XConfig.cs プロジェクト: yomunsam/TinaX.Core
        /// <summary>
        /// Get Unity Config
        /// </summary>
        /// <param name="configPath"></param>
        /// <param name="loadType"></param>
        /// <param name="cachePrior">优先从缓存中读取</param>
        /// <returns></returns>
        public static T GetConfig <T>(string configPath, AssetLoadType loadType = AssetLoadType.Resources, bool cachePrior = true) where T : UnityEngine.ScriptableObject
        {
            bool   cache_flag = false;
            string cache_key  = ((loadType == AssetLoadType.Resources) ? mPathHeadText_LoadByResources : mPathHeadText_LoadByVFS) + configPath;

            if (cachePrior && UnityEngine.Application.isPlaying)
            {
                //检查缓存
                if (mDict_ConfigCache.TryGetValue(cache_key, out object conf))
                {
                    return(conf as T);
                }
                else
                {
                    cache_flag = true; //加载之后要加入缓存字典
                }
            }

            T final_asset;

            //load asset
            if (loadType == AssetLoadType.Resources)
            {
#if UNITY_EDITOR
                if (Application.isPlaying)
                {
                    string _final_path = (configPath.StartsWith("/") ? ConfigRootFolderInResource + configPath : ConfigRootFolderInResource + "/" + configPath);
                    _final_path = RemoveExtNameIfExists(_final_path);
                    final_asset = Resources.Load <T>(_final_path);
                }
                else
                {
                    //在编辑器下应该使用AssetDatabase加载
                    if (configPath.IndexOf("Resources") != -1 && configPath.StartsWith("Assets/"))
                    {
                        //本来给定的就是unity asset path, 直接加载
                        final_asset = UnityEditor.AssetDatabase.LoadAssetAtPath <T>(configPath);
                    }
                    else
                    {
                        //本来的路径是Resources的路径,要还原成Unity的路径
                        string uPath = ConfigResourcesPath + "/" + configPath;
                        if (!uPath.EndsWith(".asset"))
                        {
                            uPath = uPath + ".asset";
                        }

                        final_asset = UnityEditor.AssetDatabase.LoadAssetAtPath <T>(uPath);
                    }
                }
#else
                string _final_path = (configPath.StartsWith("/") ? ConfigRootFolderInResource + configPath : ConfigRootFolderInResource + "/" + configPath);
                _final_path = RemoveExtNameIfExists(_final_path);
                final_asset = Resources.Load <T>(_final_path);
#endif
            }
            else if (loadType == AssetLoadType.VFS)
            {
#if UNITY_EDITOR
                if (Application.isPlaying && XCore.MainInstance != null && XCore.GetMainInstance().IsRunning)
                {
                    final_asset = XCore.GetMainInstance().GetService <TinaX.Services.IAssetService>().Load <T>(configPath);
                }
                else
                {
                    //editor only : load asset by assetdatabase.
                    final_asset = UnityEditor.AssetDatabase.LoadAssetAtPath <T>(configPath);
                }
#else
                final_asset = XCore.GetMainInstance()?.GetService <TinaX.Services.IAssetService>()?.Load <T>(configPath);
#endif
            }
            else
            {
                throw new Exception($"[TinaX] XConfig System can't load asset by \"{loadType.ToString()}\"loadtype.");
            }

            if (cache_flag)
            {
                if (mDict_ConfigCache.ContainsKey(cache_key))
                {
                    mDict_ConfigCache[cache_key] = final_asset;
                }
                else
                {
                    mDict_ConfigCache.Add(cache_key, final_asset);
                }
            }

            return(final_asset);
        }
コード例 #5
0
ファイル: XConfig.cs プロジェクト: yomunsam/TinaX.Core
        public static T GetJson <T>(string jsonPath, AssetLoadType loadType = AssetLoadType.SystemIO, bool cachePrior = false)
        {
            bool   cache_flag = false;
            string cache_key  = jsonPath.ToLower();

            if (cachePrior && UnityEngine.Application.isPlaying)
            {
                //检查缓存
                if (mDict_JsonCache.TryGetValue(cache_key, out object conf))
                {
                    return((T)conf);
                }
                else
                {
                    cache_flag = true; //加载之后要加入缓存字典
                }
            }

            T final_asset;

            //load asset
            if (loadType == AssetLoadType.Resources)
            {
#if UNITY_EDITOR
                //在编辑器下应该使用AssetDatabase加载
                if (jsonPath.IndexOf("Resources") != -1 && jsonPath.StartsWith("Assets/"))
                {
                    //本来给定的就是unity asset path, 直接加载
                    var json_ta = UnityEditor.AssetDatabase.LoadAssetAtPath <TextAsset>(jsonPath);
                    final_asset = JsonUtility.FromJson <T>(json_ta.text);
                }
                else
                {
                    //本来的路径是Resources的路径,要还原成Unity的路径
                    string uPath = ConfigResourcesPath + "/" + jsonPath;
                    if (!uPath.EndsWith(".asset"))
                    {
                        uPath = uPath + ".asset";
                    }

                    var json_ta = UnityEditor.AssetDatabase.LoadAssetAtPath <TextAsset>(uPath);
                    final_asset = JsonUtility.FromJson <T>(json_ta.text);
                }
#else
                var json_ta = Resources.Load <TextAsset>(RemoveExtNameIfExists(jsonPath));
                final_asset = JsonUtility.FromJson <T>(json_ta.text);
#endif
            }
            else if (loadType == AssetLoadType.VFS)
            {
#if UNITY_EDITOR
                if (Application.isPlaying && XCore.MainInstance != null && XCore.GetMainInstance().IsRunning)
                {
                    var json_textAsset = XCore.GetMainInstance().GetService <TinaX.Services.IAssetService>().Load <TextAsset>(jsonPath);
                    final_asset = JsonUtility.FromJson <T>(json_textAsset.text);
                }
                else
                {
                    //editor only : load asset by assetdatabase.
                    var json_textAsset = UnityEditor.AssetDatabase.LoadAssetAtPath <TextAsset>(jsonPath);
                    final_asset = JsonUtility.FromJson <T>(json_textAsset.text);
                }
#else
                var json_textAsset = XCore.GetMainInstance()?.GetService <TinaX.Services.IAssetService>()?.Load <TextAsset>(jsonPath);
                final_asset = JsonUtility.FromJson <T>(json_textAsset.text);
#endif
            }
            else if (loadType == AssetLoadType.SystemIO)
            {
                var json_text = System.IO.File.ReadAllText(jsonPath, Encoding.UTF8);
                final_asset = JsonUtility.FromJson <T>(json_text);
            }
            else
            {
                throw new Exception($"[TinaX] XConfig System can't load asset by \"{loadType.ToString()}\"loadtype.");
            }

            if (cache_flag)
            {
                if (mDict_ConfigCache.ContainsKey(cache_key))
                {
                    mDict_ConfigCache[cache_key] = final_asset;
                }
                else
                {
                    mDict_ConfigCache.Add(cache_key, final_asset);
                }
            }

            return(final_asset);
        }